0byt3m1n1
Path:
/
data
/
9
/
1
/
60
/
113
/
1223765
/
meta
/
1304878
/
mysql.backup
/
[
Home
]
File: 1_018a4ea_3.mysqlcluster15.bak.sql
-- MySQL dump 10.13 Distrib 5.6.24, for Linux (x86_64) -- -- Host: mysqlcluster15 Database: 1_018a4ea_3 -- ------------------------------------------------------ -- Server version 5.6.51-91.0-56-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2021-03-10 20:15:34','2021-03-10 20:15:34','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','comment',0,0); /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) ) ENGINE=InnoDB AUTO_INCREMENT=170 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'siteurl','http://tarinc.com/tarinc','yes'),(2,'home','http://tarinc.com/tarinc','yes'),(3,'blogname','tarinc','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','trestivo@tarinc.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','','yes'),(29,'rewrite_rules','','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:1:{i:0;s:33:\"classic-editor/classic-editor.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','twentytwentyone','yes'),(41,'stylesheet','twentytwentyone','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','49752','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:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','6','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','1682443909','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,'initial_db_version','49752','yes'),(99,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(100,'fresh_site','0','yes'),(101,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(106,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'),(107,'cron','a:5:{i:1666894535;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:1666901735;a:6:{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;}}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:1666978311;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:1666978312;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(119,'theme_mods_twentytwentyone','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(120,'https_detection_errors','a:1:{s:20:\"https_request_failed\";a:1:{i:0;s:21:\"HTTPS request failed.\";}}','yes'),(130,'_site_transient_timeout_theme_roots','1666893689','no'),(131,'_site_transient_theme_roots','a:3:{s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";}','no'),(134,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1666892027;s:7:\"checked\";a:3:{s:14:\"twentynineteen\";s:3:\"2.0\";s:12:\"twentytwenty\";s:3:\"1.7\";s:15:\"twentytwentyone\";s:3:\"1.2\";}s:8:\"response\";a:3:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.3\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.3.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.0.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.6.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(135,'_site_transient_timeout_browser_acff52a1652901ae7e446fb41b9189b7','1667496712','no'),(136,'_site_transient_browser_acff52a1652901ae7e446fb41b9189b7','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"106.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'),(137,'_site_transient_timeout_php_check_be350024f30b4b5fb17e000b68f2aafc','1667496712','no'),(138,'_site_transient_php_check_be350024f30b4b5fb17e000b68f2aafc','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(139,'_site_transient_timeout_community-events-d73413bd63f49a88daae9d4e241e3640','1666935116','no'),(140,'_site_transient_community-events-d73413bd63f49a88daae9d4e241e3640','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"162.217.212.0\";}s:6:\"events\";a:3:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:35:\"WordPress HelpDesk & Preview of 6.1\";s:3:\"url\";s:51:\"https://www.meetup.com/wpnashville/events/289071080\";s:6:\"meetup\";s:19:\"WordPress Nashville\";s:10:\"meetup_url\";s:35:\"https://www.meetup.com/wpnashville/\";s:4:\"date\";s:19:\"2022-10-27 17:00:00\";s:8:\"end_date\";s:19:\"2022-10-27 19:00:00\";s:20:\"start_unix_timestamp\";i:1666908000;s:18:\"end_unix_timestamp\";i:1666915200;s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Nashville, TN, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:36.16856;s:9:\"longitude\";d:-86.785034;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:31:\"Community Coffee Hours - Oct 28\";s:3:\"url\";s:51:\"https://www.meetup.com/wpnashville/events/289292631\";s:6:\"meetup\";s:19:\"WordPress Nashville\";s:10:\"meetup_url\";s:35:\"https://www.meetup.com/wpnashville/\";s:4:\"date\";s:19:\"2022-10-28 09:00:00\";s:8:\"end_date\";s:19:\"2022-10-28 11:00:00\";s:20:\"start_unix_timestamp\";i:1666965600;s:18:\"end_unix_timestamp\";i:1666972800;s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Nashville, TN, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:36.16174;s:9:\"longitude\";d:-86.77895;}}i:2;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:23:\"WordCamp Birmingham, AL\";s:3:\"url\";s:37:\"https://birmingham.wordcamp.org/2023/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2023-02-04 00:00:00\";s:8:\"end_date\";s:19:\"2023-02-05 00:00:00\";s:20:\"start_unix_timestamp\";i:1675490400;s:18:\"end_unix_timestamp\";i:1675576800;s:8:\"location\";a:4:{s:8:\"location\";s:14:\"Birmingham, AL\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.5096117;s:9:\"longitude\";d:-86.7974738;}}}}','no'),(141,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1666935119','no'),(142,'_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:112:\"\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: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:\"Wed, 26 Oct 2022 15:43:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"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.2-alpha-54706\";s:7:\"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:30:{i:0;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:53:\"WordPress 6.1 Release Candidate 3 (RC3) 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Oct 2022 20:29:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13670\";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:427:\"WordPress 6.1 Release Candidate 3 is now available for testing! You can \ndownload and help test RC3 in three ways. 6.1 is planned for general release on November 01, 2022.\n\nThis version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test Release Candidate 3 on a test server and site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s: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:6657:\"\n<p>Release Candidate 3 (RC3) is now available for testing! The general release is just one week away with WordPress 6.1 scheduled for release on Tuesday, November 1, 2022. </p>\n\n\n\n<p>This RC3 release is the final opportunity for you to test and help to ensure the resilience of the 6.1 release by performing a final round of reviews and checks. Since the WordPress ecosystem is vast and composed of thousands of plugins and themes the entire project benefits from the time you take to assist.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test RC3 on a test server and site. </p>\n\n\n\n<p>You can test WordPress 6.1 RC3 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.1-RC3.zip\">RC3 version (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use the WP-CLI command:</p>\n\n\n\n<p><code>wp core update --version=6.1-RC3</code></p>\n\n\n\n<p>Additional information on the <a href=\"https://make.wordpress.org/core/6-1/\">6.1 release cycle is available here</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-1/\">6.1-related developer notes</a> in the coming weeks detailing all upcoming changes.</p>\n\n\n\n<h2><strong>What’s in WordPress 6.1 RC3?</strong></h2>\n\n\n\n<p>Since Release Candidate 2, approximately 60 items have been addressed. </p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.1\">GitHub tickets</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=10%2F18%2F2022..10%2F25%2F2022&resolution=fixed&milestone=6.1&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=id\">Trac tickets</a> </li>\n</ul>\n\n\n\n<p>WordPress 6.1 is the third major release for 2022, following 5.9 and 6.0, released in January and May of this year, respectively.</p>\n\n\n\n<p>To learn more about the highlights for both end-users and developers, you’re invited to read more about them in the <a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\">RC1 announcement post</a> and review the <a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">WordPress 6.1 Field Guide</a>.</p>\n\n\n\n<h2><strong>Plugin and theme developers</strong></h2>\n\n\n\n<p>All plugin and theme developers should test their respective extensions against WordPress 6.1 RC3 and update the “<em>Tested up to”</em> version in their readme file to 6.1. If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so these items can be investigated further prior to the final release date of November 1st.</p>\n\n\n\n<h2><strong>Translate WordPress</strong></h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a> </p>\n\n\n\n<p><strong>Keep WordPress bug-free – help with testing</strong></p>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute. <a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">This detailed guide</a> is an excellent start if you have never tested a beta release.</p>\n\n\n\n<p>Testing helps ensure that this and future releases of WordPress are as stable and issue-free as possible. Anyone can take part in testing – regardless of prior experience.</p>\n\n\n\n<p>Want to know more about testing releases like this one? Read about the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join a <a href=\"https://wordpress.slack.com/messages/core-test/\">core-test channel</a> on the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack workspace</a>.</p>\n\n\n\n<p>If you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>To review features in the Gutenberg releases since WordPress 6.0 (the most recent major release of WordPress), access the <em>What’s New In Gutenberg</em> posts for <a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\">14.1</a>, <a href=\"https://make.wordpress.org/core/2022/09/01/whats-new-in-gutenberg-14-0-31-august/\">14.0</a>, <a href=\"https://make.wordpress.org/core/2022/08/17/whats-new-in-gutenberg-13-9-17-august/\">13.9</a>, <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/\">13.8</a>, <a href=\"https://make.wordpress.org/core/2022/07/20/whats-new-in-gutenberg-13-7-20-july/\">13.7</a>, <a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/\">13.6</a>, <a href=\"https://make.wordpress.org/core/2022/06/22/whats-new-in-gutenberg-13-5-22-june/\">13.5</a>, <a href=\"https://make.wordpress.org/core/2022/06/10/whats-new-in-gutenberg-13-4-8-june/\">13.4</a>, <a href=\"https://make.wordpress.org/core/2022/05/26/whats-new-in-gutenberg-13-3-0-may-25/\">13.3</a>, <a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">13.2</a>, and <a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">13.1</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>RC3, A Penultimate Haiku</h2>\n\n\n\n<p><em>The time ticks forward<br>Release nears ever closer<br>Download and review</em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Props to the following contributors for collaborating on this post: <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a>, <a href=\"https://wordpress.org/support/users/spacedmonkey/\">Jonny Harris</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\";s: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:\"13670\";s: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: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:53:\"WordPress 6.1 Release Candidate 2 (RC2) 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-2-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Oct 2022 19:31:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13646\";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:332:\"WordPress 6.1 Release Candidate 2 is now available for download and testing.\n\nThis version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test Release Candidate 2 on a test server and site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s: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:7012:\"\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>The second release candidate (RC2) for WordPress 6.1 is now available!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>“Release Candidate” means that this version of WordPress is ready for release and it is a key milestone in the 6.1 release cycle! Before the official release date, the community sets aside time to perform final reviews and help test. Since the WordPress ecosystem includes thousands of plugins and themes, it is important that everyone checks to see if anything has been missed along the way. That means the project would <em>greatly benefit from</em> your assistance.</p>\n\n\n\n<p>WordPress 6.1 is planned for official release on November 1st, 2022, two weeks from today. </p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test RC2 on a test server and site. </p>\n\n\n\n<p>You can test WordPress 6.1 RC2 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.1-RC2.zip\">RC2 version (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use the WP-CLI command:</p>\n\n\n\n<p><code>wp core update --version=6.1-RC2</code></p>\n\n\n\n<p>Additional information on the <a href=\"https://make.wordpress.org/core/6-1/\">6.1 release cycle is available here</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-1/\">6.1-related developer notes</a> in the coming weeks detailing all upcoming changes.</p>\n\n\n\n<h2><strong>What’s in WordPress 6.1 RC2?</strong></h2>\n\n\n\n<p>Since Release Candidate 1, approximately 65 items have been addressed, bringing the total count to more than 2,000 updates since WordPress 6.0 in May of 2022. </p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.1\">GitHub tickets</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=10%2F11%2F2022..10%2F18%2F2022&resolution=fixed&milestone=6.1&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=id\">Trac tickets</a> </li>\n</ul>\n\n\n\n<p>WordPress 6.1 is the third major release for 2022, following 5.9 and 6.0, released in January and May of this year, respectively.</p>\n\n\n\n<p>To learn more about the highlights for both end-users and developers, you’re invited to read more about them in the <a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\">RC1 announcement post</a> and review the <a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">WordPress 6.1 Field Guide</a>.</p>\n\n\n\n<h2><strong>Plugin and theme developers</strong></h2>\n\n\n\n<p>All plugin and theme developers should test their respective extensions against WordPress 6.1 RC2 and update the “<em>Tested up to”</em> version in their readme file to 6.1. If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so these items can be investigated further prior to the final release date of November 1st.</p>\n\n\n\n<h2><strong>Translate WordPress</strong></h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a> </p>\n\n\n\n<p><strong>Keep WordPress bug-free – help with testing</strong></p>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute. <a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">This detailed guide</a> is an excellent start if you have never tested a beta release.</p>\n\n\n\n<p>Testing helps ensure that this and future releases of WordPress are as stable and issue-free as possible. Anyone can take part in testing – regardless of prior experience.</p>\n\n\n\n<p>Want to know more about testing releases like this one? Read about the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join a <a href=\"https://wordpress.slack.com/messages/core-test/\">core-test channel</a> on the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack workspace</a>.</p>\n\n\n\n<p>If you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>To review features in the Gutenberg releases since WordPress 6.0 (the most recent major release of WordPress), access the <em>What’s New In Gutenberg</em> posts for <a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\">14.1</a>, <a href=\"https://make.wordpress.org/core/2022/09/01/whats-new-in-gutenberg-14-0-31-august/\">14.0</a>, <a href=\"https://make.wordpress.org/core/2022/08/17/whats-new-in-gutenberg-13-9-17-august/\">13.9</a>, <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/\">13.8</a>, <a href=\"https://make.wordpress.org/core/2022/07/20/whats-new-in-gutenberg-13-7-20-july/\">13.7</a>, <a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/\">13.6</a>, <a href=\"https://make.wordpress.org/core/2022/06/22/whats-new-in-gutenberg-13-5-22-june/\">13.5</a>, <a href=\"https://make.wordpress.org/core/2022/06/10/whats-new-in-gutenberg-13-4-8-june/\">13.4</a>, <a href=\"https://make.wordpress.org/core/2022/05/26/whats-new-in-gutenberg-13-3-0-may-25/\">13.3</a>, <a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">13.2</a>, and <a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">13.1</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2><strong>Haiku Fun for RC2</strong></h2>\n\n\n\n<p><em>Two weeks from the launch </em><br><em>Constant improvements we make </em><br><em>Great outcomes await </em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em>Update Oct 25 12:45 UTC: This post has been updated to remove the reference to Gutenberg versions 14.3 and 14.2 being included in the 6.1 release. They will be included in a future release.</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:\"13646\";s: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: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.0.3 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/2022/10/wordpress-6-0-3-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:\"Mon, 17 Oct 2022 22:55:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"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=13618\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:358:\"WordPress 6.0.3 is now available! This release features several security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated. WordPress 6.0.3 is a short-cycle release. The next major release will be version 6.1 planned for November 1, 2022. If […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:6151:\"\n<p><strong>WordPress 6.0.3</strong> is now available!</p>\n\n\n\n<p>This release features several security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 6.0.3 is a short-cycle release. The next major release will be <a href=\"https://make.wordpress.org/core/6-1/\">version 6.1</a> planned for November 1, 2022.</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.0.3.zip\">download WordPress 6.0.3 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-0-3\">visit the HelpHub site</a>.</p>\n\n\n\n<h2>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>Stored XSS via wp-mail.php (post by email) – Toshitsugu Yoneyama of Mitsui Bussan Secure Directions, Inc. via JPCERT</li>\n\n\n\n<li>Open redirect in `wp_nonce_ays` – <a href=\"https://hackerone.com/devrayn\">devrayn</a></li>\n\n\n\n<li>Sender’s email address is exposed in wp-mail.php – Toshitsugu Yoneyama of Mitsui Bussan Secure Directions, Inc. via JPCERT</li>\n\n\n\n<li>Media Library – Reflected XSS via SQLi – Ben Bidner from the WordPress security team and Marc Montpas from Automattic independently discovered this issue</li>\n\n\n\n<li>CSRF in wp-trackback.php – Simon Scannell</li>\n\n\n\n<li>Stored XSS via the Customizer – Alex Concha from the WordPress security team</li>\n\n\n\n<li>Revert shared user instances introduced in <a href=\"https://core.trac.wordpress.org/changeset/50790\">50790</a> – Alex Concha and Ben Bidner from the WordPress security team</li>\n\n\n\n<li>Stored XSS in WordPress Core via Comment Editing – Third-party security audit and Alex Concha from the WordPress security team</li>\n\n\n\n<li>Data exposure via the REST Terms/Tags Endpoint – Than Taintor</li>\n\n\n\n<li>Content from multipart emails leaked – <a href=\"https://profiles.wordpress.org/kraftner\">Thomas Kräftner</a></li>\n\n\n\n<li>SQL Injection due to improper sanitization in `WP_Date_Query` – <a href=\"https://www.gold-network.ch\">Michael Mazzolini</a></li>\n\n\n\n<li>RSS Widget: Stored XSS issue – Third-party security audit</li>\n\n\n\n<li>Stored XSS in the search block – Alex Concha of the WP Security team</li>\n\n\n\n<li>Feature Image Block: XSS issue – Third-party security audit</li>\n\n\n\n<li>RSS Block: Stored XSS issue – Third-party security audit</li>\n\n\n\n<li>Fix widget block XSS – Third-party security audit</li>\n</ul>\n\n\n\n<h2>Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, and <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a> at mission control. Thanks to <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> and <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> for their help on package updates.</p>\n\n\n\n<p>WordPress 6.0.3 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver several 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-default\"><a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</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/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/voldemortensen/\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a>, <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a><a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a>, <a href=\"https://profiles.wordpress.org/tykoted/\">Teddy Patriarca</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, and <a href=\"https://profiles.wordpress.org/chesio/\">Česlav Przywara</a>.</p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Thanks to <a href=\'https://profiles.wordpress.org/peterwilsoncc/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>peterwilsoncc</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:\"13618\";s: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: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:79:\"WP Briefing: Episode 41: WordPress 6.1 Sneak Peek with Special Guest Nick Diego\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wordpress.org/news/2022/10/episode-41-wordpress-6-1-sneak-peek-with-special-guest-nick-diego/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 17 Oct 2022 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=13578\";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:112:\"Tune into episode 41 of the WordPress Briefing Podcast for a sneak peek into the upcoming WordPress 6.1 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: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/2022/10/WP-Briefing-041.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:\"Santana Inniss\";s: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:24900:\"\n<p>In the forty-first episode of the WordPress Briefing, peek into the upcoming WordPress 6.1 release with our host, Josepha Haden Chomphosy, and the release’s Editor Triage Lead, Nick Diego. </p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<p>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production: <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2>Guests</h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/ndiego/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></p>\n\n\n\n<h2>References</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/mobile/2022/10/04/call-for-testing-wordpress-for-android-20-9/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/mobile/2022/10/04/call-for-testing-wordpress-for-android-20-9/\">Call for Testing for WordPress for Android 20.9</a><br><a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-2-now-available/\" data-type=\"URL\" data-id=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-2-now-available/\">RC2 WordPress 6.1</a> <br><a href=\"https://make.wordpress.org/core/2022/10/10/multisite-improvements-in-wordpress-6-1/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/core/2022/10/10/multisite-improvements-in-wordpress-6-1/\">Multisite Improvements</a><br><a href=\"https://make.wordpress.org/core/2022/10/10/block-styles-generation-style-engine/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/core/2022/10/10/block-styles-generation-style-engine/\">Block Style Generation Tool</a><br><a href=\"https://make.wordpress.org/core/2022/10/10/changes-to-block-editor-preferences-in-wordpress-6-1/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/core/2022/10/10/changes-to-block-editor-preferences-in-wordpress-6-1/\">Editor Preferences Changes</a><br><a href=\"https://make.wordpress.org/core/2022/09/14/6-1-product-walk-through-recap/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/core/2022/09/14/6-1-product-walk-through-recap/\">WordPress 6.1 Walkthrough </a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13578\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00] </strong></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.</p>\n\n\n\n<p>I’m your host, Josepha Haden Chomphosy. Here we go. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:40] </strong></p>\n\n\n\n<p>And today I have with me Nick Diego. Welcome, Nick, to the WordPress Briefing.</p>\n\n\n\n<p><strong>[Nick Diego 00:00:44] </strong></p>\n\n\n\n<p>Thank you so much for having me.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:46] </strong></p>\n\n\n\n<p>Yeah. Before we get started, why don’t you tell me a bit about yourself, just kind of your history with WordPress and then what it is that you’ve been doing with the WordPress 6.1 release squad.</p>\n\n\n\n<p><strong>[Nick Diego 00:00:56]</strong></p>\n\n\n\n<p>Yeah, so I’m actually kind of new to working with WordPress full-time. Up until about June of last year, I was in the hospitality industry for a career of 10 years. But I always loved doing WordPress on the side. And after the long pandemic, I figured it was time to kind of pursue my passion and work with WordPress full-time.</p>\n\n\n\n<p>And that ultimately led to my current role as a developer advocate at WPEngine, where I focus primarily on WordPress and contribution to Core itself. And then I guess it was maybe March or April this year when <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, who I’ve worked with a ton, she asked me if I’d be interested in helping out on 6.0 as an Editor Triage Lead which was an awesome experience.</p>\n\n\n\n<p>And now I’m back for 6.1.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:37] </strong></p>\n\n\n\n<p>That’s excellent. I always like to hear about people who are coming to do repeat tours of duty.</p>\n\n\n\n<p><strong>[Nick Diego 00:01:43]</strong></p>\n\n\n\n<p>Yes, exactly.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:44] </strong></p>\n\n\n\n<p>I probably shouldn’t refer to working on WordPress releases as a tour of duty. However, I find that releases are so large and complex, and there are so many people in there now that working on them takes an entirely different skill set now than it used to take when WordPress was like 1% of the web.</p>\n\n\n\n<p>And so I think it’s a really big task, and I think it’s great when people were, like, that was either so good that I would do it again, or I would like a second go because I could do it better. Whichever way brings people to it. So, yeah.</p>\n\n\n\n<p><strong>[Nick Diego 00:02:18] </strong></p>\n\n\n\n<p>No, I was just gonna say that’s a great point because the Editor Triage Lead, which is the role that I currently have, was a brand new role for 6.0. The project kind of got so big that it kind of made sense to have a triage lead focused specifically on Gutenberg. Gutenberg’s such a big part of WordPress now.</p>\n\n\n\n<p>And so that’s where that role kind of came from, and now we’ve carried it over to 6.1. As the project grows, we need more people to come in and help make sure the release is as smooth as it can be. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:42]</strong></p>\n\n\n\n<p>Yes. Because of that promise of backward compatibility and all the things.</p>\n\n\n\n<p><strong>[Nick Diego 00:02:47]</strong></p>\n\n\n\n<p>Exactly.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:48] </strong></p>\n\n\n\n<p>Cool. So, by the time this releases, if I recall correctly, we will have passed RC2, or RC2 is coming the next day or something like that. We’re right around the Release Candidate two. So you have been doing this for quite some time on this particular release. So far, what is the feature that you’re most excited about that’s going out in the 6.1 release?</p>\n\n\n\n<p><strong>[Nick Diego 00:03:09] </strong></p>\n\n\n\n<p>So, this is going to sound really boring, but it’s actually incredibly exciting. So, the most exciting quote-unquote feature that I’m excited about is the improved consistency and standardization of block controls that are coming in 6.1. So things like typography and color and borders and dimensions.</p>\n\n\n\n<p>These are things and tools that we’ve had in a lot of core blocks, but it hasn’t been consistent throughout. And a ton of work has been done in 6.1 to establish that consistency. We’re not a hundred percent there, but typography, I think we’re at like 85% of all core blocks now support all the typography controls, and with each release as we head to 6.2, we’ll improve on that.</p>\n\n\n\n<p>But it’s really great for theme builders, theme designers, and users to be able to control the look and feel blocks consistently throughout the editor.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:58] </strong></p>\n\n\n\n<p>I was gonna immediately answer you earlier with like, there are no boring answers, there are no boring improvements. And as you were explaining why it is that you kind of thought it might be considered boring, I think it’s fair to say that anytime that you’re increasing the consistency and you’re increasing the confidence between what you saw on the back end and what you actually shipped on the front end– anytime you’re doing that, I think that that is exciting in the prove the negative way. </p>\n\n\n\n<p>If you think about the negative excitement that occurs when you have published something, and it looks one way in the back end, and then it looks totally different on the front end, and the panic you feel when you have to fix. Not having that is a really big step up, I think. And so anything that provides more consistency for people who are using WordPress, people who are building with WordPress, I always find exciting. But also, like, I’m an office person, and so I would find office things exciting, right?</p>\n\n\n\n<p><strong>[Nick Diego 00:04:53] </strong></p>\n\n\n\n<p>It creates a more delightful experience. I do a lot of work on the Training team, doing educational things, and we teach people how to change typography and change color. Once they learn how to do it in one block, if they can take that same skill set and apply it to any other block, it’s that light bulb moment. They understand they know how to manipulate and use WordPress to its fullest. So adding that consistency really helps to level up users.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:15] </strong></p>\n\n\n\n<p>Yeah, I’m gonna take us off track a little bit and just ask a general question here. Like, I remember the first time that I was working with what was a site, I guess, qualified for a site at the time. And I remember the first time that I discovered that I could change the look and feel with HTML and CSS, and I did that.</p>\n\n\n\n<p>Also was like, well, I accept my fate. Whatever happens, if I kill everything I’ve ever written, that is just how it’ll be. Like the sheer terror of all of that is so different now. Do you recall that first moment where you’re like, Oh, I do have some power over this? I have some control over this, and whether you also found it scary.</p>\n\n\n\n<p><strong>[Nick Diego 00:05:52]</strong></p>\n\n\n\n<p>So I came to WordPress kinda as a hobby and website development kind of as a hobby. So I was kind of always in that tinkering phase, or I wasn’t building something for anyone else. I was in a safe place to destroy whatever I was working on with my tinkering. So I never really quite had that fear, but I can definitely see it from the perspective of building something for somebody else.</p>\n\n\n\n<p>But you’re right, the editor and the controls that we have, and you know, now make it a lot easier to kind of manipulate and exert your creative desires in WordPress than it was before with CSS.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:23] </strong></p>\n\n\n\n<p>I love the phrase ‘I was safe to destroy things, ’ and if I can figure out a way to make it a tagline for something, I will.</p>\n\n\n\n<p><strong>[Nick Diego 00:06:30] </strong></p>\n\n\n\n<p>Exactly.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:31] </strong></p>\n\n\n\n<p>Alright. So during your second time around here on the release squad with 6.1, what have been the bright spots of that experience, and have there been any unexpected challenges of being on the release squad?</p>\n\n\n\n<p><strong>[Nick Diego 00:06:44]</strong></p>\n\n\n\n<p>Again, I come to WordPress from, you know, from a different career. It’s kind of a passion of mine to be working with WordPress. So I kinda have a unique experience than maybe some others. And when I approach WordPress, there’s always that tendency to say, ‘why doesn’t it do this?’ Or ‘why don’t they do this?’ And I’ve always been the person…, well, it’s open source. We, we, we can, we can</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:05] </strong></p>\n\n\n\n<p>…can do it</p>\n\n\n\n<p><strong>[Nick Diego 00:07:05] </strong></p>\n\n\n\n<p>…we can do it. And so that’s kind of how I approach things. Now, of course, you know, I have the privilege of time to do that. Not everybody does, but one of the unexpected bright spots about working in a release squad is understanding how it all works. </p>\n\n\n\n<p>How does WordPress actually get built? What is the process that it goes through? It was just eye-opening to me, and I really got a shout-out, Anne, for inviting me to be on 6.0. It brought me in. I learned so much about it, and now I’m just excited to keep working on these releases.</p>\n\n\n\n<p>But a release is hard. You know, it’s a… WordPress is huge. There are a lot of moving parts, there are a lot of things going on. Right now, we’re trying to get everything ready for the first release candidate. So being on the release squad is not an easy job. But it’s exciting, it’s fun, and you really feel like you’re part of that ‘we’ really helping to build WordPress.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:53] </strong></p>\n\n\n\n<p>One of the things that I hope that people have learned from any time that they spent working with me is that like we understand here in the WordPress open source project, and I believe that all open source projects must understand this, but like every change that you make, if there are things that are dependent on it, which is gonna be true for most of us, we’ll have intended consequences and also unexpected consequences, and unintended, unexpected consequences. </p>\n\n\n\n<p>And so I’ve always felt like the thing that really makes the biggest difference about how we do open source in WordPress is that, for the most part, we have a concept of where the most likely changes are going to happen across our entire ecosystem.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:40] </strong></p>\n\n\n\n<p>We have a better understanding, at least compared to when I got here, a better understanding of how interconnected it all is. And so you’ve got this change here, and it looks small, but it’s gonna have this positive or negative impact as you kind of work your way out from it. And so I think that that is an interesting thing, and certainly, you get a really clear concept of it in the release squad, I think.</p>\n\n\n\n<p><strong>[Nick Diego 00:09:02]</strong></p>\n\n\n\n<p>Oh, absolutely. If you were to build something like the block editor without caring at all about backward compatibility, you’d be done by now, right? I mean, so much of what we do is concerning ourselves with making sure that everybody who’s on a classic theme or hybrid theme or whatever it might be that they continue to use WordPress in a safe and stable way.</p>\n\n\n\n<p>This is part of being such a large content management system.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:09:24] </strong></p>\n\n\n\n<p>So you already told us the feature that you’re most excited about, and so now I’m gonna ask you about what feature or what bug fix has the most notable improvements that are coming to 6.1. This is a little different as in, like, there’s the thing you’re excited about, which is an office thing, but like a thing that is maybe not new but has the biggest delta, the biggest change to anyone’s experience of it.</p>\n\n\n\n<p><strong>[Nick Diego 00:09:51] </strong></p>\n\n\n\n<p>Yeah, so obviously, in 5.9, we introduced full site editing, and 6.0 was a natural progression from that with more and more features. Now it’s safe to say that there’s only a small fraction of websites that are using the whole full site editing of or block themes, all that kind of stuff. One of the hangups about that was managing templates inside of the site editor.</p>\n\n\n\n<p>You could add the files to your theme, which would then show up in the site editor. But there wasn’t a direct way to add more complicated templates within the site editor itself. That is changing in 6.1. So now you actually have the functionality to install something like 2023, which is the new core theme, and build out all these very complicated templates within the UI of the site editor that you could not have done before.</p>\n\n\n\n<p><strong>[Nick Diego 00:10:38]</strong> </p>\n\n\n\n<p>I personally think that the biggest benefit of full site editing is really to empower no-code or low-code users. And the ability to add these templates directly in the UI really levels them up. Because now, you can do all that complicated stuff that you normally would need to be adding to theme files and jumping into the code. You can do that within the site editor now, which I think is fantastic.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:59] </strong></p>\n\n\n\n<p>That’s great. And just a general caveat, anytime that we talk about anything that’s very developer-y or very no code-y, I think it’s always worth mentioning, yes, a lot of what we’re trying to do with the block editor is to just kind of give some power back to folks who cannot find the time to become a developer or don’t have the inclination. They don’t want to do that. </p>\n\n\n\n<p>But that does not mean that no code is ever involved in WordPress. It’s still a software. You can still do very complicated things with it. And if you are a developer, you should not think to yourself, ‘oh now that it’s being available to low code/no code users, that means you don’t want me.’</p>\n\n\n\n<p>Like, that’s not at all what’s happening. You can do very complicated things still. </p>\n\n\n\n<p><strong>[Nick Diego 00:11:42] </strong></p>\n\n\n\n<p>A hundred percent. A hundred percent. Absolutely.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:45] </strong></p>\n\n\n\n<p>Alright, so that brings us to our final question here because we like to stay as true to the name as possible here on the WP Briefing. If someone were wanting to get involved with the next release, so WP 6.2, how would they do that?</p>\n\n\n\n<p><strong>[Nick Diego 00:12:01]</strong></p>\n\n\n\n<p>So, talk to Anne, and she’ll get you set up. No, I’m just kidding. So at the, after each release, there’s a posting that goes out that lists all the different release teams, and you can just put your name out there and ask to be, you know, for consideration to be part of the team.</p>\n\n\n\n<p>However, I will say that the best thing you can do right now is help with 6.1. You don’t necessarily need to be a release lead to do that testing, helping with bug fixes. Reach out to me. Reach out to other release leads, and we’ll get you involved and engaged with the release. That will give you a really good framework to start working and become a release lead for 6.2.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:12:37] </strong></p>\n\n\n\n<p>Yeah. I think we talked maybe two or three episodes ago, or it could be more than that, I’ll never know, about the release squad, like the group that’s doing that. In the event you think to yourself, ‘there’s no way in a million years that I’m gonna just show up tomorrow and be part of the release squad,’ I heard what they said in the first question/answer moment– that’s fine, too. </p>\n\n\n\n<p>As Nick mentioned, you can always get involved with testing, you can get involved with triage. Those are areas where any feedback at all is valuable because we can get better information about what worked and didn’t, what was expected versus what happened. And that type of information is where all of our co-creators of the WordPress software–really, we rely on what you all are pointing out to us. </p>\n\n\n\n<p>If you’re not shining spotlights on the most painful parts of your experience, sometimes we don’t necessarily know that that’s a pain point for anyone.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:13:34]</strong> </p>\n\n\n\n<p>And so yeah, that’s a great place to start. If you are more of a writer, technical or prose, there are different spaces you can go to, like keep our docs up to date or make sure that people know that changes are coming at all in WordPress because that’s a thing. If you are a backend developer, we have a million things you can do because that’s just all day, every day, for WordPress.</p>\n\n\n\n<p>It’s just all the deep backend work. And so yeah.</p>\n\n\n\n<p><strong>[Nick Diego 00:13:58] </strong></p>\n\n\n\n<p>I did want to mention that, you know, being on the release team does not necessarily mean that you’re incredibly technical. We have a documentation lead, we have a design lead, you know, a communication lead. So there’s a lot of different roles in the team that, you know, across all disciplines.</p>\n\n\n\n<p>So don’t think if you’re not a hardcore developer, that precludes you from being on the team.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:14:19] </strong></p>\n\n\n\n<p>Yeah, and if you’re really good with common sense and working fully remotely, you can be the release coordinator. I can tell you because I did that for 5.0. It was a big job. It was our, it was the first time we had a release squad as opposed to just like the release lead.</p>\n\n\n\n<p>Because there was just so much that was going into that and so much riding on it. And like you said in some other answer that you gave like if you were to just be like, we’re shutting everything down and rewriting this in six months, and I hope you can come with us on it. Like a lot of open source projects do it that way.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:14:51]</strong> </p>\n\n\n\n<p>And that is a choice, and we made the opposite choice. And so we’re bringing all of our co-conspirators with us, all of our co-creators of WordPress. That’s the hope all the time. Making sure that they have enough information, that they feel safe to destroy things, enough information, and skills about how to get out of it, that they always feel some high confidence in what they’re trying to do versus what they actually did do.</p>\n\n\n\n<p>So, yeah, excellent. Nick, do you have any final thoughts for our listeners?</p>\n\n\n\n<p><strong>[Nick Diego 00:15:20] </strong></p>\n\n\n\n<p>Nope. I just hope everybody goes out and downloads 6.1 and enjoys it as much as I am.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:15:25] </strong></p>\n\n\n\n<p>Yeah, go check it out. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:15:28] </strong></p>\n\n\n\n<p>That brings us now to our small list of big things. And actually, it is a pretty big list today, but still pretty big things too. So first up, we have a call for testing that is out, and it is for our Android users.</p>\n\n\n\n<p>There is a call for testing for WordPress for Android 20.9, and I feel like we don’t get a lot of calls for testing for Android devices. And so if you have been feeling left out or just like we don’t always have that kind of mobile testing available, this is the opportunity for you. </p>\n\n\n\n<p>The next thing is that tomorrow, we have RC2, release candidate two for WordPress 6.1.</p>\n\n\n\n<p>That’s coming out on October 18th. There will be a link in the show notes, but that means if you write a plugin or a theme or have anything that kind of extends the core of WordPress, now is the time to start testing anything that might be a bug or represent a breaking change and make sure that you file those bugs so that we can get things as settled and excellent as possible.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:16:40] </strong></p>\n\n\n\n<p>And speaking of Word points, uh, WordPress 6.1, not Word point, WordPress 6.1. I actually have three changes that I think are going to represent some pretty big changes for folks. I will have links to all of these in the show notes. If you don’t know where the show notes are, it’s on wordpress.org/news/podcast.</p>\n\n\n\n<p>So the three things that I think are gonna be big, worthwhile things. The first one is multisite improvements, and the second one will be the style engine that’s block styles generation tool, which will ship in Core and I think is really important for y’all to take a look at. And then also there are some changes coming to the block editor preferences.<br><br>Like I said, links to all of those are going to be in the show notes, and so they should be pretty easy for you to find. But also, if you want to just get a general look at everything that’s coming in 6.1, we did a walkthrough that I will link to in the show notes as well, and you can get a full understanding of what is going to be coming early in November.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:17:45] </strong></p>\n\n\n\n<p>And that, my friends, is your small list –big list– of big things. Thanks for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosy, and I’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:\"13578\";s: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:41:\"The Month in WordPress – September 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/news/2022/10/the-month-in-wordpress-september-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Oct 2022 10:07: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: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=13596\";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:179:\"September was an exciting month with the return of many in-person WordCamps, WordPress Translation Day, and preparations for WordPress 6.1. Let\'s catch up on all things 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: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:61:\"https://wordpress.org/news/files/2022/10/tt3_variations-1.mp4\";s:6:\"length\";s:6:\"996018\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s: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:15456:\"\n<p>September was an exciting month with the return of many in-person WordCamps, WordPress Translation Day, and preparations for WordPress 6.1. Contributors across teams continue to work hard to ensure that the last major release of the year is the best it can be for everyone. Let’s catch up on all things WordPress.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2>Countdown to WordPress 6.1: Coming November 1, 2022</h2>\n\n\n\n<p><strong>WordPress 6.1 is scheduled for release on November 1, 2022</strong>—less than three weeks away. Following the beta releases in September, the <a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\">first release candidate (RC1) is now ready for download and testing</a>.</p>\n\n\n\n<p>Members of the release squad hosted a casual walk-through of some of the expected WordPress 6.1 features last month. <a href=\"https://make.wordpress.org/core/2022/09/14/6-1-product-walk-through-recap/\">The recording and transcript are available in this post</a>.</p>\n\n\n\n<p>This next major release focuses on increased control for a more intuitive site and content creation experience, and will be bundled with a new default block theme, <strong>Twenty Twenty-Three (TT3)</strong>. This theme comes with <a href=\"https://make.wordpress.org/design/2022/09/07/tt3-default-theme-announcing-style-variation-selections/\">10 style variations designed by community members</a> that you can easily switch between to customize the look and feel of your site.</p>\n\n\n\n<p>Other exciting updates include <a href=\"https://make.wordpress.org/core/2022/09/26/core-editor-improvement-catalyst-for-creativity/\">enhanced consistency of design tools across blocks</a>, a <a href=\"https://make.wordpress.org/core/2022/08/25/core-editor-improvement-refining-the-template-creation-experience/\">refined</a> and <a href=\"https://make.wordpress.org/core/2022/07/21/core-editor-improvement-deeper-customization-with-more-template-options/\">expanded template creation experience</a>, improved Quote and List blocks, and support for <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/#fluid-typography-support\">fluid typography</a>.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2022/10/tt3_variations-1.mp4\"></video><figcaption class=\"wp-element-caption\"><em>Selected style variations for the Twenty Twenty-Three theme.</em></figcaption></figure>\n\n\n\n<p><strong>Want to know what else is new in WordPress 6.1?</strong> Check out these resources for more details:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/09/24/roadmap-to-6-1-core-companion/\">Roadmap to 6.1: Core Companion</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">WordPress 6.1 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/\">WordPress 6.1 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/\">Performance Field Guide for WordPress 6.1</a></li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Take part in this release by <a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">helping to test key features</a> or <a href=\"https://make.wordpress.org/polyglots/2022/10/11/wordpress-6-1-ready-to-be-translated/\">translating WordPress 6.1</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Gutenberg versions 14.1, 14.2, and 14.3 are out</h2>\n\n\n\n<p>Three new versions of Gutenberg have been released since last month’s edition of The Month in WordPress:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\"><strong>Gutenberg 14.1</strong></a> shipped on September 15, 2022. It adds typography and spacing support for many blocks, continuing efforts to consolidate design tools in blocks. It also includes improvements to the Navigation block and the content-locking experience. This is the last version of Gutenberg that will merge into WordPress 6.1, which will include updates from Gutenberg 13.1 to 14.1.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/09/30/whats-new-in-gutenberg-14-2-28-september/\"><strong>Gutenberg 14.2</strong></a> comes with writing flow improvements, a more polished Calendar block, and autocompletion for links. It was released on September 28, 2022.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/\"><strong>Gutenberg 14.3</strong></a> is available for download as of October 12, 2022. This version makes it easier to navigate text blocks with <code>alt + arrow</code> keyboard combinations, and brings an improved drag-and-drop functionality for images, among other updates.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>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:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>WordPress Translation Day</h2>\n\n\n\n<p>On September 28, 2022, the Polyglots community celebrated <a href=\"https://wptranslationday.org/\"><strong>WordPress Translation Day</strong></a> (WPTD) with some global events throughout the week, including an <a href=\"https://wordpress.tv/2022/09/27/jesus-amieiro-alex-kirk-translate-wordpress-org-feedback-tool-walk-through/\">overview of the GlotPress feedback tool</a>. In addition, there were 13 local events in 11 different languages and across four continents.</p>\n\n\n\n<p>The Training Team joined the celebration by hosting a day-long event to help new contributors translate materials on learn.wordpress.org.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/polyglots/2022/10/04/2022-wordpress-translation-day-recap/\">Check out this recap</a> for more highlights from the event.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Team updates: Dropping security updates for WP 3.7 – 4.0, a new developer-focused course, and more</h2>\n\n\n\n<ul>\n<li>The WordPress Security Team will no longer provide <a href=\"https://wordpress.org/news/2022/09/dropping-security-updates-for-wordpress-versions-3-7-through-4-0/\">security updates for WordPress versions 3.7 through 4.0</a> as of December 2022.</li>\n\n\n\n<li>The first developer-focused course, <a href=\"https://learn.wordpress.org/course/using-the-wordpress-data-layer/\">Using the WordPress Data Layer</a>, is live on Learn WordPress.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/community/2022/09/29/meetup-reactivation-update/\">Global Meetup Reactivation project</a> gathered 39 supporters worldwide so far. As a result of their efforts, 117 meetup groups have reactivated or plan to reactivate in 2022! </li>\n\n\n\n<li>Learn more about <code>do_action</code>’s charity hackathons and how to host one in <a href=\"https://make.wordpress.org/community/2022/09/22/meetup-organizer-newsletter-september-2022/\">the latest edition of the Meetup Organizer Newsletter</a>.</li>\n\n\n\n<li>Would you like to help create content for the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> platform? The Training Team shared a post on <a href=\"https://make.wordpress.org/training/2022/09/30/become-an-online-workshop-facilitator-or-tutorial-presenter-today/\">how to become an online workshop facilitator or tutorial presenter</a>.</li>\n\n\n\n<li>The WebP proposal was pulled from the upcoming WordPress 6.1 release in response to <a href=\"https://make.wordpress.org/core/2022/09/11/webp-in-core-for-6-1/\">this post and subsequent discussions</a>. Users can still get this feature using the <a href=\"https://wordpress.org/plugins/performance-lab/\">Performance Lab plugin</a>.</li>\n\n\n\n<li>WordPress co-founder Matt Mullenweg suggested <a href=\"https://make.wordpress.org/core/2022/09/11/canonical-plugins-revisited/\">revisiting canonical plugins</a> and adopting a plugin-first approach when developing new features for core.</li>\n\n\n\n<li>The Plugin Team <a href=\"https://make.wordpress.org/plugins/2022/09/13/heroku-free-tier-being-retired/\">reminds plugin authors using Heroku’s free services to update their services</a> after the company announced the removal of their free plans.</li>\n\n\n\n<li>The Openverse Team <a href=\"https://make.wordpress.org/openverse/2022/09/13/community-meeting-recap-13-september-2022/\">removed the ‘beta’ status</a> from audio support. Also, the index <a href=\"https://make.wordpress.org/openverse/2022/09/05/openverse-biweekly-update-september-5th/\">now includes iNaturalist</a>, making it easy to discover CC-licensed images of flora, fauna, and nature contributed by this community of scientists and naturalists.</li>\n\n\n\n<li>The Hosting and Documentation Teams are collaborating on the creation of a new <a href=\"https://make.wordpress.org/hosting/2022/09/07/wordpress-advanced-administration-handbook/\">WordPress Advanced Administration Handbook</a>.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Want to create diverse and inclusive events that make the WordPress community stronger, but not sure where to get started? <a href=\"https://make.wordpress.org/community/tag/wpdiversity/\">Join WPDiversity to learn more about upcoming workshops</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Feedback & testing requests</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2022/09/27/15-oct-survey-deadline/\"><strong>Last call to complete the Meetup Annual Survey</strong></a>! Help strengthen this global WordPress program by sharing your feedback by October 15, 2022.</li>\n\n\n\n<li>The Core Team is seeking <a href=\"https://make.wordpress.org/core/2022/10/10/seeking-proposals-for-interop-2023/\">proposals for Interop 2023</a>. Interop is an effort to improve interoperability across the three major web browser engines (Chromium, WebKit, and Gecko). You can submit yours until October 15, 2022.</li>\n\n\n\n<li>Don’t miss this call for testing on <a href=\"https://make.wordpress.org/themes/2022/09/12/testing-and-feedback-for-using-block-based-template-parts-in-classic-themes/\">using block-based template parts in classic themes</a>.</li>\n\n\n\n<li>The Community Team is gathering feedback on <a href=\"https://make.wordpress.org/community/2022/09/30/help-improve-the-make-community-contributor-day-onboarding/\">onboarding experiences at Contributor Days</a>.</li>\n\n\n\n<li>Version 20.9 of WordPress for <a href=\"https://make.wordpress.org/mobile/2022/10/04/call-for-testing-wordpress-for-android-20-9/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/10/04/call-for-testing-wordpress-for-ios-20-9/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/news/2022/10/episode-40-all-things-testing-with-special-guests-anne-mccarthy-and-brian-alexander/\">Tune in to the latest episode of WP Briefing</a> to hear guests Anne McCarthy and Brian Alexander discuss their work on the Testing Team and how you can get involved.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Event updates & WordCamps</h2>\n\n\n\n<ul>\n<li>The last batch of <a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia 2023</a> tickets will be released on October 19, 2022. The organizing team is also <a href=\"https://asia.wordcamp.org/2023/call-for-contributors-stories/\">calling for contributors’ stories</a>.</li>\n\n\n\n<li><a href=\"https://us.wordcamp.org/2022/\">WordCamp US (WCUS) 2022</a> was successfully held last month in San Diego, California. Following two days of presentations, workshops, and a <a href=\"https://make.wordpress.org/project/2022/09/19/wcus-2022-qa/\">Q&A session with Matt Mullenweg</a>, more than 300 attendees participated in the <a href=\"https://make.wordpress.org/updates/2022/09/18/wordcamp-us-contributor-day-2022-recap/\">Contributor Day</a>. National Harbor, Maryland, will host <a href=\"https://us.wordcamp.org/2022/announcing-wordcamp-us-2023/\">next year’s WordCamp US</a> and a Community Summit on August 23-25, 2023.</li>\n\n\n\n<li>In addition to WCUS, four in-person WordCamps took place in September in <a href=\"https://jinja.wordcamp.org/2022/\">Jinja (Uganda)</a>, <a href=\"https://kathmandu.wordcamp.org/2022/\">Kathmandu (Nepal)</a>, <a href=\"https://netherlands.wordcamp.org/2022/\">The Netherlands</a>, and <a href=\"https://pontevedra.wordcamp.org/2022/\">Pontevedra (Spain)</a>. And more WordPress events are on the schedule for the rest of October:\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://valencia.wordcamp.org/2022/\">WordCamp Valencia</a>, Spain on October 21-22, 2022</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e8-1f1ff.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://brno.wordcamp.org/2022/\">WordCamp Brno</a>, Czech Republic on October 22, 2022</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1eb-1f1f7.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://lyon.wordcamp.org/2022/\">WordCamp Lyon</a>, France on October 28, 2022</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Curious about attending a WordCamp event? Listen to <a href=\"https://wordpress.org/news/2022/09/episode-39-contributor-stories-live-from-wordcamp-us/\">contributor stories from WordCamp US 2022</a> on why they use WordPress and go to WordCamps.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story that 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 edition of The Month in WordPress: </em><a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a>, <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a>, <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/robinwpdeveloper/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>robinwpdeveloper</a>, <a href=\'https://profiles.wordpress.org/santanainniss/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>santanainniss</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</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:\"13596\";s: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: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:53:\"WordPress 6.1 Release Candidate 1 (RC1) 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Oct 2022 20:53: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:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13579\";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:320:\"The first release candidate (RC1) for WordPress 6.1 is now available! This is an important milestone in the 6.1 release cycle. “Release Candidate” means that this version of WordPress is ready for release! Before the official release date, time is set aside for the community to perform final reviews and help test. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Dan Soschin\";s: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:9468:\"\n<p>The first release candidate (RC1) for WordPress 6.1 is now available!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>This is an important milestone in the 6.1 release cycle. “Release Candidate” means that this version of WordPress is ready for release! Before the official release date, time is set aside for the community to perform final reviews and help test. Since the WordPress ecosystem includes thousands of plugins and themes, it is important that everyone checks to see if anything was missed along the way. That means the project would <em>love</em> your help.</p>\n\n\n\n<p>WordPress 6.1 is planned for official release on November 1st, 2022, three weeks from today. </p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test RC1 on a test server and site. </p>\n\n\n\n<p>You can test WordPress 6.1 RC1 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.1-RC1.zip\">RC1 version (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use the following WP-CLI command:</p>\n\n\n\n<p><code>wp core update --version=6.1-RC1</code></p>\n\n\n\n<p>Additional information on the <a href=\"https://make.wordpress.org/core/6-1/\">6.1 release cycle is available here</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-1/\">6.1-related developer notes</a> in the coming weeks detailing all upcoming changes.</p>\n\n\n\n<h2>What’s in WordPress 6.1 RC1?</h2>\n\n\n\n<p>Since Beta 3, approximately 100 items have been addressed, bringing the total count to more than 2,000 updates since WordPress 6.0 in May of 2022. </p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.1\">GitHub tickets</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=10%2F04%2F2022..10%2F11%2F2022&resolution=fixed&milestone=6.1&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=id\">Trac tickets</a> </li>\n</ul>\n\n\n\n<p>WordPress 6.1 is the third major release for 2022, following 5.9 and 6.0, released in January and May of this year, respectively.</p>\n\n\n\n<h3><strong>WordPress 6.1 highlights for end-users</strong></h3>\n\n\n\n<ul>\n<li>Default theme powered by 10 unique style variations (<a href=\"https://make.wordpress.org/design/2022/09/07/tt3-default-theme-announcing-style-variation-selections/\">learn more</a>)</li>\n\n\n\n<li>More design tools in more blocks (<a href=\"https://github.com/WordPress/gutenberg/issues/43241\">learn more</a>)</li>\n\n\n\n<li>Expanded and refined <a href=\"https://make.wordpress.org/core/2022/08/25/core-editor-improvement-refining-the-template-creation-experience/\">template experience</a> and <a href=\"https://make.wordpress.org/core/2022/07/21/core-editor-improvement-deeper-customization-with-more-template-options/\">template options</a></li>\n\n\n\n<li>More intuitive document settings experience</li>\n\n\n\n<li>Improved quote and list blocks with inner block support</li>\n\n\n\n<li>More robust placeholders for various blocks</li>\n\n\n\n<li>New modal interfaces and preferences improvements</li>\n\n\n\n<li>Automatic navigation block selection with fallbacks and easier menu management</li>\n\n\n\n<li>Apply locking settings to all inner blocks in one click</li>\n\n\n\n<li>Improvements to the block theme discovery experience</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/\">Accessibility updates</a>, with more than 60 resolved tickets</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/\">Performance updates</a>, with more than 25 resolved tickets</li>\n</ul>\n\n\n\n<h3><strong>WordPress 6.1 highlights for developers</strong></h3>\n\n\n\n<ul>\n<li>Opt into appearance tools to make any theme more powerful</li>\n\n\n\n<li>New iteration on the style system</li>\n\n\n\n<li>Add starter patterns to any post type (<a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/#post-type-patterns\">learn more</a>)</li>\n\n\n\n<li>Evolution of layout options including a new constrained option and the ability to disable layout options</li>\n\n\n\n<li>Content lock patterns for more curation options</li>\n\n\n\n<li>Expanded support for query loop blocks</li>\n\n\n\n<li>Allow the use of block-based template parts in classic themes (<a href=\"https://make.wordpress.org/themes/2022/09/12/testing-and-feedback-for-using-block-based-template-parts-in-classic-themes/\">give feedback</a>)</li>\n\n\n\n<li>Filter <code>theme.json</code> data (<a href=\"https://developer.wordpress.org/block-editor/reference-guides/filters/global-styles-filters/\">learn more</a>)</li>\n\n\n\n<li>Fluid typography allows for more responsiveness (<a href=\"https://make.wordpress.org/themes/2022/08/15/testing-and-feedback-for-the-fluid-typography-feature/\">give feedback</a>)</li>\n\n\n\n<li>Ability to style elements inside blocks like buttons, headings, or captions in <code>theme.json</code></li>\n</ul>\n\n\n\n<p><em>Please note that all features listed in this post are subject to change before the final release</em>.</p>\n\n\n\n<h2>Plugin and theme developers</h2>\n\n\n\n<p>All plugin and theme developers should test their respective extensions against WordPress 6.1 RC1 and update the “<em>Tested up to”</em> version in their readme file to 6.1. If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so these items can be investigated further prior to the final release date of November 1st.</p>\n\n\n\n<h2>Translate WordPress</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 6.1 release cycle.</p>\n\n\n\n<h2>Keep WordPress bug-free – help with testing</h2>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute. <a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">This detailed guide</a> is an excellent start if you have never tested a beta release.</p>\n\n\n\n<p>Testing helps ensure that this and future releases of WordPress are as stable and issue-free as possible. Anyone can take part in testing – regardless of prior experience.</p>\n\n\n\n<p>Want to know more about testing releases like this one? Read about the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join a <a href=\"https://wordpress.slack.com/messages/core-test/\">core-test channel</a> on the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack workspace</a>.</p>\n\n\n\n<p>If you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>To review features in the Gutenberg releases since WordPress 6.0 (the most recent major release of WordPress), access the <em>What’s New In Gutenberg</em> posts for <a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\">14.1</a>, <a href=\"https://make.wordpress.org/core/2022/09/01/whats-new-in-gutenberg-14-0-31-august/\">14.0</a>, <a href=\"https://make.wordpress.org/core/2022/08/17/whats-new-in-gutenberg-13-9-17-august/\">13.9</a>, <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/\">13.8</a>, <a href=\"https://make.wordpress.org/core/2022/07/20/whats-new-in-gutenberg-13-7-20-july/\">13.7</a>, <a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/\">13.6</a>, <a href=\"https://make.wordpress.org/core/2022/06/22/whats-new-in-gutenberg-13-5-22-june/\">13.5</a>, <a href=\"https://make.wordpress.org/core/2022/06/10/whats-new-in-gutenberg-13-4-8-june/\">13.4</a>, <a href=\"https://make.wordpress.org/core/2022/05/26/whats-new-in-gutenberg-13-3-0-may-25/\">13.3</a>, <a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">13.2</a>, and <a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">13.1</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>Haiku Fun for RC1</h2>\n\n\n\n<p>Languages abound<br>Test today, releases soon<br>Freedom to publish</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</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:\"13579\";s: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: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:34:\"WordPress 6.1 Beta 3 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2022/10/wordpress-6-1-beta-3-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Oct 2022 17:55:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13555\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"WordPress 6.1 Beta 3 is now available for download and testing.\n \nLearn how you can help test WordPress!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s: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:5709:\"\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><strong><em>WordPress 6.1 Beta 3 is now available for download and testing.</em></strong></p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test Beta 3 on a test server and site. </p>\n\n\n\n<p>You can test WordPress 6.1 Beta 3 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.1-beta3.zip\">Beta 3 version (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use the following WP-CLI command:</p>\n\n\n\n<p><code>wp core update --version=6.1-beta3</code></p>\n\n\n\n<p>The current target for the final release is November 1, 2022, which is about four weeks away. </p>\n\n\n\n<p>Additional information on the <a href=\"https://make.wordpress.org/core/6-1/\">6.1 release cycle is available</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-1/\">6.1-related developer notes</a> in the coming weeks detailing all upcoming changes.</p>\n\n\n\n<h2><strong>Keep WordPress bug-free – help with testing</strong></h2>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute. This detailed guide is an excellent start if you have never tested a beta release before.</p>\n\n\n\n<p>Testing helps ensure that this and future releases of WordPress are as stable and issue-free as possible. Anyone can take part in testing – especially great WordPress community members like you.</p>\n\n\n\n<p>Want to know more about testing releases like this one? Read about the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join a <a href=\"https://wordpress.slack.com/messages/core-test/\">core-test channel</a> on the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack workspace</a>.</p>\n\n\n\n<p>If you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>To review features in the Gutenberg releases since WordPress 6.0 (the most recent major release of WordPress), access the <em>What’s New In Gutenberg</em> posts for <a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\">14.1</a>, <a href=\"https://make.wordpress.org/core/2022/09/01/whats-new-in-gutenberg-14-0-31-august/\">14.0</a>, <a href=\"https://make.wordpress.org/core/2022/08/17/whats-new-in-gutenberg-13-9-17-august/\">13.9</a>, <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/\">13.8</a>, <a href=\"https://make.wordpress.org/core/2022/07/20/whats-new-in-gutenberg-13-7-20-july/\">13.7</a>, <a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/\">13.6</a>, <a href=\"https://make.wordpress.org/core/2022/06/22/whats-new-in-gutenberg-13-5-22-june/\">13.5</a>, <a href=\"https://make.wordpress.org/core/2022/06/10/whats-new-in-gutenberg-13-4-8-june/\">13.4</a>, <a href=\"https://make.wordpress.org/core/2022/05/26/whats-new-in-gutenberg-13-3-0-may-25/\">13.3</a>, <a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">13.2</a>, and <a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">13.1</a>.</p>\n\n\n\n<p>This release contains more than 350 enhancements and 350 bug fixes for the editor, including more than <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=6.1&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">300 tickets for WordPress 6.1 core</a>. More fixes are on the way in the remainder of the 6.1 release cycle.</p>\n\n\n\n<h2><strong>Some highlights</strong></h2>\n\n\n\n<p><em>Want to know what’s new in version 6.1? </em><a href=\"https://wordpress.org/news/2022/09/wordpress-6-1-beta-1-now-available/\"><em>Read the initial Beta 1 announcement</em></a><em> for some details, or check out the </em><a href=\"https://make.wordpress.org/core/2022/09/14/6-1-product-walk-through-recap/\"><em>product walk-through recording</em></a><em>.</em></p>\n\n\n\n<h2><strong>What’s new in Beta 3</strong></h2>\n\n\n\n<p>Nearly 100 issues have been resolved since Beta 2 was released last week. </p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.1\">Github tickets</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=09%2F27%2F2022..10%2F04%2F2022&resolution=fixed&milestone=6.1&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=id\">Trac tickets</a> (may include some overlap with Github)</li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>A Beta 3 haiku for thee</h2>\n\n\n\n<p>Beta time done soon<br>Gather up your WordPress sites<br>RC then we ship</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:\"13555\";s: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:97:\"WP Briefing: Episode 40: All Things Testing with Special Guests Anne McCarthy and Brian Alexander\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"https://wordpress.org/news/2022/10/episode-40-all-things-testing-with-special-guests-anne-mccarthy-and-brian-alexander/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Oct 2022 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=13551\";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:171:\"On this week\'s episode of the WP Briefing, Josepha is joined by special guests Anne McCarthy and Brian Alexander to discuss all thing testing within the WordPress project!\";s: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:51:\"https://wordpress.org/news/files/2022/09/WPB040.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:\"Santana Inniss\";s: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:36698:\"\n<p>In the fortieth episode of the WordPress Briefing, Josepha Haden Chomphosy sits down with special guests Anne McCarthy and Brian Alexander to discuss the Testing Team and how to get started with testing in the WordPress project. </p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<p>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production: <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2>Guests</h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/annezazu/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a><br><a href=\"https://profiles.wordpress.org/ironprogrammer/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a></p>\n\n\n\n<h2>References</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">WordPress 6.1 Testing</a><br><a href=\"https://make.wordpress.org/test/handbook/test-reports/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/test/handbook/test-reports/\">Testing Reports w/ Template</a><br><a href=\"https://make.wordpress.org/test/category/week-in-test/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/test/category/week-in-test/\">Week in Test Series</a><br><a href=\"https://make.wordpress.org/core/handbook/testing/reporting-bugs/\">Reporting Bugs Handbook Page</a><br><a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/\">Fullsite Editing Outreach Program</a><br><a href=\"https://wordpress.slack.com/archives/C015GUFFC00\">FSE Outreach Experiment Slack Channel</a><br><a href=\"http://make.worpress.org/test\">make.wordpress.org/test</a><br><a href=\"https://wordpress.org/news\">WordPress.org/news</a><br><a href=\"http://learn.wordpress.org\">Learn.wordpress.org</a><br><a href=\"https://www.eventbrite.com/e/wordpress-wpdiversity-speaker-workshop-for-women-voices-in-latin-america-tickets-361213468207\">#WPDiversity Speaker Workshop for Women Voices in Latin America</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13551\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00] </strong></p>\n\n\n\n<p>Hello everyone. And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy.</p>\n\n\n\n<p>Here we go. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:42] </strong></p>\n\n\n\n<p>So I have with us today on the WordPress Briefing a couple of special guests. I have <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a>, as well as <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>. I’m gonna ask you both to tell us a little bit about yourselves, if you can tell us what you do with the WordPress project, maybe how long you’ve been with WordPress, and if there are any particular teams that you contribute to, that would be great. </p>\n\n\n\n<p>Brian, why don’t you get us started?</p>\n\n\n\n<p><strong>[Brian Alexander 00:01:02] </strong></p>\n\n\n\n<p>Hi, I’m Brian. I work on the WordPress project as a full-time contributor, sponsored by Automattic. And I am one of the Test Team reps, so I help promote testing across the project. And that’s not just in Core, but it could be for Themes, Performance, feature plugins, what have you. So try to make that stuff move forward and wrangle as many people as we can to get on board and help.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:32] </strong></p>\n\n\n\n<p>Excellent. All right, and Anne, what about you?</p>\n\n\n\n<p><strong>[Anne McCarthy 00:01:36] </strong></p>\n\n\n\n<p>I spearhead the Full Site Editing outreach program. I am a sponsor contributor for Automattic as well, and so I contribute across a couple of different teams depending upon what the outreach program needs as well as various release squads I have been a part of. So for 6.1 coming up, I’m one of the co-Core Editor triage leads. </p>\n\n\n\n<p>Brian is also on the squad as the co-Test lead, which is very exciting. So it’s been fun to work with him and be on the podcast. And I’ve been around the WordPress project since about 2011. But this is, the last couple of years, the first time I’ve been able to be sponsored by Automattic and be a part of giving back to the community that’s given me so much.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:13] </strong></p>\n\n\n\n<p>Amazing. All right. For folks who’ve been listening to the WP Briefing for a while, you know that I’ve been saying for like a full year that I think that testing is one of the best onboarding opportunities we have. And then also I really like to bring in our co-creators of WordPress through that testing program. Because we don’t know whether we’re right or not unless people tell us that we’re right or not. And we would like to hear so much from the users who, you know, use it and don’t necessarily have an opportunity, that privilege to kind of build on it or build the CMS itself.</p>\n\n\n\n<p>So I just have a few questions since I’ve got a couple of our strong testing wranglers here. The first thing I have is what are you doing? Or, do you have any advice for getting people outside of our active contributor base and the community to participate in testing?</p>\n\n\n\n<p><strong>[Anne McCarthy 00:03:03]</strong> </p>\n\n\n\n<p>I can kick this off. Just thinking about the Full Site Editing outreach program model. So just for context, there are various calls for testing in different formats. So everything from really procedural where you’re following exact steps to follow, to very open-ended calls for testing, as well as we recently did usability testing.</p>\n\n\n\n<p>And one of the things that come to mind immediately just for getting different contributors is to have very specific, fun, engaging, relevant tests that can draw people in. So if you have a call for testing that really speaks to someone, they might be more willing to participate. As well as just different formats.</p>\n\n\n\n<p>So someone may not want to, you know, follow 30 steps, but they might want to follow something more open-ended. They might want to answer a survey rather than opening a GitHub link. And so I think a lot of facilitation with the outreach program has served us really well to bring in different folks as well as explicitly reaching out.</p>\n\n\n\n<p>So I’ve done a number of talks in different WordPress related spaces and non-WordPress spaces to try to tell people about what we’re up to and really go meet them where they are. Because I think that’s ultimately, especially with Covid and the pandemic, there was a really unique opportunity to do that and to join the random online meetup that was happening and talk about the program and talk about ways that people could get involved and feel heard. </p>\n\n\n\n<p><strong>[Anne McCarthy 00:04:12]</strong> </p>\n\n\n\n<p>And the last thing I’ll mention is translations. The program that’s culture testing that I write is written in English, but I’m very fortunate to have people who translate those. And so that’s a huge way that I cannot contribute but that other people have. And so I really want to highlight that and call that out because it’s been hugely impactful to have these calls for testing in a way that people can more readily access. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:32] </strong></p>\n\n\n\n<p>Yeah, absolutely.</p>\n\n\n\n<p><strong>[Brian Alexander 00:04:35] </strong></p>\n\n\n\n<p>Yeah, I was going to add in, in addition to the calls for testing that are, as Anne said, structured such to isolate so that someone can just kind of go through a list of steps to do rather than just being exposed to Trac or GitHub and have kind of snow blindness with, with everything that’s happening.</p>\n\n\n\n<p>We also have a Week in Test series of posts that goes out about every week. And what we try to do with that series is to curate a list of posts that might be a good starting point. So we try to find one that, in each type of testing example, is something that would, a more novice contributor might be able to start with. Things for more intermediate and then also advanced ones that, for testers who may need to have a development environment and the ability to make some pretty deep or type of customizations to their WordPress project in order to test a patch or reproduce a particular issue that might be happening.</p>\n\n\n\n<p>So that’s a good springboard for someone to come in where there’s just a small thing that they can kind of look at and then dive into the larger process.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:46] </strong></p>\n\n\n\n<p>Absolutely. That’s very smart. It’s hard to figure out how to get started in WordPress at all, let alone as a contributing by testing things sort of area. That feels new to WordPress even though the team has been around for a long time. And so I think that’s excellent. </p>\n\n\n\n<p>Brian, you mentioned in your note about who you are and what you’re doing that you’re helping with testing not only in the test section in the Test Team but then also across the project. So, I have a follow-up question for you. What can developers do to create better tests for their software?</p>\n\n\n\n<p><strong>[Brian Alexander 00:06:18]</strong> </p>\n\n\n\n<p>There are sections within the Core handbook that kind of go into detail about the types of tests that should accompany individual contributions. A lot of those require kind of an extra step, and some developers maybe don’t have as much experience there. So hopefully, the Core handbook can provide a little bit of that guidance.</p>\n\n\n\n<p>We also have a lot of contributors who are interested in things such as unit testing, E2E testing, which is end-to-end testing, and testing in JavaScript or in PHP. So there’s a wide variety of the types of tests that you can actually contribute to. And I would say maybe about 50% of the tickets that I’ve triaged, personally, the contributor who brought in the patch was unable to or was not familiar with providing unit tests. So that is a very good opportunity for someone to come in who maybe is not as well versed in the depth of what the patch was involved with. But by contributing a user test, they get an opportunity to look very focused at a particular piece of code, what was modified, and then create unit tests based on that.</p>\n\n\n\n<p><strong>[Brian Alexander 00:07:40]</strong> </p>\n\n\n\n<p>And then once that unit test has been submitted and starting to be reviewed, other reviewers, Core contributors, or Core committers, I would say, they’ll start looking at that and if there are additional details that should be there, expanding the tests or little modifications. Then that also is feedback to that test contributor so that the next time they come in, they’re more prepared for it. They’re learning more about Core, and eventually, maybe they’ll also become a Core contributor.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:07]</strong> </p>\n\n\n\n<p>Excellent. We will include links to these handbook pages and documentation in the show notes if you’re listening to the podcast on your favorite podcasting platform, Pocketcasts, or it’s somewhere else. I don’t know where people listen to podcasts, but if you’re listening to it somewhere that’s not on the website, you can come to get that on wordpress.org/news.</p>\n\n\n\n<p>Okay, the next question that I have, and I think this is for both of you, Brian, it sounds like you partially answered it, but I bet there are more answers from Anne as well. What advice do you have for those submitting bug reports?</p>\n\n\n\n<p><strong>[Anne McCarthy 00:08:38]</strong> </p>\n\n\n\n<p>I’ll chime in to start, and then Brian, I’d love to hear your unique take because I also think you do an excellent job whenever I’ve engaged with you in various places of providing really good replication steps. And so I love that, and I wanna offer things specific to WordPress itself and something that I’ve noticed that’s more cultural rather than necessarily like steps to follow.</p>\n\n\n\n<p>And one of the things I’ve noticed that I think has started to come up partially with Covid is people, you know, you start talking at WordCamps or at a meetup, and a bug comes up, and you find someone who knows where to put it, and that kind of connection is has been frayed in the last couple years.</p>\n\n\n\n<p>And so one of the things I feel like I’ve been saying to a lot of different people at this unique point in time is that it doesn’t need to be perfect. Don’t let perfect be the enemy of good. And so if it means you just need to drop it in a Slack channel and you just are like, I don’t know where to put this, that’s huge.</p>\n\n\n\n<p>We need to hear from people across the project. And I just really encourage anyone, even if you don’t have the complete information or you’re not a hundred percent sure you’re afraid it’s been reported 10 times before, like, please still report it because we need those reports and also if 10 people reported it and it’s still not fixed, that also means we need to iterate.</p>\n\n\n\n<p><strong>[Anne McCarthy 00:09:40] </strong></p>\n\n\n\n<p>And so that’s one of the things, especially with the Full Site Editing outreach program, I feel people will message me saying, hey, I’m sure you’ve heard this a bunch, but… And sometimes I’ve never heard it at all. And I shudder to think of all the people who have not reached out or have not posted in GitHub or Trac or wherever.</p>\n\n\n\n<p>So yeah, share, and write blog posts. I think that another great way that people can give feedback is if you don’t know how to get into the depths of WordPress, writing a post and talking about it and sharing it on social media is also a great way to get attention. I read a lot of those. But as much as possible, getting to, if you can, if you’re comfortable, getting to the source where we’re able to see it in Github or Trac goes a really long way.</p>\n\n\n\n<p>And share as much as you can. And don’t worry if you can’t spend hours writing the perfect bug report, we still wanna hear from you.</p>\n\n\n\n<p><strong>[Brian Alexander 00:10:21] </strong></p>\n\n\n\n<p>Yeah. Building off of what Anne said, just the fact that you’re speaking out and raising an issue is a huge step for many, many people. And once, once you’ve actually done that, as Anne said, it doesn’t need to be perfect. There are a lot of other people who are going to be looking at these bugs, trying to figure out the replication steps used.</p>\n\n\n\n<p>So even if you can’t provide all this detail up front, someone will help. On the back end, they’ll help kind of fill in those gaps. If you do have the time to actually get deep into providing a very detailed bug report, then there are some key aspects of the bug report that make it very helpful for contributors, not only testers, who should be able to reproduce the issue to validate and make sure that this isn’t something that’s unique, unique to a plugin, to a custom theme or snippet that you dropped into your functions PHP. </p>\n\n\n\n<p>But, also for the actual Core contributors, who then need to be able to understand what is happening so that they can fix the right thing. And some of those items are the information about your testing environment.</p>\n\n\n\n<p><strong>[Brian Alexander 00:11:34] </strong></p>\n\n\n\n<p>So that could be your browser, your server, the type, whether it’s Apache, Nginx, et cetera, the operating system you’re running, what version of PHP you’re running, the version of WordPress, very critical, and… </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:49]</strong> </p>\n\n\n\n<p>Super important.</p>\n\n\n\n<p><strong>[Brian Alexander 00:11:51] </strong></p>\n\n\n\n<p>Any themes and plugins that you’re using. And that kind of information helps set the stage, and then other people will be able to set up their environment similarly if they’re going to try to test it.</p>\n\n\n\n<p>After you have provided the environmental information, the steps required to reproduce the issue should be as detailed as possible. You may not have realized that clicking this caused such and such to happen, so just try to remember, or maybe even walk through if it’s something you can repeat multiple times, walk through a couple of times and write down everything that you’re doing.</p>\n\n\n\n<p><strong>[Brian Alexander 00:12:30] </strong></p>\n\n\n\n<p>So that you’re sure, hey, this is the way that I can reproduce this bug. And then those steps will be very helpful for other contributors when they’re reviewing it. And then it’s also very helpful if you have video, screenshots, debug logs, any of those other kinds of resources that you could refer to because not all bugs are easy to explain.</p>\n\n\n\n<p>And we tend to… Trac and GitHub issues for the Gutenberg project, everybody’s writing in English. And maybe your main language is not English, and it might be a little bit challenging to do that. So providing a video, it’s worth a thousand words in any language. So, if you can provide those types of assets, that’s also very important.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:13:22] </strong></p>\n\n\n\n<p>Yeah, and I’ll share a little bit of a you’re-not-alone-in-it sort of anecdotes from the first few bugs that I ever filed for WordPress. I sort of had this feeling that if I were to file a bug, everyone would know that I wasn’t a developer. And like everyone knows, I’m not a developer, but a little bit I was like, they’ll know now. And so if that’s where you are also, Anne said it, and Brian said it as well, like, we can’t fix things that we don’t realize are broken. And just because you’ve run into it 15 times, which obviously should never happen, you should run into it once, and then we know, but it happens.</p>\n\n\n\n<p>If you run into it 15 times, probably other people have as well. And if it’s still not fixed, it might be because no one has thought to themselves I should tell someone that’s broken. And so if that’s your primary hurdle, folks out there in our listening space, I was once there too. And honestly, knowing that it’s a problem is as valuable as knowing the solution to it most of the time. </p>\n\n\n\n<p><strong>[Brian Alexander 00:14:23]</strong> </p>\n\n\n\n<p>Yeah, and those are, I wanted to add, there is a lot to that to remember. That’s a lot to remember in terms of what you should be submitting, what, or I should say, what would be ideal in what you’re submitting. But luckily, in the test handbook, there’s a test report section, and it includes a description, it goes everything from, it starts with why we do bug reports to examples of the types of testing, whether it be for bugs or enhancements, which also need testing, and it has templates in there that you can copy and paste directly into Trac. And that’s very helpful.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:15:03]</strong></p>\n\n\n\n<p>Yeah,, we will have links to those in the show notes as well. Since we’re right there at that moment, what do you think we could do as WordPress to make reporting problems easier?</p>\n\n\n\n<p><strong>[Brian Alexander 00:15:15]</strong> </p>\n\n\n\n<p>I know that this has been something that’s come up during our weekly meetings, discussions on the Core test channel, as well as in contributor day test table discussions. And the test documentation that’s on the website is a little bit fragmented. I believe that the current test handbook was originally written for a type of flow analysis and feedback testing that is not the norm today. So it’s a little bit confusing. The terminology is a little dated, and the most recent updates that have been provided on there relate solely to Gutenberg, which is very important that that also be represented, but, in order to find information about testing and Trac or PHP unit tests, you have to go over to the core handbook.</p>\n\n\n\n<p>So we could definitely make things improved by consolidating, bringing everything into one area so that if you are interested in testing, you’ll have everything in one place and not be split between that and not have outdated methodologies that are asking you to submit videos that nobody’s going to really look at because we’re not doing the flow tests anymore. So I think that that would be a benefit to future testers.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:16:41]</strong> </p>\n\n\n\n<p>Anne, any thoughts?</p>\n\n\n\n<p><strong>[Anne McCarthy 00:16:43]</strong></p>\n\n\n\n<p>Yeah. I’ll also add that I think there are like two things we can do. One is, there’s so much happening in the WordPress project in such a cool way that I think the more we can write targeted tests and talk to people about, like, hey, here’s this new thing coming. This is a high-impact area to test. It’s under active iteration. You’re gonna get a lot of engagement. People are really thinking about this and pulling people into that where you kind of get the momentum of getting the feedback in right when someone needs it. </p>\n\n\n\n<p>I think we could do that a bit more to make reporting problems easier because it’s kind of like you’re in the thick of it with a lot of people rather than maybe exploring an area where someone hasn’t looked at it in a minute.</p>\n\n\n\n<p>So that’s the thing that comes to mind is just the more we can take the time. I think this release cycle has been really good with that, where there’s been a call for testing for fluid typography. There’s also been one for using block template parts and classic themes. And there’s a ton of stuff that’s been happening where we can kind of make these both developer and more end user testing experiences easier and better.</p>\n\n\n\n<p>And Brian has done a great job continuing the tradition of, you know, helping test this latest release cycle. And he’s taken those posts and done an amazing job of helping, having specific testing as well. Tied to this, I think just this has always been a thing but better, easier testing environments for developers and for quickly setting up more WordPress sites to test things for end users.</p>\n\n\n\n<p><strong>[Brian Alexander 00:17:56]</strong></p>\n\n\n\n<p>Yeah. Another thing that we have been discussing in Slack in the Core and Core Test channels is the possibility of pre-populating the Trac tickets. With a template based on what it is that you’re reporting. So similar to copying a template for a test report out of the handbook. Instead, you would hit a button to say the type of bug you are submitting, and then it would pre-populate that, and then you could fill in the gaps for that. This already happens over in Gutenberg. There, there are templates, and I find that that is very helpful. And so being able to do that in Trac would be useful. </p>\n\n\n\n<p>And then for reporting problems on the user side, I thought that it would be interesting to have like you have for any other modern app, a button that says Report Bug in WordPress that could capture some intelligence data for your installation, the page that you’re on and have a simple text box where you could provide a little description and then submit that.</p>\n\n\n\n<p><strong>[Brian Alexander 00:19:08] </strong></p>\n\n\n\n<p>Now, these wouldn’t be the types of things that would just go straight into Trac, most likely. However, it would be an opportunity to allow end users to just send something in, and start having it looked at, rather than looking and saying, okay, I found a bug in WordPress. Now, what do I do? And then not reporting. </p>\n\n\n\n<p>So that would be the worst case is that the bug just doesn’t get reported. So that would be information that is already harvested if you go to your site health screen and your WordPress installation. A lot of that information that would be useful is there. In this type of bug report, we would want to anonymize and strip a lot of that information out.</p>\n\n\n\n<p>There’s a lot of private stuff you don’t wanna share, but there is that data there that’s available that could potentially help in doing a bug report.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:19:57]</strong></p>\n\n\n\n<p>Brilliant. All right. Question for everyone in the room: what opportunities are there currently to help with testing? Anne, I know, and you already mentioned a few, we can just bombard everybody with links to the tests if we want. But yeah, what opportunities are currently out there?</p>\n\n\n\n<p><strong>[Anne McCarthy 00:20:13]</strong></p>\n\n\n\n<p>Yeah, I’ll mention the Full Site Editing outreach program. I’m very biased, but we’re always looking for new folks. We just crossed, I think, 600 people, which was unbelievable. So even if you’re not necessarily always able to help join the calls for testing, you can always pop into the FSE outreach experiment channel, which we’ll also add a link to.</p>\n\n\n\n<p>And that’s just a great way when you have time to join because I flag stuff all the time, whether it’s about the outreach program or just in general across the project. Brian does really good weekly round-up testing posts as well. So make.wordpress.org/test is also a great place to get started.</p>\n\n\n\n<p>And then right now, I think when this comes out, will be a great time to be helping test WordPress 6.1. So check out that post. I kind of wanna just shove everyone in that direction currently cause I think that’s the most high-impact thing to get involved with and one of the great ways to give back to the next version of WordPress to make it really delightful and easy to use.</p>\n\n\n\n<p>Yeah, I’m just gonna leave it there, even though there are so many ways you can help.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:21:11]</strong></p>\n\n\n\n<p>WordPress 6.1 coming out on November 1st if you haven’t yet heard about it. Brian, what else have you got out there?</p>\n\n\n\n<p><strong>[Brian Alexander 00:21:16]</strong> </p>\n\n\n\n<p>In terms of the online stuff, Anne covered that pretty well. I would say if you have a local WordCamp, sign up for their contributor day or if there are any local WordPress meetups. When Covid ended up hitting and lockdowns were rolled out, a lot of this stuff started to really slow down. So I think now is a good time to maybe introduce the idea for, hey, let’s have a local meetup, and for a couple of hours, we’ll just do some testing, and look at some stuff in WordPress. </p>\n\n\n\n<p>So it might be a good way of getting people re-engaged. It’s a little bit lighter weight if you’re doing testing versus trying to actually provide a patch to fix an issue. So, might be a good way of bringing in some new faces and re-engaging people who we lost over the lockdown.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:22:09]</strong> </p>\n\n\n\n<p>Yeah, and if you all have never done a testing party for WordPress before, and it sounds like it’s maybe a really boring thing, it’s actually not, she said with strong authority and opinions. But also, I have never had a more successful learning experience with the WordPress CMS than when I was trying to figure it out with other people.</p>\n\n\n\n<p>They see things that you don’t see, they know things you don’t know, and it really covers a lot of the bases for unknown unknowns when you’re trying to learn something. And then also you have all these people that like, we’re really in it with you, and everyone’s really pulling for each other, and it’s actually a bit more fun than it sounds like when you’re just like, a testing party. It turns into just like jointly solving a puzzle together, which I think sounds like a lot of fun.</p>\n\n\n\n<p>It’s like a party, but for technology, I would feel this way. I am a mad extrovert, and we all know it, but. Now you two know it as well.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:23:08] </strong></p>\n\n\n\n<p>I have a final, just like a fun question for you both, and if you have an answer, great. And if you don’t have an answer, I would be surprised.</p>\n\n\n\n<p>So here we go. Last question of the day. If five more volunteers suddenly appeared to help on the Test Team, what would they do? Just, I waved a magic wand. I guess that’s what made it fun. I don’t know why. I was like, fun question and then I’m, like, assigned tasks that, Yeah, I waved a magic wand. That’s what made it fun.</p>\n\n\n\n<p><strong>[Brian Alexander 00:23:38] </strong></p>\n\n\n\n<p>Yeah, I would say I would probably point them to FSE outreach program posts because…</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:23:45]</strong> </p>\n\n\n\n<p>Woot woot. </p>\n\n\n\n<p><strong>[Brian Alexander 00:23:47]</strong></p>\n\n\n\n<p>…the outreach program does a great job of outlining steps. You’re isolating testing in one particular area. It’s got a lot of tests. There’s examples of the types of feedback that you’re looking for, et cetera.</p>\n\n\n\n<p>That’s a really good introduction to it, and most FSE testing does not require a local dev environment. Which is probably the biggest hurdle for a new tester coming in. If you do have developers with more experience, then they could start–and they wanted to look into Trac tickets or GitHub issues– then it does take a little bit of setup and you may spend the next few hours configuring your development environment.</p>\n\n\n\n<p>So instead, I would recommend that you start with something like FSE outreach program posts.</p>\n\n\n\n<p><strong>[Anne McCarthy 00:24:37]</strong></p>\n\n\n\n<p>I did not pay Brian to say that. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:24:42] </strong></p>\n\n\n\n<p>We’re just all partial to it here. That’s all.</p>\n\n\n\n<p><strong>[Anne McCarthy 00:24:45] </strong></p>\n\n\n\n<p>No, we really are. Yeah, no, this is, I love this question, and I actually find it really fun cause I think about it a lot. And we’ve talked about some of this stuff too, and it’s something that when I think about five more people suddenly appearing, makes me giddy.</p>\n\n\n\n<p>Because we have folks, who have helped with like, I think I’ve mentioned like translations and group testing and even responding to questions that come from the channel and like, I just wish if we had five folks full time dedicated to that, I could see way more hallway hangouts where we casually talk about stuff and actually go on a call and talk live.</p>\n\n\n\n<p>I could see folks, someone dedicated to helping translations and translating even more places. We have an Italian contributor who does it regularly, and a couple of Japanese contributors every once in awhile we get Spanish translation. But I’d love to see more translations to bring more people in, more facilitating group testing, more types of testing, helping me be more creative because sometimes I get a creative wall.</p>\n\n\n\n<p>But more than anything, if I really think long term about the project and thinking about this outreach program model, which I don’t think I fully appreciated how new it was, Josepha, when you introduced the idea, I think it would be so neat to bring in more folks to actually create new outreach programs.</p>\n\n\n\n<p><strong>[Anne McCarthy 00:25:52] </strong></p>\n\n\n\n<p>So maybe there’s an outreach program for theme authors or block theme authors, or maybe there’s an outreach program around collaborative editing. Like what does this look like, and how can we expand this to bring more people in? And I think a lot of that will prove the resiliency and lessons we’ve learned from Covid in the WordPress community. </p>\n\n\n\n<p>We can’t necessarily always rely on the meetup groups, so how can we meet people where they are? And I think there’s something really interesting and almost serendipitous that the outreach program started literally, I think it was like May 2020, like a couple of months into the pandemic.</p>\n\n\n\n<p>And I, like, I want to see it in a position of strength where we both have the in-person community alongside this outreach program model that can intertwine work. And I’d love to see the model expand to different types. And right now, maybe part of that is we use the outreach program model, the full site editing outreach program group itself, to experiment more and to keep that level of experimentation.</p>\n\n\n\n<p>That’s something I feel really strongly about is continuing to find what works and what doesn’t. And so if we had five more people, I could just, I’d probably go wild and have all sorts of cool, cool things and spinoffs, but I’m more introverted than Josepha, so there’s limitations to this.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:26:56]</strong> </p>\n\n\n\n<p>Well, you heard it here first. If you’re one of my 6,000 listeners. I only need five of one of you. Five of the ones of you to come and make Anne’s whole life an exciting joy for the next 12 months. So, I only need five of you and I know that you’re out there. There are 2000 or something, 6,000. I have no idea.</p>\n\n\n\n<p>I’ve got more than 1000 of you listening, and I know that you wanna come and help Anne cuz she’s a delight. I know you wanna come help Brian cuz he’s a delight. Both of you. This was such a fun conversation. Thank you for joining me today.</p>\n\n\n\n<p><strong>[Brian Alexander 00:27:29]</strong> </p>\n\n\n\n<p>Thank you, Josepha. Thank you, Anne.</p>\n\n\n\n<p><strong>[Anne McCarthy 00:27:31]</strong> </p>\n\n\n\n<p>Yeah. Thank you.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:27:33]</p>\n\n\n\n<p>And there it is a bit of a deep dive on the Test Team and how to get started on it. Like I mentioned, we’ll have a ton of links in the show notes over on wordpress.org/news. And I wanna remind folks that if you have questions or thoughts that you’d like to hear from me about, you can always email us at WPbriefing@wordpress.org.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:27:58] </strong></p>\n\n\n\n<p>That brings us now to our small list of big things. First and foremost, we are counting down the days to the WordPress 6.1 release. We are within a month of the target release date. So if you have not tested the latest version with your plugins or themes, now is the time. </p>\n\n\n\n<p>Secondly, we are seeing translated tutorials being submitted on learn.wordpress.org. I’m delighted to see that happening, and I encourage any polyglots out there who feel called to consider translating one into your language and help other people feel empowered to use WordPress. </p>\n\n\n\n<p>And then the third thing is that the WordPress Speaker Workshop for Women Voices in India just concluded, so to celebrate, we’ve opened registrations for the WordPress Speaker Workshop for Women Voices in Latin America. Unlike the last one, this event takes place in person on October 29th. And so I’ll include a link to registrations for that in the show notes as well. </p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thanks for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosey, and I’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:\"13551\";s: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: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:34:\"WordPress 6.1 Beta 2 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2022/09/wordpress-6-1-beta-2-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Sep 2022 18:12:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13533\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:306:\"WordPress 6.1 Beta 2 is now available for download and testing.\n\nThis version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test Beta 2 on a test server and site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s: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:5875:\"\n<p><em><strong>WordPress 6.1 Beta 2 is now available for download and testing.</strong></em></p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test Beta 2 on a test server and site. </p>\n\n\n\n<p>You can test WordPress 6.1 Beta 2 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.1-beta2.zip\">Beta 2 version (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use the following WP-CLI command:</p>\n\n\n\n<p><code>wp core update --version=6.1-beta2</code></p>\n\n\n\n<p>The current target for the final release is November 1, 2022, which is about five weeks away. </p>\n\n\n\n<p>Additional information on the <a href=\"https://make.wordpress.org/core/6-1/\">6.1 release cycle is available</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-1/\">6.1-related developer notes</a> in the coming weeks detailing all upcoming changes.</p>\n\n\n\n<h2><strong>Keep WordPress bug-free – help with testing</strong></h2>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute. This detailed guide is an excellent start if you have never tested a beta release before.</p>\n\n\n\n<p>Testing helps ensure that this and future releases of WordPress are as stable and issue-free as possible. Anyone can take part in testing – especially great WordPress community members like you.</p>\n\n\n\n<p>Want to know more about testing releases like this one? Read about the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join a <a href=\"https://wordpress.slack.com/messages/core-test/\">core-test channel</a> on the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack workspace</a>.</p>\n\n\n\n<p>If you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>To review features in the Gutenberg releases since WordPress 6.0 (the most recent major release of WordPress), access the <em>What’s New In Gutenberg</em> posts for <a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\">14.1</a>, <a href=\"https://make.wordpress.org/core/2022/09/01/whats-new-in-gutenberg-14-0-31-august/\">14.0</a>, <a href=\"https://make.wordpress.org/core/2022/08/17/whats-new-in-gutenberg-13-9-17-august/\">13.9</a>, <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/\">13.8</a>, <a href=\"https://make.wordpress.org/core/2022/07/20/whats-new-in-gutenberg-13-7-20-july/\">13.7</a>, <a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/\">13.6</a>, <a href=\"https://make.wordpress.org/core/2022/06/22/whats-new-in-gutenberg-13-5-22-june/\">13.5</a>, <a href=\"https://make.wordpress.org/core/2022/06/10/whats-new-in-gutenberg-13-4-8-june/\">13.4</a>, <a href=\"https://make.wordpress.org/core/2022/05/26/whats-new-in-gutenberg-13-3-0-may-25/\">13.3</a>, <a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">13.2</a>, and <a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">13.1</a>.</p>\n\n\n\n<p>This release contains more than 350 enhancements and 350 bug fixes for the editor, including more than <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=6.1&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">300 tickets for WordPress 6.1 core</a>. More fixes are on the way in the remainder of the 6.1 release cycle.</p>\n\n\n\n<h2><strong>Some highlights</strong></h2>\n\n\n\n<p>Want to know what’s new in version 6.1? <a href=\"https://wordpress.org/news/2022/09/wordpress-6-1-beta-1-now-available/\">Read the initial Beta 1 announcement</a> for some details, or check out the <a href=\"https://make.wordpress.org/core/2022/09/14/6-1-product-walk-through-recap/\">product walk-through recording</a>.</p>\n\n\n\n<h2><strong>What’s new in Beta 2</strong></h2>\n\n\n\n<p>Here are some updates since last week’s Beta 1 release:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.1\">24 issues addressed in GitHub</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>A haiku for Beta 2</h2>\n\n\n\n<p>WordPress six-point-one,<br>Please help test Beta 2 now.<br>Best release ever.<br></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\"https://profiles.wordpress.org/dansoschin/\">@dansoschin</a>, <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">@robinwpdeveloper</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>, <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a>, and <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</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:\"13533\";s: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: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:34:\"WordPress 6.1 Beta 1 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2022/09/wordpress-6-1-beta-1-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Sep 2022 17:09: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:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13495\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:306:\"WordPress 6.1 Beta 1 is now available for download and testing.\n\nThis version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test Beta 1 on a test server and site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s: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:8473:\"\n<p>WordPress 6.1 Beta 1 is now available for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test Beta 1 on a test server and site. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>You can test WordPress 6.1 Beta 1 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.1-beta1.zip\">Beta 1 version (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use the following WP-CLI command:</p>\n\n\n\n<p><code>wp core update --version=6.1-beta1</code></p>\n\n\n\n<p>The current target for the final release is November 1, 2022, which is about six weeks away. </p>\n\n\n\n<p>Additional information on the <a href=\"https://make.wordpress.org/core/6-1/\">6.1 release cycle is available</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-1/\">6.1-related developer notes</a> in the coming weeks detailing all upcoming changes.</p>\n\n\n\n<h2><strong>Keep WordPress bug-free – help with testing</strong></h2>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute. If you have never tested a beta release before, <a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">this detailed guide</a> is a great start.</p>\n\n\n\n<p>Testing helps make sure that this and future releases of WordPress are as stable and issue-free as possible. Anyone can do it – especially great WordPress community members like you.</p>\n\n\n\n<p>Want to know more about testing releases like this one? Read about the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join a <a href=\"https://wordpress.slack.com/messages/core-test/\">publicly-accessible channel</a> on the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack workspace</a>.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>To review features in the Gutenberg releases since WordPress 6.0 (the most recent major release of WordPress), access the <em>What’s New In Gutenberg</em> posts for <a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\">14.1</a>, <a href=\"https://make.wordpress.org/core/2022/09/01/whats-new-in-gutenberg-14-0-31-august/\">14.0</a>, <a href=\"https://make.wordpress.org/core/2022/08/17/whats-new-in-gutenberg-13-9-17-august/\">13.9</a>, <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/\">13.8</a>, <a href=\"https://make.wordpress.org/core/2022/07/20/whats-new-in-gutenberg-13-7-20-july/\">13.7</a>, <a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/\">13.6</a>, <a href=\"https://make.wordpress.org/core/2022/06/22/whats-new-in-gutenberg-13-5-22-june/\">13.5</a>, <a href=\"https://make.wordpress.org/core/2022/06/10/whats-new-in-gutenberg-13-4-8-june/\">13.4</a>, <a href=\"https://make.wordpress.org/core/2022/05/26/whats-new-in-gutenberg-13-3-0-may-25/\">13.3</a>, <a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">13.2</a>, and <a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">13.1</a>.</p>\n\n\n\n<p>This release contains more than 350 enhancements and 350 bug fixes for the editor, including more than <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=6.1&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">250 tickets for the WordPress 6.1 core</a>.</p>\n\n\n\n<h2><strong>Some highlights</strong></h2>\n\n\n\n<p><em>Want to know what’s new in WordPress version 6.1? Read on for some highlights.</em></p>\n\n\n\n<h3>Features for end-users</h3>\n\n\n\n<ul>\n<li>Default theme powered by 10 unique style variations (<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/design/2022/09/07/tt3-default-theme-announcing-style-variation-selections/\" target=\"_blank\">learn more</a>)</li>\n\n\n\n<li>More design tools in more blocks (<a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/gutenberg/issues/43241\" target=\"_blank\">learn more</a>)</li>\n\n\n\n<li>Expanded and refined <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2022/08/25/core-editor-improvement-refining-the-template-creation-experience/\" target=\"_blank\">template experience</a> and <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2022/07/21/core-editor-improvement-deeper-customization-with-more-template-options/\" target=\"_blank\">template options</a></li>\n\n\n\n<li>More intuitive document settings experience</li>\n\n\n\n<li>Header and footer patterns for all themes</li>\n\n\n\n<li>Improved quote and list blocks with inner block support</li>\n\n\n\n<li>More robust placeholders for various blocks</li>\n\n\n\n<li>New modal interfaces and preferences improvements</li>\n\n\n\n<li>Automatic navigation block selection with fallbacks and easier menu management</li>\n\n\n\n<li>Apply locking settings to all inner blocks in one click</li>\n\n\n\n<li>Improvements to the block theme discovery experience</li>\n\n\n\n<li>Accessibility updates, with more than 60 resolved tickets</li>\n\n\n\n<li>Performance updates, with more than 25 resolved tickets</li>\n</ul>\n\n\n\n<h3>For developers</h3>\n\n\n\n<ul>\n<li>Opt into appearance tools to make any theme more powerful</li>\n\n\n\n<li>New iteration on the style system</li>\n\n\n\n<li>Add starter patterns to any post type (<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/#post-type-patterns\" target=\"_blank\">learn more</a>)</li>\n\n\n\n<li>Evolution of layout options including a new <code>constrained</code> option and the ability to disable layout options</li>\n\n\n\n<li>Content lock patterns for more curation options</li>\n\n\n\n<li>Expanded support for query loop blocks</li>\n\n\n\n<li>Allow the use of block-based template parts in classic themes (<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/themes/2022/09/12/testing-and-feedback-for-using-block-based-template-parts-in-classic-themes/\" target=\"_blank\">give feedback</a>)</li>\n\n\n\n<li>Filter <code>theme.json</code> data (<a rel=\"noreferrer noopener\" href=\"https://developer.wordpress.org/block-editor/reference-guides/filters/global-styles-filters/\" target=\"_blank\">learn more</a>)</li>\n\n\n\n<li>Fluid typography allows for more responsiveness (<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/themes/2022/08/15/testing-and-feedback-for-the-fluid-typography-feature/\" target=\"_blank\">give feedback</a>)</li>\n\n\n\n<li>Ability to style elements inside blocks like buttons, headings, or captions in <code>theme.json</code></li>\n</ul>\n\n\n\n<p><em>Please note that all features listed in this post are subject to change before the final releas</em>e.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>A Haiku for you</h2>\n\n\n\n<p>Twenty Twenty-Three<br>10 style variations<br>The new default theme</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\"https://profiles.wordpress.org/dansoschin/\">@dansoschin</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">@annezazu</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>, <a href=\"https://profiles.wordpress.org/davidb/\">@davidbaumwald</a>, <a href=\"https://profiles.wordpress.org/priethor/\">@priethor</a>, and <a href=\"https://profiles.wordpress.org/jeffpaul/\">@jeffpaul</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:\"13495\";s: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: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:67:\"WP Briefing: Episode 39: Contributor Stories Live from WordCamp 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/news/2022/09/episode-39-contributor-stories-live-from-wordcamp-us/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 19 Sep 2022 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=13481\";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:84:\"Live from WordCamp US 2022, listen to contributor stories about why they 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: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/2022/09/WP-Briefing-039.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:\"Santana Inniss\";s: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:13436:\"\n<p>In the thirty-ninth episode of the WordPress Briefing, hear contributors at WordCamp US share stories about their why for using WordPress and attending WordCamps. </p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<p>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production: <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a> and <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2>Guests</h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/topher1kenobe/\">Topher DeRosia</a><br><a href=\"https://profiles.wordpress.org/jenblogs4u/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/jenblogs4u/\">Jen Miller</a><br><a href=\"https://wordpress.org/support/users/courane01/\" data-type=\"URL\" data-id=\"https://wordpress.org/support/users/courane01/\">Courtney Robertson</a><br><a href=\"https://profiles.wordpress.org/kdrewien/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/kdrewien/\">Kathy Drewien</a><br><a href=\"https://profiles.wordpress.org/alexstine/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a><br><a href=\"https://profiles.wordpress.org/courtneypk/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/courtneypk/\">Courtney Patubo Kranzke</a><br><a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br><a href=\"https://www.linkedin.com/in/ri%C4%8Dardas-kudirka-3815a976/?originalSubdomain=lt\">Ricardas Kudirka</a></p>\n\n\n\n<h2>References</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/polyglots/2022/09/06/announcement-wordpress-translation-day-2022/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/polyglots/2022/09/06/announcement-wordpress-translation-day-2022/\">WordPress Translation Day September 28, 2022</a><br><a href=\"https://woosesh.com/\" data-type=\"URL\" data-id=\"https://woosesh.com/\">WooSesh October 11-13, 2022</a><br><a href=\"https://2022.allthingsopen.org/\" data-type=\"URL\" data-id=\"https://2022.allthingsopen.org/\">All Things Open October 30-November 2, 2022</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13481\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00] </strong></p>\n\n\n\n<p>Hello, everyone! And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. </p>\n\n\n\n<p>Here we go!</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:41] </strong></p>\n\n\n\n<p>For folks who are new to WordPress in the past couple of years, you may have heard people talk about WordPress events with a sort of passion that really is hard to describe. For me, I know our events are the dark matter of what makes this global, fully distributed, multifaceted project come together so well in the end.</p>\n\n\n\n<p>But I also know that WordPressers have so many different reasons for coming together. So we took a little wander through WordCamp US to get their take on why they use WordPress and also why they go to WordCamps.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:13] </strong></p>\n\n\n\n<p>So WordCamp US is back in person for the first time since 2019. What are you most excited about?</p>\n\n\n\n<p><strong>[Topher 00:01:19] </strong></p>\n\n\n\n<p>I am Topher.</p>\n\n\n\n<p>Seeing everyone, the interpersonal relationships, the communication, the expressions on people’s faces that you don’t get via email or Slack or whatever. Just being near people again and enjoying each other’s company.</p>\n\n\n\n<p><strong>[Jen Miller 00:01:35] </strong></p>\n\n\n\n<p>My name is Jen Miller.</p>\n\n\n\n<p>I was most excited to see my friends. It’s been a long time to try to maintain connections via social media and, you know, texting and phone calls. But being here and being a part of the WordPress community has made everything great.</p>\n\n\n\n<p><strong>[Courtney Robertson 00:01:54] </strong></p>\n\n\n\n<p>Courtney Robertson.</p>\n\n\n\n<p>Contributor day, of course, that’s how I got really connected to the WordPress community. And I am hoping we have a great turnout.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:02] </strong></p>\n\n\n\n<p>How long have you been a contributor to WordPress?</p>\n\n\n\n<p><strong>[Kathy Drewien 00:02:05] </strong></p>\n\n\n\n<p>Hi, I’m Kathy Drewien.</p>\n\n\n\n<p>I started in 2008 by attending my first WordCamp. Two years later, I was part of the organizing team for WordCamp Atlanta. I have been on that team for one role or another. Well, I can’t tell you how many years now. From then, until now.</p>\n\n\n\n<p><strong>[Alex Stine 00:02:24] </strong></p>\n\n\n\n<p>My name is Alex Stine. About six years now.</p>\n\n\n\n<p><strong>[Topher 00:02:28] </strong></p>\n\n\n\n<p>About 12 years.</p>\n\n\n\n<p>I started going to WordCamp, then working in the support forums, and just grew from there.</p>\n\n\n\n<p><strong>[Courtney Robertson 00:02:24] </strong></p>\n\n\n\n<p>I started checking guests in, at my first WordCamp in 2009, which I see as one avenue of contributing. I joined a team officially in 2014. </p>\n\n\n\n<p><strong>[</strong><strong>Courtney Patubo Kranzke </strong><strong>00:02:47] </strong></p>\n\n\n\n<p>My name is Courtney Patubo Kranzke.</p>\n\n\n\n<p>I have been an on-and-off contributor to WordPress since like the mid-2000s, but I’ve been a sponsored contributor since 2016.</p>\n\n\n\n<p><strong>[</strong><strong>Dustin Hartzler </strong><strong>00:03:02] </strong></p>\n\n\n\n<p>My name is Dustin Hartzler.</p>\n\n\n\n<p>I started a WordPress podcast in 2010. And I did like 500 episodes in a row without a break and without a week worth of rest. So I consider that my contribution to WordPress. I have a couple of core contributions, like I, I fixed a little bug here, a little bug there in a couple of releases, I think back in the four eras, 4.1 or 4.2 or something.</p>\n\n\n\n<p>2010 is when I really got started in giving back, and, like, sharing my knowledge with the WordPress community.</p>\n\n\n\n<p><strong>[</strong><strong>Josepha Haden Chomphosy </strong><strong>00:03:28] </strong></p>\n\n\n\n<p>Why is it important for you to attend WordCamps or contribute to the WordPress project?</p>\n\n\n\n<p><strong>[</strong><strong>Ricardas Kudirka </strong><strong>00:03:33] </strong></p>\n\n\n\n<p>My name is Ricardas Kudirka.</p>\n\n\n\n<p>Basically, for everyone who’s using WordPress, it’s really important to understand how big the community is that we have here. So the community is an important and crucial part of WordPress.</p>\n\n\n\n<p>And for it to grow, you need to attend the WordCamps, you need to share knowledge, and you need to meet people. So networking here and while meeting the exciting people who are developing WordPress or who are contributing to it, who are providing the services, who enable people to use WordPress.</p>\n\n\n\n<p>That’s a crucial point for everyone to attend.</p>\n\n\n\n<p><strong>[</strong><strong>Kathy Drewien </strong><strong>00:04:05] </strong></p>\n\n\n\n<p>It’s important to attend them because it’s very hard to describe them. We are not like any other thing you have ever done in your life. You have to be here to get it. And then once you get it, you wanna do more of it. It’s magical. It’s magical. There’s no way to get that experience without being here.</p>\n\n\n\n<p>In terms of contributing, it’s a responsible thing to do. You want to give back instead of get, get, get. In the beginning, we’re all about the get, get, get. And then you go, oh my gosh. I didn’t know. I didn’t know I could do this. I didn’t know I had to write code. I can actually just stand around and talk to people and contribute to the project.</p>\n\n\n\n<p><strong>[</strong><strong>Jen Miller </strong><strong>00:04:50] </strong></p>\n\n\n\n<p>Well, it’s a community effort, and so if we want it to progress and grow, we need to put our own individual effort into the community.</p>\n\n\n\n<p>Plus, we make friends, we make connections, and we find people who we can help and who can help us.</p>\n\n\n\n<p><strong>[</strong><strong>Alex Stine </strong><strong>00:05:07]</strong></p>\n\n\n\n<p>I feel it is important to support the community that got me my start in technology and make sure that people understand that accessibility is very much a requirement.</p>\n\n\n\n<p>You know, we need to make sure we keep the community inclusive for all.</p>\n\n\n\n<p><strong>[</strong><strong>Josepha Haden Chomphosy </strong><strong>00:05:21]</strong></p>\n\n\n\n<p>What is your favorite way to WordPress?</p>\n\n\n\n<p><strong>[</strong><strong>Courtney Patubo Kranzke </strong><strong>00:05:24] </strong></p>\n\n\n\n<p>I started with WordPress as a personal blogger. So it continues to be my favorite way to use WordPress. But, my use has evolved to using it for work as well as a place to share my photography and food blogging.</p>\n\n\n\n<p><strong>[</strong><strong>Courtney Robertson </strong><strong>00:05:42] </strong></p>\n\n\n\n<p>My favorite way to WordPress is through the Training team. Most of the things that I write these days are on make.wordpress.org/training and or learn.wordpress.org.</p>\n\n\n\n<p>I love teaching people about WordPress, helping people at all skill levels advance, and that’s where you’ll find me around the WordPress Training team.</p>\n\n\n\n<p><strong>[</strong><strong>Dustin Hartzler </strong><strong>00:05:59] </strong></p>\n\n\n\n<p>My favorite way to WordPress is just building cool things. Like I have a website, my wife has a couple of websites, and me just trying to learn things and trying to do them myself. Yesterday, there was a session, a 15-minute long session, and I learned how to customize the options available for different core WordPress blocks.</p>\n\n\n\n<p>I didn’t realize that you could just make a button and like make a default like here’s the style for the default button. So every button’s exactly the same on the site. Like how cool is that? I like the side of customizing WordPress to make it easier for people who are non-techy like me to use my site, like my wife, and whatnot.</p>\n\n\n\n<p><strong>[</strong><strong>Josepha Haden Chomphosy </strong><strong>00:06:30] </strong></p>\n\n\n\n<p>How do you use WordPress in your day-to-day life?</p>\n\n\n\n<p><strong>[</strong><strong>Topher </strong><strong>00:06:32] </strong></p>\n\n\n\n<p>It’s sort of a universal tool for me. I blog, and I do podcasts.</p>\n\n\n\n<p>I enjoy drinking whiskey, so I built a rating system for it. And I use it as a notepad, a scratch pad. I use it as my photography backup system. Just kind of as a universal tool for everything</p>\n\n\n\n<p><strong>[</strong><strong>Alex Stine </strong><strong>00:06:53]</strong></p>\n\n\n\n<p>So I currently am one of the Accessibility team reps.</p>\n\n\n\n<p>I’m a core contributor, Guttenberg contributor, the occasional meta contributor, and the occasional training team contributor.</p>\n\n\n\n<p><strong>[</strong><strong>Josepha Haden Chomphosy </strong><strong>00:07:05]</strong></p>\n\n\n\n<p>Well, if that doesn’t convince you to go to a WordCamp or start your own meetup group, I just don’t know what will. Big thanks to everyone who sat down with us there in San Diego.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:23]</strong></p>\n\n\n\n<p>And now it’s time for our small list of big things.</p>\n\n\n\n<p>First thing, WordPress Global Translation Day is coming up next week on September 28th. This is a great opportunity to learn more about the hard work that goes into translating all of this software for folks all around the world. If you want to learn more about how you could contribute to translations, I’ll have a link in the show notes for you.</p>\n\n\n\n<p>The second thing is that WooSesh is coming up on October 11th through 13th, 2022. This one is not an in-person event. It’s a WPSessions event, but it specifically talks about how to get some eCommerce going on your WordPress site. So if you’ve been thinking about how to get a shop on your site, or just making your current shop a bit more complicated, then this is the event for you.</p>\n\n\n\n<p>And the third thing on our list today is All Things Open. They are hosting a hybrid event this year from October 31st through November 2nd. This event isn’t specific to WordPress, but it is specific to open source and one of the best resources for learning some OSS basics. So if you’ve been interested in learning more about how this whole open source thing is an idea that will change our generation, then set your sights on that event. I will have a link in the show notes there as well.</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’m your host, Josepha Haden Chomphosy. And I’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:\"13481\";s: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: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:64:\"Dropping security updates for WordPress versions 3.7 through 4.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wordpress.org/news/2022/09/dropping-security-updates-for-wordpress-versions-3-7-through-4-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Sep 2022 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:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=13466\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:343:\"As of December 1, 2022 the WordPress Security Team will no longer provide security updates for WordPress versions 3.7 through 4.0. These versions of WordPress were first released eight or more years ago so the vast majority of WordPress installations run a more recent version of WordPress. The chances this will affect your site, or […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Peter Wilson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2478:\"\n<p>As of December 1, 2022 the WordPress Security Team will no longer provide security updates for WordPress versions 3.7 through 4.0.</p>\n\n\n\n<p>These versions of WordPress were first released eight or more years ago so the vast majority of WordPress installations run a more recent version of WordPress. The chances this will affect your site, or sites, is very small.</p>\n\n\n\n<p>If you are unsure if you are running an up-to-date version of WordPress, please log in to your site’s dashboard. Out of date versions of WordPress will display a notice that looks like this:</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"698\" height=\"81\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/09/update-notice.png?resize=698%2C81&ssl=1\" alt=\"WordPress update notice: "WordPress 6.0.2 is available! Pleaes update now."\" class=\"wp-image-13467\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/update-notice.png?w=698&ssl=1 698w, https://i0.wp.com/wordpress.org/news/files/2022/09/update-notice.png?resize=300%2C35&ssl=1 300w\" sizes=\"(max-width: 698px) 100vw, 698px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>In WordPress versions 3.8 – 4.0, the version you are running is displayed in the bottom of the “At a Glance” section of the dashboard. In WordPress 3.7 this section is titled “Right Now”.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"295\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/09/at-a-glance-widget.png?resize=1024%2C295&ssl=1\" alt=\""At a Glance" section of the WordPress dashboard. The final line includes the exact version of WordPress the site is running.\" class=\"wp-image-13468\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/09/at-a-glance-widget.png?resize=1024%2C295&ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/09/at-a-glance-widget.png?resize=300%2C86&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/09/at-a-glance-widget.png?resize=768%2C221&ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2022/09/at-a-glance-widget.png?w=1208&ssl=1 1208w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The Make WordPress Security blog has further details about <a href=\"https://make.wordpress.org/security/2022/09/07/dropping-security-updates-for-wordpress-versions-3-7-through-4-0/\">the process to end support</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:\"13466\";s: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: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:38:\"The Month in WordPress – August 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2022/09/the-month-in-wordpress-august-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2022 13:23:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=13445\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:361:\"August has been a busy month, with the redesign of WordPress.org, new localized content on Learn WordPress, and the WordPress 6.0.2 security and maintenance release. But that’s not all! Read on to catch up on the latest WordPress news. WordPress 6.1 walk-through scheduled for September 13, 2022 Save the date! A live interactive walk-through of […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"rmartinezduque\";s: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:15623:\"\n<p>August has been a busy month, with the redesign of WordPress.org, new localized content on Learn WordPress, and the WordPress 6.0.2 security and maintenance release. But that’s not all! Read on to catch up on the latest WordPress news.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2>WordPress 6.1 walk-through scheduled for September 13, 2022</h2>\n\n\n\n<p>Save the date! A <strong>live interactive walk-through of WordPress 6.1 is coming up on September 13, 2022, at 16:00 UTC</strong>. The event will take place <a href=\"http://dotorgzoom.wordpress.com/\">via Zoom</a> and include a discussion of new major features, resolved tickets, and potential blockers.</p>\n\n\n\n<p>Attendance is open to anyone who wants to know more about what’s coming in the next major release. If you are unable to attend, the event will be recorded for on-demand viewing.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2022/09/05/6-1-product-walk-through/\">Learn more about the WordPress 6.1 product walk-through</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>The WordPress.org Homepage and Download page got a new jazz-inspired look</h2>\n\n\n\n<p>The <a href=\"https://wordpress.org/news/2022/08/a-new-wordpress-org-homepage-and-download-page/\">redesign of the WordPress.org homepage and download page</a> went live on August 15, 2022. The new pages highlight the benefits of using WordPress while making it easy to access resources for getting started. The look and feel build on the jazzy aesthetic that WordPress is known for.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"599\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/08/launch-featured.png?resize=1024%2C599&ssl=1\" alt=\"WordPress.org homepage\" class=\"wp-image-13323\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/08/launch-featured.png?resize=1024%2C599&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/08/launch-featured.png?resize=300%2C175&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/08/launch-featured.png?resize=768%2C449&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/08/launch-featured.png?resize=1536%2C898&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2022/08/launch-featured.png?w=2000&ssl=1 2000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>In addition, <a href=\"https://make.wordpress.org/meta/2022/09/01/simplifying-the-admin-bar-global-navigation-menu/\">the admin bar and global navigation menu have been updated</a> to simplify and better organize the content across the WordPress.org network. Expect more design updates and iterations as efforts to refresh the website continue.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Check out the new <a href=\"https://wordpress.org/\">WordPress.org homepage</a> and <a href=\"https://wordpress.org/download/\">download page</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Gutenberg versions 13.9 and 14.0 are here</h2>\n\n\n\n<p>Two new versions of Gutenberg were released last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/08/17/whats-new-in-gutenberg-13-9-17-august/\"><strong>Gutenberg 13.9</strong></a> became available for download on August 17, 2022. This release continues to iterate and polish the user interface (UI), interaction, and engine work for site editing.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/09/01/whats-new-in-gutenberg-14-0-31-august/\"><strong>Gutenberg 14.0</strong></a> brings a lot of enhancements, including extra block supports in the UI, a revamped List block, and more. It shipped on August 31, 2022.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>This <a href=\"https://make.wordpress.org/core/2022/08/25/core-editor-improvement-refining-the-template-creation-experience/\">new post in the “Core Editor Improvement” series</a> focuses on the template creation enhancements coming in WordPress 6.1. You can explore them now with the <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutengerg plugin</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>New localized content on Learn WordPress</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a> is currently expanding the non-English resources available on the platform! Last month, some members of the Training Team hosted <a href=\"https://wordpress.tv/2022/08/17/%e3%83%96%e3%83%ad%e3%83%83%e3%82%af%e3%82%a8%e3%83%87%e3%82%a3%e3%82%bf%e3%83%bc%e3%81%a7%e3%83%9b%e3%83%bc%e3%83%a0%e3%83%9a%e3%83%bc%e3%82%b8%e3%82%92%e4%bd%9c%e3%82%8d%e3%81%86%ef%bc%81/\">the first free online workshops in Japanese</a>. Following its success, two more sessions will be held on September 7 and 17, 2022. Get the details in the <a href=\"https://learn.wordpress.org/online-workshops/\">online workshop calendar</a>.</p>\n\n\n\n<p>In addition, learners have access to:</p>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorials/?series=&topic=&language=pt_BR&captions=&wp_version=\">Portuguese tutorials</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/lesson-plans/greek/\">Greek lesson plans</a></li>\n</ul>\n\n\n\n<p>Curious about what else is new on Learn WordPress? <a href=\"https://make.wordpress.org/updates/2022/09/01/whats-new-on-learnwp-august-2022/\">Check out the learning materials released in August 2022</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p class=\"has-extra-large-font-size\">Enter the educational world of the Training Team and its Learn initiative in <a href=\"https://wordpress.org/news/2022/09/episode-38-all-about-learnwp-with-special-guest-hauwa-abashiya/\">the latest episode of WP Briefing</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Team updates: WordPress 6.0.2 maintenance release, Twenty Twenty-Three kickoff, and more</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2022/08/wordpress-6-0-2-security-and-maintenance-release/\">WordPress 6.0.2 is now available</a>. This security and maintenance release features 12 bug fixes on Core, 5 bug fixes for the Block Editor, and 3 security fixes.</li>\n\n\n\n<li>The new <a href=\"https://make.wordpress.org/design/2022/08/10/twenty-twenty-three-default-theme-project-kickoff/\">Twenty Twenty-Three (TT3) theme</a>, which will ship with the WordPress 6.1 release, is now in development. The theme will bundle a collection of style variations designed by community members. The final curated set is expected to be chosen by September 7, 2022.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/community/2022/08/19/meetup-organizer-newsletter-august-2022/\">August edition of the Meetup Organizer Newsletter</a> shares tips on how to join and support the <a href=\"https://make.wordpress.org/community/2022/07/08/call-for-supporters-reactivating-wordpress-meetups-around-the-world/\">Meetup Reactivation project</a>.</li>\n\n\n\n<li>The feedback tool for <a href=\"https://translate.wordpress.org/\">translate.wordpress.org</a> is now available for all WordPress.org users that have opted into notifications. Learn more in the latest edition of the <a href=\"https://make.wordpress.org/polyglots/2022/08/22/polyglots-monthly-newsletter-august-2022/\">Polyglots Monthly Newsletter</a>.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2022/09/05/improving-devhub-code-references/\">Code references in DevHub (WordPress Developer Docs)</a> are now easier to use, understand and navigate.</li>\n\n\n\n<li>Members of the Documentation Team kicked off discussions around the <a href=\"https://make.wordpress.org/docs/2022/08/10/kick-off-wordpress-6-1-release-docs/\">WordPress 6.1 release docs</a>.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/core/2022/08/09/bug-scrub-schedule-for-6-1/\">bug scrub schedule for WordPress 6.1</a> was published last month. Anyone can join these sessions to learn, help, or even <a href=\"https://make.wordpress.org/core/handbook/tutorials/leading-bug-scrubs/\">lead one</a>.</li>\n\n\n\n<li>To celebrate World Photography Day (August 19), the Photos Team <a href=\"https://make.wordpress.org/photos/2022/08/18/wordpress-world-photography-day-challenge-2022/\">set up a fun photo challenge</a> to contribute to the <a href=\"https://wordpress.org/photos/t/worldphotographyday22/\">WordPress Photo Directory</a>. The initiative may be over, but photo contributions are always open!</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/performance/2022/08/09/core-performance-team-rep-nominations/\">Nominations</a> for the Performance Team Reps are open until September 9, 2022.</li>\n\n\n\n<li>Why is Gutenberg being developed on GitHub? Is Gutenberg part of core? <a href=\"https://make.wordpress.org/core/2022/08/18/wordpress-development-setup/\">Get answers</a> to these and other common questions about WordPress core and Gutenberg.</li>\n\n\n\n<li>Members of the Full Site Editing Outreach program <a href=\"https://make.wordpress.org/test/2022/08/25/hallway-hangout-discussion-on-block-themes-25-aug/\">joined a Hallway Hangout session to talk about block themes</a>, from workflow changes to tools they are using and more.</li>\n\n\n\n<li>The latest edition of People of WordPress features <a href=\"https://wordpress.org/news/2022/08/people-of-wordpress-bud-kraus/\">Bud Kraus</a> and his inspiring WordPress journey.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>The Testing Team is looking for <a href=\"https://make.wordpress.org/test/2022/08/10/testing-testing-calls-for-testing-facilitators/\">facilitators to expand testing efforts</a> across the project.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Feedback & testing requests</h2>\n\n\n\n<ul>\n<li>Are you a meetup organizer or member? Complete the 2021-2022 <a href=\"https://make.wordpress.org/community/2022/08/02/announcing-the-2021-2022-annual-meetup-survey/\">Annual Meetup Survey</a> (available in 14 languages) to help strengthen this global WordPress program.</li>\n\n\n\n<li>Members of the Core Team are looking for feedback on a <a href=\"https://make.wordpress.org/core/2022/08/19/a-new-system-for-simply-and-reliably-updating-html-attributes/\">new system for updating HTML attributes</a>. The call is open until September 9, 2022.</li>\n\n\n\n<li>There’s a new proposal to <a href=\"https://make.wordpress.org/core/2022/08/10/proposal-stop-merging-experimental-apis-from-gutenberg-to-wordpress-core/\">harmonize the process of merging new APIs from the Gutenberg plugin</a> to the WordPress core. Share your thoughts by September 7, 2022.</li>\n\n\n\n<li>Version 20.6 of WordPress for <a href=\"https://make.wordpress.org/mobile/2022/08/23/call-for-testing-wordpress-for-android-20-6/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/08/22/call-for-testing-wordpress-for-ios-20-6/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Gutenberg 13.8 introduced the first version of fluid typography, a new feature that allows theme authors to define text size that can scale and adapt to changes in screen size. <a href=\"https://make.wordpress.org/themes/2022/08/15/testing-and-feedback-for-the-fluid-typography-feature/\">Help shape its future by joining this testing call</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Event updates & WordCamps</h2>\n\n\n\n<ul>\n<li><a href=\"https://us.wordcamp.org/2022/wcus-what-you-need-to-know/\">Get ready for WordCamp US</a>! The event is happening on September 9 through 11, 2022, in San Diego, California. <a href=\"https://us.wordcamp.org/2022/schedule/\">Check out the schedule</a> and tune into the <a href=\"https://us.wordcamp.org/2022/livestream/\">WCUS livestream</a> if you are attending virtually.</li>\n\n\n\n<li>Openverse announced that they will be participating in the WordCamp US <a href=\"https://us.wordcamp.org/2022/contributor-day/\">Contributor Day</a> remotely. <a href=\"https://make.wordpress.org/openverse/2022/08/30/openverse-remote-contributor-day-at-wordcamp-us-2022/\">Learn how you can get involved</a>.</li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia</a> organizers <a href=\"https://asia.wordcamp.org/2023/tickets-now-on-sale/\">sold out</a> the first batch of standard and micro sponsor tickets in one day. The second batch will be released soon.</li>\n\n\n\n<li>Planning for WordCamp Europe 2023 is in full swing! You can still <a href=\"https://europe.wordcamp.org/2023/call-for-organisers/\">apply to be an organizer</a>.</li>\n\n\n\n<li>Join #WPDiversity with a <a href=\"https://www.eventbrite.com/e/speaker-workshop-for-indian-women-in-the-wordpress-community-sept-24-25-tickets-348466712317\">free, online speaker workshop for Indian women</a> in the WordPress community. The event will take place on September 24-25, 2022.</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/1f1f3-1f1f1.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://netherlands.wordcamp.org/2022/\">WordCamp Netherlands</a>, The Netherlands on September 15-16, 2022</li>\n\n\n\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://pontevedra.wordcamp.org/2022/\">WordCamp Pontevedra</a>, Spain on September 24-25, 2022</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>The Call for Speakers for WordCamp Asia is closing soon! <a href=\"https://asia.wordcamp.org/2023/call-for-speakers/\">Submit your application by September 30, 2022</a>, and help reach <a href=\"https://asia.wordcamp.org/2023/speaker-diversity-goals/\">WCAsia’s speaker diversity goals</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story that 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 edition of The Month in WordPress: <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a>, <a href=\'https://profiles.wordpress.org/mysweetcate/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mysweetcate</a>, <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a>, <a href=\'https://profiles.wordpress.org/bsanevans/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>bsanevans</a>, <a href=\'https://profiles.wordpress.org/priethor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>priethor</a>, <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</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:\"13445\";s: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: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:76:\"WP Briefing: Episode 38: All About LearnWP with Special Guest Hauwa Abashiya\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://wordpress.org/news/2022/09/episode-38-all-about-learnwp-with-special-guest-hauwa-abashiya/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2022 12:01:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=13425\";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:127:\"Enter the educational world of the WordPress Training team and its Learn initiative during this week\'s episode of the 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: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/2022/09/WP-Briefing-038.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:\"Santana Inniss\";s: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:21067:\"\n<p>In the thirty-eighth episode of the WordPress Briefing, join Josepha Haden Chomphosy and special guest Hauwa Abashiya for a discussion on the WordPress Training team and LearnWP initiative. </p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<p>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production: <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a> <br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2>Guests</h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/azhiyadev/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/azhiyadev/\">Hauwa Abashiya</a> </p>\n\n\n\n<h2>References</h2>\n\n\n\n<p><a href=\"https://heropress.com/essays/finding-my-global-family/\" data-type=\"URL\" data-id=\"https://heropress.com/essays/finding-my-global-family/\">Hauwa Abashiya HeroPress Essay</a><br><a href=\"https://make.wordpress.org/training\">make.wordpress.org/training</a><br><a href=\"http://make.wordpress.org\">make.wordpress.org</a><br><a href=\"https://wordpress.org/news/2022/08/wordpress-6-0-2-security-and-maintenance-release/\" data-type=\"URL\" data-id=\"https://wordpress.org/news/2022/08/wordpress-6-0-2-security-and-maintenance-release/\">WordPress 6.0.2 Security and Maintenance Release</a><br><a href=\"https://asia.wordcamp.org/2023/call-for-speakers/\" data-type=\"URL\" data-id=\"https://asia.wordcamp.org/2023/call-for-speakers/\">WordCamp Asia call for speakers </a>(deadline extended to September 30, 2022)<br><a href=\"https://us.wordcamp.org/2022/livestream/\" data-type=\"URL\" data-id=\"https://us.wordcamp.org/2022/livestream/\">WordCamp US Livestream information</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13425\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00] </strong></p>\n\n\n\n<p>Hello, everyone! And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:42] </strong></p>\n\n\n\n<p>Helping people who are new to WordPress learn how to make the most out of their CMS used to be one of the most clearly impactful things I ever did as a contributor. Whether it was making sure a brand new installation simply worked, or if the original setup needed to grow along with a solopreneur’s growing business needs, I found great joy in seeing how my local community was learning new tools together.</p>\n\n\n\n<p>You’ve probably heard me talk about the Learn WP initiative or the training team on this podcast before, but you might still be a little shy to get started with the team. So I have invited one of their team reps today to talk through what the team does.</p>\n\n\n\n<p>All right. I have with us today Hauwa Abashiya. She is one of the team reps for the training team and also works on the learn.wordpress.org site. Thank you for joining me today, Hauwa.</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:01:33] </strong></p>\n\n\n\n<p>And thank you for having me, Josepha, quite exciting to be on your podcast.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:37] </strong></p>\n\n\n\n<p>Oh, I, you know, when we were talking about doing this topic, I was like, you know, who would be an excellent person is Hauwa. Like you were such an interesting person to work with when we were working on the <a href=\"https://wordpress.org/news/2020/12/simone/\">5.6 release</a>. And then also, you just have such a lovely way of explaining the complicated things that we have going on in WordPress and especially on the training side of things. And so you were the first person that came to mind for me.</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:02:02]</strong></p>\n\n\n\n<p>Thank you. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:03]</strong></p>\n\n\n\n<p>Speaking of all the learn.wordpress.org things, you’ve been contributing to the WordPress project as a team rep for the training team for a bit. But that’s not really where you started. Can you tell me a bit about how you found your way to this team? </p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:02:15]</strong></p>\n\n\n\n<p>Well, I started by attending a WordCamp, and that was WordCamp Brighton. And if anyone’s read my <a href=\"https://heropress.com/essays/finding-my-global-family/\">article on HeroPress</a>, then they will know that I learned WordPress in one week. Went through beginner sessions of it. And then, I was like, yeah, let me just go turn up and see what it’s like.</p>\n\n\n\n<p>So turned up, and I met some wonderful people there. One of them being <a href=\"https://profiles.wordpress.org/miss_jwo/\">Jenny Wong</a>, who introduced me to the London meetup team. So, I then went there. They were looking for volunteers because they were planning WordCamp London for 2019. And me being me, I was like, yeah, sure. Why not? And got thrown into the deep end, but no, an amazing team.</p>\n\n\n\n<p>I got to meet some really amazing people. And yeah, just went from there then, you know, because I was doing stuff with WordCamp London, ended up going to WordCamp Europe. And I think there’s probably quite a lot of people who say they fully got into contributing in WordCamp Europe. So I was doing little bits and pieces then on like, marketing team and then met <a href=\"https://profiles.wordpress.org/jessecowens/\">Jesse [Owens]</a> at the training team cause <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> introduced me to him and just went from there.</p>\n\n\n\n<p>And then in terms of team rep, I mean, <a href=\"https://wordpress.org/support/users/courane01/\">Courtney Robertson</a> sent out SOS, because Learn had just launched, and there were a couple of things that we needed. So that was during the soft launch. And I was like, yeah, sure. I’ll help you. I’m not doing much. And that’s how I ended up doing team rep.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:46]</strong></p>\n\n\n\n<p>I love that so many initial stories in the WordPress community start with like, well, I went to a WordCamp cause I was like, what in the world is this? And then people were like, we need some help. And I thought to myself, what else am I doing? Like, so many stories start that way. And I just love it. </p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:04:03]</strong></p>\n\n\n\n<p>Yeah. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:03]</strong></p>\n\n\n\n<p>So you mentioned learn.wordpress.org. That is a part of the training team in the WordPress project. Correct?</p>\n\n\n\n<p>Yeah. So can you give us an idea of the difference between the two? Cause like normally, with a project as big as Learn, you would expect to see like a whole separate team. But these are two intertwined teams using two intertwined concepts.</p>\n\n\n\n<p>And so can you give us an idea of the difference between them? </p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:04:29]</strong></p>\n\n\n\n<p>So I like to see learners, that’s the content. So it’s the content that we have on the platform, and the training team wrangles all the content on Learn. So that would be like your videos, your lesson plans, and online workshops. Yeah, so we wrangle the content that’s on there.</p>\n\n\n\n<p>We try to bring a lot of different teams together, and that’s one of the things the beauty, I think, of Learn is that there is a lot of cross-team collaboration, which started from the beginning and I think just will continue and get better and better.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:59]</strong></p>\n\n\n\n<p>Yeah. And the workshops, those are once a week, right? </p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:05:04]</strong></p>\n\n\n\n<p>Yeah. So you have online workshops, which used to be called social learning spaces, which used to be called discussion groups. So those run once a week. There’s a number running, and there are some that are launching in Japan. And I think <a href=\"https://profiles.wordpress.org/bsanevans/\">Ben Evans</a> has been quite key in getting quite a lot of those going, and I think <a href=\"https://profiles.wordpress.org/piyopiyofox/\">Destiny Kanno</a> as well.</p>\n\n\n\n<p>So, that’s the beauty is you get to see a lot more languages coming up. Those run once a week. And then we obviously have lesson plans, which traditionally that’s what the training team used to always make for Meetup organizers. So if you didn’t have a speaker, you could go and get a lesson plan and run through something, or anybody could pick one up.</p>\n\n\n\n<p>So they are used mainly by like our Meetup users and then people who are running any boot camps or sessions, or you wanna just take somebody through WordPress and teach them, you can pick one up and run through it. And now we’ve got courses on Learn, which is quite exciting. Got a couple of courses.</p>\n\n\n\n<p>And I know there’s about three or four courses in development. There is a bit more WordPress development based rather than user based. There’s a fourth piece of content, and that is just the general workshop. So tutorials, I think no tutorials is what we’re calling them now. So there’s like all our online videos. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:17]</strong></p>\n\n\n\n<p>I tell you terminology in any project, the age and size of WordPress is hard to keep everything straight, but especially when you’ve just changed it you’re like, what do we call it though? </p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:06:27]</strong></p>\n\n\n\n<p>Yeah. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:30]</strong></p>\n\n\n\n<p>So if I understand correctly, because as you mentioned, like you have this post up on HeroPress, you don’t actually come from a training background. Like you aren’t a teacher or corporate trainer or anything, but you have really committed to contributing to the training team and to learn.wordpress.org.</p>\n\n\n\n<p>So, from your perspective, from like the, I’m not a trainer perspective, what’s the most exciting thing for learn.wordpress.org in the near future? </p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:06:58]</strong></p>\n\n\n\n<p>I think it’s the collaboration. It’s the potential that Learn has. So I don’t have a training background, but interestingly enough, I come from Kaduna, Nigeria. And Kaduna cause all the states in Nigeria have a tagline, and, Kaduna is actually the center of learning. So there must be some link there, so yeah.</p>\n\n\n\n<p>So, I think the beauty of that is you don’t have to have a training background. You can come in and impart your knowledge, and there are people available in the team that can help you impart that knowledge. So if it’s like a lesson plan that you wanna draw up, we’ve got people that can help and assist in that.</p>\n\n\n\n<p>Or you wanna run an online workshop. There are people that can assist you. And I think that’s also the beauty of WordPress is that we’re all there to help each other. So just seeing that and seeing how, as time has gone on how the team has actually just been growing cause more and more people are coming.</p>\n\n\n\n<p>And then with that, you’ve got more of like the different languages coming in, and I know we might touch on that later, but it’s, I think to me, that is the beauty that anyone can actually now come in and learn. And Learn as this platform that is accessible to everybody. So it’s not necessarily behind a, like a paywall or anything, which is, there’s nothing wrong with that, but there are people that it’s like, well, okay, you can access something by the community for the community.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:32]</strong></p>\n\n\n\n<p>I think like your last thought there, something that’s by the community for the community. That’s one of the things that I noticed early on about the WordPress community. So I’ve been in the WordPress community for a long time, but when I started doing the administrative back office, things that are invisible and no one wants to know about, because it’s boring.</p>\n\n\n\n<p>When I started doing that work, one of the things I noticed and that I really treasure the most about the WordPress community is that they want to do things together. They want to look at the problem together. They want to find a solution together. And a lot of times they just want to learn together as well.</p>\n\n\n\n<p>We see that there is a real, I don’t know, not, it’s not a safety and numbers question. I think it is a long-standing feeling that we can all kind of get further together and that we are better together. And so I like your thought there.</p>\n\n\n\n<p>You mentioned, though, translations, and I know that this came up at WordCamp Europe.</p>\n\n\n\n<p>We don’t actually have a lot of translated content on learn.wordpress.org. There’s some technical issues that exist there, but are there a few languages that we already are sort of seeing translated courses for? Translated lessons for? </p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:09:47]</strong></p>\n\n\n\n<p>Yeah. So we have a couple in Hindi, I believe. And I know we’ve got some Greek translations that have been coming up, so I know, I think it was last year WordCamp India, during contributor day, we had quite a lot of people translating stuff then, and I suppose the online WordCamps that we’ve been able to rank. Cause I think our first like face to face is this year, so they didn’t do that much translation there, but we’ve seen an increase in people wanting to translate. </p>\n\n\n\n<p>And I think those are the ones that come to mind. And I know Japanese, I think that was just recently, in the last two weeks, somebody’s translated one or two of the tutorials have been translated.</p>\n\n\n\n<p>But we’re getting more and more requests coming through. And I know we kind of touched on this in our earlier discussion, but it’s like, how do you manage that? Cause you’re right, we don’t have a way to easily manage polyglots on Learn at the moment or WordPress in general. But I think seeing that, and I keep saying to people, I don’t wanna lose that engagement cause if you’ve got the people engaged, let them just do it.</p>\n\n\n\n<p>And I don’t normally say this, but let them do it, and we’ll figure out how to sort out the whole pile when it comes in later. Because you kind of don’t want to lose them because I feel like if we say, no, we’ll wait until that comes in, we’ll lose a lot of the engagement. And come that time, people will be like, oh no, I’m not that interested. Or it might be an even more effort to try and bring more people on board.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:18]</strong></p>\n\n\n\n<p>That’s always a struggle, like wanting to be able to get something good out without insisting that it be perfect. Like that whole perfect is the enemy of the good sort of concept. </p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:11:30]</strong></p>\n\n\n\n<p>Yeah. Mm-hmm </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:30]</strong></p>\n\n\n\n<p>When we were talking about this way back in June, I was like, I obviously would love to get a perfect solution out immediately, but like, you’re right.</p>\n\n\n\n<p>In the meantime, do we just be if you don’t speak English, you cannot learn here?</p>\n\n\n\n<p>Like that’s not fair.</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:11:45]</strong></p>\n\n\n\n<p>No.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:46] </strong></p>\n\n\n\n<p>We want everyone to be able to learn here in their own languages, and yeah. That’s just a living, breathing issue with a global project, I think. </p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:11:56]</strong></p>\n\n\n\n<p>Yeah. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:57]</strong></p>\n\n\n\n<p>Now that we left us on like a really juicy topic, just the lightest thing we could find. Is there anything else that you wanna be sure to share with the WordPress Briefing listeners before we head out?</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:12:10]</strong></p>\n\n\n\n<p>Come and join the training team. Like I said, you don’t have to be a trainer. You can come in, and help us take notes. You can come in and edit, and review. If you are a subject matter expert, we also have the <a href=\"https://make.wordpress.org/training/handbook/faculty-program/\">faculty program</a>, which was launched. Was it a month ago now?</p>\n\n\n\n<p>Sorry. Days, months, weeks merge for me these days. But yeah, so that’s like a dedicated volunteer team. And in there, we’ve got content creators, editors, subject matter experts, and just admin stuff. If you wanna help us with the admin stuff. If you’re a GitHub guru, get in touch cause we are trying to automate some of our processes, and we could use the help, but yeah, just come join us.</p>\n\n\n\n<p>Join one of our meetings, which run on Tuesdays at 7 AM UTC and 4:00 PM UTC. </p>\n\n\n\n<p>Yes, that’s right. I get my time right.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:13:03] </strong></p>\n\n\n\n<p>If it’s not right, we’ll put it. We’ll correct it in the show notes. </p>\n\n\n\n<p>Also, if you are not necessarily familiar with the WordPress project and how to get started with contributions, you can find the training team and a lot of information about them and all the other teams on make.wordpress.org.</p>\n\n\n\n<p>I will share that in the show notes as well. make.wordpress.org/training is where you can find Hauwa’s team. Hauwa, thank you again for joining me today.</p>\n\n\n\n<p><strong>[Hauwa Abashiya 00:13:30]</strong></p>\n\n\n\n<p>No, thank you for having me. It’s just a wonderful treat. I get to listen to you, and now I get to be on it. </p>\n\n\n\n<p>So, yeah, it’s good. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:13:37]</strong></p>\n\n\n\n<p>I hope that some of you feel inspired to stop by and see what the team is up to learn something new about WordPress or contribute a little something yourself. And with that, I’ll bring us home with the small list of big things. First thing, there was a freshly pressed minor release last week. You probably didn’t notice it.</p>\n\n\n\n<p>It probably went quite smoothly in the background and never interrupted you at all. However, if you want to read what was in it, you can head to wordpress.org/news now, or click on the link in the show notes. </p>\n\n\n\n<p>Second thing, is that coming up at the end of this week, September 9th, 2022, WordCamp US is back and ready to help broaden your WordPress knowledge. If you will be there, I hope it is a wonderful time, but if you won’t be there in person, I’ll include a link to register for the live stream, or you can watch all of those sessions afterward on wp.tv or the WordPress YouTube channel.</p>\n\n\n\n<p>Third thing on our list of small list of big things is that WordPress Translation Day is coming up. That’s normally at the end of September, it coincides with a global day of appreciation for translators just generally across the world. And so that is coming, it’s normally around the 28th or so. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:14:55]</strong></p>\n\n\n\n<p>So put that in your calendars. As soon as I have any information, as soon as I have a link to share with you all, I will have that for you as well. </p>\n\n\n\n<p>And the final thing on my list today is that if you are hoping to speak at WordCamp Asia, 2023, you have 10 more days, September 15th, 2022**, to apply for that.</p>\n\n\n\n<p>We need topics of all sorts, from security hardening and backend development to entrepreneurial best practices, WordPress out of the box all the way back around to the importance of securing open source freedom. Even when people don’t know they need them. If you’ve got something you’re a bit passionate about, something that you are a passionate expert about especially, we want to see your application. And that, my friends, is your small list of big things.</p>\n\n\n\n<p>Thank you for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosy. And I’ll see you again in a couple of weeks.</p>\n\n\n\n<p><br>** <em><strong>Special note: the deadline to apply as a speaker to WordCamp Asia was extended to September 30th, 2022, after the recording of this episode.</strong></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:\"13425\";s: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:72:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"People of WordPress: Bud Kraus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2022/08/people-of-wordpress-bud-kraus/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Aug 2022 21:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"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: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:3;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:4;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:5;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=13385\";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:135:\"The latest People of WordPress story features trainer Bud Kraus, from the United States, talking about the software and how he uses it.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14109:\"\n<p><strong>This month, as we approach <a href=\"https://us.wordcamp.org/2022/\">WordCamp US</a>, we feature Bud Kraus, a WordPress trainer who has made a career in helping others learn about software. He also shares how he has developed an approach to using technology in order to overcome longstanding difficulties with his eyesight.</strong></p>\n\n\n\n<p><strong>In this People of WordPress series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"1014\" height=\"627\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/08/bud-kraus-aug-powp.jpg?resize=1014%2C627&ssl=1\" alt=\"Bud Kraus playing the guitar\" class=\"wp-image-13341\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/08/bud-kraus-aug-powp.jpg?w=1014&ssl=1 1014w, https://i2.wp.com/wordpress.org/news/files/2022/08/bud-kraus-aug-powp.jpg?resize=300%2C186&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/08/bud-kraus-aug-powp.jpg?resize=768%2C475&ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Bud Kraus</em> with his guitar</figcaption></figure>\n\n\n\n<h2>Teaching WordPress strengthens your understanding</h2>\n\n\n\n<p>Bud has taught web design since 1998, with students from more than 80 countries online or in person. He was determined not to let his sight difficulties stop him from his wish to help others learn website building and maintenance skills. </p>\n\n\n\n<p>As WordPress evolves and new features release, Bud decided to extend his training services around helping new and existing users improve and practice their skills. He supports others in open source through volunteering to speak at WordPress events, and encourages others to do so too. He also gives time to help produce material for the free-to-access resource <a href=\"https://learn.wordpress.org/\">Learn WordPress,</a> which is part of the WordPress.org project. </p>\n\n\n\n<p>As a contributor to the <a href=\"https://make.wordpress.org/test/\">Test</a> and <a href=\"https://make.wordpress.org/training/\">Training</a> teams, Bud is keen for others to try contributing to these areas and help support the project’s future development. One of his current training priorities is to help people with using the block editor and Full Site Editing. He is an advocate for the usability of WordPress today, saying: “I can design all aspects of a website now with a block.”</p>\n\n\n\n<h2>Using WordPress as a traditional developer</h2>\n\n\n\n<p>Bud’s WordPress journey began with a lunch at Grand Central Station in New York in 2009. A friend and former client was promoting the idea of using WordPress, which Bud initially resisted.</p>\n\n\n\n<p>“I’m a code guy…,” he told his friend at the time. “I will never use anything like that.”</p>\n\n\n\n<p>However, the friend persisted. Eventually, Bud gave it a try and found a new approach with things called themes and plugins. His first encounter was with <a href=\"https://wordpress.org/download/releases/\">WordPress 2.6</a>. Bud signed up with a hosting company and found a theme where he could learn to edit and understand child themes.</p>\n\n\n\n<p>He said: “Once I saw that you could edit anything and make it yours, I was hooked. The endorphins were freely coursing through my veins.” Bud was hooked.</p>\n\n\n\n<h2>Teaching WordPress strengthens your own understanding of the software</h2>\n\n\n\n<p>There’s an old saying that the best way to learn something new is to turn around and teach someone else.</p>\n\n\n\n<p>Bud was already an instructor at the Fashion Institute of Technology when he thought, “I could teach WordPress!”</p>\n\n\n\n<p>And so he did, packing classrooms all through those first years of WordPress as it swept through the design world and further.<br><br>But Bud had more to discover. He said: “Two big things were about to happen that were really going to change my life. They would show me the way to the WordPress community – not that I even knew what that was.”</p>\n\n\n\n<h2>Sharing lessons learnt with the WordPress community</h2>\n\n\n\n<p>In 2014, one of his students suggested he start going to the New York WordPress Meetup. </p>\n\n\n\n<p>As he started going to WordCamps in New York City, he realized that WordPress was getting very large. What’s more, it had a community of people with whom he felt at home and could learn alongside.</p>\n\n\n\n<p>Bud gave a talk for the first time in 2016 at the only WordCamp to this day that has been held at the United Nations. He shared his knowledge of “Lessons Learned: Considerations For Teaching Your Clients WordPress.” </p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"952\" height=\"1024\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/08/bud-kraus-1.jpg?resize=952%2C1024&ssl=1\" alt=\"Bud Kraus talking at a WordCamp\" class=\"wp-image-13340\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/08/bud-kraus-1.jpg?w=952&ssl=1 952w, https://i2.wp.com/wordpress.org/news/files/2022/08/bud-kraus-1.jpg?resize=279%2C300&ssl=1 279w, https://i2.wp.com/wordpress.org/news/files/2022/08/bud-kraus-1.jpg?resize=768%2C826&ssl=1 768w\" sizes=\"(max-width: 952px) 100vw, 952px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Bud Kraus speaks at WordCamps to help people use the software even more effectively</em></figcaption></figure>\n\n\n\n<p>From there, Bud went on to speak at other WordCamps in the US. He also volunteered as a speaker wrangler for his home camp in New York City in 2018 and 2019.</p>\n\n\n\n<h2>From speaking to writing about WordPress</h2>\n\n\n\n<p>At some point before the Covid-19 lockdown, Bud found another outlet, this time in writing. </p>\n\n\n\n<p>Bud heard a magazine was advertising for submissions related to WordPress. His first attempted article did not make the cut.</p>\n\n\n\n<p>So in his second submission, Bud took the risk of writing about something deeply personal – a topic he really didn’t want to write about at all.</p>\n\n\n\n<p>He gathered his courage and revealed to the entire web design world that he was legally blind.</p>\n\n\n\n<p>The article appeared as <strong>“</strong><a href=\"https://www.smashingmagazine.com/2018/05/using-low-vision-teach-wordpress/\"><strong>Using Low Vision As My Tool To Help Me Teach WordPress</strong></a><strong>”.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"510\" height=\"600\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/09/bud-kraus-2.jpg?resize=510%2C600&ssl=1\" alt=\"Bud Kraus\" class=\"wp-image-13426\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/bud-kraus-2.jpg?w=510&ssl=1 510w, https://i0.wp.com/wordpress.org/news/files/2022/09/bud-kraus-2.jpg?resize=255%2C300&ssl=1 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Bud Kraus</figcaption></figure>\n\n\n\n<p>Since the age of 37, Bud has had macular degeneration in both eyes, which affects his central vision. It is a leading cause of legal blindness in the United States and many other countries. </p>\n\n\n\n<p>He relies on his peripheral vision and finding ways to compensate. He also tends to see things in a flat dimension and has a difficulty discerning contrast – he is glad there are starting to be improvements in color contrasts in web design!<br><br>He uses tools like Speech to Text, larger sized cursors and bigger font sizes, and heavily uses zooming back in and out when working with WordPress. He is able to recognize patterns but has to rely on detailed preparation and memorizing materials. </p>\n\n\n\n<p>In his first magazine article acknowledging this situation, he shared the added difficulties that technology creates for people with visual conditions, and tips that he had found to try and find alternative routes around them. He uses the technique of finding alternatives in his training work to help people learn and understand, realizing that all people have different ways of reading and understanding. His words and subsequent stories have inspired others and enabled more people to highlight accessibility. He describes himself as a ‘stakeholder in ensuring that the WordPress admin is accessible.’</p>\n\n\n\n<p>A year after its first publication, the piece became a WordCamp talk, ‘My Way with WordPress.’ The talk was a hit and started many conversations about accessibility and the importance of raising awareness.</p>\n\n\n\n<p>A few months later, he gave a Gutenberg talk at the first WordCamp Montclair. There was no way he could have done it from a laptop, so instead, he did it from his 27” desktop computer. </p>\n\n\n\n<p>Bud said: “It was a presentation on Gutenberg plugins. Since I couldn’t do this from a notebook screen (the screen is too small and the keyboard is hard for me to manipulate), it was decided that I would bring in my 27″ desktop machine to a WordCamp. I’m probably the first person to ever have done this. It was good thing I only lived a few miles away.”</p>\n\n\n\n<p>He added: “I sat behind my computer, did my thing, and every once in a while peered out to make sure people were still there.”</p>\n\n\n\n<h2>Different ways of contributing to WordPress</h2>\n\n\n\n<p>One of the main ways Bud supported the community around the software was through talks at WordCamps and helping others to speak. </p>\n\n\n\n<p>During the Covid-19 pandemic, he was keen to continue contributing when WordCamps were no longer meeting in person. He turned greater attention to supporting the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> resource, a free to use learning platform made by and for the community itself. </p>\n\n\n\n<p>More training materials on the block editor can be found on Learn WordPress and his WordCamp talks are available on <a href=\"https://wordpress.tv/?s=kraus&speakers=bud-kraus\">WordPress.tv</a>.</p>\n\n\n\n<h2>Global reach and meaning through WordPress</h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"600\" height=\"800\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/08/bud-kraus-with-josepha.jpg?resize=600%2C800&ssl=1\" alt=\"Bud Kraus with Josepha\" class=\"wp-image-13342\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/08/bud-kraus-with-josepha.jpg?w=600&ssl=1 600w, https://i0.wp.com/wordpress.org/news/files/2022/08/bud-kraus-with-josepha.jpg?resize=225%2C300&ssl=1 225w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Bud Kraus with Josepha Haden Chomphosy at WordCamp Montclair, NJ 2022</em></figcaption></figure>\n\n\n\n<p>Bud’s training materials and willingness to talk about accessibility have helped so many people find their way with WordPress. He in turn is an advocate for the community around open source.</p>\n\n\n\n<p>He said: “The software is really good, and the people are even better.” </p>\n\n\n\n<p>He added: “I get a sense of accomplishment whenever I launch a new or redesigned site. It’s also given me a great feeling to know that many people have learned WordPress around the world from my <a href=\"https://wordpress.tv/?s=kraus&speakers=bud-kraus\">talks and presentations</a>. This might just be the most gratifying thing of all.”</p>\n\n\n\n<h2>Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community. 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>Contributors</h2>\n\n\n\n<p>Thanks to Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), Mary Baum (<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>), Surendra Thakor (<a href=\'https://profiles.wordpress.org/sthakor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sthakor</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Larissa Murillo (<a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>), and Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), for work on this feature. Thank you too to Bud Kraus (<a href=\'https://profiles.wordpress.org/trynet/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>trynet</a>) for sharing his experiences.</p>\n\n\n\n<p>Thank you to 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 of the <em>People of WordPress</em> series.</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://i1.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\" 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:\"13385\";s: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:72:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 6.0.2 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2022/08/wordpress-6-0-2-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Aug 2022 19:39:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:5:\"6.0.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:\"\";}i:4;a:5:{s:4:\"data\";s:14:\"minor-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:5;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13346\";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:299:\"WordPress 6.0.2 is now available for download. This security and maintenance release features several updates since WordPress 6.0.1 in July 2022. You can review a summary of the key changes in this release by visiting https://make.wordpress.org/core/2022/08/23/wordpress-6-0-2-rc1-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:11:\"Dan Soschin\";s: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:5702:\"\n<p><strong>WordPress 6.0.2</strong> is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?milestone=6.0.2\">12 bug fixes on Core</a>, <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.0\">5 bug fixes</a> for the Block Editor, and 3 security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 6.0.2 is a short-cycle release. You can review a summary of the main updates in this release by reading the <a href=\"https://make.wordpress.org/core/2022/08/23/wordpress-6-0-2-rc1-is-now-available/\">RC1 announcement</a>.</p>\n\n\n\n<p>The next major release will be <a href=\"https://make.wordpress.org/core/6-1/\">version 6.1</a> planned for November 1, 2022.</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.0.2.zip\">download WordPress 6.0.2 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-0-2\">visit the HelpHub site</a>.</p>\n\n\n\n<h2>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>Fariskhi Vidyan for finding a possible SQL injection within the Link API.</li>\n\n\n\n<li><a href=\"https://hackerone.com/entropy1337\">Khalilov Moe</a> for finding an XSS vulnerability on the Plugins screen.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> of the WordPress security team, for finding an output escaping issue within <code>the_meta()</code>.</li>\n</ul>\n\n\n\n<h2>Thank you to these WordPress contributors</h2>\n\n\n\n<p>The WordPress 6.0.2 release was led by <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">@sergeybiryukov</a> and <a href=\"https://profiles.wordpress.org/gziolo/\">@gziolo</a>.</p>\n\n\n\n<p>WordPress 6.0.2 would not have been possible without the contributions of more than 50 people. Their asynchronous coordination to deliver several enhancements and 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/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">annezazu</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/uofaberdeendarren/\">Darren Coutts</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/martinkrcho/\">eMKey</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/huubl/\">huubl</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</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/jonmackintosh/\">jonmackintosh</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a>, <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a>, <a href=\"https://profiles.wordpress.org/lovor/\">Lovro Hrust</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">marybaum</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/paulkevan/\">paulkevan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</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/tykoted/\">Teddy Patriarca</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tommusrhodus/\">tommusrhodus</a>, <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">webcommsat AbhaNonStopNewsUK</a>, and <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</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:\"13346\";s: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: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:46:\"A New WordPress.org Homepage and Download Page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wordpress.org/news/2022/08/a-new-wordpress-org-homepage-and-download-page/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 Aug 2022 15:34: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s: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: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:2;a:5:{s:4:\"data\";s:4:\"Meta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=13321\";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:\"The WordPress experience has significantly evolved in the past few years. In order to highlight the power of WordPress on WordPress.org, the last few weeks have seen a homepage and download page redesign kickoff and shared mockups. Today, these new designs are going live! Like the News pages before them, these refreshed pages are inspired […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:8395:\"\n<p>The WordPress experience has significantly evolved in the past few years. In order to highlight the power of WordPress on WordPress.org, the last few weeks have seen a homepage and download page <a href=\"https://make.wordpress.org/design/2022/07/08/project-kickoff-wordpress-org-homepage-and-download-page-redesign/\">redesign kickoff</a> and <a href=\"https://make.wordpress.org/design/2022/07/27/project-update-wordpress-org-homepage-and-download-page-mockups/\">shared mockups</a>. Today, these new designs are going live! Like <a href=\"https://wordpress.org/news/2022/02/a-new-wordpress-news/\">the News pages before them</a>, these refreshed pages are inspired by the jazzy look & feel WordPress is known for.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"599\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/08/Featured-Image.png?resize=1024%2C599&ssl=1\" alt=\"\" class=\"wp-image-13327\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/08/Featured-Image.png?resize=1024%2C599&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/08/Featured-Image.png?resize=300%2C175&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/08/Featured-Image.png?resize=768%2C449&ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2022/08/Featured-Image.png?resize=1536%2C898&ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2022/08/Featured-Image.png?w=1710&ssl=1 1710w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The <a href=\"https://wordpress.org/\">new homepage</a> brings more attention to the benefits and experience of using WordPress, while also highlighting the community and resources to get started. </p>\n\n\n\n<p>The <a href=\"https://wordpress.org/download/\">new download page</a> greets visitors with a new layout that makes getting started with WordPress even easier by presenting both the download and hosting options right at the top.</p>\n\n\n\n<p>This redesign was made possible through great collaboration between Design, Marketing, and Meta teams. Thank you to everyone involved throughout this update:</p>\n\n\n\n<p class=\"is-style-wporg-props-long\"><a href=\'https://profiles.wordpress.org/abuzon/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>abuzon</a> <a href=\'https://profiles.wordpress.org/adamwood/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>adamwood</a> <a href=\'https://profiles.wordpress.org/adeebmalik/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>adeebmalik</a> <a href=\'https://profiles.wordpress.org/alexandreb3/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>alexandreb3</a> <a href=\'https://profiles.wordpress.org/alipawp/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>alipawp</a> <a href=\'https://profiles.wordpress.org/angelasjin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>angelasjin</a> <a href=\'https://profiles.wordpress.org/aniash_29/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>aniash_29</a> <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a> <a href=\'https://profiles.wordpress.org/beafialho/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>beafialho</a> <a href=\'https://profiles.wordpress.org/bjmcsherry/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>bjmcsherry</a> <a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a> <a href=\'https://profiles.wordpress.org/colinchadwick/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>colinchadwick</a> <a href=\'https://profiles.wordpress.org/crevilaro/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>crevilaro</a> <a href=\'https://profiles.wordpress.org/critterverse/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>critterverse</a> <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a> <a href=\'https://profiles.wordpress.org/dd32/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dd32</a> <a href=\'https://profiles.wordpress.org/dufresnesteven/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dufresnesteven</a> <a href=\'https://profiles.wordpress.org/eboxnet/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>eboxnet</a> <a href=\'https://profiles.wordpress.org/eidolonnight/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>eidolonnight</a> <a href=\'https://profiles.wordpress.org/elmastudio/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>elmastudio</a> <a href=\'https://profiles.wordpress.org/fernandot/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>fernandot</a> <a href=\'https://profiles.wordpress.org/geoffgraham/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>geoffgraham</a> <a href=\'https://profiles.wordpress.org/iandunn/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>iandunn</a> <a href=\'https://profiles.wordpress.org/javiarce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>javiarce</a> <a href=\'https://profiles.wordpress.org/joedolson/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joedolson</a> <a href=\'https://profiles.wordpress.org/jpantani/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jpantani</a> <a href=\'https://profiles.wordpress.org/kellychoffman/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>kellychoffman</a> <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a> <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a> <a href=\'https://profiles.wordpress.org/matt/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>matt</a> <a href=\'https://profiles.wordpress.org/maurodf/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>maurodf</a> <a href=\'https://profiles.wordpress.org/melchoyce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>melchoyce</a> <a href=\'https://profiles.wordpress.org/mikachan/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mikachan</a> <a href=\'https://profiles.wordpress.org/nikhilgandal/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nikhilgandal</a> <a href=\'https://profiles.wordpress.org/pablohoneyhoney/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>pablohoneyhoney</a> <a href=\'https://profiles.wordpress.org/peakzebra/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>peakzebra</a> <a href=\'https://profiles.wordpress.org/poliuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>poliuk</a> <a href=\'https://profiles.wordpress.org/priethor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>priethor</a> <a href=\'https://profiles.wordpress.org/psmits1567/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>psmits1567</a> <a href=\'https://profiles.wordpress.org/renyot/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>renyot</a> <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a> <a href=\'https://profiles.wordpress.org/ryelle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ryelle</a> <a href=\'https://profiles.wordpress.org/santanainniss/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>santanainniss</a> <a href=\'https://profiles.wordpress.org/sereedmedia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sereedmedia</a> <a href=\'https://profiles.wordpress.org/sippis/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sippis</a> <a href=\'https://profiles.wordpress.org/tellyworth/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>tellyworth</a> <a href=\'https://profiles.wordpress.org/tobifjellner/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>tobifjellner</a> <a href=\'https://profiles.wordpress.org/webdados/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webdados</a> <a href=\'https://profiles.wordpress.org/willmot/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>willmot</a></p>\n\n\n\n<p>Your comments, including some <a href=\"https://make.wordpress.org/meta/2016/12/12/new-homepage-redesign/\">feedback from the 2016 redesign</a>, were taken into consideration with this work. Expect more updates to come as efforts to jazz up WordPress.org continue.</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:\"13321\";s: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: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:36:\"The Month in WordPress – July 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2022/08/the-month-in-wordpress-july-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Aug 2022 08:57:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=13306\";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:362:\"July 2022 brought a lot of exciting announcements and proposals for the WordPress project, from an updated timeline for the WordPress 6.1 release, to design updates on WordPress.org. Read on to learn more about the latest news from the community. WordPress 6.1 development cycle is now published Mark your calendars! The WordPress 6.1 development cycle […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"rmartinezduque\";s: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:15049:\"\n<p>July 2022 brought a lot of exciting announcements and proposals for the WordPress project, from an updated timeline for the WordPress 6.1 release, to design updates on WordPress.org. Read on to learn more about the latest news from the community.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2>WordPress 6.1 development cycle is now published</h2>\n\n\n\n<p>Mark your calendars! The <a href=\"https://make.wordpress.org/core/6-1/\">WordPress 6.1 development cycle</a> has been published along with its release team. The <strong>expected release date</strong> has been updated to <a href=\"https://make.wordpress.org/core/2022/07/26/wordpress-6-1-planning-roundup-v2/\"><strong>November 1, 2022</strong></a>, to incorporate feedback received on the first proposed schedule.</p>\n\n\n\n<p>In the meantime, you can upgrade WordPress to version 6.0.1. This maintenance release became <a href=\"https://wordpress.org/news/2022/07/wordpress-6-0-1-maintenance-release/\">available for download</a> on July 12, 2022, and includes several updates since WordPress 6.0 in May 2022.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Want to get more involved with WordPress? Join Executive Director Josepha Haden Chomphosy, as she guides you through the five stages of contribution in a <a href=\"https://wordpress.org/news/2022/07/episode-36-beginners-guide-to-contributions-2-0/\">recent episode of WP Briefing</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>A new look for the WordPress Homepage and Download page</h2>\n\n\n\n<p>Following the revamp of <a href=\"https://wordpress.org/news/\">WordPress.org/News</a> and the <a href=\"https://wordpress.org/gutenberg/\">Gutenberg page</a>, further design updates are coming to WordPress.org to create a fresh and modern user experience that reflects the future of WordPress.</p>\n\n\n\n<p>The WordPress.org home and download pages will be the next pieces to get a refreshed look and feel. The redesign project <a href=\"https://make.wordpress.org/design/2022/07/08/project-kickoff-wordpress-org-homepage-and-download-page-redesign/\">kicked off</a> on July 8, 2022, and the <a href=\"https://make.wordpress.org/meta/2022/08/01/developing-the-redesigned-home-and-download-pages/\">development work</a> is already underway.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Take a look at the design mockups and <a href=\"https://make.wordpress.org/design/2022/07/27/project-update-wordpress-org-homepage-and-download-page-mockups/\">join the conversation</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Gutenberg versions 13.6, 13.7, and 13.8 are here</h2>\n\n\n\n<p>Three new versions of Gutenberg have been released since last month’s edition of The Month in WordPress:</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/\"><strong>Gutenberg 13.6</strong></a> shipped on July 6, 2022. It includes 26 bug fixes and accessibility enhancements. This release also builds on previous work to expand theme.json and to allow you to create a cohesive design across blocks.</li><li><a href=\"https://make.wordpress.org/core/2022/07/20/whats-new-in-gutenberg-13-7-20-july/\"><strong>Gutenberg 13.7</strong></a> brings an updated modal design, the ability to apply block locking to inner blocks, and <a href=\"https://make.wordpress.org/core/2022/07/21/core-editor-improvement-deeper-customization-with-more-template-options/\">new template types</a>, to name a few highlights. It was released on July 20, 2022.</li><li>The latest Gutenberg release, <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/\"><strong>version 13.8</strong></a>, went live on August 3, 2022. It comes with fluid typography support among other enhancements, a new feature that will allow you to define text size that can scale and adapt to changes in screen size.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>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 updates.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Team updates: WordPress mobile app changes, pattern previews, Five for the Future improvements</h2>\n\n\n\n<ul><li>The Mobile Team announced last week that it will be <a href=\"https://make.wordpress.org/mobile/2022/07/27/refocusing-the-wordpress-app-on-core-features/\">refocusing the WordPress mobile app on core features</a>. To better serve the needs of all app users and reduce confusion, the Jetpack and WordPress.com features will be moved to a separate app in a gradual process targeted for completion later this year.</li><li>The Community Team is<a href=\"https://make.wordpress.org/community/2022/07/08/call-for-supporters-reactivating-wordpress-meetups-around-the-world/\"> looking for supporters</a> to help reactivate WordPress meetups around the world.</li><li>As part of the ongoing efforts to improve the <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a> (5ftF) initiative, the Meta Team added automated recognition for a number of non-code contributions. <a href=\"https://make.wordpress.org/project/2022/07/28/updates-on-the-five-for-the-future-program-and-proposed-improvements/\">Check out this post</a> to learn more about other proposed improvements to the program.</li><li>The WordPress.org Theme Directory introduced a new feature that allows visitors to <a href=\"https://make.wordpress.org/meta/2022/07/21/pattern-previews-for-themes-in-the-directory-beta/\">preview patterns bundled in a theme</a> without requiring installation.</li><li>The Design Team proposed to release <a href=\"https://make.wordpress.org/design/2022/07/19/proposal-a-new-kind-of-default-theme/\">a curated set of style variations</a> designed by the community (instead of a new default theme) for WordPress 6.1.</li><li>Josepha Haden Chomphosy reflected on progress towards the 2022 goals of the WordPress project in this <a href=\"https://make.wordpress.org/updates/2022/07/25/a-mid-year-year-look-at-2022-goals/\">mid-year review</a>.</li><li>Over the past few months, the Training Team published six tutorials along with a variety of lesson plans and online workshops. See what’s new in this <a href=\"https://make.wordpress.org/updates/2022/07/15/whats-new-on-learnwp-in-july-2022/\">summary post</a>.</li><li>Curious about how the WordPress 6.0 release process went? Read this <a href=\"https://make.wordpress.org/core/2022/07/07/wordpress-6-0-retrospective-recap/\">WordPress 6.0 retrospective recap</a> for insights.</li><li>The Themes Team shared a follow-up post to address questions about the <a href=\"https://make.wordpress.org/themes/2022/07/28/using-locally-hosted-google-fonts-in-themes/\">use of locally-hosted Google fonts in themes</a>.</li><li>There is an open <a href=\"https://make.wordpress.org/accessibility/2022/07/15/call-team-rep-nomination-july-2022/\">call for a new Accessibility Team Representative</a>.</li><li>The Performance Team has a new dedicated Make blog. Follow updates on their work and proposals at <a href=\"https://make.wordpress.org/performance\">make.wordpress.org/performance</a>.</li><li>The July 2022 edition of the <a href=\"https://make.wordpress.org/polyglots/2022/07/22/polyglots-monthly-newsletter-july-2022/\">Polyglots Monthly Newsletter</a> is live.</li><li>The latest edition of People of WordPress highlights <a href=\"https://wordpress.org/news/2022/07/people-of-wordpress-carla-doria/\">Carla Doria</a>, a customer support specialist from South America.</li><li><a href=\"https://make.wordpress.org/community/2022/07/22/july-meetup-organizer-newsletter/\">July’s Meetup Organizer Newsletter</a> features several tips and tools for engaging and growing your community.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>WP Briefing celebrated <a href=\"https://wordpress.org/news/2022/08/episode-37-the-world-of-wordpress-on-world-wide-web-day/\">World Wide Web Day 2022 with a special episode</a>!<strong> </strong>Tune in to hear contributors from the community reflect on how WordPress impacts their world.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Feedback & testing requests</h2>\n\n\n\n<ul><li>Josepha Haden Chomphosy suggested giving Full Site Editing (FSE) a more user-friendly name. <a href=\"https://make.wordpress.org/core/2022/07/27/giving-fse-a-more-user-friendly-name/\">Share your thoughts in this post</a>.</li><li>The <a href=\"https://make.wordpress.org/core/2022/07/21/request-for-feedback-feature-notifications-proof-of-concept/\">WordPress Notifications Feature project</a> is ready to begin collecting feedback. Efforts to help test the feature plugin and comments are welcome.</li><li>The Training Team kicked off a discussion to gather feedback on <a href=\"https://make.wordpress.org/training/2022/07/11/exploring-wordpress-certifications/\">how WordPress certifications should be approached</a>.</li><li>The Performance Team shared a few proposals to integrate new features targeting the WordPress 6.1 release. You can help by testing, reporting bugs, or contributing fixes and ideas:<ul><li><a href=\"https://make.wordpress.org/core/2022/07/13/proposal-persistent-object-cache-and-full-page-cache-site-health-checks/\">Proposal: Persistent Object Cache and Full Page Cache Site Health Checks</a></li><li><a href=\"https://make.wordpress.org/core/2022/07/21/proposal-add-a-dominant-color-background-to-images/\">Proposal: Add a dominant color background to images</a></li></ul></li><li>Version 20.4 of WordPress for <a href=\"https://make.wordpress.org/mobile/2022/07/26/call-for-testing-wordpress-for-android-20-4/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/07/25/call-for-testing-wordpress-for-ios-20-4/\">iOS</a> is available for testing.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>The Community Team is calling on all meetup members and organizers to <a href=\"https://make.wordpress.org/community/2022/08/02/announcing-the-2021-2022-annual-meetup-survey/\">complete the 2021-2022 Annual Meetup Survey</a>. Your feedback will help strengthen the WordPress meetup program for years to come. Please respond and help spread the word.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>WordCamp updates</h2>\n\n\n\n<ul><li>WordCamp US is only five weeks away! The organizing team announced the <a href=\"https://us.wordcamp.org/2022/2022-kim-parsell-memorial-scholarship-recipients/\">Kim Parsell Memorial Scholarship recipients</a> for this year. Congratulations to <a href=\"https://profiles.wordpress.org/margheweb/\">Margherita Pelonara</a>, <a href=\"https://profiles.wordpress.org/simo70/\">Simona Simionato</a>, and <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>!</li><li><a href=\"https://us.wordcamp.org/2022/underrepresented-speaker-supporters/\">20 organizations</a> have stepped forward to support underrepresented speakers from all over the world to get to WordCamp US 2022. Visit the <a href=\"https://us.wordcamp.org/2022/underrepresented-speaker-support/\">Underrepresented Speaker Support page</a> to donate to the fund or ask for support if you are part of an underrepresented group.</li><li>WordCamp Asia 2023 opened a new <a href=\"https://asia.wordcamp.org/2023/call-for-speakers-is-now-open/\">Call for Speakers</a> and <a href=\"https://asia.wordcamp.org/2023/call-for-media-partners/\">Media Partners</a>. The deadline for speaker applications is September 15, 2022. The organizing team also shared more details on the <a href=\"https://asia.wordcamp.org/2023/wordcamp-asia-2023-ticket-release-timeline/\">ticket release timeline</a>.</li><li>Don’t miss these upcoming WordCamps:<ul><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1ec.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://jinja.wordcamp.org/2022/\">WordCamp Jinja</a>, Uganda on September 2-3, 2022</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f3-1f1f5.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://kathmandu.wordcamp.org/2022/\">WordCamp Kathmandu</a>, Nepal on September 3-4, 2022</li><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://us.wordcamp.org/2022/\">WordCamp US</a> in San Diego, California on September 9-11, 2022</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f3-1f1f1.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://netherlands.wordcamp.org/2022/\">WordCamp Netherlands</a>, The Netherlands on September 15-16, 2022</li><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://pontevedra.wordcamp.org/2022/\">WordCamp Pontevedra</a>, Spain on September 24-25, 2022</li></ul></li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Join #WPDiversity with a free, online speaker workshop for Indian women in the WordPress community. The event will take place on September 24-25, 2022. <a href=\"https://www.eventbrite.com/e/speaker-workshop-for-indian-women-in-the-wordpress-community-sept-24-25-tickets-348466712317\">Sign up now</a>!</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story that we should include in the next issue of The Month in WordPress? Let us know by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this form</em></strong></a><strong><em>.</em></strong></em></strong></em></strong></p>\n\n\n\n<p><em><em>The following folks contributed to this edition of The Month in WordPress: <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a>, <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a>, <a href=\'https://profiles.wordpress.org/mysweetcate/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mysweetcate</a>, <a href=\'https://profiles.wordpress.org/sereedmedia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sereedmedia</a>, <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>, <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</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:\"13306\";s: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: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:69:\"WP Briefing: Episode 37: The World of WordPress on World Wide Web Day\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wordpress.org/news/2022/08/episode-37-the-world-of-wordpress-on-world-wide-web-day/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Aug 2022 23:15:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=13198\";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:128:\"Celebrating WWW Day, Josepha invites contributors from around the globe to share stories of how WordPress impacts their worlds. \";s: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/2022/08/WP-Briefing-037.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:23689:\"\n<p>In the thirty-seventh episode of the WordPress Briefing, WordPress users and contributors reflect on how WordPress has changed their understanding of the web as we celebrate World Wide Web Day.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<p>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a><br>Production: <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a> & <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<p>Guests: </p>\n\n\n\n<ul><li><a href=\"https://profiles.wordpress.org/awarner20/\">Adam Warner</a></li><li><a href=\"https://profiles.wordpress.org/aliceorru/\">Alice Orrù</a></li><li><a href=\"https://profiles.wordpress.org/thewebprincess/\">Dee Teal</a></li><li><a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a></li><li><a href=\"https://profiles.wordpress.org/jillbinder/\">Jill Binder</a></li><li><a href=\"https://wordpress.org/support/users/mariaojob/\">Mary Job</a></li><li><a href=\"https://profiles.wordpress.org/onealtr/\">Oneal Rosero</a></li><li><a href=\"https://profiles.wordpress.org/iamsirotee/\">Theophilus Adegbohungbe</a></li><li><a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a></li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/diversity-speaker-training-workshop/\">Diverse Speaker Training Group</a></p>\n\n\n\n<p><a href=\"https://us.wordcamp.org/2022/support-underrepresented-speakers-at-wordcamp-us/\">Support Underrepresented Speakers at WordCamp US</a></p>\n\n\n\n<p><a href=\"https://asia.wordcamp.org/2023/call-for-speakers/\">Call of Speakers – WordCamp Asia 2023</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/mobile/2022/07/27/refocusing-the-wordpress-app-on-core-features/\">Refocusing the WordPress App on Core Features</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/design/2022/07/08/project-kickoff-wordpress-org-homepage-and-download-page-redesign/\">WordPress.org Homepage and Download Redesign </a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13198\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00] </strong></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’m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:39] </strong></p>\n\n\n\n<p>Today is one of my favorite niche holidays – World Wide Web Day – which serves to raise awareness about the origins of the World Wide Web project. WordPress, as part of Web 2.0, only ever had a chance to exist because the web, as we have come to know it exists. So in order to mark this nerdy day on the WP Briefing, I invited a number of community members to share a bit about how WordPress has been a part of their lives.</p>\n\n\n\n<p>But first, let’s do some introductions. </p>\n\n\n\n<p><strong>[Adam Warner 00:01:07]</strong></p>\n\n\n\n<p>My name is <a href=\"https://profiles.wordpress.org/awarner20/\">Adam Warner</a>, and I’m originally from a small town in west Michigan, now residing in Orlando, Florida. </p>\n\n\n\n<p><strong>[Alice Orrù 00:01:15] </strong></p>\n\n\n\n<p>My name is <a href=\"https://profiles.wordpress.org/aliceorru/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/aliceorru/\">Alice Orrù</a>. I’m Italian. I was born in the beautiful island of Sardinia, but I’ve been living in Spain in the province of Barcelona for 10 years.</p>\n\n\n\n<p><strong>[Dee Teal 00:01:26]</strong></p>\n\n\n\n<p>My name is <a href=\"https://profiles.wordpress.org/thewebprincess/\">Dee Teal</a>; Dee is short for Denise. I’m from New Zealand, but I live In Melbourne.</p>\n\n\n\n<p><strong>[Femy Praseeth 00:01:33]</strong></p>\n\n\n\n<p>Yeah, my name is <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>. I was born and raised in India and now live in San Jose, California, with my family and cuddly Doodle.</p>\n\n\n\n<p><strong>[Jill Binder 00:01:41] </strong></p>\n\n\n\n<p>My name is <a href=\"https://profiles.wordpress.org/jillbinder/\">Jill Binder</a>, and I’ve just moved back to Vancouver, Canada. </p>\n\n\n\n<p><strong>[Mary Job 00:01:47] </strong></p>\n\n\n\n<p>My name is <a href=\"https://wordpress.org/support/users/mariaojob/\">Mary Job</a>. I’ve been using WordPress since 2015, and I’m from Nigeria. I’m from the Western part of Nigeria. Ijebu precisely. </p>\n\n\n\n<p><strong>[Oneal Rosero 00:01:57]</strong></p>\n\n\n\n<p>Yes. My name is <a href=\"https://profiles.wordpress.org/onealtr/\">Oneal Rosero</a>. I am from the Philippines and I’ve been using WordPress since 2007. </p>\n\n\n\n<p><strong>[Theophilus Adegbohungbe</strong> <strong>00:02:06] </strong></p>\n\n\n\n<p>Thank you. My name is <a href=\"https://profiles.wordpress.org/iamsirotee/\">Theophilus Adegbohungbe</a> . And I’m from Ilesa, Osun State in Nigeria. </p>\n\n\n\n<p><strong>[Ugyen Dorji 00:02:14]</strong></p>\n\n\n\n<p>My name is <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> and I’m from Bhutan. And I’m working with WordPress for more than five years. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:22] </strong></p>\n\n\n\n<p>One of the things I enjoy the most about being part of any community is being able to see how people change and grow over time as they learn and gain confidence in their own expertise. So a favorite early question is naturally, ‘How has WordPress changed your World?’</p>\n\n\n\n<p><strong>[Alice Orrù 00:02:37] </strong></p>\n\n\n\n<p>WordPress changed my world in many ways. But, uh, starting from the moment, it allowed me to become part of a global connected and welcome community. I started using WordPress as a blogger many, many years ago, but it was in 2015 that I started working behind the scenes of WordPress with a plugin company.</p>\n\n\n\n<p>And that was the moment when everything changed, basically, because I realized that WordPress was much more than a CMS for creating websites. It was a world full of opportunities for networking, making new friends and walking a new professional path as well. </p>\n\n\n\n<p><strong>[Ugyen Dorji 00:03:15] </strong></p>\n\n\n\n<p>During one interview, I was asked many questions about WordPress and although I had a basic understanding of WordPress, I struggled to give detailed answers.</p>\n\n\n\n<p>After that interview, I resolved to develop my skills and learn as much about WordPress as possible. A few months passed and I received a call from ServeMask In, [who] had developed a plugin called All-in-One WP Migration plugin. They offered me a position which fulfilled my wish to work with WordPress full time.</p>\n\n\n\n<p>And because of that, I am now an active contributor to the WordPress community as bread and butter, with the best career in the world.</p>\n\n\n\n<p><strong>[Theophilus Adegbohungbe 00:04:03] </strong></p>\n\n\n\n<p>If you are very familiar with my country, Nigeria things here, it’s not as smooth as it is in other parts of the world. That is, when you are done in school in my university, you have to find means of surviving yourself. There is nothing like the government have work for you. There is nothing like you finish our institution and you get job instantly. So it’s very tough here. And, year by year, schools keep producing graduates with no companies to employ them and no government job again as well.</p>\n\n\n\n<p>So I personally, I was able to gain freedom from this with the help of WordPress.</p>\n\n\n\n<p><strong>[Femy Praseeth 00:04:51]</strong></p>\n\n\n\n<p>WordPress completely changed my work life. I started working independently. I started freelancing with agencies and designers and, uh, building websites from their web designs. And this was around the time my son was born. Actually, he was in elementary school and I think this was around 2014 or so. I started working remotely when remote was not even a thing.</p>\n\n\n\n<p>And there were very few companies that let you work from home and remote was not a mainstream thing at all, but with WordPress, I could set my own working hours while my son was in school.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:29] </strong></p>\n\n\n\n<p>And of course, my preferred follow-up question of, ‘How did you hear about us?’ or ‘How did you connect to this global community?’</p>\n\n\n\n<p><strong>[Oneal Rosero 00:05:36] </strong></p>\n\n\n\n<p>Yes, actually what I love about WordPress is that it’s a community. It’s not a business. It’s not a company. It’s a community. It’s a community that’s always ready to help support, teach and encourage people. That’s how I felt when I joined the community. There’s always somebody who has your back.</p>\n\n\n\n<p>There’s always somebody who’s going to guide you. There’s always an expert who will take your hand and lead you into the beauty that is WordPress. </p>\n\n\n\n<p><strong>[Adam Warner 00:06:05] </strong></p>\n\n\n\n<p>The way that I connect with the global community these days are one, of course, is .org Slack. Another of course is Twitter as there’s a very active WordPress community there.</p>\n\n\n\n<p>And then with WordCamps all over the globe. I’m lucky enough to have been able to travel to several hundred WordCamps through the years in the US and abroad. And that’s one of the most rewarding parts is meeting people from all over the world and you see really how small and the world really is and how similar we really all are.</p>\n\n\n\n<p><strong>[Theophilus Adegbohungbe 00:06:39] </strong></p>\n\n\n\n<p>So, not until 2020. I don’t know if you know this lady, a very vibrant lady in WordPress. She’s from Nigeria; her name is Mary Job, and she’s really promoting WordPress here. So it was through her that I got to know about the community. Yes.</p>\n\n\n\n<p><strong>[Jill Binder 00:06:54]</strong></p>\n\n\n\n<p>My work is the global WordPress community. So we hold our three programs for the global WordPress community, and we are always trying to reach more and more countries. For quite a while, it was very North America-heavy, and then I made some efforts to expand. And it’s very exciting that this year, some contributors in our team have actually launched an Asia Pacific branch of our group. </p>\n\n\n\n<p>And so we have two meetings every other week where we have the America/Europe and the APAC, and we’ve also been able to reach other countries as well, but we typically reach something like between 20 and 50 countries a year, depending on the year. So a hundred percent global. Yes.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:39] </strong></p>\n\n\n\n<p>How has WordPress, either the CMS or the project, made you feel more connected? And are there any surprising connections that came from WordPress?</p>\n\n\n\n<p><strong>[Dee Teal 00:07:47] </strong></p>\n\n\n\n<p>I guess the surprising connections I think that have come from WordPress have been the fact that I feel like I’ve got friends all over the world. And a lot of those have come out of community involvement and from contributing. That I could go to a, a meetup pretty much anywhere in the world and probably find somebody I know, or at least a second degree connection of somebody that I haven’t, you know, that I might not have met, but know somebody that I know. And certainly that happens fairly regularly. </p>\n\n\n\n<p><strong>[Mary Job 00:08:13]</strong></p>\n\n\n\n<p>WordPress. The WordPress project, the community, has made me feel connected in a huge way, because I am literally surrounded by everything WordPress. So I like how, when you meet somebody who does WordPress, there’s this instant, ‘Oh, we’re brothers,’ or ‘Oh, we’re sisters!’ You know? There’s that feeling? That’s how I feel. </p>\n\n\n\n<p>So when I see somebody who does WordPress, as I do, I’m like, ‘Oh yeah, we’re, kin.’ You know? We are family. That’s how I feel when I meet people who do WordPress. And I’ve met quite a number of people who do WordPress from like around the world. Like I have a friend here, he’s from the Benin Republic, and we host started a dinner on Friday night and one of my guests was asking me, ‘How did you guys meet?’</p>\n\n\n\n<p>I was like, ‘Oh yeah, we work in the same WordPress ecosystem.’ He attended our WordCamp, we became friends, and we just literally became really good friends. So I have tons of people that I’ve met like that I hold in high esteem.</p>\n\n\n\n<p><strong>[Ugyen Dorji 00:09:12] </strong></p>\n\n\n\n<p>WordPress Meetups are the seeds that lead to the growth of WordPress communities. WordCamp is a platform for plugin and theme developers to meet WordPress users and website developers. It’s a great environment where many incredible discussions about WordPress takes place. With each WordCamp there is a “tribe” meeting, where I think people [can] get more connected. It’s a fantastic opportunity for aspiring computer engineers, generators and get to showcase their talent and meet each other.</p>\n\n\n\n<p><strong>[Alice Orrù 00:09:51] </strong></p>\n\n\n\n<p>On the project level, it has given me the opportunity to feel like an active part of a global project. The idea that I can give my contribution to making the web a better place – it’s amazing. And I do so with the Translation team, so making WordPress accessible to all the people that use the core plugins and themes in Italian, and prefer to do that in Italian.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:18]</strong> </p>\n\n\n\n<p>What area of the WordPress world is most important to you?</p>\n\n\n\n<p><strong>[Jill Binder 00:10:21]</strong></p>\n\n\n\n<p>I have a little bit of a passion for diversity in tech and diversity in WordPress, specifically around events. And so, here’s a chance to name the three programs that we’ve been working on this year. So as mentioned a few times, we have our <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/diversity-speaker-training-workshop/\">Diverse Speaker Workshop</a> that helps people go from not even having the thought that people could step up on stage.</p>\n\n\n\n<p>And then the second program is because of the pandemic. There was no longer the straight path from taking our workshop to speaking, because we used to hold them or people used to hold them for their WordCamps and meetups. And so it was like, okay, you’ve taken. Apply for our next WordCamp or meetup. But during the pandemic, that wasn’t a thing.</p>\n\n\n\n<p>So we have this amazing channel that we welcome everyone to join, allies and people from underrepresented groups who are interested in speaking or interested in supporting people and speaking. And that’s the Diverse Speaker channel <a href=\"https://wordpress.slack.com/archives/C028SE81N3H\">diverse-speaker-support</a> channel on the Make WordPress slack.</p>\n\n\n\n<p>And the third program is, and we, we went through a name change recently. So I’ll try to remember the new change it’s Organizing Inclusive and Diverse WordPress Events. And this is for WordCamp and meetup organizers to learn. We’ve learned over the last couple years, how important it is to create inclusive spaces and be good allies.</p>\n\n\n\n<p>But how do we actually do that? And a few of us created a very action oriented workshop in 2019 for WCUS, and that is now the basis of the work that we are bringing to people and people are loving it.. We’ve had people report a 40%, self-report 40%, increase in feeling prepared to create an inclusive event from before and after taking that workshop, which is super cool.</p>\n\n\n\n<p>Yeah. So, that’s my passion. </p>\n\n\n\n<p><strong>[Oneal Rosero 00:12:13] </strong></p>\n\n\n\n<p>I really love helping the WP Diversity team. I love running the workshops. I love running the workshops for myself, because I used to do training for software back before the pandemic. I used to train up to a thousand people a year in person, sometimes like 500 people in a room at once.</p>\n\n\n\n<p>But of course I had to shift. I had to pivot to online training, which is what the training team has brought for me. And the focus on the diversity. I like running the workshops. I like running workshops for different groups, different countries, because it’s nice to meet new people. It’s nice to hear about their culture, about the limitations that people have in Africa with connectivity.</p>\n\n\n\n<p>So they, they resort to using WhatsApp on their phone in order to do a meetup. That’s how they do their, their meetings, their discussions. It’s unlike other countries where we can do video calls. They have to use their mobile phones because connectivity isn’t accessible. </p>\n\n\n\n<p>Places like in the Philippines that get affected when it starts to rain a little bit, we lose our internet. So we have backups and our backups have backups. So there are many things that you learn that are different when you’re living in the city, when you’re living in the provinces, in the country. So it’s so many things that you learn about people and how they’re able to adapt. </p>\n\n\n\n<p><strong>[Adam Warner 00:13:35]</strong> </p>\n\n\n\n<p>Enabling end users to reach their goals. And whether that means participating in contributing to the software, to the Core software itself, in terms of UI/UX usability. That can include participating in the community and sharing your knowledge proactively with users who may be new to the platform, or have used WordPress for a while, but now want to step up their game, get a little deeper into using their websites as a tool for growth, for whatever business that they’re in. So, I mean, overall, the, the most important part of the WordPress world to me are the end users. And, you know, there, there is this quote unquote inner circle of WordPress community people. People who are involved in .org, people who contribute to the software, people who contribute to the 20 plus make.wordpress.org teams.</p>\n\n\n\n<p>Those we have to keep in mind, are not the average user by and far. They are not the typical user that hears the word WordPress and then goes out and searches it and then has to figure out how to use it. So I think user experience is probably the most important part for me and making sure that any of that innate knowledge that we have in that inner circle of WordPress because many of us have been using it for so long, keeping in mind that is not the norm. And it’s not the scale at which WordPress is used and, and making sure we translate complex concepts down to a layperson’s terms that might not be as familiar. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:15:17] </strong></p>\n\n\n\n<p>One of the things that I have always found so fascinating about the web and WordPress’ role in it is how it has made the world simultaneously smaller and bigger. By giving voices to the voiceless we help each other find our community niches regardless of where they are in the world. Some of your closest friends could be people you would never meet in your own neighborhood. Well, let’s hear what some of our community members had to say about that.</p>\n\n\n\n<p><strong>[Dee Tea 00:15:42]</strong></p>\n\n\n\n<p>I think the thing that has been most empowering is, is coming into the project either in terms of contributing time and efforts to the community, which is where most of my contribution has been – has always been about this is a really cool thing, and I really want to build this.</p>\n\n\n\n<p>And so I’ll put my time and efforts into building WordPress. Not for me, but because I see its value and I see its community and I see that the contribution that it’s making to the world and I, and that’s really important. But finding that on the other side of that was a huge amount of personal benefit for me in my career, in the friendships that I’ve made.</p>\n\n\n\n<p>But I feel like if I had been approaching the community with, I want a better career, I wanna meet all of these people and I want, and I want all of this. From, “I want” for me, instead of, I want for this project, for the community and effectively for the world with that, you know, that whole democratized, the democratizing of publishing is this thing that serves the world.</p>\n\n\n\n<p>I think that’s been the key for me is that I absolutely have reaped amazing benefits from it, but it came out of that sense of, I see this value here and I want to contribute to that because it’s gonna have value, not just for me, but for a whole slew of people. And so, uh, you know, for much, much bigger impact than just on me.</p>\n\n\n\n<p>And so I think that’s the important thing for me is that sense of, if you approach it with that attitude of what can I do to help? It’s amazing what you will find yourself helped with in return.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:17:24] </strong></p>\n\n\n\n<p>I hope that you enjoyed this tour of WordPress in the World Wide Web. I want to share a big thank you to all of the folks who contributed to our little WordPress Briefing celebration of World Wide Web Day today.</p>\n\n\n\n<p>And that brings us now to our small list of big things. So firstly, we’ve got a couple of updates from our upcoming flagship events. WordCamp US has announced a speaker support fund specifically for historically underrepresented speakers at the event. You can donate to the fund on the page if you’d like, and there are also directions on how to request support, if you are part of an underrepresented group. </p>\n\n\n\n<p>From the folks over at WordCamp Asia, the call for speakers is live. That’s taking place in February, 2023. But it’s never too early to brush up those presentations and get them submitted. </p>\n\n\n\n<p>Next big thing is that there are some changes coming to the WordPress mobile app. A lot of the Jetpack functionality will be removed from it, so this is going to have a little bit of an effect on daily users of the app, but it will also have an effect on regular contributors. I’ll have a link to the full write up in the show notes so that you don’t have to guess or hold it all in your memory. </p>\n\n\n\n<p>And finally, this excellent design that you see on wordpress.org/news is finally making its way out to the next parts of the wordpress.org website. Before you know, it, there will be a fresh looking homepage as well as few other pages and then… to infinity and beyond (or something like that). </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’m your host, Josepha Haden Chomphosy. And next up I’ll be taking just a mid-year break from the podcast. And so the next time that I actually see you again, will be in September.</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:\"13198\";s: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:72:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"People of WordPress: Carla Doria\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2022/07/people-of-wordpress-carla-doria/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 31 Jul 2022 19:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"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: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:3;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:4;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:5;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=13201\";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:324:\"In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better. This month we feature Carla Doria, a customer support specialist from South America on how WordPress opened up a new world for her, and gave her the ability to […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Meher Bala\";s: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:12025:\"\n<p><strong>In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better. This month we feature Carla Doria, a customer support specialist from South America on how WordPress opened up a new world for her, and gave her the ability to help the local community</strong>.</p>\n\n\n\n<p>For Carla, working with WordPress is a vital part of her life. It gave her a career and a community, in which she she would organize the first WordCamp in her city, Cochabamba, and the first in Bolivia.</p>\n\n\n\n<p>Carla studied industrial engineering and has a master’s degree in environmental studies.<br>Her first experience with WordPress was when she decided to start a small business designing and selling cushions and bedclothes. While Carla sat in the small store she had rented, hoping that people stopping at the shop windows would step in to buy something, she decided she needed to create a website.</p>\n\n\n\n<h2><strong>First steps with WordPress</strong></h2>\n\n\n\n<p>Carla had no budget to hire somebody, but she felt confident she could learn things on her own. </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“Learning to use WordPress requires no code skills or a technical background. It needs an adventurous and playful spirit.” </p><cite>Carla Doria</cite></blockquote>\n\n\n\n<p>She had always been studious, and decided she would figure out how to build a website herself. Carla ended up building a simple blog with WordPress. At the time, she didn’t even have a budget to buy a custom domain, so she used a free subdomain.<br><br>“Learning to use WordPress is easy. It requires no code skills or a technical background at all. It only needs an adventurous and playful spirit,” said Carla</p>\n\n\n\n<p>There were no profits, and any income mainly went to pay the store’s rent. At the time, her previous company contacted her for a job opening that matched her profile. Carla needed that income and decided to closed the store and forget about being an entrepreneur.</p>\n\n\n\n<p>Back in employee mode, Carla started her new job as a technical writer for a software development company. Since Carla had completed her master’s degree in the UK, she was proficient in English. Her close affinity for computers and technology made it easy for her to translate complex software jargon into simple tutorial steps.</p>\n\n\n\n<p>As Carla got more interested in technical writing and started to improve her writing skills. This reconnected her with her previous enthusiasm for writing, and she decided to channel that interest into a blog.</p>\n\n\n\n<h2><strong>Diving deep</strong></h2>\n\n\n\n<p>Creating her blog helped her become more familiar with WordPress and building websites. In 2015, Carla blogged about writing, her thoughts, book reviews, and everything that came to mind. </p>\n\n\n\n<p>Through looking for answers to specific issues using her WordPress blog, Carla found the support forums a useful place to go. Soon she realized that she could also help answer other people’s questions.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"600\" height=\"900\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/07/carla-doria-2.jpg?resize=600%2C900&ssl=1\" alt=\"\" class=\"wp-image-13189\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/07/carla-doria-2.jpg?w=600&ssl=1 600w, https://i1.wp.com/wordpress.org/news/files/2022/07/carla-doria-2.jpg?resize=200%2C300&ssl=1 200w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Carla began checking the forums as a hobby. She liked that she was able to help people and learn more while doing so. </p>\n\n\n\n<p>Instead of surfing social media during her work breaks, Carla focused on checking the WordPress forums. Through this she learnt about a support job in one of the global firms.</p>\n\n\n\n<p>She felt the job was made for her and was excited to support people in building their websites with WordPress. The role offered the possibility to work remotely and travel while still working.</p>\n\n\n\n<p>After three years as a technical writer, her career felt stuck. She was certain she did not want to return to any job related to industrial engineering. </p>\n\n\n\n<p>Carla did not get through the selection process the first time. But after nearly 18 months between three applications and learning HTML and CSS, Carla finally secured a support job in 2016. With this job, WordPress became her main source of income.</p>\n\n\n\n<h2><strong>Leading a local WordPress community</strong></h2>\n\n\n\n<p>On the job, Carla learned about the WordPress communities around the world and WordCamps. But when somebody asked about the WordPress community where Carla lived, she didn’t know what to say. Was there a community?</p>\n\n\n\n<p>She discovered no local group existed, so she researched what was needed to setup a meetup. Carla discussed the idea with others, but hesitated as she thought it would require an expert WordPress developer to organize. </p>\n\n\n\n<p>But after trying to gauge interest, Carla realized that the only way to find community members was to start a community. In 2017, the <a href=\"https://www.meetup.com/Cochabamba-WordPress-Meetup/\">WordPress community in Cochabamba</a> was born.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"684\" height=\"391\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/07/Comunidad_WP_Cochabamba_FSE_event2022.jpg?resize=684%2C391&ssl=1\" alt=\"The theme preview screen in the WordPress Cochabamba meeting on creating your website with blocks.\" class=\"wp-image-13236\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/07/Comunidad_WP_Cochabamba_FSE_event2022.jpg?w=684&ssl=1 684w, https://i0.wp.com/wordpress.org/news/files/2022/07/Comunidad_WP_Cochabamba_FSE_event2022.jpg?resize=300%2C171&ssl=1 300w\" sizes=\"(max-width: 684px) 100vw, 684px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>WordPress meeting in Cochabamba explored creating your website with blocks</em></figcaption></figure>\n\n\n\n<p>The group has had ups and downs, probably similar to any other community. Although Cochabamba is not a big city, they had issues finding a location that was free and available to anyone who wanted to join. People came with different levels of knowledge, from people with vast experience with WordPress to people with no experience but who wanted to learn. </p>\n\n\n\n<p>The community grew during the pandemic, as meetups went online and people from other cities in Bolivia were able to attend. After restrictions were lifted, there was a lot of excitement amongst members to meet each other in person.</p>\n\n\n\n<h2><strong>Giving back through speaking</strong></h2>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"600\" height=\"900\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/07/carla-doria-1.jpg?resize=600%2C900&ssl=1\" alt=\"Carla reading a book under a tree\" class=\"wp-image-13191\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/07/carla-doria-1.jpg?w=600&ssl=1 600w, https://i1.wp.com/wordpress.org/news/files/2022/07/carla-doria-1.jpg?resize=200%2C300&ssl=1 200w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The community also helped Carla to develop a new skill in public speaking. She applied to be a speaker at WordCamp Mexico <a href=\"https://mexicocity.wordcamp.org/2019/\">2019</a> and <a href=\"https://mexicocity.wordcamp.org/2020/\">2020</a>, <a href=\"https://guayaquil.wordcamp.org/2019/\">WordCamp Guayaquil 2019</a>, and <a href=\"https://colombia.wordcamp.org/2020/\">WordCamp Colombia in 2020</a>. Her confidence grew while she enjoyed connecting with other communities and meeting people who were on similar pathways. Not all of them were developers, as she had presumed. Many, like her, started out as bloggers.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"977\" height=\"419\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/07/WCC.png?resize=977%2C419&ssl=1\" alt=\"WordCamp Cochabamba\'s logo with blue and grey lettering and a hat\" class=\"wp-image-13228\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/07/WCC.png?w=977&ssl=1 977w, https://i1.wp.com/wordpress.org/news/files/2022/07/WCC.png?resize=300%2C129&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/07/WCC.png?resize=768%2C329&ssl=1 768w\" sizes=\"(max-width: 977px) 100vw, 977px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Finally, after three years, Carla applied to organize her first WordCamp in 2021 in <a href=\"https://cochabamba.wordcamp.org/2021/\">Cochabamba</a>. She had never imagined organizing any WordCamp, and through this having the experience to talk to sponsors and contact companies, and lead a group of people with different talents and backgrounds. Carla felt she had learnt so much from the experience.</p>\n\n\n\n<p>Thanks to WordPress, Carla found a job she enjoyed, was able to work remotely, and help build something in her community to help people learn skills and find career opportunities.</p>\n\n\n\n<p>Carla feels grateful for all she has been able to do thanks to WordPress. She said: “WordPress has led me to find good jobs. It also has allowed me to contribute to a community of friends that love learning about WordPress.” </p>\n\n\n\n<h2>Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community. 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>Contributors</h2>\n\n\n\n<p>Thanks to Alison Rothwell (<a href=\'https://profiles.wordpress.org/wpfiddlybits/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>wpfiddlybits</a>), Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), Larissa Murillo (<a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), and Surendra Thakor (<a href=\'https://profiles.wordpress.org/sthakor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sthakor</a>) for work on this feature, and to all the contributors who helped with the series recently. Thank you too to Carla Doria (<a href=\'https://profiles.wordpress.org/carlisdm/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>carlisdm</a>) for sharing her experiences.</p>\n\n\n\n<p>Thank you to Josepha Haden (@chantaboune) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) for their support of the People of WordPress series.</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://i1.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\" 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:\"13201\";s: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: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 36: Beginner’s Guide to Contributions 2.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wordpress.org/news/2022/07/episode-36-beginners-guide-to-contributions-2-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 25 Jul 2022 11:05:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=13162\";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:164:\"Thinking of contributing to WordPress? Josepha Haden Chomphosy guides you through the five stages of contribution on the latest episode of the WP Briefing 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: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/2022/07/WP-Briefing-036.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:\"Santana Inniss\";s: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:16474:\"\n<p>In the thirty-sixth episode of the WordPress Briefing, Josepha Haden Chomphosy revisits the Beginner’s Guide to Contributions to the WordPress open source project. </p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<p>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a><br>Production: <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2>References</h2>\n\n\n\n<ol><li><a href=\"https://make.wordpress.org/performance\" data-type=\"URL\" data-id=\"make.wordpress.org/performance\">Performance Team Information</a></li><li><a href=\"https://make.wordpress.org/community/2022/07/07/wcus2022-contributor-team-signup/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/community/2022/07/07/wcus2022-contributor-team-signup/\">WordCamp US Contributor Day Table Lead Info</a></li><li><a href=\"https://make.wordpress.org/test/2022/07/11/fse-program-testing-call-15-category-customization/\">Call for Testing #15: Category Customization </a></li><li><a href=\"https://europe.wordcamp.org/2019/contributor-orientation-tool/\">Contributor Quizlet</a></li></ol>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13162\"></span>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:10] </p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing. The podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I’m your host Josepha Haden Chomphosy.</p>\n\n\n\n<p>Here we go.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:40] </p>\n\n\n\n<p>WordPress is an open source software project and, like many other open source software projects, has an entire community of people who show up to help improve it however they can. Most of you probably use WordPress every day in some way. And I’m going to assume that since you listen to this podcast, you’re also interested in how this all works.</p>\n\n\n\n<p>One of the things I mention practically every episode is that WordPress works and continues to work because of generous contributions from people all around the world. I consider my work with WordPress to be my way of giving back for everything that this software enabled me and my family to do. But I once was a first-time contributor, and I remember what it felt like before I knew everything. </p>\n\n\n\n<p>I felt like it moved at the speed of light and that I could never tell what to do now, let alone what to do next. And that everyone around me basically already knew everything. And if you are feeling that way right now, I encourage you to take a big deep breath [breathe] and let me help you get started. </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:43] </p>\n\n\n\n<p>I’m a roadmap sort of person. So I’m going to start by sharing the stages I’ve observed for folks who are contributing to open source. That way, you can tell where you are right now, which spoiler alert is probably a bit further along than you realize. Then I’ll give you some questions you can ask yourself for each stage to figure out what is a good fit for you. Think of it as a guided exploration. </p>\n\n\n\n<p>All right, the five stages. So these are they: </p>\n\n\n\n<ol><li><strong>Connecting</strong>. That’s when you’re first learning about the community. You know WordPress exists, but now you’ve just discovered that the community exists. That’s where you are. </li><li>The second phase is <strong>Understanding</strong>. It’s when you are researching the community, like, you know it exists, you think you want to give back, and so you’re trying to figure out where everything is. </li><li>The third phase is what I call <strong>Engaging</strong>. It’s when you’re first interacting, you’ve downloaded the CMS, you have figured out which team you think you’re interested in, and you’re headed to events or meetings or whatever. </li><li>The fourth stage is one that I refer to as <strong>Performing</strong>. And that’s when you’ve decided that you’re gonna volunteer and you’re gonna take some action. You’re going to like a contributor day or running a release or whatever. I think that’s probably not the first place you land, running a release is probably a lot, but, you know, coordinating work on the release or something like that. </li><li>And then phase five, which is the <strong>Leading</strong> phase. That’s when you’re taking responsibility for things getting done. </li></ol>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:08] </p>\n\n\n\n<p>Before we get any further, there are four important things to remember about those stages.</p>\n\n\n\n<p>The first thing to remember is that there is no set time between any of those stages. You can start in one and then three years later go to the next one, or you can start in one and go into the next stage tomorrow. The next thing to know is that each stage builds on the one before it. In my observation, anytime I have seen a contributor who feels like they’re really struggling, it’s because they skipped a stage in there, which really causes some trouble for them.</p>\n\n\n\n<p>The next thing to remember is that not everyone will make it through these stages, which is okay. The majority of the community stops at three. Most contributors stop at four. And that is perfectly fine. That is expected. That is normal and completely in line with what we expect from contribution.</p>\n\n\n\n<p>Uh, and the final thing to remember about that list of the phases is that very few people make it into that leadership stage. If we assume, like I do, that 1% of the people who are using WordPress also show up and contribute back to WordPress, then it’s kind of safe to assume also that about 1% of those people who have shown up to contribute to WordPress are moving into a space where they feel like they’re willing to take responsibility for making sure things get done in WordPress.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:04:31] </p>\n\n\n\n<p>Like we all collectively feel responsible for WordPress’s success, but in that leadership area, you’re kind of taking responsibility for 40% of the web or whatever’s going on there. And not a lot of people make it there, and that is completely fine, too. So that’s our basic terminology today. Those are the caveats that go with our basic terminology.</p>\n\n\n\n<p>Most difficulties that arise for new contributors happen because a stage got skipped somewhere along the way. It’s almost never intentional, but from what I’ve observed, that’s what makes it really difficult to get started and what makes it difficult to keep going once you’ve kind of already gotten in there.</p>\n\n\n\n<p>So, all right. Big breath, folks with me again [breathe]. Alright, it’s guided exploration time. </p>\n\n\n\n<p>First phase, the connecting phase. Remember, this is where you’ve just learned the community exists, people are talking about it, you don’t know much more. The first step for you is asking yourself what it is you could do. Or if there’s a project out there that looks particularly interesting.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:05:36] </p>\n\n\n\n<p>So you can ask yourself questions, like, am I a writer? And if I am a writer, do I write technical or prose. The other thing you can ask is, am I a PHP developer, a JavaScript developer, Python, Go; which language am I writing in because I find it most beautiful. Another thing you can ask yourself is, am I a teacher or a mentor, or do I just generally like to be a mighty helper? And I like to make sure that things keep running. </p>\n\n\n\n<p>So once you’ve asked yourself those things, it’s on to phase two, the understanding phase. This is when you’re looking around at this new-to-you community to see what is happening where. So you take a look at the teams that are around, you think about whatever it was you said you were good at in the last question and you look at which teams might be a good fit. </p>\n\n\n\n<p>So if you said that you’re a good technical writer, then Docs probably is for you. Have you been training others to use WordPress for years? Then you might wanna look into Training. There are a lot of other things, obviously, like if you think you’re good at working with code PHP or JavaScript, you’re probably gonna end up in Core.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:06:46] </p>\n\n\n\n<p>If you are particularly good at any of the other tech stacks that we have around in our Trac area or an Openverse, then that’s where you’ll land over there. You have design options. Like if design is really your thing, we have a Design team, but we also have a Themes team. There are plenty of places that you can land depending on what it is that you feel like you are the best at and could really help the WordPress project. And so that’s your phase two. </p>\n\n\n\n<p>Now that you have gotten a good guess at a team, we’re gonna swing through to phase three, which is the engaging phase. This is the phase that is the scariest for most people, but it’s okay. I am here for you. I am here for you in this podcast. So you have figured out what you want to do in order to contribute, and you’ve got a sense for the team that looks right. There are two things that you do next. </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:07:34] </p>\n\n\n\n<p>One is that you can go to a meeting. There are many kinds of meetings. There are team meetings, bug scrubs, and testing sessions, but they’re all in Slack, which means that you can attend one from anywhere. When they kick off, you wave, you introduce yourself, you let everybody know that you’re there and you’re observing. Folks will welcome you and just kind of give you some concept of what they’re working on. Easy as that. You’ve done your first time meeting attendance. </p>\n\n\n\n<p>Another good option is to keep an eye out for specific events. Some of those events happen online, like Global Translation Day. But also some of them happen in person like, Meetups or WordCamps. And there again, you show up, you wave, you introduce yourself, see if you can make a connection or two, let people know that you’re new and you’re just trying to figure out where you are and what you wanna do. </p>\n\n\n\n<p>If you’ve made it now, all the way to phase four, the performing phase, then give yourself a little pat on the back! Figuring out where you want to go and who your friendly faces are is the biggest challenge when you get started. So congratulations! </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:08:37] </p>\n\n\n\n<p>Phase four is the phase where you’ve decided you’re brave enough to volunteer – to do some contribution. You’re volunteering your time. That’s where you are now. So oddly enough, you start this phase by assigning yourself something, assigning yourself, a task. This seems counterintuitive.</p>\n\n\n\n<p>There’s this feeling that you can’t say that you’re gonna do something. That you can’t just assign something to yourself and say that you’re gonna do it. But in open source projects, you always can. You find a task where you’re comfortable, and you just mention that you would like to give it a try while the team is having their weekly meeting. And it’s simple as that. And not big things either. Like organizing an event or maintaining a component, those are probably too big for your first time around.</p>\n\n\n\n<p>I’m talking things like, ‘I will test that patch that you mentioned in the meeting.’ Or ‘I will review the docs and make sure that they’re up to date with the most recent release.’ Or ‘I can help run meetings for the next release.’</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:09:40] </p>\n\n\n\n<p>And then you have phase five, where you just repeat phase four until you are leading something! And I don’t mean leading in the 1950s sort of way, where you have like a corner office and you’re ordering people around. I mean, in the warm, inviting millennial way where you’re leading by inspiring people to do something or you’re leading because you make sure that the meeting happens every single week.</p>\n\n\n\n<p>Or you’re leading because you added screenshots to tickets that needed testing and so you moved something forward in a way that was helpful. Easy peasy. You can go to your first contributor today or a WordPress Slack meeting and just be a contributor by the time you leave, right? You might feel like ‘easy as that isn’t quite the right set of words right there. And as a matter of fact, you might be thinking to yourself, this woman is just plain wrong. It could not possibly be that easy. And I agree. It really isn’t literally quote-unquote just that easy. Just like handing someone a notebook and a pen will not instantly make them an award-winning novelist, handing someone a wordpress.org profile and credentials to Slack won’t instantly make them a contributor. </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:10:46] </p>\n\n\n\n<p>For both of those examples, what makes someone good is the ability to try and fail and still be encouraged to try again. So if it’s been a while since you contributed and you’re thinking about returning, or if you’ve been listening to me for a while and you’re ready to give this contribution thing a try, I hope this helps you to feel brave enough to try and brave enough to fail.</p>\n\n\n\n<p>And I encourage you to be brave enough to try again.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:11:20] </p>\n\n\n\n<p>Let’s take a look at our small list of big things. My friends, we have a Performance team. This team has been a working group for a long time and is focused on some deep, inner workings of WordPress and its surrounding ecosystem to make sure that we are as fast and slick as possible. You can check them out on make.wordpress.org/performance, their brand new site, and see when they’re meeting, what they’re aiming to get into the WordPress 6.1 release, and if that’s something that you would like to contribute to. </p>\n\n\n\n<p>The second thing is that there’s a brand new call out for testing. This time it’s focused on templates and retroactively applying them to an entire category of posts. So it’s a little bit workflow testing, a little bit technology testing, and we could really use your help in bug hunting for both of those things.</p>\n\n\n\n<p>And the final thing is that you know since contribution is obviously the focus of today’s podcast, we are looking for table leads for WordCamp US’ contributor day that’s coming up in September. There’s a whole blog post about it, I’ll link to it in the show notes so that you’ll have all the info and can raise your hand if you want. </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:12:25] </p>\n\n\n\n<p>And speaking of things that I’ll have in the show notes, I also am going to put like a contributor quizlet guide thing. If the guided, figuring out of the teams in the phase two section, if that didn’t make any sense to you and you just need something to direct you specifically to potential teams, I’m gonna link to the contributor kind of sorting hat quiz that came out with WordCamp Europe. And that should help you work your way through phase two and get ready for phase three if that is where the spirit takes you. </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’m your host, Josepha Haden Chomphosy. And I’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:\"13162\";s: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: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:35:\"WordPress 6.0.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2022/07/wordpress-6-0-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Jul 2022 16:58:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"6.0.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:14:\"minor-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:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13138\";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:236:\"WordPress 6.0.1 is now available for download. This maintenance release features several updates since the release of WordPress 6.0 in May 2022. You can review a summary of the key changes in this release by visiting 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s: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:5452:\"\n<h2>WordPress 6.0.1 is now available</h2>\n\n\n\n<p>This maintenance release features <a href=\"https://core.trac.wordpress.org/query?milestone=6.0.1\">13 bug fixes in Core</a> and <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.0\">18 bug fixes</a> for the Block Editor. WordPress 6.0.1 is a short-cycle maintenance release. You can review a summary of the key updates in this release by reading the <a href=\"https://make.wordpress.org/core/2022/07/05/wordpress-6-0-1-rc-1-is-now-available/\">RC1 announcement</a>.</p>\n\n\n\n<p>The next major release will be <a href=\"https://make.wordpress.org/core/2022/06/23/wordpress-6-1-planning-roundup/\">version 6.1</a> planned for later in 2022.</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.0.1.zip\">download WordPress 6.0.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, check out the <a href=\"https://wordpress.org/support/wordpress-version/version-6-0-1/\">version 6.0.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2>Thank you to these WordPress contributors</h2>\n\n\n\n<p>The WordPress 6.0.1 release is led by <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">@sergeybiryukov</a> and <a href=\"https://profiles.wordpress.org/zieladam/\">@zieladam</a>.</p>\n\n\n\n<p>WordPress 6.0.1 would not have been possible without the contributions of more than 50 people. Their asynchronous coordination to deliver several enhancements and 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/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"https://profiles.wordpress.org/oztaser/\">Adil Öztaşer</a>, <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">annezazu</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/critterverse/\">Channing Ritter</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/petitphp/\">Clement Boirie</a>, <a href=\"https://profiles.wordpress.org/danieliser/\">Daniel Iser</a>, <a href=\"https://profiles.wordpress.org/denishua/\">denishua</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a>, <a href=\"https://profiles.wordpress.org/gabertronic/\">Gabriel Rose</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a>, <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jnz31/\">jnz31</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/luisherranz/\">Luis Herranz</a>, <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a>, <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a>, <a href=\"https://profiles.wordpress.org/manzurahammed/\">Manzur Ahammed</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/navigatrum/\">navigatrum</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James Dodd</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">Ravikumar Patel</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/samikeijonen/\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/nathannoom/\">Trinadin</a>, and <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich Pogson</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:\"13138\";s: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: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 35: Five for the Future’s True Intentions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2022/07/episode-35-five-for-the-futures-true-intentions/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 11 Jul 2022 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=13132\";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:140:\"On this week\'s episode of the WordPress Briefing, Josepha answers questions about the intentions behind the Five for the Future initiative. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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/2022/07/WP-Briefing-035.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:\"Santana Inniss\";s: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:14788:\"\n<p>In the thirty-fifth episode of the WordPress Briefing, Josepha Haden Chomphosy tackles questions about the true intentions of the Five for the Future initiative.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<p>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a><br>Production: <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2>References</h2>\n\n\n\n<ol><li><a href=\"https://make.wordpress.org/themes/2022/06/30/create-block-theme/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/themes/2022/06/30/create-block-theme/\">New Create Block Theme plugin</a></li><li><a href=\"https://make.wordpress.org/design/2022/07/01/open-sourcing-theme-designs/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/design/2022/07/01/open-sourcing-theme-designs/\">Open Sourcing Theme Designs </a></li><li><a href=\"https://make.wordpress.org/meta/2022/07/01/exploration-improving-devhub/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/meta/2022/07/01/exploration-improving-devhub/\">Exploration in Meta to improve DevHub </a></li><li><a href=\"https://en.wikipedia.org/wiki/Tragedy_of_the_commons\" data-type=\"URL\" data-id=\"https://en.wikipedia.org/wiki/Tragedy_of_the_commons\">Tragedy of the Commons definition</a></li></ol>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13132\"></span>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:10] </p>\n\n\n\n<p>Hello everyone. And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I’m your host Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:40] </p>\n\n\n\n<p>Today I’m talking about Five for the Future– again. Before we get stuck right into the heart of it, 10 episodes ago, in episode 25, I focused on the Five for the Future initiative and I recommend that you listen to that before you join me in today’s episode. It’s only eight minutes and it gives you a history of the Five for the Future initiative, as well as some information on the Five for the Future program.</p>\n\n\n\n<p>It then goes on to talk about some of the original intentions behind that original initiative. The reason I bring this back up today is partially because one, I will talk about both the program and the initiative it’s based on literally anytime. I believe strongly that they are both a vital part of what will result in a triumph of the commons of WordPress, and keep this empowering project around for years to come. </p>\n\n\n\n<p>But I also bring it up today because there’s conversation about a post I published a couple of months back that has generated some dialogue around the intentions of this catchy call to contribution. So to make sure that as we move through this discussion together, we are working with as much factual information as possible, I present to you some facts.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:46] </p>\n\n\n\n<p>First and foremost, the pillars of this initiative. The 5% in Five for the Future is aspirational. Contribution to open source is a question and indication of privilege. So the 5% is not a requirement, but rather it’s an aim. It could refer to 5% of your time or 5% of your resources, or just any amount of your time or resources around. Regardless of how you’re defining it, it is an aspiration, not a requirement. </p>\n\n\n\n<p>The second pillar, pledges show your intention and whatever contributions you are able to offer after you’ve made your pledge are always welcome. No one is out there checking for 100% completion of the hours that you intended to give back to WordPress versus the hours that you actually succeeded at giving back to WordPress.</p>\n\n\n\n<p>There are so many volunteers that make sure that this project is running and functional and has plenty of people knowing how to get things done and how to teach others how to get things done. It’s all coming from generosity of heart. </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:02:52] </p>\n\n\n\n<p>And speaking of generosity, the third thing that is important about this initiative is that it insists on and wants to celebrate a culture of generosity. Beyond the concept of a pledge, is the idea of generous collaboration toward the long term health and stability of our project for the future.</p>\n\n\n\n<p>As contributors, we understand that we are greater than the sum of our parts and what we build <em>within</em> WordPress empowers those who build <em>with</em> WordPress. So those are the pillars that went into that initial thought, that opening Five for the Future call to action that Matt gave to everybody in 2014.</p>\n\n\n\n<p>And so now I want to share with you some of the pillars of the program that has grown up around it. So the Five for the Future initiative, if you’re not familiar, was started in 2014 and is a grand call to all of us to remember to give back to the shared commons of WordPress. Its aim was to help guard against what is called the “tragedy of the commons,” where resources are continually taken out and not necessarily reinvested in. No one’s necessarily putting anything back into those.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:04:06] </p>\n\n\n\n<p>So that’s the starting point for all of this. So the program, the Five for the Future program, in 2018 was built as a collaborative effort with full participation and buy-in from the contributors who were active in the project at the time. It allowed anyone to raise their hands, to show support of WordPress via a pledge and also started a multi-year discussion of how to define contributions in a way that let us automatically provide props and therefore more effectively put badges on people’s wordpress.org profiles. </p>\n\n\n\n<p>And then in 2019, there was an additional pilot of the program, which kind of offered some team structure, which was intended to not only take on work that I don’t like to ask volunteers to do, but also to provide some checks and balances to an absolute raft of sponsored contributor hours that we had started to see show up. </p>\n\n\n\n<p>Which brings us then to the post that I mentioned at the start. Knowledgeable supporters of the WordPress open source project have debated next iterations to Five for the Future activity and programming. So, to bring the conversation to a central set of questions, or rather to bring the conversation to a central spot, I raised these two questions. One, what activities can we see inside our contributor networks? So wordpress.org, make.wordpress.org, the Rosetta sites that we have, Slack, et cetera. </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:05:30] </p>\n\n\n\n<p>So what activities can we see inside the contributor networks that we can flag to enable easier distribution of props and therefore badges? The second question is, what activities can we see also in those contributor networks that appear to be contributions, but in the end are only benefiting the person or company that provides the contributions?</p>\n\n\n\n<p>For what it’s worth that discussion then also raised a third question that I don’t think we’ve even started to tackle, which is what about the activities that are not in the contributor network, but still do move WordPress forward? Cause there are so, so many of those things and it’s a great question. I don’t have an answer and just so that I don’t leave you all with a series of questions for which there are no answers provided in this particular podcast, I do have a few answers for questions that I have seen floating around this discussion. </p>\n\n\n\n<p>So the first question is actually a bunch of questions. There are like three parts to it. What are props, who gives props, and who tracks them? So ‘props’ is a term used in WordPress to describe shared recognition of a contribution. Think of it as like a hat tip or kudos or an assist. However you think about it, it’s recognition of the other people who helped to solve a problem along the way. That is what props are. </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:06:47] </p>\n\n\n\n<p>The second part of that question is who gives props and historically developers have given props, which tends to mean that it’s mostly developers who get props. But now, also, any team rep during a release cycle can provide props to folks on their team, volunteers on their team who were really helpful during the course of the release.</p>\n\n\n\n<p>And recently we also added the functionality for ad hoc props to be given in the Slack props channel, and those get added to your profile activity. So that someone can give you basically a public thanks for having helped on something that they were working on. And then that gets logged in your activity tracker on your WordPress.org profile.</p>\n\n\n\n<p>And then the final question in that first big question is who tracks these props? And the answer is human beings! Which is why folks feel like they have to do a ton of things before they even get props. And that’s also why I’d like to automate more and more of them so that you don’t have to do a ton of things in order for someone to show up and acknowledge that you are part of a solution.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:07:51] </p>\n\n\n\n<p>So the second question that I’ve seen kind of running around is, where do props start? And that is a great question that has been asked year after year. And one that I think we should continue to ask. The reality is that we won’t be able to see every contribution to WordPress, but that doesn’t mean that they aren’t valuable. And it doesn’t mean that they don’t matter. </p>\n\n\n\n<p>Building our culture of generosity helps us to better recognize and celebrate each other for all of our contributions, whether they are for a major release or a major event, or one of these new ad hoc props that you can offer to people. And if we see more and more of the same type of contributions being celebrated, then we can also work toward automating those as well, so that you don’t have to do a super ton of them before someone has noticed that you’ve done even one of them. </p>\n\n\n\n<p>And the third big question that has been running around is, what about the people who don’t want the props? If people want to be literally anonymous, then deletion requests are probably your way to go. But I actually don’t think that’s the question here. I think the question is what if a prop holds no intrinsic value to you and then, you know, I wanna thank you for that spirit of generosity. And I also wanna say that I’m so glad you’re here. </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:09:02] </p>\n\n\n\n<p>Hopefully, all of these answers clarify what lies at the heart of what is intended with the Five for the Future initiative and the program that’s built on top of it. And why I care so much about fixing the ways we offer props to folks. For me, it’s not about assessing the worthiness of people or companies or any of their contributions. For me, it’s about reinvesting in the shared commons of the WordPress ecosystem, by finding a way that our economy can entice folks to put back into WordPress, something close to the benefit that they receive from it.</p>\n\n\n\n<p>And that brings us now to our small list of big things. Thank you all for making it into the final stretches with me. These three things that I’m sharing also have companion blog posts to go with them because they are very big questions or very big features, very big plugin kind of things that we’re looking at. And so you’ll be able to find those in the show notes, or you can go to wordpress.org/news if you’re listening to this in a podcast player of your choice that is not wordpress.org. </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:10:10] </p>\n\n\n\n<p>So the first one on my list is a new plugin. It is called Create Block Theme. And it’s gonna make it easier for theme builders to use the existing site editor tools to create new block themes. I’m very excited about this. Uh, you can find it on make.wordpress.org/themes. And I will also include a link to it in the show notes below. </p>\n\n\n\n<p>If themes are not your area of expertise, but you are interested in documentation or the DevHub or to an extent design things, then the improvements that are being worked on for the DevHub are definitely in your area. That’s kind of a Meta task, but has a few other pieces involved as well. That can be found on make.wordpress.org/meta. But again, I will have a link to the very, very detailed blog post in the show notes. </p>\n\n\n\n<p>It’s got a bunch of hypothetical changes that are being suggested for the WordPress developer docs, uh, especially when it comes to the function reference. And so there are gonna be some slight design questions, but not like, graphic design/visual design, more in the like, can humans read this design area of things? And so that will be a good one to look at. If you are sort of in the Meta or Documentation vein of things in the way that you like to contribute to WordPress.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:011:30] </p>\n\n\n\n<p>And then the final thing is about open sourcing theme designs. So open sourcing everything obviously is important to us. And the design tool that we use, this tool called Figma, is open to the public. And so it’s possible for folks to be able to kind of get in there and use and reuse any design elements.</p>\n\n\n\n<p>And so there’s a discussion happening over on make.wordpress.org/design about how that can and should look in the future. And so if design is definitely your area, and again, this kind of lines up with themes a little bit, then wander over into that one, for which there will also be a link in the show notes. </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’m your host, Josepha Haden Chomphosy. And I’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:\"13132\";s: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: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:36:\"The Month in WordPress – June 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2022/07/the-month-in-wordpress-june-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Jul 2022 14:19:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=13069\";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:313:\"With WordPress 6.1 already in the works, a lot of updates happened during June. Here’s a summary to catch up on the ones you may have missed.  WordPress 6.1 is Slated for Release on October 25, 2022 Planning for WordPress 6.1 kicked off a few weeks ago with a proposed schedule and a call for […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"rmartinezduque\";s: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:12416:\"\n<p>With WordPress 6.1 already in the works, a lot of updates happened during June. Here’s a summary to catch up on the ones you may have missed. </p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2>WordPress 6.1 is Slated for Release on October 25, 2022</h2>\n\n\n\n<p>Planning for WordPress 6.1 kicked off a few weeks ago with a <a href=\"https://make.wordpress.org/core/2022/06/23/wordpress-6-1-planning-roundup/\"><strong>proposed schedule and a call for contributors</strong></a> to the release team. This will be the third major release in 2022 and will include up to Gutenberg 14.1 for a total of 11 Gutenberg releases.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a> published the preliminary <a href=\"https://make.wordpress.org/core/2022/06/04/roadmap-to-6-1/\">roadmap for version 6.1</a>, which is expected to refine the full site editing experience introduced in the last two major releases. Stay tuned for a companion post with more details on what’s to come.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\"><p>Tune in to the <a href=\"https://wordpress.org/news/2022/06/episode-34-wordpress-6-1-is-coming/\">latest episode of WP Briefing</a> to hear WordPress Executive Director Josepha Haden discuss planning for major releases and how you can get involved.</p></blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>New in Gutenberg: Versions 13.4 and 13.5</h2>\n\n\n\n<p>There are two new versions of Gutenberg since last month’s edition of the Month in WordPress:</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/06/10/whats-new-in-gutenberg-13-4-8-june/\"><strong>Gutenberg 13.4</strong></a> includes 25 enhancements and nearly 30 bug fixes. This version adds support for button elements in theme.json and introduces axial spacing in Gallery Block, among other new features.</li><li><a href=\"https://make.wordpress.org/core/2022/06/22/whats-new-in-gutenberg-13-5-22-june/\"><strong>Gutenberg 13.5</strong></a> was released on June 22, 2022. It comes with an improved featured image UX, expanded design tools for the Post Navigation Link block, and solid accessibility fixes.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\"><p>Follow the “<a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s new in Gutenberg</a>” posts to stay up to date with the latest updates.</p></blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Team Updates: Gutenberg Page Redesign, Meetup Venue Support Funds, and More</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/gutenberg/\">The Gutenberg page</a> got a new redesign! You can<strong> </strong>rearrange the page content the way you want and experience the flexibility that blocks allow. Learn more about the inspiration behind the new look in <a href=\"https://make.wordpress.org/design/2021/10/29/redesign-of-the-gutenberg-page/\">this post</a>.</li><li>WordPress Community Support (WPCS) restarted its <a href=\"https://make.wordpress.org/community/2022/06/22/announcement-reactivating-meetup-venue-support-funds/\">meetup venue support funds</a> for community organizers.</li><li>The Themes Team released a <a href=\"https://make.wordpress.org/themes/2022/06/30/create-block-theme/\">new plugin called Create Block Theme</a> that makes it easier for theme builders to create block themes.</li><li>Matías Ventura, the lead architect of the Gutenberg project, shared some early thoughts on <a href=\"https://make.wordpress.org/design/2022/06/13/thinking-through-the-wordpress-admin-experience/\">the future of the WordPress admin interface</a>.</li><li>Each month, the Training Team publishes a list of new resources available on the Learn WordPress platform. <a href=\"https://make.wordpress.org/updates/2022/06/07/whats-new-on-learnwp-in-may-2022/\">Check out what’s new</a>.</li><li>The Polyglots Team kicked off conversations for planning the <a href=\"https://make.wordpress.org/polyglots/2022/06/15/wp-translation-day-in-september-2022-suggestion-discussion/\">next WordPress Translation Day</a>.</li><li>The Documentation Team posted a series of <a href=\"https://make.wordpress.org/docs/2022/06/13/live-onboarding-sessions-for-the-documentation-team/\">onboarding sessions</a> to get started with documentation.</li><li>After reviewing feedback raised by the community, the Performance Team proposed <a href=\"https://make.wordpress.org/core/2022/06/30/plan-for-adding-webp-multiple-mime-support-for-images/\">a new approach to add WebP and MIME support</a> for images.</li><li>The Themes Team updated its <a href=\"https://make.wordpress.org/themes/2022/06/18/complying-with-gdpr-when-using-google-fonts/\">recommendations for hosting webfonts</a> to follow Europe’s General Data Protection Regulation (GDPR).</li><li>In a step towards <a href=\"https://make.wordpress.org/design/2022/07/01/open-sourcing-theme-designs/\">open sourcing theme designs</a>, the Design Team made some themes authored by WordPress core and other theme developers available in a Figma file.</li><li>The Marketing Team started a discussion to gather feedback on <a href=\"https://make.wordpress.org/marketing/2022/06/17/discussion-promoting-wordcamps-with-the-official-wordpress-social-accounts/\">promoting WordCamps</a> with the official WordPress.org social accounts.</li><li>The Openverse Team <a href=\"https://make.wordpress.org/openverse/2022/06/17/mitigating-out-of-terms-api-usage/\">released version 2.5.5 of the Openverse API</a>, which brings an important change regarding anonymous API requests.</li><li>The Plugin Review Team shared a comprehensive <a href=\"https://make.wordpress.org/plugins/2022/06/15/whats-the-deal-with-invalid-reviews/\">post on invalid plugin reviews</a>.</li><li>The June edition of the <a href=\"https://make.wordpress.org/community/2022/06/24/monthly-organizer-newsletter-june-2022/\">Meetup Organizer Newsletter</a> is now live with a list of ideas on reactivating meetups.</li><li>Check out the <a href=\"https://make.wordpress.org/polyglots/2022/06/27/polyglots-monthly-newsletter-june-2022/\">Polyglots Monthly Newsletter: June 2022</a> to stay up to date with the latest updates from the Polyglots community.</li><li>The latest edition of People of WordPress features the story of web developer <a href=\"https://wordpress.org/news/2022/06/people-of-wordpress-leo-gopal/\">Leo Gopal</a>.</li><li><a href=\"https://block-museum.com/\">The Museum of Block Art</a> (MOBA), a virtual initiative that showcases creative uses of the WordPress block editor, is <a href=\"https://gutenbergtimes.com/museum-of-block-art-is-open-for-submissions/\">now open for submissions</a>.</li><li>Last month the WordPress community was saddened to hear of the passing of <a href=\"https://profiles.wordpress.org/wolly/\">Wolly</a> (Paolo Valenti). Wolly was a long-time WordPress contributor and one of the founding members of the vibrant Italian community. He will be missed.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\"><p>The BlackPress community is a great place to connect with black African descent people in the WordPress space, access tech resources, and advance your career skills. <a href=\"https://blackpresswp.com\">Join the BlackPress Community</a>.</p></blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Feedback/Testing Requests</h2>\n\n\n\n<ul><li>The Core Team is looking for <a href=\"https://make.wordpress.org/core/2022/06/26/rollback-feature-testing-call-to-action/\">help in testing a rollback functionality</a> for failed plugin and theme updates.</li><li>There’s an open call for feedback on a proposal to make building features and plugins on top of the WordPress REST API easier. <a href=\"https://make.wordpress.org/core/2022/07/04/proposal-better-rest-api-handling-in-javascript/\">Share your thoughts</a> by July 18, 2022.</li><li>The Training Team suggested a public content roadmap for <a href=\"https://make.wordpress.org/training/2022/06/29/learn-wordpress-development-creating-a-public-roadmap-for-content-creation/\">Learn WordPress development</a>. Comments are welcome until July 15, 2022.</li><li>Version 20.2 of WordPress for <a href=\"https://make.wordpress.org/mobile/2022/06/28/call-for-testing-wordpress-for-android-20-2/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/06/29/call-for-testing-wordpress-for-ios-20-2/\">iOS</a> is now available for testing.</li><li>Some members of the Meta Team did some experiments with <a href=\"https://make.wordpress.org/meta/2022/07/01/exploration-improving-devhub/\">hypothetical changes to the WordPress Developer Docs</a>. They welcome feedback on the next steps.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\"><p>Want to get involved in testing WordPress?<strong> </strong>Follow the “<a href=\"https://make.wordpress.org/test/tag/build-test-tools/\">Week in Test</a>” posts to find a handy list of links and opportunities.</p></blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>WordCamp Asia 2023 is Calling for Sponsors</h2>\n\n\n\n<ul><li>WordCamp Asia 2023, the first flagship WordCamp event in Asia, recently opened its <a href=\"https://asia.wordcamp.org/2023/call-for-sponsors/\">Call for Sponsors</a>.</li><li><a href=\"https://us.wordcamp.org/2022/\">WordCamp US 2022</a> is sold out. General Admission tickets went on sale on June 30, 2022, and were quickly claimed the same day. If you couldn’t get yours, the organizing team recommends <a href=\"https://us.wordcamp.org/2022/tickets/\">checking this page</a> periodically to see if any become available.</li><li>Curious about why WordCamp US is hosting fewer people this year? The WordCamp US team explained why in <a href=\"https://us.wordcamp.org/2022/wordcamp-us-2022-and-attendee-count/\">this post</a>.</li><li><a href=\"https://europe.wordcamp.org/2022/\">WordCamp Europe 2022</a> was successfully held in Porto, Portugal, from June 2 to 4, 2022. The event saw 2,300 in-person attendees and a record 800 participants at Contributor Day. All the sessions will be available <a href=\"https://wordpress.tv/event/wordcamp-europe-2022/\">on WordPress.tv soon</a>.</li><li>In 2023, WordCamp Europe will be hosted in the city of Athens, Greece. The <a href=\"https://europe.wordcamp.org/2023/call-for-organisers/\">Call for Organizers</a> is now open.</li><li>Josepha Haden covered some important questions from WordCamp Europe on a <a href=\"https://wordpress.org/news/2022/06/episode-33-some-important-questions-from-wceu/\">special episode of WP Briefing</a>. Be sure to give it a listen!</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\"><p>The #WPDiversity group has organized a free, online speaker workshop for Indian women in the WordPress community. The event will take place on September 24-25, 2022. <a href=\"https://www.eventbrite.com/e/speaker-workshop-for-indian-women-in-the-wordpress-community-sept-24-25-tickets-348466712317\">Registration is now open</a>.</p></blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em>Have a story that we could include in the next issue of The Month in WordPress? Let us know by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this form</em></strong></a><strong><em>.</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/mysweetcate/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mysweetcate</a>, <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>, <a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</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:\"13069\";s: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:72:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"People of WordPress: Leo Gopal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2022/06/people-of-wordpress-leo-gopal/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 30 Jun 2022 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:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"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: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:3;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:4;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:5;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=13020\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:355:\"In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better. This month we feature Leo Gopal, from South Africa, a back-end Developer and Customer Support agent on the encouragement and learning support the WordPress community can give. Writing as […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Meher Bala\";s: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:11765:\"\n<p>In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better. This month we feature Leo Gopal, from South Africa, a back-end Developer and Customer Support agent on the encouragement and learning support the WordPress community can give.</p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img decoding=\"async\" loading=\"lazy\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/06/featured-img-for-leo2.jpg?resize=680%2C420&ssl=1\" alt=\"Portrait of Leo Gopal in a black shirt with a blue sky behind.\" class=\"wp-image-13037\" width=\"680\" height=\"420\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/06/featured-img-for-leo2.jpg?w=1014&ssl=1 1014w, https://i0.wp.com/wordpress.org/news/files/2022/06/featured-img-for-leo2.jpg?resize=300%2C186&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/06/featured-img-for-leo2.jpg?resize=768%2C475&ssl=1 768w\" sizes=\"(max-width: 680px) 100vw, 680px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2>Writing as a channel of expression</h2>\n\n\n\n<p>Curiosity, writing, and resilience are recurring themes in Leo’s story, and have mapped with his WordPress journey. </p>\n\n\n\n<p>High school was a difficult time for Leo, as he had a speech impediment which only subsided when he was with close friends or family.</p>\n\n\n\n<p>He began writing a journal as an avenue of expression and found every word arrived smoothly for him. </p>\n\n\n\n<h2>It all began with WordPress 1.2 ‘Mingus’</h2>\n\n\n\n<p>In 2004, Leo discovered the joy of blogging as a way of combining keeping a journal with ‘conversations’ he could have with those who commented on his blogs. The potential and power of blogs would be an influence in the rest of his life.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img decoding=\"async\" loading=\"lazy\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/06/leo-gopal.jpeg?fit=720%2C960&ssl=1\" alt=\"Leo sat in front of a pond. \" class=\"wp-image-13027\" width=\"720\" height=\"960\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/06/leo-gopal.jpeg?w=720&ssl=1 720w, https://i1.wp.com/wordpress.org/news/files/2022/06/leo-gopal.jpeg?resize=225%2C300&ssl=1 225w\" sizes=\"(max-width: 720px) 100vw, 720px\" /></figure>\n\n\n\n<p>As Leo’s confidence grew through expressing himself in writing, he was determined that his stutter would ‘no longer hold power over him’. In 2005, with the encouragement of his blog readers, he spent his school summer break in his room working on reducing his stutter. WordPress would be the tool that would enable him to connect with his blog readers and to express his creativity and thoughts.</p>\n\n\n\n<h2>Making WordPress your own</h2>\n\n\n\n<p>In high school, Leo had opted for programming as one of his subjects. In 2008, he built his first website using WordPress for the students at the school. This was the first time he saw the real value of WordPress and open source.</p>\n\n\n\n<p>During the following years, he increasingly spent time searching online for information on ‘Customising WordPress’ and ‘Making WordPress your own’.</p>\n\n\n\n<p>Leo wanted to keep busy and as soon as he finished school, he applied for every entry-level web-related job that he could find. He was hired by a company for the role of webmaster for its Marketing team focused on WordPress.</p>\n\n\n\n<p>He continued to grow his skills as a WordPress developer with the help of useful documentation that he could find and through his helpful local WordPress Community. This helped him earn a living and support his family.</p>\n\n\n\n<h2>Helping yourself through helping others in the community</h2>\n\n\n\n<p>In 2015, Leo moved full-time to Cape Town, South Africa, and started as a developer at a web development agency, eventually progressing to its Head of Development and managing a small team.</p>\n\n\n\n<p>He chose WordPress as his main platform for development mainly because of the community behind it.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“<em>Had it not been for those searches on how to make WordPress your own, my life would have turned out a lot differently</em>.” </p><cite>Leo Gopal</cite></blockquote>\n\n\n\n<p>Leo felt he had a hurdle to overcome working in web sector. He didn’t feel like a ‘real developer’ being self-taught. However, through the community, he realized that there were many self-taught developers and he was not alone. </p>\n\n\n\n<p>Alongside his development path, Leo faced a mental health journey. He had suffered from depression and found the community to be accepting and understanding of this. </p>\n\n\n\n<p>At WordCamp Cape Town 2016, he stood in front of an audience and gave a talk: “<a href=\"https://wordpress.tv/2016/11/24/leo-gopal-the-wordpress-community-mental-wellness-and-you/\">The WordPress Community, Mental Wellness, and You</a>”. Following this talk, he was greeted by many attendees who thanked him for talking so openly about mental health issues.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/06/Leo-speaking-2.jpeg?resize=1024%2C683&ssl=1\" alt=\"Leo speaking at the podium at WordCamp Cape Town in 2016\" class=\"wp-image-13023\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/06/Leo-speaking-2.jpeg?w=1024&ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/06/Leo-speaking-2.jpeg?resize=300%2C200&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/06/Leo-speaking-2.jpeg?resize=768%2C512&ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Leo speaking at a WordCamp</em> Cape Town, 2016</figcaption></figure>\n\n\n\n<p>Leo has been diagnosed with bipolar, previously known as manic depression. In 2017, he hit a low period and struggled to keep going. He found support and understanding in the community in WordPress.</p>\n\n\n\n<p>He has openly written about his experiences with depression and started an initiative where topics of mental health and general wellbeing can be freely and non-judgmentally discussed. </p>\n\n\n\n<p>He said that by helping others, he is helping himself, every day.</p>\n\n\n\n<h2>Contributing to WordPress</h2>\n\n\n\n<p>Leo has contributed to the community as a Co-organizer in South Africa for the 2016 and 2017 WordCamp Cape Town, WordPress Meetup Cape Town 2015 – 2016, and WordPress Durban 2017 – 2020. He has also spoken at a number of WordCamps.</p>\n\n\n\n<p>Maintaining connections with people he had met through these events Leo felt was a great aid to his mental wellbeing during the Covid pandemic. </p>\n\n\n\n<p>He has contributed to core and plugins and believes that WordPress and its community make it extremely easy to contribute. </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“<em>The cost to start contributing is extremely low – start now</em>”.</p><cite>Leo Gopal</cite></blockquote>\n\n\n\n<p>When the ability to create and add patterns to the WordPress.org library came out in 2021, Leo used it almost immediately and created a <a href=\"https://wordpress.org/patterns/pattern/call-to-action-section-2/\">call-to-action box</a> which could be used by both his clients and the community. He plans to release a few more complex patterns. </p>\n\n\n\n<h2>Yes, we can.</h2>\n\n\n\n<p>Leo’s mantra is “I can do it!”</p>\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/2022/06/Leo-speaking-3.jpeg?resize=1024%2C683&ssl=1\" alt=\"Leo speaking at a WordCamp Cape Town in 2019\" class=\"wp-image-13032\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/06/Leo-speaking-3.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/06/Leo-speaking-3.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/06/Leo-speaking-3.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/06/Leo-speaking-3.jpeg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2022/06/Leo-speaking-3.jpeg?w=1944&ssl=1 1944w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Leo speaking at a WordCamp</em> Cape Town, 2019</figcaption></figure>\n\n\n\n<p>Getting over a stutter, overcoming poverty, being urgently self-taught, growing up in a country with “load shedding” electricity outages, and one of the slowest rated internet speeds in the developing world, and strengthening mental wellness are not easy feats., And yet, he knows he can do it.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“<em>Never, ever think you do not have the ‘right’ circumstances for success. Just keep going, progress over perfection – <strong>you</strong> can do it</em>.”</p><cite>Leo Gopal</cite></blockquote>\n\n\n\n<p>As Leo puts it, the WordPress community doesn’t just power a percentage of the internet; it empowers too.</p>\n\n\n\n<h2>Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community. 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>Contributors</h2>\n\n\n\n<p>Thanks to Nalini Thakor (<a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>), Larissa Murillo (<a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>) for work on this feature, and to all the contributors who helped with specific areas and the series this last few months. Thank you too to Leo Gopal (<a href=\'https://profiles.wordpress.org/leogopal/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>leogopal</a>) for sharing his experiences.</p>\n\n\n\n<p>Thank you to 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 support of the People of WordPress series.</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://i1.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\" 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:\"13020\";s: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: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:49:\"WP Briefing: Episode 34: WordPress 6.1 is Coming!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2022/06/episode-34-wordpress-6-1-is-coming/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Jun 2022 15:13:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=13013\";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:154:\"Join WordPress Executive Director Josepha Haden Chomphosy as she covers planning for major releases and how you can get involved in the 6.1 release cycle!\";s: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/2022/06/WP-Briefing-034.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:\"Santana Inniss\";s: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:8675:\"\n<p>In the thirty-fourth episode of the WordPress Briefing, hear WordPress Executive Director Josepha Haden Chomphosy discuss planning for the major release and how you can get involved in the WordPress 6.1 release cycle! </p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<ul><li>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo: <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production: <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/06/23/wordpress-6-1-planning-roundup/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/core/2022/06/23/wordpress-6-1-planning-roundup/\">WordPress 6.1 Planning Roundup Core Post</a></li><li><a href=\"https://make.wordpress.org/core/tag/6-1/\">All WordPress 6.1 posts on Make Core</a></li><li><a href=\"https://www.eventbrite.com/e/speaker-workshop-for-indian-women-in-the-wordpress-community-sept-24-25-tickets-348466712317\">Speaker Workshop for Indian Women in the WordPress Community</a></li><li><a href=\"https://wordpress.org/photos/\" data-type=\"URL\" data-id=\"https://wordpress.org/photos/\">Submit photos to the WordPress Photo Directory</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13013\"></span>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:00:10] </p>\n\n\n\n<p>Hello everyone. And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I’m your host Josepha Haden Chomphosy.</p>\n\n\n\n<p>Here we go.</p>\n\n\n\n<p>All right my friends. So it’s been about a month since WordPress 6.0 came out and you know what that means. It means we are already looking at the next major WordPress release because, as most of you know, WordPress never sleeps. Y’all are honestly up and hustling like 24/7 as far as I can tell, which is great! And is one of the many benefits of being a global community, I suppose. </p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:01:05]</p>\n\n\n\n<p>But anyway, back to this major release. There was a high-level roadmap shared by Mattias Ventura at the start of June. And it lists some focus areas for the Block Editor, continued refinements to the template editor and navigation block, and some work on global styles and more / better blocks and design tools that are slated to ship with WordPress 6.1. From the WordPress core side, though, there are a couple hundred tickets that are milestoned for the next major.</p>\n\n\n\n<p>Being milestoned for a release means that either a ticket wasn’t ready for the last release and was moved to the next available one, or a ticket has become ready for a release since the last major release occurred. That list as it stands might be a little bit too big for a single release. However, honestly, no list is too big if we have enough folks contributing.<br></p>\n\n\n\n<p>So if you’ve never contributed to a major release of WordPress before, and you’re interested to know how that works, there are some things to keep an eye out for over the next few weeks. We are in what is considered the planning phase for the next big release. And so there are two or three things you’re gonna see pretty soon.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:02:11] </p>\n\n\n\n<p>First is a planning kickoff post. That post gets published on make.wordpress.org/core, and it includes notes on volunteering for the release squad, some guesses at areas of focus based on the tickets that we’re seeing in track, a schedule, the whole kit, and caboodle. It’s all in there. If you are wanting to know how to lend a hand and how to take your first steps to core contribution, apart from the new contributor meeting that happens before the dev chat, that post is the place to start. </p>\n\n\n\n<p>So keep an eye out on make.wordpress.org/core for that. And then the second thing that shows up in the planning phase for any major release is bug scrub and ticket triage meetings. Like I mentioned, there are the new contributor meetings where they scrub tickets and talk through the basics of what we’re seeing on good first bugs.</p>\n\n\n\n<p>And I mentioned that here often, I just mentioned it in the last, in the last bullet point, but there are also regular bug scrubs and ticket triaging sessions where a kind contributor chooses a set of tickets to review and then leads other contributors through the process of checking to see if a ticket is valid to see if it can be replicated to see if it has a patch.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:03:23] </p>\n\n\n\n<p>If there are decisions that are blocking it and how to move those decisions forward, and generally just kind of discuss what else has to be done in order to take the ticket to the next step. Those get announced in the dev chat every Wednesday, but also there is a post that will go up on make.wordpress.org/core.</p>\n\n\n\n<p>I wish I had a faster way to say that instead of just racing through the whole URL every time. But it’ll be okay. We’ll put it in the show notes in case you would rather just click some stuff. And the third thing to keep an eye out for. If development is not your thing, so writing code is not already part of your tool belt, that’s totally fine. There are many other important areas where you can contribute, too. Design, training, support, polyglots, marketing, documentation, and more. These teams all do work in and around a release that is vital to WordPress’ overall success. </p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:04:19] </p>\n\n\n\n<p>And a final thought of all. If that felt a little too intense if you want to see where this ship is headed, but you can’t quite commit to grabbing an oar today, that’s fine, too. The most important thing is that if you are a member of the community, as an extender or a user or a die-hard contributor, or a new contributor, the most important thing is that you have some general awareness of what the overall direction is. </p>\n\n\n\n<p>You might do that by experimenting with blocks in your products or by testing screen readers against your workflow or even by setting aside an hour to participate in the latest testing prompt. Being aware of what’s happening in and around your area of the project will help to keep you kind of prepared and knowledgeable to lend a hand whenever it is that you are ready.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:05:14] </p>\n\n\n\n<p>And that then brings us to our small list of big things. My friends, registration is now open for the WordPress Speaker Workshop for Women Voices in India. That’s taking place on September 24th and 25th. Uh, it’s happening over Zoom, so location or travel shouldn’t really be an obstacle for you. I’m going to leave a link to some information about that in the show notes. It should be an excellent opportunity that [the] WP Diversity initiative that WordPress has, that the community team helps to foster, is really an excellent experience. And so I hope that you register and attend that. </p>\n\n\n\n<p>And the second thing actually is a bit of a celebration. The Photo Directory recently hit a huge milestone of 3000 photos! And you also can submit your photos to wordpress.org/photos. If you feel so inclined to make a contribution of that type. </p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:06:07] </p>\n\n\n\n<p>And then the third thing on my smallest of big things is actually kind of a, a WordPress tooltip a little bit of a WordPress project did-ya-know? So, there is a special channel in WordPress Slack for sharing thanks to folks who were especially helpful to you. It’s called the Props Channel. And when someone shares props with you, it even shows up in your activity on your wordpress.org profile. Pretty cool, huh? Props to the Meta team for that one.</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’m your host, Josepha Haden Chomphosy. And I’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:\"13013\";s: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:61:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WP Briefing: Episode 33: Some Important Questions from WCEU\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wordpress.org/news/2022/06/episode-33-some-important-questions-from-wceu/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 13 Jun 2022 11:01:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=13005\";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:165:\"WordPress Executive Director Josepha Haden Chomphosy covers some important questions from WordCamp Europe on this special episode of the WordPress Briefing 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: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/2022/06/WP-Briefing-033.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:\"Santana Inniss\";s: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:13788:\"\n<p>In the thirty-third episode of the WordPress Briefing, hear Josepha Haden Chomphosy recap important questions from WordCamp Europe, and a selection of Contributor Day interviews. </p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em><br></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo: <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production: <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a></li><li>Production Assistance: <a href=\"https://profiles.wordpress.org/priethor/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li><li>Special Guests: <a href=\"https://profiles.wordpress.org/milana_cap/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/daugis/\">Daugirdas Jankus</a>, and <a href=\"https://profiles.wordpress.org/desrosj/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><em><a href=\"https://en.wikipedia.org/wiki/L%27esprit_de_l%27escalier\" data-type=\"URL\" data-id=\"https://en.wikipedia.org/wiki/L%27esprit_de_l%27escalier\">L’esprit de l’escalier</a></em></li><li><a href=\"https://make.wordpress.org/core/2022/05/20/core-editor-improvement-creating-containing-containers/\" data-type=\"URL\">Flexbox Layout Blocks</a></li><li><a href=\"https://make.wordpress.org/training/2022/03/10/recap-of-training-team-meetings-march-8-and-10-2022/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/training/2022/03/10/recap-of-training-team-meetings-march-8-and-10-2022/\">Translating Content on Learn WordPress</a></li><li><a href=\"https://make.wordpress.org/training/handbook/workshops/workshop-subtitles-and-transcripts/translating-subtitles/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/training/handbook/workshops/workshop-subtitles-and-transcripts/translating-subtitles/\">Translating Subtitles</a></li><li><a href=\"https://josepha.blog/2020/01/15/fostering-collaboration-across-cultures/\" data-type=\"URL\" data-id=\"https://josepha.blog/2020/01/15/fostering-collaboration-across-cultures/\">Collaboration Across Cultures</a> (Blog)</li><li><a href=\"https://www.youtube.com/watch?v=8MzJCT2BVV0\" data-type=\"URL\" data-id=\"https://www.youtube.com/watch?v=8MzJCT2BVV0\">Collaboration Across Cultures</a> (YouTube Video)</li><li><a href=\"https://europe.wordcamp.org/2023/call-for-organisers/\" data-type=\"URL\" data-id=\"https://europe.wordcamp.org/2023/call-for-organisers/\">WordCamp Europe Athens: Call for Organizers</a></li><li><a href=\"https://twitter.com/matias_ventura/status/1534602705456480260\" data-type=\"URL\" data-id=\"https://twitter.com/matias_ventura/status/1534602705456480260\">6.1 Release Planning Twitter Thread</a></li><li><a href=\"https://make.wordpress.org/core/2022/06/04/roadmap-to-6-1/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/core/2022/06/04/roadmap-to-6-1/\">6.1 Release Planning Roadmap Post</a></li><li><a href=\"https://make.wordpress.org/meetings/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/meetings/\">Make WordPress Meetings Calendar</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13005\"></span>\n\n\n\n<p>[<strong>Daugirdas Jankus </strong>00:00:04] </p>\n\n\n\n<p>Honestly, it’s not a secret. It’s a big part of our business. And I think it’s like WordPress is a big part of all the hosting company, company’s, businesses, you know? So for us, it is like, we want to make it better. We want to give back. We want to understand, you know, where we can contribute the most. And we see it as a, you know, win, win, win situation for everyone, for clients, for the whole ecosystem.</p>\n\n\n\n<p>And for us as a business, of course!</p>\n\n\n\n<p>[<strong>Milana Cap </strong>00:00:32] </p>\n\n\n\n<p>My favorite WordPress component is WP CLI. That’s my crush, haha, because I love terminal. I love doing it. I’m not a really UI type of person, I get lost in UI. But in terminal, you just type command and it does what you want. And a WP CLI is much more powerful than WordPress dashboard. You can do so many things there and you can have fun.</p>\n\n\n\n<p>Uh, so that’s my go-to tool!</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:01:10] </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’m your host, Josepha Haden Chomphosy.</p>\n\n\n\n<p>Here we go!</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:01:36] </p>\n\n\n\n<p>Many, many people were at WordCamp Europe a couple of weeks ago. And at the end, Matt and I closed out the event sessions with a little question and answer time from the community. I was excited to see everyone and excited to answer their questions. But as with all spur of the moment answers, I experienced this <em>l’esprit de l’escalier </em>and I found that there were a few things that I would have answered a little more completely if I had taken more than two seconds to think about them.</p>\n\n\n\n<p>So today I’m going to augment some of the answers from that session with a little more context and clarity. There was a question from Laura Byrne about favorite blocks in recent WordPress releases. And given that I was exclusively holding WordCamp Europe information in my brain at the time, I couldn’t think of which block was my favorite. While I was sitting there on that stage,</p>\n\n\n\n<p>I realized that one of my favorite things about WordPress’s 6.0 release, like Matt, wasn’t really a block, but it was a functional workflow sort of thing. So my favorite thing was the ability to lock blocks, but I mean, the question was about favorite blocks. And so I do know that some of the most anticipated blocks are the Flexbox layout blocks. Whew. What a sentence!</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:02:46]</p>\n\n\n\n<p>Try to say that three times fast! Those blocks are the Flexbox layout blocks, they are sort of shortcuts that show up when you’re selecting multiple blocks and allow for easy side-by-side layouts. I’m not explaining it in a way that does it much justice, but I will share a link in the show notes that has more information and you can kind of see how empowering that particular block is in the block editor.</p>\n\n\n\n<p>The next question I wanted to give a little more context to came from Courtney Robertson. She asked about how to make translated content more readily available on learn.wordpress.org. My answer was pretty far ranging and talked about why it’s harder to commit to prioritizing that over, for my example, translating WordPress core. </p>\n\n\n\n<p>But I also understand that there are people who want to help and just need someone to point them in the right direction. And so I want to be clear that it is possible to have workshops in any language on learn.wordpress.org right now. We just don’t have a lot of people contributing those translations.</p>\n\n\n\n<p>So there are conversations going on right now in the training team about using Glotpress on learn.wordpress.org, and also how to translate subtitles. So, if you are looking for ways to give back through translation and training is an important kind of area of your focus. I will have links to both of those things in the show notes as well.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:04:11]</p>\n\n\n\n<p>I also gave a quick answer, uh, after this question about how hard it is to recognize contributions that are separate from a major event or major release. In this case, when I say recognize, that’s recognized as in thank, not recognize as in, know it exists. In case it’s not clear why that was connected, why that answer was connected to the question, training materials are self-serve and not always specific to individual releases of WordPress.</p>\n\n\n\n<p>So that means the maintenance of any content around training happens routinely over the course of time, rather than because of a specific release or a WordCamp. What sometimes can make it a little harder to entice people to join us in that work. </p>\n\n\n\n<p>And now the third question I’d like to tackle is the one that came from Megan Rose. She asked how we can encourage better diversity as we go back to in-person events. My answer was more about the big picture, program-wide work that has been done and specific awarenesses that I, as a leader, have been keeping top of mind. That answer is still true and is still important, but again, it doesn’t really help anyone who’s wondering how they can show up today in their own communities, and do the hard work of fostering an inclusive space there so that we can confidently welcome more diverse voices together. </p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:05:27]</p>\n\n\n\n<p>A great place to start is to have conversations with people who aren’t like you and really listen. Also recognizing that we all come from different backgrounds that give us more or less opportunity and always be asking yourself, who is missing from this conversation and why, how can I find them and invite them into our own WordPress spaces?</p>\n\n\n\n<p>If that all kind of feels right up your alley, I would check out the show notes. I’ll have some links in there to the community team’s site, as well as a few posts that will help you to explore that a bit further as well. </p>\n\n\n\n<p>There were also a couple of questions about market share slash usage of WordPress, and Five for the Future that I really do want to answer, but as I was writing up the context and just kind of exploring the questions that people were raising, it turned out to really be quite a big set of answers.</p>\n\n\n\n<p>So I will do those in either two separate episodes of their own or one surprisingly long, for me, episode. And so there you have it, a lightning round, deep dive on a few questions from WordCamp Europe.</p>\n\n\n\n<p>[<strong>Jonathan Desrosiers </strong>00:06:41] </p>\n\n\n\n<p>Yeah, it’s definitely great to be back in person. Um, it’s been a long two years, two or three years for a lot of people and it’s, it’s, it’s great that we’re such an asynchronous community and we can all stay connected online through Slack and different means. Um, but there are some things that you can’t replace, like making friends with people and learning people’s demeanors and having some discussions in person that you can’t replace.</p>\n\n\n\n<p>And so, uh, I’m really excited to see people I haven’t seen in a long time. Meet new people and, um, you know, have some of those discussions here today in Portugal.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:07:21] </p>\n\n\n\n<p>Which then brings us to our small list of big things. </p>\n\n\n\n<p>If you missed the announcement, WordCamp Europe will be in Athens next year. And the call for organizers is open already. It’s an experience that is absolutely irreplaceable. So I’ll link to that in the show notes, in case you’ve always wanted to give back to WordPress that way.</p>\n\n\n\n<p>The second thing on my list is that work on the next major release of WordPress is already underway. There is a post with roadmap info that was published recently, as well as a slightly more casual thread on Twitter. I’ve linked both of those in the show notes, so that you have some concept of what it is that we are aiming for in 6.1, and also a concept of where to go to get started working on it if that’s what you feel like doing, uh, for the next three to four months– 120 days, roughly.</p>\n\n\n\n<p>Uh, and finally. This is less of like a thing to be aware of in the next two weeks and kind of a little WordPress project tool tip. Did you know that we have a calendar that shows all meetings for all teams all week long? It will make you feel tired by the amount of work that gets done in the WordPress project every week, but it’s right there on make.wordpress.org/meetings.</p>\n\n\n\n<p>So you never have to wonder where folks are meeting to talk about things ever again. And that my friends is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosy, and I’ll see you again in a couple of weeks.</p>\n\n\n\n<p>[<strong>Santana Inniss & Héctor Prieto </strong>00:09:11] </p>\n\n\n\n<p>Hello! Mic test. One, two, one, two. </p>\n\n\n\n<p>We are testing the USB microphone. Let’s hope we’re using it actually. </p>\n\n\n\n<p>I think so. I think so. </p>\n\n\n\n<p>Yes. Because now I am far, and now I am much closer to the microphone. Yes. </p>\n\n\n\n<p>And I am sitting in the same spot. </p>\n\n\n\n<p>Good. Hello? </p>\n\n\n\n<p>Hello! </p>\n\n\n\n<p>Mic test one, two.</p>\n\n\n\n<p>Mic test one, two. </p>\n\n\n\n<p>[record scratching sound effect]</p>\n\n\n\n<p>[laughter]</p>\n\n\n\n<p>And, close.</p>\n\n\n\n<p>Mic check. </p>\n\n\n\n<p>Mic check. </p>\n\n\n\n<p>[record scratching sound effect]</p>\n\n\n\n<p>I’m close to the mic. I’m far from the mic. </p>\n\n\n\n<p>I’m far from the mic. Wow.</p>\n\n\n\n<p>Not so far.</p>\n\n\n\n<p>[laughter]</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:\"13005\";s: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: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 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2022/06/the-month-in-wordpress-may-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Jun 2022 11:35:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=12993\";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:346:\"WordPress has a lot to celebrate this month. The newest release “Arturo” is here. WordPress turned 19 years old last week. And WordCamp Europe, the first in-person flagship WordCamp in two years, is starting today in Porto, Portugal. Read on to learn more about these and other exciting news around WordPress! Say hello to WordPress […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s: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:12516:\"\n<p>WordPress has a lot to celebrate this month. The newest release “Arturo” is here. WordPress turned 19 years old last week. And WordCamp Europe, the first in-person flagship WordCamp in two years, is starting today in Porto, Portugal. Read on to learn more about these and other exciting news around WordPress!</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2>Say hello to WordPress 6.0 “Arturo”</h2>\n\n\n\n<p><strong>WordPress 6.0 “Arturo” was released on May 24, 2022</strong>. Named in honor of the Latin jazz musician Arturo O’Farrill, the awaited release brings more customization tools and numerous updates to make the site-building experience more intuitive.</p>\n\n\n\n<p>Check out the <a href=\"https://youtu.be/oe452WcY7fA\">WordPress 6.0 video</a> and the <a href=\"https://wordpress.org/news/2022/05/arturo/\">announcement post</a> for an overview of the most important changes. Interested in knowing more about the features that will help you build with and extend WordPress? Then the WordPress 6.0 <a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">Field Guide</a> might be for you.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/oe452WcY7fA?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Over 500+ people in 58+ countries made WordPress 6.0 possible – Thank you!</p>\n\n\n\n<div class=\"is-layout-flex wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/download/\"><strong>Download WordPress 6.0</strong></a></div>\n</div>\n\n\n\n<h2>Happy 19th birthday, WordPress!</h2>\n\n\n\n<p>Time flies, doesn’t it? Believe it or not, May 27 marked the 19th anniversary of WordPress’ first release! To celebrate, the community put together <a href=\"https://wp19.day/\">a special site</a> (wp19.day) where contributors shared thoughts, videos, live shows, and more.</p>\n\n\n\n<p>You can still join the fun using the hashtag #WP19Day on social media, or even contribute photos of the swag you used to celebrate to the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n<div class=\"is-layout-flex wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/marketing/2022/04/01/grow-your-story-on-wordpress/\"><strong><strong><strong>If you haven’t yet, this is also a great opportunity to share your WordPress story. Visit the #GrowYourStoryWP initiative to learn more – We’d love to hear from you.</strong></strong></strong></a></div>\n</div>\n\n\n\n<h2>New in Gutenberg</h2>\n\n\n\n<p>Two new versions of Gutenberg were released last month:</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">Gutenberg 13.2</a> shipped on May 11, 2022, and brings a new API to save editor preferences on the server, visual guides for padding and margins, and improvements to the Comment block.</li><li><a href=\"https://make.wordpress.org/core/2022/05/26/whats-new-in-gutenberg-13-3-0-may-25/\">Gutenberg 13.3</a> comes with a new Table of Contents block and a number of enhancements to existing blocks to provide more ways to display content, among other highlights. It was released on May 25, 2022.</li></ul>\n\n\n\n<div class=\"is-layout-flex wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/core/tag/gutenberg-new/\"><strong><strong>Follow the </strong><strong>#gutenberg-new</strong><strong> posts for more details on the latest updates.</strong></strong></a></div>\n</div>\n\n\n\n<h2>Team updates: Five for the Future, guidelines for in-person regional WordCamps, and more</h2>\n\n\n\n<ul><li>Following an earlier discussion on in-person regional WordCamps, the Community team announced new <a href=\"https://make.wordpress.org/community/2022/05/23/regional-in-person-wordcamps-going-forward/\">guidelines</a> for these WordPress events.</li><li>The Five for the Future (5ftF) initiative is key to ensuring the future of the WordPress project. As part of the ongoing efforts to improve this initiative, Executive Director Josepha Haden suggested a <a href=\"https://make.wordpress.org/project/2022/05/20/defining-five-for-the-future-pledges-contributions/\">definition</a> for 5ftF pledges and contributions.</li><li>Tonya Mork posted a summary of the <a href=\"https://make.wordpress.org/test/2022/05/31/core-test-stats-for-wordpress-6-0/\">core test stats for WordPress 6.0</a>.</li><li>The Meta and Theme Review teams shared an update on the work done over the past year to <a href=\"https://make.wordpress.org/meta/2022/05/23/theme-reviews-improvements/\">improve the theme review process</a>. As a result, the average time for themes to be reviewed has decreased by 90%.</li><li>Josepha Haden kicked off a discussion post to gather feedback on the <a href=\"https://make.wordpress.org/project/2022/05/20/discussion-contrib-handbook-part-3/\">Community Code of Conduct</a> section of the new <a href=\"https://make.wordpress.org/updates/2021/03/16/proposal-a-wordpress-project-contributor-handbook/\">Contributor Handbook</a>.</li><li>On a similar note, the Community team created a new <a href=\"https://make.wordpress.org/updates/2022/05/26/announcement-incident-response-training/\">Incident Response Training</a>. The course, which is live on <a href=\"https://learn.wordpress.org/course/incident-response-team-training/\">Learn WordPress</a> and considered a work in progress, addresses how WordPress contributors take and respond to code of conduct reports.</li><li>The Training team published new lesson plans, workshops, courses, and Social Learning Spaces on Learn WordPress. <a href=\"https://make.wordpress.org/updates/2022/05/01/whats-new-on-learnwp-in-april-2022/\">See what’s new</a>.</li><li>The #WPDiversity working group organized several <a href=\"https://make.wordpress.org/community/2022/05/06/report-allyship-and-diverse-speaker-workshops-april-2022/\">Allyship and Diverse Speaker Workshops</a> in April. Attendees reported a 40% increase in public speaking confidence after attending the Speaker workshops. <a href=\"https://make.wordpress.org/community/tag/wpdiversity/\">Stay tuned</a> for the next events!</li><li>A <a href=\"https://make.wordpress.org/test/2022/05/30/fse-program-rallying-recipe-reviewers-summary/\">summary</a> of the 14th testing call of the Full Site Editing (FSE) Outreach program – “Rallying Recipe Reviewers” was recently published.</li><li>You can also find <a href=\"https://make.wordpress.org/core/2022/05/31/high-level-feedback-from-the-fse-outreach-program-may-2022/\">high-level feedback on the FSE Program</a> in this May 2022 post.</li><li>Learn more about the <a href=\"https://make.wordpress.org/design/2022/05/23/design-share-may-9-20/\">projects</a> the Design team contributed to over the past month.</li><li>Anne McCarthy hosted a Hallway Hangout to talk about various FSE pull requests and designs. The recording is available in <a href=\"https://make.wordpress.org/test/2022/05/25/hallway-hangout-discussion-on-full-site-editing-issues-prs-designs-25-may/\">this post</a>. </li><li>The May editions of the <a href=\"https://make.wordpress.org/community/2022/05/20/meetup-organizer-newsletter-may-2022/\">Meetup Organizer Newsletter</a> and the <a href=\"https://make.wordpress.org/polyglots/2022/05/31/polyglots-monthly-newsletter-may-2022/\">Polyglots Monthly Newsletter</a> were published.</li><li>The latest edition of People of WordPress features the story of <a href=\"https://wordpress.org/news/2022/05/people-of-wordpress-dee-teal/\">Dee Teal</a>.</li></ul>\n\n\n\n<div class=\"is-layout-flex wp-block-buttons\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/news/2022/05/episode-31-open-source-accessibility-celebrating-global-accessibility-awareness-day-with-guest-joe-devon/\"><strong><strong>The </strong><strong>thirty-first episode of WP Briefing</strong><strong> celebrated Global Accessibility Awareness Day (May 19) with guest Joe Devon.</strong></strong></a></div>\n</div>\n\n\n\n<h2>Open feedback/testing calls</h2>\n\n\n\n<ul><li>The Core team is working on an experimental pull request (PR) to implement <a href=\"https://make.wordpress.org/core/2022/05/27/block-font-sizes-and-fluid-typography/\">fluid typography</a>. They welcome feedback on design, functionality, and API.</li><li>Version 20.0 of WordPress for <a href=\"https://make.wordpress.org/mobile/2022/05/31/call-for-testing-wordpress-for-android-20-0/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/05/30/call-for-testing-wordpress-for-ios-20-0/\">iOS</a> is now available for testing.</li><li>Were you involved in the WordPress 6.0 release? Take some time to reflect on what you learned and participate with your feedback in this <a href=\"https://make.wordpress.org/core/2022/05/27/wordpress-6-0-arturo-retrospective/\">retrospective</a>.</li></ul>\n\n\n\n<div class=\"is-content-justification-center is-layout-flex wp-container-5 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/project/2022/05/23/request-for-feedback-recording-five-for-the-future-contributions/\"><strong><strong><strong>Angela Jin has asked for feedback to help identify and record Five for the Future contributions from Make teams. </strong><strong>Share your ideas in this post</strong><strong>.</strong></strong></strong></a></div>\n</div>\n\n\n\n<h2>WordCamp Europe is here!</h2>\n\n\n\n<ul><li>WordPress Foundation’s Kim Parsell Memorial Scholarship returns for WordCamp US 2022. <a href=\"https://us.wordcamp.org/2022/the-kim-parsells-memorial-scholarship-apply-now/\">Visit this post</a> for more information.</li><li>The WordCamp US <a href=\"https://us.wordcamp.org/2022/call-for-sponsors-open-wcus/\">Call for Sponsors</a> is now open.</li><li>Two more in-person WordCamps are happening this month:<ul><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://warsaw.wordcamp.org/2022/\">WordCamp Warsaw</a>, Poland on June 11-12, 2022</li><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/2022/\">WordCamp Montclair</a>, NJ, USA on June 25, 2022</li></ul></li><li>The WordPress community is meeting today at <a href=\"https://europe.wordcamp.org/2022/\">WordCamp Europe</a> (June 2-4) in Porto, Portugal. This edition celebrates the return to in-person events and the 10th anniversary of WCEU. For everyone heading to Porto, have a great WordCamp!</li></ul>\n\n\n\n<div class=\"is-content-justification-center is-layout-flex wp-container-6 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/news/2022/05/episode-32-an-open-source-reading-list/\"><strong><strong><strong><strong>Traveling to WCEU? Check out Josepha Haden’s </strong><strong>open source reading list</strong><strong> for interesting reads while you travel!</strong></strong></strong></strong></a></div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em>Have a story that we could include in the next issue of The Month in WordPress? Let us know by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this form</em></strong></a><strong><em>.</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/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a>, <a href=\'https://profiles.wordpress.org/harishanker/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>harishanker</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:\"12993\";s: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:72:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"People of WordPress: Dee Teal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2022/05/people-of-wordpress-dee-teal/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 31 May 2022 17:51: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:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"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: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:3;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:4;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:5;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=12946\";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:90:\"This month\'s People of WordPress feature shares the story of Dee Teal, based in Australia.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14883:\"\n<p>In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better. This month we feature a WordPress development and large project specialist on the difference the software and community can make to your career and life.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"515\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/05/Dee-Teal.jpg?resize=1024%2C515&ssl=1\" alt=\"\" class=\"wp-image-12955\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/05/Dee-Teal.jpg?resize=1024%2C515&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/05/Dee-Teal.jpg?resize=300%2C151&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/05/Dee-Teal.jpg?resize=768%2C386&ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2022/05/Dee-Teal.jpg?w=1247&ssl=1 1247w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Dee’s story with computers started at school in New Zealand where discovering how a mouse worked and learning BASIC and Pascal was a catalyst for what later became a programming career.</p>\n\n\n\n<p>At a time when computers were just becoming mainstream, there were no opportunities for girls in her school to consider this as a further option. She recalls: “No one thought to say, ‘Dee, you look like you’re good at this, you should pursue it…’. I mean, I was a girl (and I was told girls didn’t ‘do’ computers). No one in the circles I moved in really had any idea where this technology revolution would take us.”</p>\n\n\n\n<p>With no particular career path into technology, Dee was encouraged in her final year of school to apply for a job in a bank where she worked and became a teller three years later. She gained financial independence, which enabled her to travel as a 20-year-old and spend the next three years exploring the US and Europe.</p>\n\n\n\n<p>Looking back, she noted how the world had changed: the first computer mouse she had seen had come out in 1983, and 20 years later WordPress was founded.</p>\n\n\n\n<h2>Journey into coding</h2>\n\n\n\n<p>During those 20 years, Dee worked as a nanny, working in child care centers, in customer support, and as a temp.</p>\n\n\n\n<p>In 1999, she packed up her bags once again, and moved from New Zealand to Australia. She took a place at a performing arts school where she honed her singing and performance skills and volunteered her time to the music director who was starting to experiment with sending out HTML newsletters and updates via email.</p>\n\n\n\n<p>“And so my personal revolution began. On the day after I graduated from that course, I walked into a full-time role as that music director’s assistant and began my journey back to code.”</p>\n\n\n\n<p>As part of that job, Dee edited and sent HTML newsletters on a weekly basis. This ignited her interest in programming, and she bought books about coding for the web and experimented on her home-built PC making web pages. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>“I’m sure, like a lot of us, I remember the thrill of creating that first HTML file and seeing a ‘Hello World’ or similar heading rendered in the browser. From there, I was completely hooked.”</p>\n<cite>Dee Teal</cite></blockquote>\n\n\n\n<p>Later she moved to the IT department and took on maintenance of all the websites. By 2004, she was working full-time as a webmaster. A year later, she was running a small business creating sites on the side. Four years after that, her business became her full-time job as she left employment to pursue her Masters Degree in Digital Communication and Culture.</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/2022/05/R0011864.jpg?resize=1024%2C768&ssl=1\" alt=\"Dee with other contributors getting things ready for a WordCamp\" class=\"wp-image-12961\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/05/R0011864.jpg?resize=1024%2C768&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/05/R0011864.jpg?resize=300%2C225&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/05/R0011864.jpg?resize=768%2C576&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/05/R0011864.jpg?w=1200&ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Dee and other volunteers setting up for a local WordCamp</figcaption></figure>\n\n\n\n<p>Dee found the theory and sociology behind the web, and its facilitation of human and machine communication fascinating.</p>\n\n\n\n<p>She said: “I love the fact that the tech industry involves a constant constant curve of growth and discovery, which results in a perpetual exercise in finding creative elegant solutions for sticky problems.”</p>\n\n\n\n<p>For Dee, being able to use her innate curiosity to leverage processes, people, and tools, fuelled by a focus on communicating a message, has been a defining inspiration in her work.</p>\n\n\n\n<p>This combined fascination coincided with her meeting WordPress in 2009 and subsequently its community. She moved her existing blog to the software and it became the CMS of choice for all her client work.</p>\n\n\n\n<h2>The WordPress community can change your world</h2>\n\n\n\n<p>In 2011, she stumbled across WordCamps and by extension the WordPress community. Dee has reflected publicly that WordPress didn’t change her life, its community changed her world!</p>\n\n\n\n<p>She flew on a whim from her then home in Sydney to attend a WordCamp in Melbourne she had found after a search for ‘WordPress Conferences’.</p>\n\n\n\n<p>She said: “I met welcoming people, made friends, connected, and came back home excited and hopeful about continuing this connection with the wider WordPress community.”</p>\n\n\n\n<p>Building a community locally around WordPress got off to a slow start in Sydney. From an inauspicious early WordPress Sydney meetup in the function room of a pub, her connection and involvement took off. Before long she was helping organize that meetup, and by the time she moved away from that great city it had branched into two meetups, and soon after, into three.</p>\n\n\n\n<p>She was so inspired by the community that at the end of that first year and her second WordCamp, she raised her hand to help organize a WordCamp Sydney in 2012, and after moving interstate, WordCamp Melbourne in 2013.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>“WordPress and any other software package exist to serve people.”</p>\n<cite>Dee Teal</cite></blockquote>\n\n\n\n<p>Dee said: “WordPress, software, technology, the Internet will come and go, morph, and change, evolve. Maybe WordPress will last forever, maybe it will morph into something else, maybe one day it will look completely different than it did when I first started (actually, that’s true now). The thing that doesn’t change is the humanity around it. WordPress and any other software package exist to serve people.”</p>\n\n\n\n<p>She added: “The thing that I have learned, not only through WordPress but in life, is that if we too serve the people around what we’re doing, we ourselves will grow, develop and change alongside the people we serve, and the tools we use to serve them.”</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"329\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/05/Dee_POW_5.6_slice-large.png?resize=1024%2C329&ssl=1\" alt=\"Dee pictured second from left as part of the WordPress 5.6 contributors\" class=\"wp-image-12957\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/05/Dee_POW_5.6_slice-large.png?resize=1024%2C329&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/05/Dee_POW_5.6_slice-large.png?resize=300%2C96&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/05/Dee_POW_5.6_slice-large.png?resize=768%2C246&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/05/Dee_POW_5.6_slice-large.png?w=1200&ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Some of the contributors to the <em>WordPress 5.6 release</em> </figcaption></figure>\n\n\n\n<p>Dee was a coordinator for WordPress 5.6 release in 2020 and was able to encourage others to learn about the process.</p>\n\n\n\n<h2>Helping others and sharing knowledge through WordPress</h2>\n\n\n\n<p>Dee has been an advocate for cross-cultural collaboration and understanding in both WordPress and her work for a large distributed agency which has people from more than 24 countries and operates across 16 timezones. She has also written about closing the gap between diverse distributed teams and how to meet the challenges of cross cultural remote work.</p>\n\n\n\n<p>Dee has given talks at WordCamps, including at WordCamp Europe in 2019, on developing ourselves, our relationships, and our communities in increasingly diverse environments.</p>\n\n\n\n<p>With a strong desire to share her professional knowledge and experience, Dee hopes her involvement in the WordPress community from being part of a Release Squad in the Core Team, and volunteering in the community through organizing and speaking at WordCamp events, will inspire others to get involved.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>“It’s the connections, it’s the friendships. It’s the network of work, referrals, support, help and encouragement.”</p>\n<cite>Dee Teal talking about the community that makes WordPress specialbenefits of the WordPress community</cite></blockquote>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"576\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/05/dee-wceu2019.png?resize=1024%2C576&ssl=1\" alt=\"Dee Teal\'s talk at WordCamp Europe 2019 on \'Working a world apart\'\" class=\"wp-image-12958\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/05/dee-wceu2019.png?resize=1024%2C576&ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/05/dee-wceu2019.png?resize=300%2C169&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/05/dee-wceu2019.png?resize=768%2C432&ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2022/05/dee-wceu2019.png?resize=1536%2C864&ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2022/05/dee-wceu2019.png?w=1920&ssl=1 1920w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Dee shared her experience with attendees at WordCamp Europe 2019</em></figcaption></figure>\n\n\n\n<p>In contributing to WordPress and organizing community events around it, Dee found that for her: “At the end of the day it isn’t actually WordPress that matters. It’s those connections, it’s the friendships. It’s the network of work, referrals, support, help, encouragement that has kept me wired into this community and committed to helping other people find that connection and growth for themselves.”</p>\n\n\n\n<p>Dee’s career in WordPress has moved through coding, into project management of large scale WordPress projects, and now into delivery leadership. Her connections to community have helped ‘fuel the transitions’ through these chapters of her life.</p>\n\n\n\n<p>She said: “I believe that the place I’ve found and the opportunities I have had owe as much to my own desire and ambition as they do to the help, support and belief of the community around me; sometimes even more than I’ve felt in myself.”</p>\n\n\n\n<p>She feels that she is ‘living proof’ that by helping, connecting, and resourcing other people, you can be helped, resourced and connected into places you had never thought possible.</p>\n\n\n\n<p>This has enabled her to reach and have a career in technology that she did not know existed as a teenager playing with that first computer mouse and experimenting with code. Dee hopes her story will inspire others in their journey.</p>\n\n\n\n<h2>Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community. 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>Contributors</h2>\n\n\n\n<p>Thanks to Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), Nalini Thakor (<a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>), and Larissa Murillo (<a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>) for work on this feature. Thank you to 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 support of the series. Thank you too to <a href=\'https://profiles.wordpress.org/thewebprincess/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>thewebprincess</a> for sharing her experiences.</p>\n\n\n\n<p>This article is inspired by an article originally published on HeroPress.com, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.<br>Meet more WordPress community members in our People of WordPress series.</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://i1.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\" 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\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12946\";s: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: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:52:\"WP Briefing: Episode 32: An Open Source Reading List\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2022/05/episode-32-an-open-source-reading-list/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 30 May 2022 17: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=12940\";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:448:\"In the thirty-second episode of the WordPress Briefing, WordPress Executive Director Josepha Haden Chomphosy shares her open source reading list for that post-WordCamp Europe downtime. Have a question you’d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Editor: Dustin Hartzler Logo: Beatriz Fialho Production: Santana Inniss and Chloé Bringmann Song: […]\";s: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/2022/05/WP-Briefing-032.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:\"Santana Inniss\";s: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:11975:\"\n<p>In the thirty-second episode of the WordPress Briefing, WordPress Executive Director Josepha Haden Chomphosy shares her open source reading list for that post-WordCamp Europe downtime. <br></p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo: <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production: <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a> and <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://producingoss.com/en/index.html\">Producing Open Source Software</a>, Karl Fogel</li><li><a href=\"https://www.amazon.com/dp/B08BDGXVK9/ref=dp-kindle-redirect?_encoding=UTF8&btkr=1\">Working in Public: The Making and Maintenance of Open Source Software</a>, Nadia Eghbal</li><li><a href=\"https://www.amazon.com/CODE-Collaborative-Ownership-Digital-Leonardo/dp/0262572362\">Collaborative Ownership and the Digital Economy</a>, ed Rishab Aiyer Ghosh, Roger F. Malina PhD, Sean Cubitt</li><li><a href=\"https://www.amazon.com/Humble-Inquiry-Second-Relationships-Organizations/dp/B08VCRL6WQ/ref=sr_1_1?crid=39U1NLFRD52VO&keywords=Humble+Inquiry&qid=1653587884&s=books&sprefix=humble+inquiry%2Cstripbooks%2C63&sr=1-1\">Humble Inquiry</a>, Edgar H. Schein (Author), Peter A. Schein</li><li><a href=\"https://github.com/WordPress/book/\">WordPress Milestones</a></li><li><a href=\"https://europe.wordcamp.org/2022/\">WordCamp Europe 2022</a></li><li><a href=\"https://wp.me/p2U65r-9f3\">2022 Annual Meetup Survey</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-12940\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00] </strong></p>\n\n\n\n<p>Hello everyone. And welcome to the WordPress Briefing. The podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it. As well as get a small list of big things coming up in the next two weeks. I’m your host Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:40] </strong></p>\n\n\n\n<p>With the approach of various mid-year breaks and the prospect of wandering off for some safe, restorative travel, I’ve been updating my to-read and re-read list. As I was looking at the queued books for my Northern hemisphere summer, there were some common threads, mostly around leadership, but there’s also like a chunk that’s about cross-cultural group theory and economics, and then like some beach reads, but there’s one group in particular that you all might find interesting.</p>\n\n\n\n<p>And that’s a group that’s sort of like a back-to-FOSS basics list. So I’ll share my top few with you in case you want to pack a copy for your next getaway. </p>\n\n\n\n<p>The first one on our list is called Producing Open Source Software by Karl Fogel. I think everyone who contributes to FOSS projects has received this as one of their first recommendations. Like, y’all are building open software? Excellent, you need to read Producing Open Source Software. Like, that is just a sentence that comes out of everyone’s mouths. So this was one of the first open source books that was recommended to me when I joined the WordPress community. It was freshly revised in 2020, and I haven’t given it a read since then, which is why it is on my reread list this year.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:54]</strong></p>\n\n\n\n<p>However, it shaped the early days of the WordPress project’s leadership, and their lead developers, and some of WordPress’s basic philosophies. It’s all available online, under a creative commons, ShareAlike license. And so it’s worth the read. I’ll put a link to it in the show notes so it’s easy for everyone to find in the event that is your preferred beach read.</p>\n\n\n\n<p>The second one on this list is a book from Nadia Eghbal. She wrote the excellent Roads and Bridges report that also is probably not light beach reading, but you know, this one is on my list to read this summer because Eghbal always delivers truths about the reality of maintaining popular software, popular, open source software, in a way that’s easy for me to access and process rather than getting paralyzed by the enormity of it all.</p>\n\n\n\n<p>For what it’s worth your mileage may vary on that. I realized that, like, I live and breathe open source stuff. And so just because I am not paralyzed by the enormity of her explanations of things doesn’t necessarily mean that you will have a similar experience. And so I’m just going to claim that elephant in the room for all of us.</p>\n\n\n\n<p>However, if you only read one book on this list this year, I think that this should be the one that you read.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:14]</strong></p>\n\n\n\n<p>The third one is called Code: Collaborative Ownership and the Digital Economy. It was edited by Rishab Aiyer Ghosh. I am certain that I butchered that name. And so I apologize on my own behalf to everyone that knows whether or not I said it correctly.</p>\n\n\n\n<p>This book focuses on intellectual property rights and the original purpose of having anything like copyright in the world. So, right up my alley! The writers who contributed to this work promise exploration of the plight of creativity in the commons, the role of sharing in creative advancement, and a concept of what it would look like if intellectual property were to mean the second closing of an ecosystem versus a triumph of the commons.</p>\n\n\n\n<p>I mean, obviously, this one is very light reading. You can take this topic to high tea and everyone will not know what you’re talking about. However, this one looks like a really interesting book to me and I am just super ready to read it. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:19]</strong></p>\n\n\n\n<p>The second to last one on the list is a book called Humble Inquiry.</p>\n\n\n\n<p>This is a new-to-me book that seems right in line with one of my favorite books to recommend to leaders in the open source space. From reviews of it, I have gathered that it takes a hard look at the value of listening and asking for clarification in a world that puts a high value on an unsolicited hot take.</p>\n\n\n\n<p>It puts the importance of high trust relationship building, which is at the heart of any cross-culturally aware organization. And for folks who’ve been working with me for a while, you know, that relationship building is an important part of my leadership expectations for myself. So it puts relationship building at the front and center with a promise of practical applications for everyday life.</p>\n\n\n\n<p>And if you ever have tried to tackle a complicated topic like this, you know that practical applications are really hard to come by and it’s often hard to understand it if you don’t have those practical applications. And so that is why this one is on my read and reread list this year. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:24]</strong></p>\n\n\n\n<p>And then finally the WordPress Milestones book.</p>\n\n\n\n<p>So this sounds like a shameless plug for WordPress. And on the one hand, this whole podcast is about WordPress. And so, yes! But on the other hand, I actually am reading this for two specific reasons. I’m rereading this actually. I read it when I first joined Automattic. And so the first of the two reasons that I’m rereading it this year is that volume two of this is, like the second decade of WordPress currently, being researched and written in preparation for WordPress’s 20th birthday next year. </p>\n\n\n\n<p>So I am rereading this to kind of get that all back in my mind as that work is getting done. And the second reason is that I honestly like to remind myself of how far we’ve come sometimes. I talk about our work frequently. And I talk about what we’re working on right now, all the time.</p>\n\n\n\n<p>I talk about what we’re looking at three years from now, five years from now. The biggest concerns of today, tomorrow, and the future-future. And it’s very easy to forget how much success WordPress has had and how much growth the contributors that support us have had over the course of our long and storied history.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:40]</strong></p>\n\n\n\n<p>And so I like to go back to that just to kind of give myself some grounding in our progress, as well as get some concept for how we can move forward together. So that one is also available online. Also under a creative commons ShareAlike license and it is also worth the read. I will share a link to that with the other one in the show notes as well.</p>\n\n\n\n<p>That brings us now to our small list of big things. Let’s see what we got in the old lineup today. </p>\n\n\n\n<p>So, firstly WordCamp Europe is happening this week and it’s possible to watch the live stream from the comfort of your own home. There are some smart and talented speakers at the event. So I encourage you to catch a few if you have the time. I’ll include a link to the live stream information in the show notes below, and then also you can always keep an eye out on Twitter. </p>\n\n\n\n<p>There will be a lot of discussions, a lot of conversation there. And so you can engage with folks that are there at the time and catch up on those conversations, catch up on those presentations in your own time, as it fits into your day.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:50]</strong></p>\n\n\n\n<p>The second thing is that WordPress’s community team is preparing the annual meetup survey right now. So if you participate in meetup events, keep an eye out for that because your feedback helps us to make plans to improve that program so that it works better for you. And it helps you to learn WordPress better and feel more confident with what you are taking out into the world that way.</p>\n\n\n\n<p>But, if you are wanting to use this as a chance to contribute, we actually will need folks who are able to translate the surveys as well. So I’ll leave a link to some information about that in the show notes. If all of that stuff about contribution didn’t make any sense, then just like keep an eye out from your meetup organizer and they will make sure that you have that survey so that you can have your voice heard. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:33]</strong></p>\n\n\n\n<p>And then item three is less of an item. I mean, it’s an item cause it’s in this list, but it’s less of, like, a thing to know and more of a general thing to be aware of. It’s a general awareness item. There’s a lot going on in WordPress right now. I can see how hard it is to keep track of some of these things these days.</p>\n\n\n\n<p>And I know as someone who’s looking at this all day every day that, yeah, it’s a lot. And it’s hard to get your bearings. So if you have a team that you contribute to already, don’t forget to reach out to each other, just to check-in. Sometimes we don’t think to ask for help. Sometimes we don’t think to offer help and you know, if no one needs any help from you at that moment, a little hello also can brighten someone’s day.</p>\n\n\n\n<p>And that, my friends, is your smallest of big things. Thank you for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosy. And I’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:\"12940\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 27 Oct 2022 17:31:59 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 26 Oct 2022 15:43:59 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20210311161520\";}','no'),(143,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1666935119','no'),(144,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1666891919','no'),(145,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1666935119','no'); INSERT INTO `wp_options` VALUES (146,'_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:81:\"Do The Woo Community: Building WooCommerce Community in Africa with Sunday Ukafia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=73309\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://dothewoo.io/building-woocommerce-community-in-africa-with-sunday-ukafia/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:437:\"<p>Listen in as we hear the passion that Sunday has for bringing WooCommerce to Nigeria and the broader community in Africa.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/building-woocommerce-community-in-africa-with-sunday-ukafia/\">Building WooCommerce Community in Africa with Sunday Ukafia</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, 27 Oct 2022 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: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:95:\"WPTavern: 2022 Web Almanac Performance Data Shows WordPress Sites May Be Overusing Lazy-Loading\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=138932\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/2022-web-almanac-performance-data-shows-wordpress-sites-may-be-overusing-lazy-loading\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6567:\"<p>The last two chapters of the <a href=\"https://almanac.httparchive.org/\">2022 Web Almanac</a> were released this week – Structured Data and Performance, completing the 729-page ebook of the report. The WordPress-specific chapter was published earlier this month with metrics that indicate <a href=\"https://wptavern.com/2022-web-almanac-report-finds-wordpress-adoption-is-growing-adds-new-page-builder-data\">adoption is growing</a>.</p>\n\n\n\n<p>The Performance chapter was written by Etsy performance engineer Melissa Ada and Google web transparency engineer Rick Viscomi. Performance metrics in the chapter focus on <a href=\"https://web.dev/vitals/\">Core Web Vitals</a> (CWV), which Google introduced in 2020 and <a href=\"https://developers.google.com/search/blog/2020/11/timing-for-page-experience\">made a ranking signal</a> in 2021. They used the public <a href=\"https://developer.chrome.com/docs/crux/\">Chrome UX Report</a> (CrUX) dataset for the report, which collects data from <a href=\"https://developer.chrome.com/docs/crux/methodology/#eligibility\">eligible websites</a> – publicly discoverable sites with an undisclosed minimum number of visitors.</p>\n\n\n\n<p>Most of the data concerns the performance of the web as a whole over time, but the 2022 Web Almanac highlighted one specific concern regarding WordPress sites’ use of lazy-loading and its impact on LCP performance. Google defines <a href=\"https://web.dev/lcp/\">Largest Contentful Paint metric (LCP)</a> metrics as “the render time of the largest <a href=\"https://web.dev/lcp/#what-elements-are-considered\">image or text block</a> visible within the viewport, relative to when the page <a href=\"https://w3c.github.io/hr-time/#timeorigin-attribute\">first started loading</a>.”</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Lazy-loading is a good thing when used correctly, but these stats strongly suggest that there’s a major opportunity to improve performance by removing this functionality from LCP images in particular.</p>\n\n\n\n<p>WordPress was one of the pioneers of native lazy-loading adoption, and between versions 5.5 and 5.9, it didn’t actually omit the attribute from LCP candidates. So let’s explore the extent to which WordPress is still contributing to this anti-pattern.</p>\n\n\n\n<p>According to the <a href=\"https://almanac.httparchive.org/en/2022/cms\">CMS</a> chapter, <a href=\"https://almanac.httparchive.org/en/2022/cms#most-popular-cmss\">WordPress is used by 35% of pages</a>. So it’s surprising to see that 72% of pages that use native lazy-loading on their LCP image are using WordPress, given that a fix has been available since January 2022 in version 5.9. One theory that needs more investigation is that plugins may be circumventing the safeguards built into WordPress core by injecting LCP images onto the page with the lazy-loading behavior.</p>\n\n\n\n<p>Similarly, a disproportionately high percentage of pages that use custom lazy-loading are built with WordPress at 54%. This hints at a wider issue in the WordPress ecosystem about lazy-loading overuse. Rather than being a fixable bug localized to WordPress core, there may be hundreds or thousands of separate themes and plugins contributing to this anti-pattern.</p>\n<cite><a href=\"https://almanac.httparchive.org/en/2022/performance\">2022 Web Almanac – Chapter 12: Performance</a></cite></blockquote>\n\n\n\n<p>Prior to WordPress 5.9, WordPress’ default of lazy loading implementation was causing slower LCP performance, because it had been applied too aggressively and was lazy-loading images above the fold. In 5.9, <a href=\"https://wptavern.com/wordpress-5-9-to-fix-lazy-loading-performance-regression-resulting-in-30-faster-page-loads-in-some-cases\">WordPress shipped a fix</a> that more eagerly loads images within the initial viewport while lazy-loading the rest. That’s why results that show WordPress sites overusing lazy-loading are surprising.</p>\n\n\n\n<p>“Admittedly, ‘lazy-overloading’ a hard problem to solve,” Viscomi said in his <a href=\"https://twitter.com/rick_viscomi/status/1585248419701874688\">Twitter thread analysis</a>. “We don’t always know whether an image will be the LCP. WordPress core sets it on every image by default and uses heuristics to unset it. Nearly 3/4 of pages that natively lazy-load images are on WordPress.”</p>\n\n\n\n<p>In 2020, Viscomi remarked on how quickly the adoption of native image lazy-loading shot up after WordPress 5.5 was released in August of that year with images lazy-loaded by default. WordPress has been driving adoption of this feature, which is why any implementation “anti-pattern,” as Viscomi characterized it, has an outsized effect on the performance of the web.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">As of October, 10.6% of the web is using native image lazy loading, per <a href=\"https://twitter.com/HTTPArchive?ref_src=twsrc%5Etfw\">@HTTPArchive</a>. That number was 1.5% in July! <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f92f.png\" alt=\"?\" class=\"wp-smiley\" /><br /><br />This appears to be _entirely_ driven by WordPress at 28.9% of WP pages, which makes up one third of the web.<a href=\"https://t.co/QYGyyctFgc\">https://t.co/QYGyyctFgc</a><br /><br />left: all web<br />right: WP <a href=\"https://t.co/RQnDw4UZ56\">pic.twitter.com/RQnDw4UZ56</a></p>— Rick Viscomi (@rick_viscomi) <a href=\"https://twitter.com/rick_viscomi/status/1344380340153016321?ref_src=twsrc%5Etfw\">December 30, 2020</a></blockquote>\n</div>\n\n\n\n<p>“What gives, WordPress?” Viscomi said. “My theory is that it’s not the core heuristics that are wrong, it’s the plugins. Also, keep in mind that the majority of pages that even use lazy-loading are WP.</p>\n\n\n\n<p>“To support the plugin theory, let’s look at custom lazy-loading of LCP: More than half of the pages that do it are built with WordPress. WordPress is ‘only’ a third of the web, so there’s clearly something going on with JS-based lazy-overloading in WP.”</p>\n\n\n\n<p>On WordPress.org there are <a href=\"https://wordpress.org/plugins/search/lazy+loading/\">multiple pages</a> of performance, caching, and image and video optimization plugins that are using lazy-loading in some way. Plugin and theme developers who are using lazy-loading in their extensions may want to test their implementations to see if they are having a negative impact on LCP performance.</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, 27 Oct 2022 03:04:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:106:\"WPTavern: #48 – Christina Deemer on Making Digital Content Usable for People With Cognitive Disabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=138814\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://wptavern.com/podcast/48-christina-deemer-on-making-digital-content-usable-for-people-with-cognitive-disabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:42987:\"Transcript<div>\n<p>Christina Deemer</p>\n\n\n\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case making digital content usable for people with cognitive disabilities.</p>\n\n\n\n<p>If you’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’d like us to feature on the show, I’m keen to hear from you and hopefully get you all your idea featured soon. Head over 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 Christina Deemer. Christina is a senior UX developer at Lede, a company of the Alley Group, where she champions accessibility and headless WordPress in her work with publishers and nonprofits. She’s passionate about inclusivity and community and has spoken at a variety of events about the subject.</p>\n\n\n\n<p>Christina is autistic and brings her personal experience with neurodivergence and disability to bear in her work.</p>\n\n\n\n<p>At the recent WordCamp US, Christina gave a presentation called “embracing minds of all kinds, making digital content usable for people with cognitive disabilities”. And it’s this talk, which is the foundation of the podcast today.</p>\n\n\n\n<p>In her description of the presentation, Christina wrote, “cognitive disabilities are among the most prevalent types of disabilities, yet experts have struggled to provide web accessibility best practices around this area due to cognitive disabilities being such a broad category. However recent work by standards groups has begun to address this deficiency”.</p>\n\n\n\n<p>In past episodes, we’ve covered website accessibility from some different angles, and today we focus on how the web might be experienced by people with cognitive disabilities.</p>\n\n\n\n<p>First, Christina talks about what the term cognitive disabilities actually means, and what it encompasses. It’s a wide range of things, and so we talk about how people may differ in the way that they access the web. Memory, over complicated interfaces and readability are a few of the areas that we touch upon.</p>\n\n\n\n<p>We also discuss what legislation there is in place to offer guidance to those wishing to make their sites more accessible, and as you’ll hear, it’s a changing landscape.</p>\n\n\n\n<p>Towards the end, Christina talks about her own late diagnosis of autism and how this shapes her experience of the web, particularly with auto-play content and when web design includes elements which flash or flicker.</p>\n\n\n\n<p>Typically when we record the podcast there’s not a lot of background noise, but that’s not always the case. This is the last of the live recordings from WordCamp US 2022, and you may notice that the recordings have a little echo or other strange audio artifacts. Whilst the podcasts are more than listenable, I do hope that you understand that the vagaries of the real world were at play.</p>\n\n\n\n<p>If you’re interested in finding out more, you can find all of the links and the show notes by heading over to WPTavern.com forward slash podcast, where you’ll find all of the other episodes as well.</p>\n\n\n\n<p>And so, without further I bring you Christina Deemer.</p>\n\n\n\n<p>I am joined on the podcast today by Christina Deemer. Hello.</p>\n\n\n\n<p>[00:04:14] <strong>Christina Deemer:</strong> Hello Nathan.</p>\n\n\n\n<p>[00:04:16] <strong>Nathan Wrigley:</strong> It’s very nice to have you on. We are at WordCamp US 2022. We’re upstairs in the media room, and we’ve got Christina on the show today because she did a presentation. Have you actually done the presentation yet?</p>\n\n\n\n<p>[00:04:27] <strong>Christina Deemer:</strong> Yes, I did it yesterday morning. I was lucky in that I got to get it over with early and then enjoy the rest of the conference.</p>\n\n\n\n<p>[00:04:34] <strong>Nathan Wrigley:</strong> How did it go?</p>\n\n\n\n<p>[00:04:35] <strong>Christina Deemer:</strong> It went really well. It was a lot of fun. I had a really great audience.</p>\n\n\n\n<p>[00:04:39] <strong>Nathan Wrigley:</strong> That’s nice to hear. That’s good. The subject, I’m just gonna give everybody the title. That’s probably a quick way to introduce what we’re gonna talk about. The subject title was embracing minds of all kinds, making digital content usable for people with cognitive disabilities. So we’ll dive into that in a moment. Just before then, though, just paint a little bit of a picture about who you are and how come it is that you’re speaking at a WordPress conference particularly about this topic.</p>\n\n\n\n<p>[00:05:04] <strong>Christina Deemer:</strong> Okay. I am a career changer. I spent the first 12 years or so of my career working in arts management. Then I decided I wanted to do something very different, and I became a developer. And one of my early mentors introduced me to WordPress. So, the first projects that I worked on were WordPress sites. I wrote my first WordPress theme when I was 35, and just really enjoyed getting involved in the WordPress community.</p>\n\n\n\n<p>And from the beginning of my career, I’ve been very interested in accessibility for a wide variety of reasons. And it’s become a passion of mine. I really enjoy sharing knowledge about accessibility with people. I enjoy hearing people’s stories about accessibility. And recently there’s been a lot of work done on the standards around cognitive accessibility or accessibility for people with cognitive disabilities, and that work has been really fascinating and I’ve wanted to share it with people. And that was how, the reason that I pitched this talk for WordCamp US.</p>\n\n\n\n<p>[00:06:13] <strong>Nathan Wrigley:</strong> Thank you. That’s great. The words cognitive disabilities, it probably makes a great deal of sense to you because you’ve parsed and you’ve said it many times. You fully understand it. Would you just run over a brief definition of what it encompasses? And I’m sure it’s not just one thing, maybe it’s a multitude of things.</p>\n\n\n\n<p>[00:06:28] <strong>Christina Deemer:</strong> So it’s a very nebulous term, and it acts as a sort of umbrella for neurological disorders as well as behavioral and mental health disorders that may or may not be neurological. It covers a wide variety of things from autism, ADHD, aphasia, dementia, dyslexia, dyscalculia, tourette syndrome, traumatic brain injury.</p>\n\n\n\n<p>It covers a real wide variety of things, which is one of the reasons actually why it’s taken so long to develop some standards around how to make websites more accessible to people with those diagnoses. But just to take a little further step back with things. When I talk about this I really try to make a point to not focus on some of these sort of diagnostic labels, but to rather focus on underlying cognitive skills.</p>\n\n\n\n<p>Because a lot of people with cognitive disabilities don’t even realize they have a disability, for a number of reasons. There are a lot of systemic barriers to getting a diagnosis, and a lot of things come into play there. But really what we’re talking about is some underlying cognitive skills, like memory issues, focus issues, ability to concentrate, reading, math and language comprehension, decision making, executive function, which has to do with the processes involved in following instructions and planning things and processing a bunch of things at once.</p>\n\n\n\n<p>So, when I talk about cognitive accessibility, I really like to focus less on those diagnostic labels and more on the underlying cognitive skills that are involved.</p>\n\n\n\n<p>[00:08:13] <strong>Nathan Wrigley:</strong> So from that, I take it that cognitive disabilities, as you described it, was a long list. There was a really large amount of things that you’re covering here, which is really interesting. So let’s unpack that a little bit. Just before we clicked record, I mentioned that we may get into the weeds of what it is like for people who have some of these things. And maybe we could cherry pick some examples.</p>\n\n\n\n<p>What I’m intending to do here is for you to paint a picture of what the web looks like for some of these different things. So in my case, when I approach the computer and open it up and get it started, I can see the screen, I can hear the video when it’s played. I just don’t really have a window into what that might look like. So if you have a moment to just broadly paint a picture of what some of these things feel like and look like.</p>\n\n\n\n<p>[00:09:01] <strong>Christina Deemer:</strong> Sure, and even people who are somewhat familiar with general accessibility and maybe more accustomed to thinking about what the web is like for people who use screen readers. So they think about, they’ve maybe done some testing and they know how things are read. They think about reading order, and how a screen reader works. And when they’re thinking about making sites accessible for people who are deaf, they are thinking about making sure that there are captions on videos.</p>\n\n\n\n<p>So when we’re thinking about cognitive accessibility, we’re thinking about some other issues. So in my talk yesterday, I had a couple of examples of sites that are pages that had weak cognitive accessibility. And one of them was a desktop screen of an interface of eBay, like buying a shirt on eBay. And in the middle of the page, there were four calls to action, with three different designs. So it wasn’t clear what the user was supposed to push. There was no clear call to action. There was very little white space on the page.</p>\n\n\n\n<p>So this isn’t great for users with cognitive disability. Somebody who has an issue with focus is not going to know really where to look on the page. Could get distracted by all of the various details. All of the sidebars on the left, little small text below an image. People who struggle with decision making haven’t helped them with those four CTAs in the middle of the page.</p>\n\n\n\n<p>Anybody with memory issues, it’s not going to be clear, like, if they bought something on eBay previously. They won’t remember what they did last time because it’s a little confusing. So a lot of users may abandon their task on a page like that. So that’s an example of a page that maybe has complex or overwhelming interface.</p>\n\n\n\n<p>And another barrier that users face is if a site has very complex text or unusual words. So I mention Wikipedia page on the planet Saturn, that included words like perihelion, and a word like eccentricity, but people may not be accustomed to understanding what Saturn’s eccentricity is. Like, what does that even mean?</p>\n\n\n\n<p>So, readability is often analyzed through a, a system called the Flesh Reading E Score. And I went to a website that measures the readability of, particularly of, Wikipedia pages. And it indicated that this page had a reading level of 10 to 12th grade. So it was very, very difficult to read. And for most adults we say that the reading level of content should be at about a seventh or eighth grade level. So if you want to make your content accessible for people who have reading or language comprehension issues, you’re going to want to go with even simpler content. A readability of about sixth grade or less. So those are of a couple of examples of some barriers that users with cognitive disabilities face on the web.</p>\n\n\n\n<p>[00:11:57] <strong>Nathan Wrigley:</strong> So the accessibility piece, the bit that you mentioned earlier, about potentially some of the WCAG guidelines and things like that. That now is being drawn into the domain of, it’s illegal if you don’t perform some of these things. Is there anything surrounding that with the cognitive disability side. Is there any mandated things that you must do?</p>\n\n\n\n<p>[00:12:17] <strong>Christina Deemer:</strong> Okay, so that’s where things are evolving, a lot and some really interesting things are happening. In WCAG 2.1, there’s already a couple of things, a couple of success criteria that address cognitive accessibility. Things around space around text, stuff like that. Auto filling in or making it possible to auto complete form fields. Those things are great for people with language or reading comprehension issues, people who have issues with focus.</p>\n\n\n\n<p>In April, 2021, the W3C came out with a working group note on guidelines for making content more usable for people with cognitive disabilities. And this was a non-normative document, which meant that it was supplementary to WCAG and you don’t need to conform, follow these guidelines in order to meet WCAG compliance. So they came out with all of these really great framework, with eight objectives, dozens of design patterns, and none of that is necessary to comply with WCAG. So, yeah, that was April 2021.</p>\n\n\n\n<p>So now we’re in September 2022. We now have WCAG 2.2 is in candidate recommendation, I think. And there are two new success criteria that feel like they’ve come directly out of that working group note. One is on accessible authentication, which is where you need to supply at least one method for logging in that doesn’t rely on cognitive skills. So you need to have at least one option where somebody doesn’t have to, by memory, type in their password. They can use a password manager or there’s an option for magic links, QR codes, single sign on, something like that. So that’s a new one.</p>\n\n\n\n<p>And there’s also a new success criteria on consistent help. Oftentimes the quickest way for somebody to solve a challenge online is to get help from a real person that can support users. And it’s important that this information on like how to get help from a real person isn’t hidden. You don’t have to scroll and click through a bunch of non obvious links to find out how to get help from a real person. That information is accessible in the same place on consistent pages. And that’s just even having an email address for help, or a number to get help via text, or social, or a chatbot or something that’s not a chat, that’s a real person or something. Just making it possible for somebody to get help from a real person</p>\n\n\n\n<p>So we’re seeing some of these things that were in that working group note come into the standard, which is very exciting. And part of the reason there were all of these design patterns in the working group note in the April, 2021 working group note, that are not included in the standard, in 2.2. And I think that’s for a variety of reasons. Like one of them is that so much of it is it’s hard to figure out a way to test it. To like design it so that you can have some sort of measurable test of yes, you are conforming with this or you aren’t.</p>\n\n\n\n<p>A lot of it, with cognitive disabilities is very contextual and subjective, and it depends on your product and it depends on so many different things that they haven’t figured out a way to create testable success criteria yet. But it’s exciting to me that we at . Least have these two new success criteria.</p>\n\n\n\n<p>[00:15:43] <strong>Nathan Wrigley:</strong> Is one of the things that makes this difficult to pin down, is it because unlike, let’s take the example of somebody who is blind, it’s binary in that case. I don’t mean you, your heart of sight, I mean you are literally blind. You know what to do with that because the outcome is obvious. You can’t see the screen. So there’s remedies for that, and you can create those remedies with screen readers and so on. But it sounds like the description of cognitive disabilities, there’s such a broad spectrum. It’s hard to pin it down, so it’s hard to create the solution because each person may be slightly different.</p>\n\n\n\n<p>[00:16:15] <strong>Christina Deemer:</strong> Absolutely. And there’s a saying in the autism community that when you’ve met one autistic person, you’ve met one autistic person. So a lot of times with these things, you can have an interface that works for one person who has a lot of trouble with memory, may not work for another person. Or even that same person when they’re having a good day versus having a bad day.</p>\n\n\n\n<p>So, it is very hard to pin down. It comes down then not to an argument about we have to do this to legally comply with the standard, to not get into trouble. It comes down to, you have to do this or you should do this because you want to do the right thing for your users. And sometimes, I talk about this in my talk, that there can be sometimes tension between like business goals and accessibility goals or something like that.</p>\n\n\n\n<p>And there are a lot of ways to find the like win . Win. You know we’re improving things for users, for disabled users also improves things for your business goals. But you really have to get out of more of a checklist, we’re doing this because it’s legal, because we need to legally comply with the standard, to like having a more accessibility mindset about it all.</p>\n\n\n\n<p>[00:17:24] <strong>Nathan Wrigley:</strong> Yeah, that makes sense. I don’t know if you’re American, but we’re in America. I’m from the UK. So, completely different sides of the world really. And obviously you take in every other country on the planet, there’s gonna be a different complexion there. Is there broad consensus of how important it is across the world? Or is it very much a case that America’s doing one thing and the UK is doing another, and Australia and all the other countries that we could mention.</p>\n\n\n\n<p>[00:17:47] <strong>Christina Deemer:</strong> I can speak more about that in terms of accessibility in general. So there are different laws in different places, which sounds like a really obvious thing when I say it that way. But what’s really great about WCAG is that it is a sort of internationally recognized standard, and a lot of countries use WCAG as a standard, and they’ll refer to it because it is kept up to date, because it is all testable.</p>\n\n\n\n<p>So there are like slightly different laws in different places, but a lot of places do fall back to WCAG, usually the double A standard. Depends on the places and everything, but a lot of times a law may apply only to like government websites, or sites that serve the public interest or something like that.</p>\n\n\n\n<p>And I think there’s still a lot of debate around whether or not websites fall under the Americans with Disability Act. There’s still some argument about that. I mentored a developer out of the UK on accessibility at the end of 2021, in the beginning of 2022, and we talked a little bit about some of the laws there and they’re, yeah, slightly different than they are in America, but everything falls back to WCAG.</p>\n\n\n\n<p>[00:19:00] <strong>Nathan Wrigley:</strong> Okay. Thank you. You mentioned in the notes that we exchanged prior to recording this, that there are some, some ways that you can make this job easier for yourself. And you talk particularly about some design patterns that you feel will be able to assist people who, perhaps having listened to this podcast, think, okay, this is something I need to be mindful of. Just run us through what these design patterns are. That may take a long time, I don’t know. You might have a quick version or it may be a long version. I don’t know.</p>\n\n\n\n<p>[00:19:25] <strong>Christina Deemer:</strong> Yeah, in the April 2021 working group note, it mentions dozens of different design patterns. And um, I really encourage people to check that out. Of course, read this spec and look at the working group node and understand all of the different things. But a couple of sort of top things for me are making your content as clear as possible. And a lot of times people think of content as post content.</p>\n\n\n\n<p>But content is everything that’s on your site. So it includes button text, it includes how the content in a menu, it includes instructions, it includes headings, and it’s important that all of that is as clear as possible. So if you have multiple CTAs on a page, if you have a CTA for subscribing, what does subscribing mean? What are you subscribing to? Versus registering for a newsletter. You need to make sure that the CTA for registering for the newsletter, versus subscribing to a publication, that they have a separate CTA. That it’s clear that you’re doing two different actions here.</p>\n\n\n\n<p>And we talked about readability a minute ago, making sure that you’re using short sentences with simple common words. That is helpful. And that you’re using punctuation intentionally, which sounds like a small thing but using punctuation intentionally, like a period when you mean to use a period and using commas. That’s helpful for, clear content is important for SEO as well. And it helps with users who use screen readers, which includes people with cognitive disabilities who are more comfortable hearing the text, the content, than reading it.</p>\n\n\n\n<p>And while a blind person who does not have a cognitive disability may be able to work out the meaning of something that’s not formatted correctly. Somebody who has communication issues may not be able to work out what the meaning of the content is, if it’s not formatted correctly. So the clear content is one. Using clear step by step instructions for something is important. A lot of times we give users feedback only when they’re making a mistake.</p>\n\n\n\n<p>But it’s important to give them a little help before they’ve made a mistake in a form. Give them an example of how you want a telephone number formatted. Or like where they can find if a username is actually a user’s email address, make that clear to the user before they’ve tried to submit the form and they’ve made a mistake. Those little bits of instructions sometimes can seem unnecessary or they’re cluttering up the site. If you feel like they’re cluttering up the site, you can hide the instructions round like a little eye icon or something like that.</p>\n\n\n\n<p>One of the things that I think is particularly important is not making the user have to remember. If a user wants to upgrade their subscription or change their service plan. They should know what their current plan is, how much it costs, when it is set to expire. They shouldn’t have to remember that when they’re being asked to upgrade to another plan. So that’s another one.</p>\n\n\n\n<p>And you see that with a number of cases where, you are asked to upgrade and you’re like what plan am I even on right now? Am I on a particularly high plan? How much money am I, how much extra am I spending to upgrade my plan? And it can be confusing to users. So like, just give them everything that they need on every single screen. That’s a lot better for them.</p>\n\n\n\n<p>So those are some more concrete things. And then there are some more sort of conceptual design patterns around things like making sure that a user’s most important tasks are featured prominently on a site. What are a user’s most important tasks? Do you even know what a user’s most important tasks are on your site?</p>\n\n\n\n<p>The example I give in my talk is that, you know if you have a library and the team thinks that the most important thing is getting users to sign up for an event, and it takes two clicks for the users to sign up for the event at the library. But, if you look at the usage data, or focus groups, or user testing, like a user’s most important tasks may be figuring out what the library hours are. Signing up for a library card. But maybe to do that you have to click on a bunch of different links and maybe even have to search or something to find out what the library hours are.</p>\n\n\n\n<p>So you may have to sort of reconcile what the user’s most important tasks are versus what the team considers the most important. But that’s only possible when you actually know what your users want to do.</p>\n\n\n\n<p>[00:23:56] <strong>Nathan Wrigley:</strong> It feels like there’s a whole subset, and I’m, I’m not saying that this is the norm, but I think there’s a subset of people out there who quite deliberately go out of their way to make things as confusing as possible. So an example that just comes to mind recently is I purchased a flight, and the process of completing the flight purchase was extraordinarily challenging. In that I couldn’t get to the end of it without declining hundreds of different things. I simply wanted a flight, but then came the insurance and the, do you want the hotel at the other end? And do you want the car and all of this? I was just completely overloaded by the whole thing. Getting really frustrated.</p>\n\n\n\n<p>[00:24:37] <strong>Christina Deemer:</strong> Yes.</p>\n\n\n\n<p>[00:24:38] <strong>Nathan Wrigley:</strong> And I thought, but this is intentional. This has been designed to, in a sense, trip me up. Because the button that I wanted to press, which was continue.</p>\n\n\n\n<p>[00:24:47] <strong>Christina Deemer:</strong> Yes.</p>\n\n\n\n<p>[00:24:48] <strong>Nathan Wrigley:</strong> Was masked, and the button which was going to sell me the insurance was large and colorful and obvious. And I feel that there’s a sort of subset of the internet where they’re trying to do exactly the opposite of what you’re describing, because, maybe it’s profit, maybe that’s all it is. It’s as simple as that. So that must be frustrating, shall we say.</p>\n\n\n\n<p>[00:25:05] <strong>Christina Deemer:</strong> Yes, a design pattern, an accessible design pattern, is to make critical paths as short as possible. Anything that can be optional, buying the insurance, upgrading your seat, should be something that happens after you’ve completed the initial purchase. Because it’s so easy for users to get distracted. It’s so easy for users to get confused about what button to push. And again there’s that tension between accessibility needs and business needs. And I really wonder like, I would want to look at the data. Is this really effective for them?</p>\n\n\n\n<p>Do they know? Would it be more effective for users if they were allowed to choose whether or not to buy the insurance or upgrade their seat, after they’ve completed their purchase and feel good about that, and then have the option to like do all of these other things. And then you know that the user isn’t going to, is less likely to abandon their task, and then they haven’t even purchased the ticket.</p>\n\n\n\n<p>[00:26:00] <strong>Nathan Wrigley:</strong> I feel also that the language often is deliberately obfuscating what it is that is intended. So you know you get like double negatives, and if you do not wish to achieve such a thing, tick this box. And actually just have to spend a moment thinking about it. Hang on, what does that even mean? Do I want to tick that box or not? And give it a moment’s thought and it comes to you. But I guess those trip wires are just really frustrating.</p>\n\n\n\n<p>[00:26:25] <strong>Christina Deemer:</strong> Yeah. And imagine like a user who struggles with reading comprehension issues, managing a sentence with double negatives. Maybe it’s hard enough for them to just parse the content in the first place, let alone battle that double negative. And maybe they think they’ve done the right thing and have said that they don’t want the insurance, but then they find out that they’ve actually purchased it.</p>\n\n\n\n<p>And then they feel exhausted. They feel embarrassed and frustrated. And maybe reluctant to say anything because they don’t want to admit that they made a mistake and didn’t understand the content. It personally makes me feel very frustrated and angry that people maybe intentionally like praying upon people who are disabled. It is, for a lot of people, it may be just a matter of okay, I’ve gotta take a moment, figure this out. What do I wanna do? And it may just be an inconvenience or a nuisance. But for some people those kinds of barriers, it really can take a toll on people.</p>\n\n\n\n<p>[00:27:28] <strong>Nathan Wrigley:</strong> Yeah, and I feel the flight example, albeit was easy to understand, it’s not an essential part of my life. But if I was acquiring something which was utterly critical, trying to access healthcare or something and wasn’t thought through, and I really need to get this form finished yesterday. Those things do matter and so putting the time in to make it as straightforward as possible. It feels like, the word that’s coming into my head here is, clarity, simplicity, those kind of things. Just keep it as straightforward and as easy to understand as possible.</p>\n\n\n\n<p>[00:27:58] <strong>Christina Deemer:</strong> Absolutely.</p>\n\n\n\n<p>[00:27:59] <strong>Nathan Wrigley:</strong> You mentioned that you wanted to talk about in this podcast interview, that you have autism and how this actually impacts you. I don’t wanna lead you off in any particular direction, so I’m just gonna ask you if you want to just describe the experience.</p>\n\n\n\n<p>[00:28:14] <strong>Christina Deemer:</strong> Sure. So I am late diagnosed autistic person. I was diagnosed in March of 2020. So like right as the pandemic started. It was a turbulent time for me. But I also have, I have multiple family members who are autistic and the more I learned about autism, the more I found myself relating to a lot of the things that were talked about. And things like having trouble reading social cues, having some very rigid routines, getting really involved in some special interests and a number of other things, but those are some top things.</p>\n\n\n\n<p>And a sort of funny thing is that people have told me, they’re like, hey, you don’t look autistic. And I’m like, what does that even mean? Does that mean that I’m not, I don’t look like the sort of stereotype for an autistic person as a young white boy who likes trains? And granted, trains are awesome, I do like trains. And I do love Star Trek, especially like the autistic coded characters like Spock and Data and Seven Of Nine. But like, autistic people look like people. There are women who are autistic, there are black people who are autistic.</p>\n\n\n\n<p>And I think the other thing is that I’m good at masking, and masking is where autistic people sort of adopt neurotypical traits to fit in. And that is something that a lot of people, especially people who are socialized as girls, get accustomed to doing. So like there’s that. But I am autistic. Autistic people look a bunch of different ways. I wanted to take advantage of this platform, this opportunity to address that misconception about what autistic people look like.</p>\n\n\n\n<p>And earlier we were talking about my experience on the web. What that looks like and how my autism can inform that or what barriers I experience. And a couple of things came to mind, and one is that definitely like any autoplay content, like autoplay media, or auto play video auto play audio, animations that are not functional, it can feel to me like I’m intending to step into a library and I’ve, and I walk into a rave. That is how it feels. It feels very loud and bright. And that is no knock on raves, everybody likes a good rave sometimes. But you wanna give people the opportunity to like turn off the music, and turn off the flashing lights.</p>\n\n\n\n<p>So a thing that I really hope people can do is, if you have some auto play thing. A, don’t auto play anything in the first place, it’s very inaccessible, but like always give users the opportunity to personalize, and turn those things off.</p>\n\n\n\n<p>So the other one is like very similar in that it’s flashing and flickering content. And that can feel like looking at the sun. I can feel pain in my eyes, from flashing and flickering content. And it doesn’t have to be that super fast flash that can trigger seizures in photosensitive people. It can just be like, a little too much flash. I can feel it in my eyes and I can have even that like startled physical reaction to it. And that’s just me personally.</p>\n\n\n\n<p>I think there are a lot of other people who may have different responses to things on the web and, and I’m fortunate enough that I can, on my team, and this is why it’s great to have diverse teams, is like when we’re building content, when we’re building websites, I can help guide us and say, or help give that feedback about auto playing things and put my foot down and say we are not going to build this in a way that is inaccessible. We are not going to build this animation that seems cute, doesn’t have any functionality or whatever, but I know is going to like ruin somebody’s day or whatever, just because they accidentally like encountered this webpage.</p>\n\n\n\n<p>[00:31:53] <strong>Nathan Wrigley:</strong> Really fascinating. You are educating me in an area that I genuinely don’t have much contact with. So it’s really fascinating. Given everything that you’ve just said, I’m sure there’s gonna be a proportion of people who have woken up to this, during the listening of this, and thinking to themselves, okay, how do I find out more? So just for those of us who are starting on this journey, just give us some idea of where the resources might lie. Where might we go? Who might we speak to? Which organizations? So that could be online, or a book, or an organization, whatever you like.</p>\n\n\n\n<p>[00:32:22] <strong>Christina Deemer:</strong> I think if you’re interested in learning more about accessibility, there are a few organizations that do a pretty good job with providing accessibility education. The first is the company Deque, they make an accessibility testing extension, but they also offer really great courses and training and have a lot of just general resources on their website. They even have a great resource library of accessible components.</p>\n\n\n\n<p>There’s Knowbility, which is spelled k n o w b i l i t y. Also has a number of great webinars and they have a conference, so a great place to go for resources. There’s a really great community on Twitter, on accessibility, Twitter. There are a number of experts there, and I’m always a big fan of if you really want to understand accessibility, you’ve gotta read the specs.</p>\n\n\n\n<p>And actually, it’s ironic but when some of the April, 2021 working group note that I keep referencing, when that came out, some folks criticized it online saying, this document itself isn’t very accessible. It’s very, very extensive, very thorough, very meaty. And so they went back, God bless them, they went back and they made the document itself more accessible. They added some icons which help with scanning the document. They added some more use cases and examples, so people could better understand how these things work in real life. So it’s a lot. I think it’s actually the working group note on cognitive accessibility, I think is actually sometimes easier to parse than WCAG itself, in terms of the content.</p>\n\n\n\n<p>And I also want people to understand that there are probably some accessibility champions in your network. You may have somebody on your team or in your company who has a good understanding of maybe how accessibility intersects with your product or your sector. And talk to those people. I learned a lot about accessibility from the agency I work for called Alley. Shout out to Kevin and Owen, who both really mentored me and helped me really level up my accessibility knowledge. So like use the people that you have in your network. They really want to talk to you about these things. So I hope that’s helpful.</p>\n\n\n\n<p>[00:34:34] <strong>Nathan Wrigley:</strong> Yeah, that’s really helpful. But also just to know that this is an area where there are actual jobs. There are people who do this, who would like to assist you. There’s probably somebody in your local area who takes this all very seriously, and would be willing to speak to you on the phone. It’s not just, okay, I heard a podcast, I can forget about it now. There are calls to be made and people to meet who will help you with this.</p>\n\n\n\n<p>[00:34:54] <strong>Christina Deemer:</strong> Absolutely, and so I don’t do accessibility full time at my job. I’m a developer. So there may be accessibility champions who are developers in your organization. There may be people who are designers who work in content, who work in strategy. The awesome thing about accessibility is that it touches all areas of the product. And, there are also people, yes professionals who focus exclusively on accessibility and who can do things like perform an audit of your product.</p>\n\n\n\n<p>And if you are starting from zero on this, a lot of times those people can be the best people to reach out to because they are going to give you that comprehensive look that includes content design, you know development, all strategy, like all aspects of accessibility.</p>\n\n\n\n<p>[00:35:41] <strong>Nathan Wrigley:</strong> You mentioned that you work for . A company called Alley. I’ll link in the show notes. Your agency isn’t uniquely focusing on this area?</p>\n\n\n\n<p>[00:35:48] <strong>Christina Deemer:</strong> No.</p>\n\n\n\n<p>[00:35:49] <strong>Nathan Wrigley:</strong> It’s a web design agency?</p>\n\n\n\n<p>[00:35:51] <strong>Christina Deemer:</strong> Yeah. So the Alley Group is an agency that works with a lot of enterprise level publishers. And I work for a company within the Alley group called Lead, and we’re a platform for mid and small size independent publishers. But accessibility is something that the Alley group takes very seriously.</p>\n\n\n\n<p>We work with a lot of very large publications. So we have to make sure that we get this right for them, and the millions of people who visit those websites. And we are hiring. If you’re interested in joining a group that takes accessibility very seriously, please visit alley.co/careers. We are always hiring software developers and have a number of other positions available.</p>\n\n\n\n<p>[00:36:33] <strong>Nathan Wrigley:</strong> This is such an interesting subject. I feel that we could go on for hours more. But Christina Deemer, thank you so much. Is there a place where you are comfortable people connecting directly with you? It may be Twitter or email?</p>\n\n\n\n<p>[00:36:44] <strong>Christina Deemer:</strong> Yeah, you can find me on twitter at c a h d e e m e r. And this was so much fun. It went by so fast.</p>\n\n\n\n<p>[00:36:52] <strong>Nathan Wrigley:</strong> Thank you so much for joining us. I’m really hoping that it’s gonna have opened some people’s eyes to something, which seems to be incredibly important. Thank you.</p>\n\n\n\n<p>[00:37:00] <strong>Christina Deemer:</strong> Thank you.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://twitter.com/cahdeemer\">Christina Deemer</a>. Christina is a senior UX developer at <a href=\"https://joinlede.com/\">Lede</a>, a company of the <a href=\"https://alley.com/\">Alley Group</a>, where she champions accessibility and headless WordPress in her work with publishers and nonprofits. She’s passionate about inclusivity and community and has spoken at a variety of events about the subject.</p>\n\n\n\n<p>Christina is autistic and brings her personal experience with neurodivergence and disability to bear in her work.</p>\n\n\n\n<p>At the recent WordCamp US, Christina gave a <a href=\"https://us.wordcamp.org/2022/session/embracing-minds-of-all-kinds/\">presentation</a> called “embracing minds of all kinds, making digital content usable for people with cognitive disabilities”. And it’s this talk which is the foundation of the podcast today.</p>\n\n\n\n<p>In her description of the presentation, Christina wrote, “cognitive disabilities are among the most prevalent types of disabilities, yet experts have struggled to provide web accessibility best practices around this area due to cognitive disabilities being such a broad category. However recent work by standards groups has begun to address this deficiency”.</p>\n\n\n\n<p>In past episodes, we’ve covered website accessibility from some different angles, and today we focus on how the web might be experienced by people with cognitive disabilities.</p>\n\n\n\n<p>First, Christina talks about what the term cognitive disabilities actually means, and what it encompasses. It’s a wide range of things, and so we talk about how people may differ in the way that they access the web. Memory, over complicated interfaces and readability are a few of the areas that we touch upon.</p>\n\n\n\n<p>We also discuss what legislation there is in place to offer guidance to those wishing to make their sites more accessible, and as you’ll hear, it’s a changing landscape.</p>\n\n\n\n<p>Towards the end, Christina talks about her own late diagnosis of autism and how this shapes her experience of the web, particularly with auto-play content and when web design includes elements which flash or flicker.</p>\n\n\n\n<p>Typically, when we record the podcast, there’s not a lot of background noise, but that’s not always the case. This is the last of the live recordings from WordCamp US 2022, and you may notice that the recordings have a little echo or other strange audio artifacts. Whilst the podcasts are more than listenable, I do hope that you understand that the vagaries of the real world were at play.</p>\n\n\n\n<h2>Useful links.</h2>\n\n\n\n<p><a href=\"https://www.deque.com/\">Deque</a></p>\n\n\n\n<p><a href=\"https://knowbility.org/\">Knowbility</a></p>\n\n\n\n<p><a href=\"https://www.w3.org/WAI/standards-guidelines/wcag/\">WCAG</a></p>\n\n\n\n<p><a href=\"https://www.w3.org/TR/coga-usable/\">W3C Working Group Note 29 April 2021</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, 26 Oct 2022 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: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:71:\"Do The Woo Community: The Flexibility of the WP-CLI Configuration Files\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=73110\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://dothewoo.io/devlife_snippet-the-flexibility-of-the-wp-cli-configuration-files/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:401:\"<p>For those special projects, you could set multiple WP-CLI config files in various places.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/devlife_snippet-the-flexibility-of-the-wp-cli-configuration-files/\">The Flexibility of the WP-CLI Configuration Files</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, 26 Oct 2022 10:13: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: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:45:\"HeroPress: A Community That Transcends Labels\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=4922\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:142:\"https://heropress.com/essays/a-community-that-transcends-labels/#utm_source=rss&utm_medium=rss&utm_campaign=a-community-that-transcends-labels\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18134:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/10/102522-min.jpeg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress is an incredible opportunity to build a successful business that is flexible enough to give me the lifestyle I want.\" />\nHere is Katie reading her own story aloud.\n\n\n\n<p>WordPress has changed my life in so many ways.</p>\n\n\n\n<p>This is the story of how I discovered WordPress and used it to build a business that gives me financial freedom and a flexible lifestyle. </p>\n\n\n\n<p>It’s the story of how the unique nature of the WordPress community has allowed me to achieve my dreams, without the obstacles and prejudices which are common in other industries. </p>\n\n\n\n<p>It’s the story of how I haven’t achieved this “despite” being a woman founder and a mother. And how it wasn’t “because of” these things either. Instead, it was because of the incredible WordPress community which transcends these labels. </p>\n\n\n\n<h3 id=\"h-the-beginning-building-a-career-without-a-goal\">The Beginning – Building a Career Without a Goal</h3>\n\n\n\n<p>I’ve always been extremely motivated and hard working, getting top marks at school and University. However, as a child I never knew what I wanted to be when I grew up. </p>\n\n\n\n<p>Everyone around me seemed to have specific ambitions to work towards. My sister wanted to be a doctor. My Mum had always wanted to be a doctor too. My Dad had always wanted to be a TV producer. And surprise surprise, they all achieved those goals. </p>\n\n\n\n<p>But I was different, as I had never seen a job that I wanted to do.</p>\n\n\n\n<blockquote><p>It felt like there was something wrong with me.</p></blockquote>\n\n\n\n<p>Careers advisors tried to force me into a category. This was normally very basic, for example: “You’re good at writing, you should be a journalist” – regardless of the fact that I obviously didn’t have the right personality type for that. </p>\n\n\n\n<p>However, it didn’t really matter because I was hard working enough to do well at whatever I tried, and I didn’t feel I <em>needed</em> a specific purpose – whatever other people thought. I chose my favorite subjects to study at University (English Literature and Philosophy), focussing on the skills it would give me rather than what career it would lead to. And when I graduated in 2002, I applied for a range of jobs where I felt like I had the required skills. It took about 20 attempts, but eventually I got a job offer. </p>\n\n\n\n<p>I didn’t enjoy my first job, which was being a Technical Writer for a software company. After that, I got a job as a Trainee Manager for a relatively small company – and that’s when things started to get interesting. I discovered that by being enthusiastic and showing my potential, I could mould the job around my skills rather than the other way round. I’m good at research and writing, so the company gave me responsibilities in those areas and let me take over the company newsletter, communication and marketing. </p>\n\n\n\n<p>Since then, every role I’ve had (including at Barn2) has evolved around my skills and experience. This makes it much more interesting, as well as more useful to the company! I realised that you don’t need a specific career goal. Instead, you can just focus on what you’re good at and where your interests lie, and everyone benefits. </p>\n\n\n\n<h3 id=\"h-the-drive-to-do-more\">The Drive to Do More</h3>\n\n\n\n<p>When I started my career, I absolutely did not have the skills or independence to start my own company. The UK education system does nothing to encourage budding entrepreneurs, or even to acknowledge entrepreneurship as a possible career option. My path had always been to go to University and then “get a job”. </p>\n\n\n\n<p>However, it was the early 2000’s and the world was changing. I could see the internet taking the world by storm and creating opportunities that had never existed before. I enviously watched people who were becoming successful by building innovative online businesses. I didn’t just want their success – I wanted the flexible lifestyles that they were achieving by working for themselves. </p>\n\n\n\n<blockquote><p>My husband Andy and I talked endlessly about how we wanted to stop working for other people and start a business together.</p></blockquote>\n\n\n\n<p>However, neither of us were big risk-takers or “big ideas” people. As a result, we stayed in our jobs for the rest of our 20’s, feeling more and more fed up and longing for more freedom. </p>\n\n\n\n<h3 id=\"h-discovering-wordpress-while-becoming-a-mother\">Discovering WordPress While Becoming a Mother</h3>\n\n\n\n<p>Eventually, in 2009/10 we agreed for Andy to quit his job to start a web design company. The plan was for him to do the technical work, while I would do the marketing, content and SEO alongside my main job. My salary was just about enough to support both of us through the early days, so while it was the biggest risk we had ever taken, it wasn’t a huge gamble.</p>\n\n\n\n<p>While Andy was a Senior Software Developer, he had to teach himself web design and PHP. We chose to start a web design business because it felt like an easy market to enter, and would nicely combine his technical abilities with my business and marketing skills. We didn’t have the confidence to start a business that required large upfront investment or a higher level of risk. </p>\n\n\n\n<p>While our initial focus was designing websites for small local businesses, Andy discovered WordPress during our first project. He immediately realized that it was the best way to build any type of website. I remember being sceptical when he first told me about it because it sounded like a template-based blogging platform, but he was absolutely right! We used it for all our clients’ websites. </p>\n\n\n\n<p>In 2011, our daughter Sophia was born.</p>\n\n\n\n<blockquote><p>Surprisingly, being a mother actually helped me to build the business.</p></blockquote>\n\n\n\n<p>Andy and I had felt comfortable reducing our income to one salary, but it was much scarier for us both to quit our jobs. After all, that was the point where our finances would be completely reliant on the business. </p>\n\n\n\n<p>Fortunately, becoming a mother eased this transition because my income naturally reduced during my year’s maternity leave. My parents were amazingly helpful while Sophia was a baby, giving me the opportunity to breast-feed every couple of hours while working on the business in between (and often at the same time!). It was also nice having Andy working from home, which meant that I got more help and felt less alone with the baby than if he had to go out to work. </p>\n\n\n\n<p>It wasn’t easy. When Sophia was little, I always felt that she was different from other babies but when I raised my concerns, people told me not to be silly. At 6 months old, it became more obvious and she was diagnosed with a rare form of childhood epilepsy along with a lot of uncertainty for the future. I have never been so disappointed to be proved right! Sophia was given strong medication which made her very ill. Luckily the medication worked, but it was a terrifying time. </p>\n\n\n\n<blockquote><p>Sophia’s illness made me realise how important it is to have flexible work that can fit around your lifestyle.</p></blockquote>\n\n\n\n<p>While Andy and I did less work during this period, we still kept moving forward with some projects. I remember discussing one client’s website in a hospital waiting room! This helped to take our mind off things, while also helping to pay the bills. I’m not sure how we would have copied if we had traditional jobs where we were expected to be in the office. </p>\n\n\n\n<p>When it was time to finish maternity leave and return to my previous job, I wanted to quit and stay with Barn2 full-time, but was still too scared to make the commitment. Fortunately, ‘fate’ made the decision for me because my employer decided to withdraw all their family-friendly policies with no notice. They refused to allow me to work part-time, while at the same time trying to downgrade my role and reduce my salary by about 40%! To make a long story short, this created the perfect opportunity to jump head first into the business, which I wouldn’t have had the confidence to do otherwise. </p>\n\n\n\n<p>After that, the web design business grew quickly. We grew a name for ourselves as one of the only UK companies specializing in WordPress, and had clients all over the world. You can read about this in more detail in my previous HeroPress essay, “<a href=\"https://heropress.com/essays/building-a-new-life/\">Building a New Life</a>”.</p>\n\n\n\n<h3 id=\"h-the-switch-to-wordpress-plugins\">The Switch to WordPress Plugins</h3>\n\n\n\n<p>True to form, after a few years of building a successful client-facing web design agency, I wanted more. Client work was very demanding in terms of time and commitment, and it was difficult to take time off work. I hired freelance designers and developers to help with the workload, but was managing more projects than I could handle. </p>\n\n\n\n<p>In 2015, Andy and I took a month off work to travel around France in a motorhome. It was the last chance to do this during term time as our daughter Sophia was about to start school. One of my freelance project managers looked after our clients and I tried to switch off for once. Unfortunately, that didn’t work out and I returned home to a lot of unhappy clients! One project completely imploded while I was away, and I remember responding to some very stressful emails by the pool at one campsite. </p>\n\n\n\n<p>As owner of a WordPress agency, I was very familiar with a range of WordPress themes and plugins. I watched the big product companies with envy, such as Gravity Forms, The Events Calendar, and others. I could see that selling WordPress products would bring even more lifestyle benefits than client work. </p>\n\n\n\n<blockquote><p>After spending a year trying and failing to get a theme accepted onto ThemeForest, we decided to start building plugins.</p></blockquote>\n\n\n\n<p>We figured that plugins could be simpler and more defined than themes, and were therefore more realistic for a single developer to build. We looked around for ideas, and found them in a range of places. </p>\n\n\n\n<p>Our first plugin was released in March 2016 – <a href=\"https://barn2.com/wordpress-plugins/woocommerce-protected-categories/\">WooCommerce Protected Categories</a>. We had seen on the WooCommerce Ideas forum that there was demand for a plugin like this, and at that time nothing like it existed. It was relatively straightforward to develop and because it was so niche, I felt confident in how to market it. Despite this, we were still amazed to get our first sale a few days after launching. It actually felt like maybe we could build a product business after all! </p>\n\n\n\n<h3 id=\"h-tables-tables-and-more-tables\">Tables, Tables, and More Tables</h3>\n\n\n\n<p>The second plugin was <a href=\"https://barn2.com/wordpress-plugins/posts-table-pro\">Posts Table Pro</a>, which was a more advanced version of a plugin that we had built to list a client’s blog posts in a table. We had released it as a free plugin, which was an excellent opportunity because people started sending us feature requests that we could use to build more plugins. This directly led to the development of <a href=\"https://barn2.com/wordpress-plugins/woocommerce-product-table/\">WooCommerce Product Table</a>, which has turned over more than $1,500,000 since its launch, and our current bestselling plugin <a href=\"https://barn2.com/wordpress-plugins/document-library-pro/\">Document Library Pro</a>. </p>\n\n\n\n<p>All of these plugins are similar in that they list information from the WordPress database in a searchable table with filters. However, people use them for radically different purposes and each plugin is tailored to a specific use case. </p>\n\n\n\n<blockquote><p>We never planned to become a table plugin company – it just happened over time, as a result of adding one free plugin to wordpress.org.</p></blockquote>\n\n\n\n<p>I think that’s how a lot of businesses work – you try one thing, and that opens doors to more opportunities. It’s the same as my career – I tried a few things and let them evolve in their natural direction. The most important thing is that you put yourself out there and get things done. </p>\n\n\n\n<h3 id=\"h-growing-barn2-plugins-and-moving-abroad\">Growing Barn2 Plugins, and Moving Abroad</h3>\n\n\n\n<p>The plugin business has continued to grow. We’ve released more and more plugins, mostly specializing in WooCommerce. We’ve built a team, which currently consists of more than 14 people.</p>\n\n\n\n<blockquote><p>Andy and I have taken advantage of the freedoms that we have built for ourselves. For example, last year we moved from the UK to the sunny island of Mallorca in Spain!</p></blockquote>\n\n\n\n<p>I work when I realistically can, and I also take time out to do fun things like hiking in the mountains, or paddleboarding in the sea. </p>\n\n\n\n<p>I try to be an active part of the WordPress community, for example attending WordCamps and building partnerships with other WordPress companies. I talk to people who run similar companies every day, and hope that I help them as much as they help me. Working together like this helps everyone to grow – the aim is to complement each other’s work rather than competing. </p>\n\n\n\n<h3 id=\"h-being-a-woman-founder-in-wordpress\">Being a Woman Founder in WordPress</h3>\n\n\n\n<p>I’ve never had a problem being in a male dominated environment. As a teenager, my best friends were boys despite the fact that I went to an all-girls school. At a school parents’ evening, my teacher said that I had a “male mind” – whatever that means! As a student, I lived with Andy and 3 other guys. Before having children, most of my friends were men. So maybe ending up in a male-dominated industry is no coincidence.</p>\n\n\n\n<p>However, I can only talk about my own experiences, and I have never experienced any issues from being a woman in WordPress. A lot of companies aim to be “color blind” and I can’t really comment on this, but I would describe the WordPress community as “gender blind”.</p>\n\n\n\n<p>Sure, most of the people who run WordPress product companies are men, and so are most of the people at WordCamps. Most of my WordPress friends are men. However, I don’t think that’s due to discrimination because the community is 100% welcoming to the women who do choose to join. In fact, it is rare for people I meet to even acknowledge any sort of gender difference – even people I know well. Everyone is just treated equally, regardless of gender. </p>\n\n\n\n<p>Interestingly, the most marginalized that I have ever felt is by other women, and by people who are trying to promote gender equality. For example, at WordCamp Europe this year, another woman founder asked me if I work at Barn2 or if I’m just here with my husband! I have never, ever been asked a question like that by a man in the WordPress community. </p>\n\n\n\n<p>At WordCamp US this year, I spent almost the entire time with men and not one person drew attention to the fact that I was a different gender. As a result, I resented having my pronouns written in huge letters on my name tag! I realise this is largely in support of people in the LGBTQIA+ community but for me, it was the first time that the WordPress community had ever made a point of my gender, and felt uncomfortable and counter-productive.</p>\n\n\n\n<p>Of course, most people feel imposter syndrome at some point, and I’m no exception. I wonder whether people only invite me on podcasts and to join groups because they want a token woman. Equally, I wonder if people respect me less because I’m not a developer. However, those are my own personal hangups and with a couple of tiny exceptions, no one has ever done anything to make me feel this way. </p>\n\n\n\n<h3 id=\"h-what-does-wordpress-mean-to-me\">What Does WordPress Mean To Me?</h3>\n\n\n\n<p>Most industries – including tech industries – demand long hours and huge levels of commitment. It’s much harder to work <em>and </em>have a life. For me, WordPress is an incredible opportunity to build a successful business that is flexible enough to give me the lifestyle I want. I work hard when I choose to work hard. I relax when I want to relax. It’s my choice. </p>\n\n\n\n<p>The barriers to entry are incredibly low, and you don’t need any specific qualifications to get started with WordPress. Most people in the industry work remotely, which brings a much better work-life balance for both the founders and team members. Everything is done online, which makes it easier to bootstrap a business with minimal investment. And yet despite this flexibility, the market is absolutely huge and you can find real success with WordPress. </p>\n\n\n\n<p>A lot of people think that the WordPress industry is changing due to the spate of acquisitions over the past few years.</p>\n\n\n\n<blockquote><p>Some product company owners feel like they will be left behind unless they join one of the big players. However, as the owner of a self-owned plugin company, I haven’t seen any evidence of this.</p></blockquote>\n\n\n\n<p>We’re continuing to grow and thrive. In fact, being independent has advantages because I can make decisions and move quickly, without any red tape. </p>\n\n\n\n<p>As well as the opportunities it brings, WordPress is an incredibly inclusive place to build a business. It does this in a natural, unintentional way where people can just “be”, without being judged. And that’s the best way.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/a-community-that-transcends-labels/\">A Community That Transcends Labels</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, 26 Oct 2022 06: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:11:\"Katie Keith\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:67:\"WPTavern: WordPress Accessibility Day 2022 Publishes Speaker Lineup\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=138914\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/wordpress-accessibility-day-2022-publishes-speaker-lineup\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2639:\"<p><a href=\"https://wpaccessibility.day/\">WordPress Accessibility Day</a> is just one week away on November 2-3, and registration is still open. Co-lead organizer Amber Hinds published an impressive speaker lineup with 40 speakers from 14 countries. She also noted that 40% of the event’s sessions have at least one speaker who identifies as living with a disability.</p>\n\n\n\n<p>WordPress professionals who want to learn more about creating accessible websites will want to attend, as the schedule is loaded with a wealth of educational presentations from well-known accessibility experts. Co-lead organizer Joe Dolson will start with opening remarks, followed by the <a href=\"https://wpaccessibility.day/sessions/keynote/\">keynote session</a> from <a href=\"https://incl.ca/\">Nicolas Steenhout</a>, an accessibility consultant and host of the <a href=\"https://a11yrules.com/\">A11y Rules Podcast</a>.</p>\n\n\n\n<p>The 24-hour event will include practical sessions on <a href=\"https://wpaccessibility.day/sessions/selling-accessibility-to-skeptical-clients/\">Selling Accessibility to Skeptical Clients</a>, <a href=\"https://wpaccessibility.day/sessions/think-smart-and-adapt-meeting-wcag-2-without-rebuilding-from-scratch/\">Meeting WCAG 2 without rebuilding from scratch</a>, and <a href=\"https://wpaccessibility.day/sessions/the-alt-scene-when-and-how-to-write-alternative-text/\">When and How to Write Alternative Text</a>.</p>\n\n\n\n<p>Gary Aussant, Director of Digital Accessibility Consulting at Perkins Access, and Stephen Plummer, Creative Manager at the Perkins School for the Blind, will be presenting a session titled “<a href=\"https://wpaccessibility.day/sessions/proof-accessible-websites-can-be-beautiful-too/\">Proof: Accessible websites can be beautiful too</a>” that will debunk some of the common myths about accessible websites. They plan to show real examples of modern and engaging sites that also work well for screen readers, keyboard users, and sighted users.</p>\n\n\n\n<p>Full-stack developer Nikole Garcia and Annie Heckel, Electronic Information Technology Accessibility Manager at Cornell University, will give a session on <a href=\"https://wpaccessibility.day/sessions/developing-accessibility-first-wordpress-themes/\">Developing Accessibility-First WordPress Themes</a>.</p>\n\n\n\n<p>Check out the <a href=\"https://wpaccessibility.day/schedule/\">schedule</a> to browse the rest of the lineup and add the sessions you want to attend to your calendar. <a href=\"https://wpaccessibility.day/attendee-registration/\">Registration</a> is free and the event will be live streamed via YouTube with closed captions.</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, 26 Oct 2022 04:08:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: Arc FSE: A New Multipurpose Block Theme for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=138817\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/arc-fse-a-new-multipurpose-block-theme-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2260:\"<p><a href=\"https://olivethemes.com/\">Olive Themes</a>, a relatively new independent theme shop, has released its third block theme on the WordPress.org directory. <a href=\"https://wordpress.org/themes/arc-fse/\">Arc FSE</a> is a high contrast, multipurpose theme, designed to enable a broad range of flexibility through support for full-site editing features.</p>\n\n\n\n<img />\n\n\n\n<p>The theme features the open source and exceptionally readable <a href=\"https://fonts.adobe.com/fonts/poppins\">Poppins web font</a> in various weights and sizes. The color palette is dark with a bright lemon-yellow accent color. It’s bold without being overly splashy, making it suitable for professional use cases.</p>\n\n\n\n<p>Arc FSE does not come with any style variations, but users can easily change the accent colors for buttons, headings, and anything else by editing the templates.</p>\n\n\n\n<img />\n\n\n\n<p>The theme comes with 20 custom patterns, which make up different sections of the design. They are all conveniently grouped together under “Arc FSE” in the Patterns explorer, so you don’t have to hunt for the ones that belong to the theme. It includes full-page patterns for the home, about, services, and portfolio pages. There are also section patterns for things like the default footer, 404 page, a promotional video, sidebar, search cover block, services, and more.</p>\n\n\n\n<img />\n\n\n\n<p>When first installing Arc FSE, the home page is set up to be nearly identical to <a href=\"https://demo.olivethemes.com/?demo=arc-fse\">the demo</a>, making it easy for users to get started customizing. It would be helpful to have a style guide for the theme, but for the most part you get what you see with the demo for the free version. Olive Themes also makes a <a href=\"https://olivethemes.com/wordpress-themes/arc-pro/\">pro version</a>, which includes additional features, WooCommerce support, and more blocks for things like testimonials and star ratings.</p>\n\n\n\n<p>Arc FSE is good option for businesses, agencies, foundations, or artists with portfolios. After less than a week, it’s already being used on more than 100 sites. The theme is available to <a href=\"https://wordpress.org/themes/arc-fse/\">download</a> for free on WordPress.org. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Oct 2022 02:55:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WordPress.org blog: WordPress 6.1 Release Candidate 3 (RC3) 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13670\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2022/10/wordpress-6-1-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6611:\"<p>Release Candidate 3 (RC3) is now available for testing! The general release is just one week away with WordPress 6.1 scheduled for release on Tuesday, November 1, 2022. </p>\n\n\n\n<p>This RC3 release is the final opportunity for you to test and help to ensure the resilience of the 6.1 release by performing a final round of reviews and checks. Since the WordPress ecosystem is vast and composed of thousands of plugins and themes the entire project benefits from the time you take to assist.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test RC3 on a test server and site. </p>\n\n\n\n<p>You can test WordPress 6.1 RC3 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.1-RC3.zip\">RC3 version (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use the WP-CLI command:</p>\n\n\n\n<p><code>wp core update --version=6.1-RC3</code></p>\n\n\n\n<p>Additional information on the <a href=\"https://make.wordpress.org/core/6-1/\">6.1 release cycle is available here</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-1/\">6.1-related developer notes</a> in the coming weeks detailing all upcoming changes.</p>\n\n\n\n<h2><strong>What’s in WordPress 6.1 RC3?</strong></h2>\n\n\n\n<p>Since Release Candidate 2, approximately 60 items have been addressed. </p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.1\">GitHub tickets</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=10%2F18%2F2022..10%2F25%2F2022&resolution=fixed&milestone=6.1&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=id\">Trac tickets</a> </li>\n</ul>\n\n\n\n<p>WordPress 6.1 is the third major release for 2022, following 5.9 and 6.0, released in January and May of this year, respectively.</p>\n\n\n\n<p>To learn more about the highlights for both end-users and developers, you’re invited to read more about them in the <a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\">RC1 announcement post</a> and review the <a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">WordPress 6.1 Field Guide</a>.</p>\n\n\n\n<h2><strong>Plugin and theme developers</strong></h2>\n\n\n\n<p>All plugin and theme developers should test their respective extensions against WordPress 6.1 RC3 and update the “<em>Tested up to”</em> version in their readme file to 6.1. If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so these items can be investigated further prior to the final release date of November 1st.</p>\n\n\n\n<h2><strong>Translate WordPress</strong></h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a> </p>\n\n\n\n<p><strong>Keep WordPress bug-free – help with testing</strong></p>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute. <a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">This detailed guide</a> is an excellent start if you have never tested a beta release.</p>\n\n\n\n<p>Testing helps ensure that this and future releases of WordPress are as stable and issue-free as possible. Anyone can take part in testing – regardless of prior experience.</p>\n\n\n\n<p>Want to know more about testing releases like this one? Read about the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join a <a href=\"https://wordpress.slack.com/messages/core-test/\">core-test channel</a> on the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack workspace</a>.</p>\n\n\n\n<p>If you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>To review features in the Gutenberg releases since WordPress 6.0 (the most recent major release of WordPress), access the <em>What’s New In Gutenberg</em> posts for <a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\">14.1</a>, <a href=\"https://make.wordpress.org/core/2022/09/01/whats-new-in-gutenberg-14-0-31-august/\">14.0</a>, <a href=\"https://make.wordpress.org/core/2022/08/17/whats-new-in-gutenberg-13-9-17-august/\">13.9</a>, <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/\">13.8</a>, <a href=\"https://make.wordpress.org/core/2022/07/20/whats-new-in-gutenberg-13-7-20-july/\">13.7</a>, <a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/\">13.6</a>, <a href=\"https://make.wordpress.org/core/2022/06/22/whats-new-in-gutenberg-13-5-22-june/\">13.5</a>, <a href=\"https://make.wordpress.org/core/2022/06/10/whats-new-in-gutenberg-13-4-8-june/\">13.4</a>, <a href=\"https://make.wordpress.org/core/2022/05/26/whats-new-in-gutenberg-13-3-0-may-25/\">13.3</a>, <a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">13.2</a>, and <a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">13.1</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>RC3, A Penultimate Haiku</h2>\n\n\n\n<p><em>The time ticks forward<br />Release nears ever closer<br />Download and review</em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Props to the following contributors for collaborating on this post: <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a>, <a href=\"https://wordpress.org/support/users/spacedmonkey/\">Jonny Harris</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 25 Oct 2022 20:29:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Do The Woo Community: A WooSesh Chat with Chris Mospaw and Krissie VandeNoord\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=73158\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://dothewoo.io/woosesh-chat-chris-mospaw-krissie-vandenoord/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:428:\"<p>In this episode we talk about integrating 3D visual customizations into your clients WooCommerce sites and WooCommerce performance.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woosesh-chat-chris-mospaw-krissie-vandenoord/\">A WooSesh Chat with Chris Mospaw and Krissie VandeNoord</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, 25 Oct 2022 09:26: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: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:89:\"WPTavern: Gutenberg Contributors Explore a New Browse Mode for Navigating the Site Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=138870\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wptavern.com/gutenberg-contributors-explore-a-new-browse-mode-for-navigating-the-site-editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4478:\"<p>It’s easy to get lost while trying to get around the Site Editor unless you are working day and night inside the tool. The navigation is jumpy and confusing, especially when going from template browsing to template editing to modifying individual blocks. A large PR is in progress for redesigning this UI with the introduction of a “browse mode” that would <a href=\"https://wptavern.com/james-koster-shares-design-explorations-that-transform-wordpress-site-editor-into-a-more-visual-user-friendly-tool\">make the experience feel more like a design tool</a>.</p>\n\n\n\n<p>Gutenberg lead engineer Riad Benguella <a href=\"https://github.com/WordPress/gutenberg/pull/44770\">opened the PR</a> as a continuation of the ongoing work on this project, which has its roots in <a href=\"https://github.com/WordPress/gutenberg/issues/23328\">ideas</a> and explorations that have been fermenting since 2019. He shared a video that roughly demonstrates the target for the proposed UI changes.</p>\n\n\n\n\n\n\n\n<p>It essentially introduces a “navigable frame” where users can select from a menu of features on the left. More detailed efforts on improving the animations and placement of the menu items is happening simultaneously within the ticket.</p>\n\n\n\n<p>The original idea was to include the “Navigation menu” item inside the sidebar, but Benguella removed it in favor of keeping the PR contained to simply adding the “edit/view” mode.</p>\n\n\n\n<p>Although such a large PR has the potential to introduce a slew of regressions, Benguella said there is no other way around a big PR due to the the necessity of the structural changes to how the site editor is organized. He is attempting to keep it narrowly focused and not try to tackle features like browsing capabilities and adding UI (template lists, global styles, etc) to the sidebar.</p>\n\n\n\n<p>The idea is not without <a href=\"https://github.com/WordPress/gutenberg/pull/44770#issuecomment-1281312589\">some pushback</a>. Alex Stine, Cloud Platform Engineer at Waystar, warned against introducing another Mode into Gutenberg, saying it “feels kind of reckless considering we haven’t refined existing modes for all users.” He noted that Gutenberg already has select/edit mode contexts.</p>\n\n\n\n<p>“This was a feature basically added for screen readers only,” Stine said. “I am hoping this will one day be removed, but we’re not quite there yet.</p>\n\n\n\n<p>“I think the community is trying to solve the wrong problem. If Gutenberg itself did not have such a complex UI, there would not be the need for a hundred different modes in a hundred different contexts, blocks, or even editors. We have gone so crazy making everything so quickly, no one thought about how to unify the interface across all editors. This feels like it could be another patch to a bigger problem.”</p>\n\n\n\n<p>Stine cautioned against growing the UI for something that ultimately doesn’t make things any simpler.</p>\n\n\n\n<p>“In a sense this PR doesn’t introduce any new mode, it just redesigns the current navigation panel a bit,” Benguella <a href=\"https://github.com/WordPress/gutenberg/pull/44770#issuecomment-1281319290\">said</a> in response. “I think it’s an opportunity to improve the a11y of the navigation in the site editor.</p>\n\n\n\n<p>“The confusion in this PR is that it’s not about another mode in the editor itself, it’s higher level, it’s how we choose which template and template part to edit before actually entering the editor.”</p>\n\n\n\n<p>Although the project’s contributors have been referring to it as “browse mode,” it is essentially a redesign for the existing UI to make it more intuitive for users to navigate. Gutenberg may not need any more new “modes” but the site editor is in dire need design improvements that will unify the experience and make it less chaotic for getting around.</p>\n\n\n\n<p>During the most <a href=\"https://make.wordpress.org/core/2022/10/24/editor-chat-summary-wednesday-20-october-2022/\">recent core Editor meeting</a>, Gutenberg contributors called for feedback on the big PR, since it has so many moving parts and needs more scrutiny. It’s not ready to land in the next release of Gutenberg yet, but the concept is rapidly taking shape and may expand to include more features in the sidebar once the basic structure is in place.</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, 25 Oct 2022 04:14:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:53:\"Do The Woo Community: The Power of WooCommerce Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=73101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://dothewoo.io/the-power-of-woocommerce-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:374:\"<p>The WooCommerce team is actively exploring the interplay of block themes and full site editing within a Woo store.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/the-power-of-woocommerce-blocks/\">The Power of WooCommerce Blocks</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:\"Mon, 24 Oct 2022 09:01: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: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:60:\"Gutenberg Times: What art can you create with WordPress 6.1?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=22528\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://gutenbergtimes.com/what-art-can-you-create-with-wordpress-6-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4422:\"<p>Over the last year, the <a href=\"https://href.li/?https://block-museum.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Museum of Block Art</a> was launched, built by and for the WordPress community. The intent is to surprise and show off what one can do with the block editor in the form of making fantastic art. If you look through the site and wonder just <em>how</em> something was made, that’s by design. </p>\n\n\n\n<p><strong>What art can you create with WordPress 6.1?</strong></p>\n\n\n\n<p><a href=\"https://href.li/?https://make.wordpress.org/core/2022/09/26/core-editor-improvement-catalyst-for-creativity/\" target=\"_blank\" rel=\"noreferrer noopener\">With WordPress 6.1 bringing an immense number of new design tools</a> on November 1st, there’s a neat opportunity to show how the art one can create with WordPress continues to evolve with the tooling. Just as you might walk through a museum and see how over the years, craftsmanship refined, this WordPress release marks yet another evolution in what’s possible with a true surge in the tools available. What might not have been possible to do before now might be. Consider this your official nudge to give 6.1 a try and see what you can create:</p>\n\n\n\n<div class=\"is-layout-flex wp-block-buttons\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://block-museum.com/contribute/\">Submit art</a></div>\n</div>\n\n\n\n<p>As a reminder, if you’re looking for inspiration for your creations and wondering <a href=\"https://block-museum.com/how/\" target=\"_blank\" rel=\"noreferrer noopener\">how folks have made theirs</a>, experimenting is highly recommended; play with <a href=\"https://wordpress.org/support/article/dimension-controls-overview/\" target=\"_blank\" rel=\"noreferrer noopener\">dimension controls</a>, <a href=\"https://wordpress.org/news/2021/05/coloring-your-images-with-duotone-filters/\" target=\"_blank\" rel=\"noreferrer noopener\">duotone</a>, and the <a href=\"https://make.wordpress.org/core/2022/05/20/core-editor-improvement-creating-containing-containers/\" target=\"_blank\" rel=\"noreferrer noopener\">Row/Stack/Group blocks</a>. You can also <a href=\"https://make.wordpress.org/core/2022/09/26/core-editor-improvement-catalyst-for-creativity/\" target=\"_blank\" rel=\"noreferrer noopener\">check out this roundup post</a> on all the hard work that’s gone into expanding the tools now found in blocks to get a sense of what’s new. </p>\n\n\n\n<p><em>Keep in mind that you can always try out 6.1 early by testing the Beta/RC versions (</em><a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-2-now-available/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>here’s the link to the 6.1 RC2 post</em></a><em> with more information). </em></p>\n\n\n\n<p><strong>A look at what’s next </strong></p>\n\n\n\n<p>When I originally came up with this idea, my mind went wild thinking about <a href=\"https://masterwp.com/an-interview-with-anne-mccarthy-on-wordpresss-coolest-new-project-the-museum-of-block-art/\" target=\"_blank\" rel=\"noreferrer noopener\">printing the art, virtual “exhibits” based on releases, and more</a>; this marks a step into exploring what could be next for the Museum of Block Art with a <a href=\"https://block-museum.com/contribute/\" target=\"_blank\" rel=\"noreferrer noopener\">new checkbox on the submission form</a> asking about whether someone is okay to have their work printed and new pages for each of the last two releases acting as virtual exhibits (<a href=\"https://block-museum.com/wordpress-5-9-exhibit/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress 5.9</a>, <a href=\"https://block-museum.com/wordpress-6-0-exhibit/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress 6.0</a>). While small changes, they set the groundwork for what might be ahead – perhaps you’ll see some of the art grace the next flagship WordCamp event you attend! </p>\n\n\n\n<p><em>Thank you to <a href=\"https://twitter.com/karmatosed\" target=\"_blank\" rel=\"noreferrer noopener\">Tammie Lister</a>, <a href=\"https://twitter.com/visualwebmaster\" target=\"_blank\" rel=\"noreferrer noopener\">Rachel Winchester</a>, <a href=\"https://twitter.com/richard_tabor\" target=\"_blank\" rel=\"noreferrer noopener\">Rich Tabor</a>, and <a href=\"https://twitter.com/Ana_Segota/\" target=\"_blank\" rel=\"noreferrer noopener\">Ana Segota</a> for making up the lovely review committee for this art museum. </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, 22 Oct 2022 09:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Anne McCarthy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:85:\"WPTavern: Openverse Audio Catalog Passes 800,000 Files, Audio Support Now Out of Beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=138837\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wptavern.com/openverse-audio-catalog-passes-800000-files-audio-support-now-out-of-beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2857:\"<p><a href=\"https://wordpress.org/openverse/\">Openverse</a>, formerly known as Creative Commons Search before it <a href=\"https://wptavern.com/creative-commons-search-is-now-openverse\">joined the WordPress project</a>, has<a href=\"https://twitter.com/WordPress/status/1583077584136704001\"> passed an important milestone</a> with its support for audio files. The catalog has now indexed more than 800,000 audio files and its development team has taken audio support out of beta.</p>\n\n\n\n<p>Openverse visitors can now confidently search for and explore audio files for use in their videos, podcasts, or other creative projects, all available for free use under Creative Commons licenses. It is an incredible resource that is expanding and improving every day. Users can search on any device, but I found that Openverse audio searches and files are surprisingly easy to navigate on mobile.</p>\n\n\n\n\n<img />\n\n\n\n<img />\n\n\n\n\n<p>Search results can be filtered by permitted use, license, audio category, extension, duration, and source. Previewing works well and each file has attribution information readily available to copy. Clicking on “Get this audio” will take the visitor to the file on the external collection’s website where it can be downloaded.</p>\n\n\n\n<p>Deeper integration with WordPress core is on the roadmap for Openverse files. It would also be interesting to see WordPress’ core Audio block integrate access to Openverse, in addition to pulling files from URL or the media library, the same way the Image block allows users to browse Openverse.</p>\n\n\n\n<p>Gutenberg contributors are currently exploring how they can <a href=\"https://github.com/WordPress/gutenberg/issues/44496\">add basic Openverse integration to the inserter</a>. Matias Ventura, lead architect of Gutenberg, has proposed adding a Media tab to the existing tabs for Blocks, Patterns, and Reusable blocks, which allow dragging and dropping content into the canvas. This would offer more convenient access to the media library while building pages.</p>\n\n\n\n<p>“The inserter panel should support the ability to drag media from the inserter into the canvas, including dragging into block placeholders to quickly update patterns and such with your own content,” Ventura said. “The Media tab would allow users to choose between categorized assets from the media library, and from Openverse.”</p>\n\n\n\n<p>Gutenberg engineer Nik Tsekouras created <a href=\"https://github.com/WordPress/gutenberg/pull/44424\">a PR with a prototype</a>, basically a proof-of-concept, to explore how this might be implemented.</p>\n\n\n\n\n\n\n\n<p>Development is still in the exploration and early stages, but this looks like a promising new integration that would make it easy for WordPress users to tap into Openverse’s catalog of 600 million free creative works.</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, 22 Oct 2022 02:03:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Post Status: New Venue Accessibility Checklist in the WordCamp Organizer Handbook\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=141561\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://poststatus.com/new-venue-accessibility-checklist-in-the-wordcamp-organizer-handbook/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3494:\"<h2 id=\"h-wordpress-community-news-roundup-for-the-week-of-october-17\">WordPress Community News Roundup for the Week of October 17</h2>\n\n\n\n<p>You may recall my prior post, <a href=\"https://poststatus.com/5-days-without-a-shower/\">5 Days Without a Shower</a>, in which I wrote about my disability experiences at <strong>WCUS 2022</strong>. Writing things from a place of vulnerability isn’t always easy, but sometimes they’re necessary. Creating that post gave you insight into my experiences, and though I told them with a thread of humor, it was still not easy to share. But sharing with good intent, and with support, can help effect change. </p>\n\n\n\n<p>This week the <strong>WCUS 2023</strong> team reached out to me in two ways, and when I tell you how warmed my heart was, you <em>still</em> can’t imagine the extent of my joy. First, <strong>Joe Simpson Jr.</strong> shared this new section of the <strong>WordCamp Organizer Handbook</strong> with me: <a href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer/first-steps/venue-accessibility-checklist/\">Venue Accessibility Checklist</a>. This is a HUGE step toward accommodating those with disabilities at WordCamps. The team also reached out to me as they’re touring the venue for next year with questions as they went through, inviting my input. Kudos to the Community Team on these great efforts and forward momentum. </p>\n\n\n\n<p class=\"has-theme-palette-8-background-color has-background\"><strong>Black Friday and Cyber Monday</strong> are coming quickly! <a href=\"https://poststatus.com/submit-black-friday-cyber-monday-deals/\">Submit your deals on our site</a>. We’ll be publishing that page soon!</p>\n\n\n\n<div class=\"wp-container-1 wp-block-group has-theme-palette-9-color has-theme-palette-5-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h2 class=\"has-theme-palette-9-color has-text-color\">In the <strong>Member Spotlight</strong> this week, it\'s <a href=\"https://poststatus.com/member-spotlight-miriam-schwab/\">Miriam Schwab of Strattic</a></h2>\n\n\n\n<p>Miriam\'s advice for WordPress professionals:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-style-default has-theme-palette-3-color has-theme-palette-8-background-color has-text-color has-background\"><p><strong>Keep learning.</strong> We\'re in an industry that is always evolving, and always developing, and that\'s one of the things that\'s so exciting, but also challenging, about it. It\'s important to try to stay up to speed on what\'s going on directly in our industry, while also keeping an eye on what\'s going on around us in parallel industries. It keeps us fresh and current.</p><cite><a href=\"https://poststatus.com/member-spotlight-miriam-schwab/\">READ MORE →</a></cite></blockquote>\n</div></div>\n\n\n\n<div class=\"wp-container-2 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h2>Upcoming Events:</h2>\n\n\n\n<ul><li><a href=\"https://wpaccessibility.day/\">WordPress Accessibility Day</a> Nov 2-3</li><li><a href=\"https://www.wordfest.live/2022/november/\">WordFest</a> November 18</li><li>Calls for Speakers and Sponsors are open at <a href=\"https://www.wpwealthbuilder.com/\">WP Wealthbuilder Summit</a>.</li><li>WordCamps are back! <a href=\"https://central.wordcamp.org/schedule/\">Check the schedule online</a>. </li></ul>\n</div></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:\"Fri, 21 Oct 2022 18:50:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"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:\"\";}}}}}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:52:\"Post Status: Tech Roundup for the Week of October 17\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=141537\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://poststatus.com/tech-roundup-for-the-week-of-october-17/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3467:\"<div class=\"wp-container-5 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h2 id=\"h-wordpress-design-development-around-the-web\">WordPress Design & Development Around the Web</h2>\n\n\n\n<p>Here’s a glimpse of what’s going on in the world of design and development in the WordPress space this past week.</p>\n</div></div>\n\n\n\n<h3><a href=\"https://olliewp.com/global-styles-and-the-future-of-css-in-wordpress/\">Move Over CSS, Here’s JSON</a></h3>\n\n\n\n<p>I feel like we just started getting a better rhythm of using CSS and SCSS for bringing design systems to life with WordPress theming, and now we’re taking a step backward. At least that is what I thought <em>BEFORE</em> I read Post Status member <strong>Mike McAlister</strong>’s <a href=\"https://olliewp.com/global-styles-and-the-future-of-css-in-wordpress/\" target=\"_blank\" rel=\"noreferrer noopener\">thorough breakdown</a> of why <strong>JSON</strong> is so important and how it will help us all develop better. This goes for theme creators as well!</p>\n\n\n\n<h3><a href=\"https://wpturbo.dev/\">A New Generator Goes Turbo</a></h3>\n\n\n\n<p>A new code generator site is freshly launched in beta. <a href=\"https://wpturbo.dev/\" target=\"_blank\" rel=\"noreferrer noopener\">WPTurbo</a>, from the folks that bring you <a href=\"https://wpmarmite.com/\" target=\"_blank\" rel=\"noreferrer noopener\">WPMarmite</a>, has similar features that you’ve seen from <a href=\"https://generatewp.com/\" target=\"_blank\" rel=\"noreferrer noopener\">GenerateWP</a> and <a href=\"https://www.wp-hasty.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Hasty</a> — <em>BUT</em> Turbo has a <code>theme.json</code> generator, which could come in handy building new block-based themes. It looks like it\'s packed with features comparable to its predecessors but updated for the Gutenberg era.</p>\n\n\n\n<h3><a href=\"https://www.briancoords.com/wordpress-secret-world-of-javascript/\">The Hidden World of Javascript in WordPress</a></h3>\n\n\n\n<p>Post Status member <strong>Brian Coords</strong> shares <a href=\"https://www.briancoords.com/wordpress-secret-world-of-javascript/\">his journey into the JavaScript maze that is contained in WordPress</a>. He explains how we can use it to its full potential, especially when we accept the fact that understanding <strong>Redux</strong> and <strong>React</strong> are super-important to work with the future of WordPress.</p>\n\n\n\n<div class=\"wp-container-6 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h2>Cool Tool</h2>\n\n\n\n<p>Each week we feature one cool tool that can help make your life easier as a WordPress builder.</p>\n\n\n\n<h3>Grab Those Things After The Question Mark!</h3>\n\n\n\n<p>This week I found myself in a sticky situation where I needed to show the parameters from a URL in the block editor. I really didn’t want to have to create a whole new custom block or a page template, so I searched for a plugin that could help. My discovery landed me on this little gem of a plugin called <a href=\"https://wordpress.org/plugins/url-params/\" target=\"_blank\" rel=\"noreferrer noopener\">URL Params</a>. It gives you the ability to add shortcodes to display the parameters from a URL. Short, sweet, and it works!</p>\n</div></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:\"Fri, 21 Oct 2022 18:02:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Daniel Schutzsmith\";s: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:35:\"Matt: Open Source Podcasting Client\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=67415\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://ma.tt/2022/10/open-source-podcasting-client/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2232:\"<p>Automattic <a href=\"https://www.theverge.com/2021/7/16/22580023/automattic-pocket-casts-podcast-app-tumble-wordpress\">acquired Pocket Casts last July</a>, and since we’ve been tapping away trying to make the best podcast client for people who love listening to podcasts.</p>\n\n\n\n<p>And!</p>\n\n\n\n<p>The team has been working really hard to make those clients totally open source and available to the world, <a href=\"https://blog.pocketcasts.com/2022/10/19/pocket-casts-mobile-apps-are-now-open-source/\">and it’s now happened</a>. You can see all the code <a href=\"https://github.com/Automattic/pocket-casts-ios\">behind the iOS app</a> and <a href=\"https://github.com/Automattic/pocket-casts-android\">the Android app</a>, and modify it, make it your own, suggest a change, fix a bug, add a feature, fork it and make your own client, anything!</p>\n\n\n\n<p>If your code gets merged into core, it’ll go out to users listening to literally <strong>millions of hours</strong> of podcasts a week. It’s also unusual to be able to peek under the hood of a consumer mobile app that is this widely used and see how it works.</p>\n\n\n\n<p>Audio publishing and consumption is a beautiful complement to the web publishing that <a href=\"https://wordpress.org/\">WordPress</a> is already so good at, and that <a href=\"https://automattic.com/\">Automattic</a> tries to nurture an ecosystem around. I love Spotify and Apple, and I hope that <a href=\"https://pocketcasts.com/\">Pocket Casts</a> can do for podcast clients what Firefox in the early days and <a href=\"https://www.chromium.org/chromium-projects/\">Chromium</a> now does for browsers — push the state of the art, be manically focused on user control, and grow a more decentralized and open web.</p>\n\n\n\n<p>If you haven’t tried Pocket Casts yet, <a href=\"https://itunes.apple.com/au/app/pocket-casts/id414834813\">install for iOS</a> or <a href=\"https://play.google.com/store/apps/details?id=au.com.shiftyjelly.pocketcasts\">Android</a>, and here’s <a href=\"https://support.pocketcasts.com/article/opml-import/\">how to import your subscriptions using a format called OPML</a>. (And wouldn’t it be nice if trying out a new social network was that easy?)</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, 21 Oct 2022 17:44:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:45:\"Post Status: A Visit from the Good Idea Fairy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=141497\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://poststatus.com/a-visit-from-the-good-idea-fairy/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8808:\"<h2 id=\"h-wordpress-business-roundup-for-the-week-of-october-17\">WordPress Business Roundup for the Week of October 17</h2>\n\n\n\n<div class=\"wp-container-9 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Building, Supporting, and Selling a Winning Product — With or Without WordPress.org • Are Active Install Counts Relevant to Your Business\'s Success? (Even if they are accurate? And they haven\'t been.) • Let\'s Fix What\'s Broken (The Plugin Repo) Not What Isn\'t (The Freemium Model) • Follow Leaders, Adopt Standards • Tools and expertise from rtCamp • Some great and “doable” ideas for the future of plugin business metrics on the .org repo. Could some of them help put an end to intrusive and manipulative dark patterns in the WordPress Admin dashboard and notifications? </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">2</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<h2><a href=\"https://poststatus.com/building-supporting-and-selling-a-winning-product-with-or-without-wordpress-org/\">Building, Supporting, and Selling a Winning Product — With or Without WordPress.org</a></h2>\n\n\n\n<p>This week I sat down again with <strong>Eric Karkovack</strong> to record an episode of<strong> The Excerpt</strong> to talk about the three top WordPress stories on the top of our minds. The temporary loss of active install stats at WordPress.org has created an opportunity to rethink long-held assumptions and find new ways forward, so maybe it\'s not surprising that we made nearly the same selections. There\'s a single throughline in this episode — what works, what doesn\'t, and what will take WordPress businesses forward in the product, agency, and hosting spaces. A lot of people are thinking down this track and a lot of good ideas are coming forward. We\'ve tried to pull together the ones we feel are best. <a href=\"https://poststatus.com/building-supporting-and-selling-a-winning-product-with-or-without-wordpress-org/\">LISTEN or READ →</a> </p>\n\n\n\n<h3>Are Active Install Counts Relevant to Your Business\'s Success? (Even if they are accurate?)</h3>\n\n\n\n<p>In “<a href=\"https://getellipsis.com/blog/org-is-ineffective-plugin-distribution/\">WordPress.org is ineffective for plugin distribution in 2022</a>,” <strong>Alex Denning</strong> argues the likely temporary loss of <strong>Active Install Growth</strong> data for plugin owners is not a bottom-line, business-relevant concern. Apart from the revelation that that data itself was not just obfuscated and inexact but “<a href=\"https://wptavern.com/discussion-on-replacing-plugin-active-install-growth-data-continues-behind-closed-doors\">basically garbage</a>,” Alex draws on <strong>Ellipsis</strong>‘ marketing experience and extensive data (as well as <strong>Iain Poulson</strong>‘s <a href=\"https://s.wptrends.co/w/kWJrSn4PAY2Xziux1YiYEQ\">insights</a> at <strong>WP Trends</strong>) to show 1-2% conversion rates are the norm for plugins in the WP.org repository. Only a couple of big players can crack the 100k+ install tiers today.</p>\n\n\n\n<h3>Let\'s Fix What\'s Broken (The Plugin Repo) Not What Isn\'t (The Freemium Model)</h3>\n\n\n\n<p><strong>Matt Cromwell </strong>politely disagrees with Alex as he makes <a href=\"https://www.mattcromwell.com/the-case-for-the-wordpress-plugin-freemium-model/\" target=\"_blank\" rel=\"noreferrer noopener\">The Case for the WordPress Plugin Freemium Model</a>. (There\'s a great <a href=\"https://poststatus.slack.com/archives/C0413T6GD/p1666180505764299\">Post Status Slack thread</a> on it too.) In it, Matt describes ways plugin owners can make the plugin repository\'s search engine work better for them, but Matt also notes a few of its deficiencies as well. </p>\n\n\n\n<p>As <strong>Justin Labadie</strong> and others <a href=\"https://poststatus.com/connect-freemium-plugins-to-premium-extension-sales/\">point out</a>, the search algorithm retrieves irrelevant results with more active installs than the plugin being searched for in many cases. It isn\'t possible to show all your plugins together anywhere on the repository apart from a buried profile tab under Contributor History. Even author searches do not retrieve every plugin from that source.</p>\n\n\n\n<p>Matt\'s best point is that an average conversion rate is just that — an average. He\'s seen much better results due to marketing efforts he feels are accessible to many plugin vendors. Matt also points to examples of successful freemium plugin shops, like <strong>Paid Memberships Pro</strong> which recently did an A/B test with their pricing page. <strong>Jason Coleman</strong> reported <a href=\"https://twitter.com/jason_coleman/status/1582355558396743680?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1582355558396743680%7Ctwgr%5E60ce4bbce4981ae7479f4aaa2a1b7b13c8467ff3%7Ctwcon%5Es1_c10&ref_url=https%3A%2F%2Fwww.mattcromwell.com%2Fthe-case-for-the-wordpress-plugin-freemium-model%2F\" target=\"_blank\" rel=\"noreferrer noopener\">the version with a freemium option converted better</a>.</p>\n\n\n\n<h3><a href=\"https://gutenberg.10up.com/\">Follow Leaders, Adopt Standards</a></h3>\n\n\n\n<p><strong>10up</strong>‘s <a href=\"https://gutenberg.10up.com/\">newly released resource site</a> for <strong>Gutenberg Best Practices</strong> is a signal WordPress has turned a corner. Here are expert tutorials, resources, references, and example code connected to 10up\'s <strong>GitHub </strong><a href=\"https://github.com/10up/gutenberg-best-practices/discussions\">discussion board</a> for this evolving community resource. It\'s intended to go beyond the official WordPress documentation, according <strong>Fabian Kaegy</strong>‘s <a href=\"https://10up.com/blog/2022/10up-publicly-releases-its-gutenberg-best-practices/\">launch announcement</a>. It\'s a “more client-services-centric approach tailored to engineering enterprise-level editorial experiences.” Enterprise agency adoption of Gutenberg is huge. As we see a growing body of accumulated knowledge, standards, and best practices emerging, it signals and amplifies a wave of change.</p>\n\n\n\n<div class=\"wp-container-10 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h2>Quick Links</h2>\n\n\n\n<ul><li><strong>Matt Cromwell</strong>, <strong>Natalie MacLees</strong>, <strong>Sybre Waaijer</strong>, and <strong>Amber Hinds</strong> have good ideas for future types of data disclosures that could help plugin owners. We\'ve rounded them up from <strong>Mark Zahra</strong>‘s renamed <strong>Trac</strong> ticket <a href=\"https://meta.trac.wordpress.org/ticket/6511\" target=\"_blank\" rel=\"noreferrer noopener\">#6511: Provide helpful plugin stats and insights</a>. Mark recently added <a href=\"https://twitter.com/VitoPeleg/status/1577784069596876800\">some really great ideas</a> from <strong>Vito Peleg</strong> on <strong>Twitter</strong> that seemed to draw a nod from <strong>Matt Mullenweg</strong>. <a href=\"https://poststatus.com/five-takes-on-helpful-plugin-stats-and-insights/\">READ →</a></li><li><strong>Justin Labadie</strong> shared his experiences with the WordPress.org plugin repo and how he hopes it can change: 1) Ensure all search results are relevant. 2) Standardize a Premium product upsell interface in WP-Admin. 3) Make it possible to show other products by the same author/company. Could these steps help put an end to unpleasant sales gimmickry in the WordPress Admin dashboard and notifications? <a href=\"https://poststatus.com/connect-freemium-plugins-to-premium-extension-sales/\">READ →</a></li><li>Speaking of leaders and standards, <strong><a href=\"https://poststatus.com/profile/rtcamp/\">rtCamp</a></strong> has a great <a href=\"https://rtcamp.com/subscribe/\">monthly newsletter</a> where they\'ve been sharing expertise and tools like <a href=\"https://github.com/rtcamp/theme-elementary\">Elementary</a>, a starter theme for block-based, full-site editing themes with developer-friendly features. It’s solid boilerplate following WordPress coding standards that’s fully FSE-ready with a baked-in testing framework. <a href=\"https://poststatus.com/best-practices-and-tools-from-rtcamp/\">READ →</a></li></ul>\n</div></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:\"Fri, 21 Oct 2022 17:36: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:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:132:\"Post Status: Post Status Excerpt (No. 71) — Building, Supporting, and Selling a Winning Product — With or Without 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:32:\"https://poststatus.com/?p=141328\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/building-supporting-and-selling-a-winning-product-with-or-without-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:54878:\"<div class=\"wp-container-13 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">This week I sat down again with Eric Karkovack to talk about the WordPress stories and topics that are on the top of our minds. Independently, we made nearly the same selections. There\'s a single throughline in this episode — what works, what doesn\'t, and what will take WordPress businesses forward in the product, agency, and hosting spaces. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">2</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Skip to Transcript</a> ↓</p>\n\n\n\n\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-drop-cap\">This week I sat down again with <strong>Eric Karkovack</strong> to talk about the three top WordPress stories on the top of our minds. Independently, we made nearly the same selections! It seems the temporary loss of active install stats at WP.org has created an opportunity to rethink long-held assumptions and find new ways forward. Our news picks are all related to this in one way or another. So there\'s a single throughline in this episode — what works, what doesn\'t, and what will take WordPress businesses forward in the product, agency, and hosting spaces.</p>\n\n\n\n<h3>Are Active Install Counts Irrelevant to Your Plugin Business\'s Success? (Even if they were accurate?)</h3>\n\n\n\n<blockquote><p>There are always going to be developers who push the envelope when it comes to littering the dashboard and just making it a difficult user experience. Maybe data is part of the way we solve that.</p><cite><strong>Eric Karkovac</strong></cite></blockquote>\n\n\n\n<p>First up is <strong>Alex Denning</strong>‘s article at <strong>Ellipsis</strong>, “<a href=\"https://getellipsis.com/blog/org-is-ineffective-plugin-distribution/\">WordPress.org is ineffective for plugin distribution in 2022</a>.” Alex argues the likely temporary loss of Active Install Growth data for plugin owners is not a bottom-line, business-relevant concern. Apart from the revelation that that data itself was not just obfuscated and inexact but “<a href=\"https://wptavern.com/discussion-on-replacing-plugin-active-install-growth-data-continues-behind-closed-doors\">basically garbage</a>,” Alex draws on Ellipsis\' marketing experience and extensive data (as well as <strong>Iain Poulson</strong>‘s <a href=\"https://s.wptrends.co/w/kWJrSn4PAY2Xziux1YiYEQ\">insights</a> at <strong>WP Trends</strong>) to show 1-2% conversion rates are the norm for plugins in the WP.org repository. Only a couple of big players can crack the 100k+ install tiers today. </p>\n\n\n\n<h3>The Plugin Repo\'s Glass Ceiling</h3>\n\n\n\n<p>Alex notes this “glass ceiling” has a lot to do with how the repo\'s search algorithm works. It\'s biased to favor plugins that have many active installs already, so if you\'re not there yet, it\'s not going to help you get there. As a result of these observations, Alex disrecommends the plugin repo for anyone thinking about launching a business there on the freemium model. He considers WP.org a poor distribution channel and assumes the freemium product model\'s fate is tied to it. On that point, we\'re doubtful and optimistic about exceptions and opportunities for plugin developers to make their own way, with or without the repo.</p>\n\n\n\n<p>While Eric and I don\'t fully agree with Alex, his data-based analysis does establish that the plugin repository is “broken” if it\'s intended to be a place where a small entrepreneur with a good product can break in and take off. </p>\n\n\n\n<h3>Let\'s Fix What\'s Broken (The Plugin Repo) Not What Isn\'t (The Freemium Model)</h3>\n\n\n\n<p><strong>Matt Cromwell </strong>politely disagrees with Alex in a long, thoughtful post of his own: <a href=\"https://www.mattcromwell.com/the-case-for-the-wordpress-plugin-freemium-model/\" target=\"_blank\" rel=\"noreferrer noopener\">The Case for the WordPress Plugin Freemium Model</a>. (There\'s a great <a href=\"https://poststatus.slack.com/archives/C0413T6GD/p1666180505764299\">Post Status Slack thread</a> on it too.) In it, Matt describes ways plugin owners can make the wp.org plugin search engine work better for them, but he also notes a few of its deficiencies as well. His best point is that an average conversion rate is just that — an average. He\'s seen much better results due to marketing efforts he feels are accessible to many plugin vendors. Matt also points to examples of successful freemium plugin shops, like <strong>Paid Memberships Pro</strong> which recently did an A/B test with their pricing page, and <a href=\"https://twitter.com/jason_coleman/status/1582355558396743680?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1582355558396743680%7Ctwgr%5E60ce4bbce4981ae7479f4aaa2a1b7b13c8467ff3%7Ctwcon%5Es1_c10&ref_url=https%3A%2F%2Fwww.mattcromwell.com%2Fthe-case-for-the-wordpress-plugin-freemium-model%2F\" target=\"_blank\" rel=\"noreferrer noopener\">the version with a freemium option converted better</a>.</p>\n\n\n\n<p>Where Alex and Matt agree is how much the plugin repo has changed due to market saturation. It isn\'t an easy place to win in anymore. And I\'m pretty sure Alex would agree with Matt this is true across the web as a whole — you can expect to have to work hard with stiff competition and give high attention to <strong>Google</strong> as well — not to mention all the other things that go into making and supporting a good product. </p>\n\n\n\n<h3>Ideas for Improving the WordPress.org Plugin Repository</h3>\n\n\n\n<p>Eric and I also discussed the excellent suggestions for useful, actionable data that product owners — and even agencies — would like from <a href=\"https://poststatus.com/five-takes-on-helpful-plugin-stats-and-insights/\" target=\"_blank\" rel=\"noreferrer noopener\">a new, improved plugin directory</a>. <strong>Vito Peleg</strong>‘s ideas are <a href=\"https://twitter.com/VitoPeleg/status/1577784069596876800\" target=\"_blank\" rel=\"noreferrer noopener\">especially exciting</a> and seemed to draw a nod from <strong>Matt Mullenweg</strong> on Twitter. We also note how better data for plugin owners might satisfy some needs that historically have led them to try all kinds of (often unpleasant) gimicks in the WordPress backend to connect with users and upsell or cross-market their products. In a comment at Post Status this week, <strong>Justin Labadie</strong> imagines <a href=\"https://poststatus.com/connect-freemium-plugins-to-premium-extension-sales/\">how this could work as part of the plugin install process</a>, along with other suggestions. Eric connected this line of thinking with <strong>Mark Zahra</strong>‘s question in a recent post at <strong>WP Mayor</strong>, <a href=\"https://wpmayor.com/is-deceptive-marketing-ruining-wordpress-reputation/\">Is Deceptive Marketing Ruining WordPress’ Reputation?</a></p>\n\n\n\n<h3>Plugin Developers Must Make Their Own Way</h3>\n\n\n\n<p>Eric asked (and answered) a big question at the <strong>WP Minute</strong>: <a href=\"https://thewpminute.com/what-should-plugin-developers-expect-from-wordpress/\" target=\"_blank\" rel=\"noreferrer noopener\">What should plugin developers expect from WordPress</a>? You\'ve got to make your own way is a message I agree with, and I brought up my conversation with <strong>Till Krüss</strong> about <a href=\"https://poststatus.com/till-kruss-on-wordpress-performance-the-plugin-business-and-life/\" target=\"_blank\" rel=\"noreferrer noopener\">Performance and the Plugin Business</a> as an example of all the possibilities that open up if you think about meeting big needs nobody else is meeting or solving big problems others are creating! </p>\n\n\n\n<h3>Follow the Leaders, Adopt Standards</h3>\n\n\n\n<p>Where we end up is <strong>10up</strong>‘s <a href=\"https://gutenberg.10up.com/\">newly released resource site</a> for <strong>Gutenberg Best Practices</strong>. It\'s got tutorials, resources, references, example code — and they\'re encouraging use of <a href=\"https://github.com/10up/gutenberg-best-practices/discussions\">their GitHub discussion board for the site</a>. It\'s intended to go beyond the official WordPress documentation, according <strong>Fabian Kaegy</strong>‘s <a href=\"https://10up.com/blog/2022/10up-publicly-releases-its-gutenberg-best-practices/\">launch announcement</a>. It\'s a “more client-services-centric approach tailored to engineering enterprise-level editorial experiences.”</p>\n\n\n\n<p>To me, that\'s a signal WordPress has turned a corner with Gutenberg. Top agency adoption of Gutenberg is huge, and as we see a growing body of accumulated knowledge, standards, and best practices emerging, it signals and amplifies a wave of change.</p>\n\n\n\n<h3>Building Products to Scale Opens Doors and Creates Opportunities for Growth</h3>\n\n\n\n<p>Toward the end of the show I suggest that plugin developers (as well as agencies) targeting middle and low-end markets have tended to neglect standards around performance testing and security because their customers don\'t need to scale and because they can treat performance and security as a hosting problem. That\'s a barrier to accessing high-value enterprise clients, hosts, and agencies connected to both. It represents lost opportunities and money left on the table.</p>\n\n\n\n<div class=\"wp-container-14 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h3><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"?\" class=\"wp-smiley\" /> Also mentioned in the show:</h3>\n\n\n\n<p>Along with <a href=\"https://gutenberg.10up.com/\">10up\'s Gutenberg resource hub</a>, several other future-facing WordPress sites sharing tools and knowledge catering to different audiences emerged in the last week or so:</p>\n\n\n\n<ul><li><a href=\"https://olliewp.com/\">Ollie</a> from <strong>Mike McAlister</strong> is shaping up to be “a blog where WordPress creators can get handy tips, tutorials, and tools for the WordPress block editor and full-site editing.” </li><li>A <a href=\"https://www.modernwpdev.co/\">Modern WP Dev Course</a> is being offered by <strong>Joey Farrugio</strong> and will cover end-to-end WordPress site builds for SaaS and Enterprise clients. So far you can learn <a href=\"https://www.npmjs.com/package/create-acf-block\">how to register and scaffold your ACF blocks through a CLI</a> along with a few other <a href=\"https://www.modernwpdev.co/lessons/\">lessons in building ACF blocks</a>.</li><li><a href=\"https://wpturbo.dev/introducing-wpturbo/\">WPTurbo</a> from <strong>Alex Borto</strong> offers more than <a href=\"https://wpturbo.dev/generators/\">40 free WordPress code generators</a>, <a href=\"https://wpturbo.dev/snippets/\">snippets saved by users</a>, and there\'s <a href=\"https://wpturbo.dev/blog/\">a dev blog</a>.</li><li><a href=\"https://www.youtube.com/watch?v=Ed7s5MFg_vs\">Create Pro WordPress Page Layouts in Just 10 Minutes</a> from <strong>Jamie Marsland</strong> is a fun video tour of some layout design fundamentals that are really essential for good results with full-site editing and the block editor\'s power and flexibility.</li></ul>\n\n\n\n<p>And, last but not least —<a href=\"https://wordpress.org/news/2022/10/wordpress-6-0-3-security-release/\">WordPress 6.0.3 was released</a>. Update as soon as you can! WordPress 6.1 is just around the corner, and its a doozy. <strong>Dave Smith</strong> has <a href=\"https://www.youtube.com/watch?v=0mUrwyyw-8I\">the highlights on new features in this fun video</a>.<br /></p>\n</div></div>\n\n\n\n<div class=\"wp-container-18 wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-container-17 wp-block-columns has-theme-palette-8-color has-theme-palette-5-background-color has-text-color has-background\" id=\"WP-Engine\">\n<div class=\"wp-container-15 wp-block-column\">\n<h3 class=\"has-theme-palette-9-color has-text-color\" id=\"sponsor-wpengine\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/wordpress-vip\">WordPress VIP</a></h3>\n\n\n\n<p>Founded in 2006, WordPress VIP is <em>the</em> agile <a href=\"https://wpvip.com/enterprise-content-management-system/\">content platform</a> that empowers marketers to build content both faster and smarter so they can drive more growth. We empower content and development teams with the flexibility and ubiquity of WordPress—the agile CMS that powers more than 40% of the web—while ensuring the security and reliability organizations need to operate at scale</p>\n</div>\n\n\n\n<div class=\"wp-container-16 wp-block-column is-vertically-aligned-center\">\n<div id=\"WordPress-VIP\" class=\"wp-block-image is-style-default\"><a href=\"https://poststat.us/wordpress-vip\"><img width=\"300\" height=\"132\" src=\"https://cdn.poststatus.com/wp-content/uploads/2022/06/WPVIPlogo-1-300x132.webp\" alt=\"WordPress VIP\" class=\"wp-image-99911\" title=\"WordPress VIP\" /></a>WordPress VIP</div>\n</div>\n</div>\n</div></div>\n\n\n\n<div class=\"wp-container-19 wp-block-group has-theme-palette-9-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h3><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f44b.png\" alt=\"?\" class=\"wp-smiley\" /> Credits</h3>\n\n\n\n<ul id=\"block-a3e9962f-97ca-4009-be8e-db47b5d1fddf\"><li><a href=\"https://twitter.com/karks88\">Eric Karkovack</a>, Owner at <a href=\"https://www.karks.com/\">Eric Karkovack Web Design Services</a> (Twitter)</li><li><a href=\"https://twitter.com/dan_knauss\">Dan Knauss</a><span>, Editor for </span><a href=\"https://twitter.com/post_status\">Post Status</a><span> (Twitter)</span></li><li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a>, Web Producer intern for <a href=\"http://twitter.com/post_status\">Post Status</a> (Twitter)</li></ul>\n</div></div>\n\n\n\n<p class=\"has-background\">Every week <strong><a href=\"https://poststatus.com/podcast/the-excerpt/\">Post Status Excerpt</a></strong> will bring you a conversation about important news and issues in the WordPress community and business ecosystem. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /><br /><br />You can listen to <a href=\"https://poststatus.com/podcast/the-excerpt/\">past episodes</a> of <strong>The Excerpt</strong>, <a href=\"https://poststatus.com/category/post-status-podcasts/\">browse all our podcasts</a>, and don’t forget to subscribe on <a href=\"https://open.spotify.com/show/1m3xwXbe0MG5BzFVPtB0A7\">Spotify</a>, Amazon Music, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\">Google Podcasts</a>, <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">iTunes</a>, <a href=\"https://castro.fm/podcast/c53552c6-1ee0-4fc4-9de4-08ed6bf1ee4d\">Castro</a>, <a href=\"https://www.youtube.com/c/PostStatus\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, <a href=\"https://player.fm/series/wordpress-post-status-podcasts\">Player.fm</a>, <a href=\"https://pca.st/05rR\">Pocket Casts</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\">Simplecast</a>, or by <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<h1 id=\"h-transcript\">Transcript</h1>\n\n\n\n<p><strong>Dan Knauss:</strong> So what\'s your top pick for important news of the week emerging, or I guess a lot of this stuff is going on continually, multi-week as we kind of think it over and conversations unroll. What\'s the top one on your mind?</p>\n\n\n\n<p><strong>Eric Karkovack:</strong> I think the conversation around the removal of the active install growth data is just continuing, isn\'t it?</p>\n\n\n\n<p>I mean, we\'re getting a lot of different points of view on it from developers, non-developers, and pretty much anyone else in the community who has an opinion on it.</p>\n\n\n\n<p>[00:01:00]</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Definitely. I\'ve been kind of pleased that it, you know, it settled down a bit and people are coming up with some pretty creative and constructive ideas of, um, well, just a lot of different perspectives on it. What did you think of Alex Denning\'s? He put out a newsletter last week, and I summarized some of that, and he put out a post. Um, now this week, um, that\'s not really surprising, but maybe a little sharply worded Stu um, kind of a bit of a, a shock to actually see it there that.</p>\n\n\n\n<p>Yeah. How did you, how do you feel about that? Take that, that the freemium model is not one his marketing agency would recommend necessarily as much as they did previously.</p>\n\n\n\n<p><strong>Eric Karkovack:</strong> Well, I mean, the good thing Alex did was he backed all that stuff up with numbers. I mean, he has charts. He\'s showing how hard it is right now for.</p>\n\n\n\n<p>New plugin to get into the [00:02:00] repository and, you know, break through with either, I think you mentioned a hundred k, a 500 k or a million active installs. Now you see like the numbers of that just going down, uh, throughout the years. And, you know, that\'s kind of the issue the plugin repository has right now is that you have, you know, just a few really large plugins.</p>\n\n\n\n<p>Um, you have. You know, plenty of them are, you know, related to automatic in some way. Um, and those are the ones getting, you know, the most visibility, at least when you\'re first visiting the, uh, the repository. So I think, you know, Alex makes a lot of sense and, you know, just kind of gave us an honest take of what the challenges are if you\'re trying to go with that model these days.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Right. Yeah, it\'s, it\'s definitely gotten to be. A tougher, um, tough market to break into. And yet some of his, um, important numbers come from [00:03:00] Ian Paulson. Um, uh, WP Trends put out some of that stuff too, that, um, probably the mix of, of consolidation in the market and, and just it\'s own maturity. Yeah. It\'s hard to debut and, and crack quickly into, into the upper tears.</p>\n\n\n\n<p>I, I always look at, I always wonder what the exceptions are and there are some, and he did note, um, a few. And if, yeah, if you can bring other channels and other, other marketing, um, if you have a significant marketing empire or like, um, awesome motive, but even I think on a much smaller scale, it\'s, it\'s definitely gonna help.</p>\n\n\n\n<p>Is this your only channel or, um, or, What did, um, what did you think of, of his take overall? You know, we have Matt Cromwell, um, kind of giving a, um, a counterpoint, [00:04:00] um, today. I saw that come out.</p>\n\n\n\n<p><strong>Eric Karkovack:</strong> Yeah, I mean, I, I think overall Alex makes a lot of good points. Um, you know, I\'m not a plug-in developer myself. I\'m not starting that business, but I could see.</p>\n\n\n\n<p>You know, if five to 10 years ago, if you were to dream about, okay, I\'m gonna create this plugin and it\'s going to kind of go viral within the community and people are going to pick up on it and use it, um, it, that\'s just not as realistic anymore. Um, you know, like I kind of referred to it on Twitter as like the wild west, um, you know, where anyone you could just, you know, start their own plot of virtual land and, you know, start selling and you.</p>\n\n\n\n<p>Break through that market. Now you are, as you said, you\'re up against these companies with large marketing budgets. Um, they, they\'re very skilled at getting the word out about their products. So if you were going to do this just through the repository [00:05:00] and, you know, as an individual or small agency, I\'m not sure, you know, you\'re gonna have a lot of success without just a major commitment and probably a little bit of luck and a great product.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Right. Yeah. His, um, his headline, um, Alex is, is the.org repo is ineffective for plugin distribution. You know, kinda generalization as of this, this year or so. Um, I would say that\'s, he\'s really saying ineffective as maybe a single channel for, for distribution. A freemium model rooted just in.org is a, i I would say that\'s always been, you know, why limit yourself?</p>\n\n\n\n<p>You know, why not, Why not cultivate other, other channels? And, um, we\'ve promoted partnerships a lot. A lot of people open up, um, other ways to get their, their plugin out by having hosting or agency partners that, um, make it easier. [00:06:00] Or required. It comes along with, with another product. Um, see Main WP is, um, packaged in with, at Tarm, which is packaged in with rocket.net.</p>\n\n\n\n<p>That\'s a, that was an interesting development there. Um, veto on, on Twitter was proposing a number of things that would be useful to get from data that, um, Matt Mullenweg, um, said, Hm, these are, you know, he gave some positive signals about that. Um, did you catch.</p>\n\n\n\n<p><strong>Eric Karkovack:</strong> I did. Yeah. And I, I think something will come back eventually, um, you know, as to what that is and how long it\'ll take Will.</p>\n\n\n\n<p>Mm-hmm. be interesting to see. But, you know, I, that kind of goes into, you know, what should they be providing to plugin developers and what should they, you know, what, what should anyone really expect about that? I\'m sure that\'s something we\'re gonna kinda get on in a bit.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Right. Yes. Um, I\'ve seen a lot of reasonable opinion just come that the [00:07:00] more and more to, let\'s do what dr.org does.</p>\n\n\n\n<p>Just release all the raw data. Don\'t interpret it on.org maybe, but leave that to however people choose to use it. And, and you could do an opt-in, opt out if you don\'t want your, your, um, your metrics in the mix. You can opt out or privatize, you know, only I get those. But the aggregate, uh, signal coming out of there is of high interest to.</p>\n\n\n\n<p>On a lot of levels to a lot of people, including researchers. Um, and as, as Alex mentions, I\'ve said a lot, it\'s a data poor market and anyone who\'s curious in understanding it, uh, WordPress ecosystem, you want the, want the data, um, what you do with it, what you think it means is a whole, whole nother thing.</p>\n\n\n\n<p>Um, and I think it seems like there\'s an agreement too, kind of a consensus emerging that, um, Actually that growth, that growth number isn\'t [00:08:00] or hasn\'t been, um, terribly useful. So it\'s sort of irrelevant to, um, on a lot of levels Alex would say, because it\'s, it\'s not gonna help you, um, in this market anyway.</p>\n\n\n\n<p>Um, but, um, you know, there\'s, there\'s other more useful things we could potentially get out of there. Um, yeah, so Matt\'s, Matt\'s take, I think the, for both of us, those are the two. This dialogue is um, kind of the top of mind thing here. Um, did you get a chance to break into, think through Matt\'s comments today?</p>\n\n\n\n<p><strong>Eric Karkovack:</strong> Yeah, so Matt Cromwell kind of gave a, a very respectful rebuttal to, uh, Alex Denning, um, which I like to see. Cuz you know, we can have those disagreements and you. And still talk about it rationally and, you know, uh, as community members and not as adversaries necessarily. So I think that that was the absolute right approach.</p>\n\n\n\n<p>Um, so, you know, Matt kind of went [00:09:00] into the plugin repository search algorithm and says that, you know, if, if you go in there and optimize your product with the right name or, um, tag your product under, you know, relevant, uh, terms, You can still be found in the search engine. Um, it\'s not necessarily, um, that you\'re gonna have the immediate visibility.</p>\n\n\n\n<p>Let\'s go going on the repository and, you know, seeing like, um, the classic editor or Yost or something like that. But you\'re going to be able to be found if you, if you optimize. And he also said that, you know, in his experience with plugins and he\'s worked with a few of \'em, give WPS the one that comes to mind.</p>\n\n\n\n<p>Um, You can actually convert a lot more, uh, freemium users into, uh, paying customers than the one to 2% that, uh, Alex Denning was uh, mentioning in his post. So, uh, I, I think that\'s, you know, so he, he\'s actually lived it a [00:10:00] bit and I think that\'s, um, mm-hmm. , you know, very relevant, I think kind of good news for other people that are trying to break into</p>\n\n\n\n<p><strong>Dan Knauss:</strong> the.</p>\n\n\n\n<p>Yeah, I\'ve always thought that if you\'re using that model or any model, you should be doing everything you can as soon as you have any kind of audience to get in relationship with your best users. You know, figure u usually you\'d have some kind of persona, you know, you, you know who your, your target audience is, and then maybe that revises over time as you, you get to actually know them.</p>\n\n\n\n<p>But that\'s the best data you, you can get. Finding ways to develop that, um, that relationship is, um, is really key. There\'s then you, you kind of take control of your, you\'re not sitting back passively looking for a number to come in that might be dubious, um, is a big generalization. Um, can you get together a focus group or something like that?[00:11:00]</p>\n\n\n\n<p>The, um, the thing that. I, I think, uh, resonated seems be resonated with a lot of people. With, with Matt\'s, is that that number you mentioned yet? Alex, Alex is speaking of, um, this, going through a lot of data. This is a general figure. This is the, the kind of conversion you can expect on a freemium plugin in, in the, um, what do you, uh, in the, in the.org repo.</p>\n\n\n\n<p>And that\'s, that\'s an average. So, An average for 50, 60,000 possible. Um, I suppose I\'m not, I\'m not sure what the restricted, um, data set is that they\'re looking at. Maybe it\'s a little more targeted than that, but, um, you may not be the average. Do you want to be the average? Do you want, do you wanna market yourself and, and consider your, your success based on relative to, to an average?</p>\n\n\n\n<p>Do you wanna do 200 [00:12:00] times better than that? Um, and I, I would say, yeah, shoot for that is, is, is that kind of where you, you see Matt, um, saying, Look, there\'s, there\'s plenty of ways to be an exception to this.</p>\n\n\n\n<p><strong>Eric Karkovack:</strong> Absolutely. Yeah. I mean, one of the things he mentioned was, you know, it also depends on the category, the type of plugin you\'re in.</p>\n\n\n\n<p>Mm-hmm. . If you\'re competing against the big SEO plugins or form plugins, for example, you\'re gonna have a hard time. There are a lot of established plugins out there that do these things and that have massive install numbers. Um, but if you have a great product that is in the right niche at the right time, there\'s no reason why you still can\'t have success.</p>\n\n\n\n<p>Um, yeah, I mean, one to 2% is kind of low. Um, but that doesn\'t mean your particular plugin is going to have to settle for that. I mean, Regardless of where you put your plug in. And I, I think, um, both [00:13:00] gentlemen agreed that, you know, dot org is a lot different than it was a few years ago, But regardless of where you put that effort, you still have to put in a lot of work in order to get good results.</p>\n\n\n\n<p>So, you know, Right. It, it\'s, you know, it ultimately it\'s up to the, to the developer, um, to market their product, to make a great product. And, you know, That, that\'s what\'s gonna lead to the results more than just, it\'s, it\'s home on the web basically.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Right? Yeah. There, it, it seems to me like there\'s a, there\'s an important perspective, um, shift that it\'s, it\'s worth, um, considering if there\'s kind of, there\'s a, there\'s a, you can look at at general.</p>\n\n\n\n<p>Overall market numbers. You can try to look at how peers are doing within a certain trench there. And, and then there\'s the numbers you generate yourself and the, and it, it\'s somewhat, it [00:14:00] can be somewhat disempowering to, to get over occupied with, um, um, comparison to others. Um, just the whole psychology of that is that really doing well.</p>\n\n\n\n<p>Um, Or do you wanna define your own? I remember when, um, like some years ago, MailChimp or people in the newsletter marketing, um, world posted, here\'s industry averages on open rates and click rates, and I don\'t know where exactly how they computed this. Um, uh, I think the ones coming from MailChimp are based on their data.</p>\n\n\n\n<p>So, Okay, this is probably reliable. And then, and then some years later, I\'ve, I\'ve seen totally. Figures, but um, in reference to that, like, wow, we\'re consistently two, three, even four times over that. So great . But is there really any actionable, um, data in that there, there\'s such broad, um, broad [00:15:00] figures. What, what, what do you think are the useful, um, practical things coming out of this, out of this conversation?</p>\n\n\n\n<p>I see Matt has some things that they agree. It is tougher these days. Um, the market has changed a lot. Um,</p>\n\n\n\n<p><strong>Eric Karkovack:</strong> yeah, I, I, I just think it\'s, it\'s a long overdue conversation. It\'s kind of funny that it took this particular incident to kind of spark it, but mm-hmm. , you know, as I said, if you\'re starting a, uh, a plug-in business today, it\'s so much different than it was a few years ago.</p>\n\n\n\n<p>You know, I, I think this could only benefit people in that position. Right now. They\'re, they\'re seeing both sides of the argument. They\'re seeing, you know, how they fit into, to what\'s happening out there in the WordPress community. So, you know, it, it\'s, it is very productive at the very least. And hopefully it leads to, you know, Some rethinking of the [00:16:00] statistics that really matter and that allow developers to make good</p>\n\n\n\n<p><strong>Dan Knauss:</strong> decisions.</p>\n\n\n\n<p>Right? Yeah. Um, I\'d, I\'d really like to, I\'m one of those who likes more data just to out of curiosity and analysis of, you know, understanding. The market as a whole, but when you\'re, when you\'re actually doing, making practical moves for your, your business, everyone\'s unique or different and, um, you know, or do you have a extension in the W commerce, uh, marketplace?</p>\n\n\n\n<p>That\'s a growth area. Uh, that\'s, is that, do you have all your eggs in one basket? Um, everything that Matt says at the end, that\'s a practical tip is like kind of a no brainer, but you get distracted from that. Pretty easily by looking over your shoulder at another side, I suppose identify your niche should keep it focused.</p>\n\n\n\n<p>Um, launch day one with your free and paid options. Focus on user experience and excellent customer [00:17:00] support. I think those are, those are really key and are under, under practiced, um, across the, the board, um, user experience all the way to plays well with others. How, you know, whether you\'re bombarding people with notifications to, to upsell them.</p>\n\n\n\n<p>Um, there was, someone recently suggested a standard, um, a kind of industry, uh, standard way of doing that, that was part of the discussion. Um, maybe like the in line with WP Notify, What if we get to a consensus on, um, ways to reach. With freemium plugin plugins to, to the audience instead of all trying our own things inside the dashboard.</p>\n\n\n\n<p>Is there anything else in that discussion or any other contributions to it that, um, you\'ve been reflecting on this week? Any anyone else writing in [00:18:00] on it?</p>\n\n\n\n<p><strong>Eric Karkovack:</strong> Yeah, I, I think you know, what you just mentioned about the notifications is interesting because we had, uh, You know, the post that Mark Zara, uh, had a couple of weeks ago about the marketing tactics, it kind of got me thinking about this data.</p>\n\n\n\n<p>I mean, if you have accurate, actionable data, do you need to really go down the rabbit hole with some of these unsavory, I guess I\'ll call them marketing tactics, You know, if you had that access to the right data. You know, right now it\'s so open to experimentation because people may not exactly know what the right path is for them.</p>\n\n\n\n<p>So they\'re going to experiment. They\'re always going to be developers who push the envelope when it comes to, you know, littering the dashboard and, and just making it, uh, uh, a difficult user experience, I guess I should say. Um, [00:19:00] maybe data is part of the way we solve. Yeah. I,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> I, I think that that\'s a good, a good tangent for this to, to go in tho Those two seem related to me as well because they\'re, they\'re two parts of that transaction.</p>\n\n\n\n<p>Um, they\'re due to the not having. Telemetry and you\'ve gotta find some other way to reach out. And the easy, the low hanging fruit has seemed to be, well, let\'s put in a big, you must respond, you know, something where people are gonna click on it and, um, and respond. Um, but then there\'s all this pushback against that.</p>\n\n\n\n<p>Other, other forms of marketing, like you\'ve, you\'ve mentioned, like Mark\'s mentioned, I should bring that up with him and see what his thoughts are since he\'s recently weighed in on both. And that that is ultimately though the user experience is where you get the, the pushback. Um, they want [00:20:00] someone using your plugin, um, may actually want to give you feedback.</p>\n\n\n\n<p>Can you find an appropriate channel? It\'s such a, it\'s such a one way transaction. Um, yeah, I don\'t, it seems like there should be some opportunities there and if there was collaboration, In the plugin industry to, hey, this is how we\'re all gonna do this. If there was a cluster of, of people or, or one particular company or, um, a group that agreed, let\'s try this particular way of, um, standardizing how we do this part of the interface, how we reach out to customers.</p>\n\n\n\n<p>And, um, I don\'t think we do anything as a community to set expectations at all or to educate people who are just casual users. And that cascades into them. Just, you know, never really entering more deeply into, into the WordPress project as maybe as much as they would. Um, [00:21:00] I wonder if there\'s lost opportunities there.</p>\n\n\n\n<p>Um, that\'s a good one. The notification thing I is a pet issue for me too. No one likes it. . No. No. Well, the other, the other thing I was gonna. Mention ties in into your, your other pick too. You, you wrote a piece on what developers should expect from, um, from WordPress and, Yeah. What, Let me walk us through your, your main points there.</p>\n\n\n\n<p><strong>Eric Karkovack:</strong> Yeah. So, you know, with, with all the, the talk about the data being removed, that also kind of got me thinking of, well, you know, what is it that if I\'m a plugin developer, what should I expect from the WordPress project? You know? And my conclusion is that I don\'t know that the WordPress project is necessarily interested in helping you make money off of your plugin.</p>\n\n\n\n<p>You know? Mm-hmm. , they\'re providing us with a [00:22:00] platform. That we can build on. So there\'s the opportunity to make money, and they\'re offering us, you know, documentation and, you know, different events and things like that to help us learn, um, how we can use the platform for, for our needs. However, you know, when it gets to the point of, you know, are, are they in the market to help any big plugin developer make.</p>\n\n\n\n<p>I mean, should they be, Is that something that. You know, we should reasonably expect them to care about, um, you know, like personally, I felt like the data that was there, they should have done a, a much better job in explaining why it was removed. Because I think that is the part of it that gets people fired up the most perhaps, is that there\'s just no explanation for it.</p>\n\n\n\n<p>There\'s no official word. You know, there\'s a, a rumor here and there. In, when you look at it [00:23:00] in, in a, uh, broader view, is that data something that WordPress owes to plug in developers necessarily? Right. So that was kind of my point as to, you know, Yes, we\'ve missed this data and it could be useful, but we also have to realize that every one of these plug-in developers is a third party entity.</p>\n\n\n\n<p>Many of them are commercial, including automatic, and so. , you know, are we going to expect WordPress to facilitate our money making? You know, that\'s ultimately up to the company. That\'s up to the developer, right? Um, they\'re giving us the tool to build upon and you know, we take it from there. And that\'s right kind of where it ends.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Exactly. Um, yeah, it\'s a bit of a humbling message, but I, I think it\'s, it\'s an over overdue one. And, and maybe that\'s actually a good, explicit conversation to [00:24:00] have. What, what should, what should the project set as expectations? Um, can those be explicitly laid out, um, to people who are in the extender category of, you know, building plugins and themes and services?</p>\n\n\n\n<p>Um, you, you often, You know, Des describing. The very large realm of third party, um, businesses built around WordPress, um, describing them as, as super fans, um, is, is an interesting thing. I I, I kind of had a chuckle out of, because I, I think there\'s another side of that perspective where it\'s like, you know, with friends like these, you , like this is the, the people who.</p>\n\n\n\n<p>You know, con, you know, everyone, everyone who\'s had some success or prominence in, in the market, there\'s a, there\'s a strong tendency towards maybe conveying, you know, especially if you\'re Twitter, active personality, God\'s gift to, uh, [00:25:00] to WordPress and expanding the market here and well from, um, from other, other perspectives.</p>\n\n\n\n<p>Compared to other projects, testing performance is, uh, something that a lot of third party, uh, products have delegated upward to hosts to deal with. Um, it\'s not just WordPress core, although that\'s there, but, um, the tightening focusing in on performance now, I, I think is really important. But it\'s something that, um, you know, unlike other projects, Testing is not as, um, aggressively implemented or standardized, um, across the board.</p>\n\n\n\n<p>You can get stuff in the, in the repo without, you know, necessarily doing, you know, end to end deep testing of, um, for security and performance. And I think any, anything, any developments on [00:26:00] that front are, are to be encouraged. There\'s. That\'s ongoing. But, um, if, if plugin developers really took charge of that, um, that\'s an area that there\'s clear.</p>\n\n\n\n<p>Clear synergy and, uh, alignment of interest with e everybody. And I think that\'s where everyone benefits. Um, you, you may not be owed anything, but um, for your, for your, your contributions, but everyone benefits when, when those are good, when, uh, when everyone\'s kind of aligned and, and, uh, performance and, and security are, are ones where just absolutely everyone is.</p>\n\n\n\n<p>In, in it together? No, no one, um, everyone has an interest in, in everything performing as well as possible and being as secure as possible. So that, that kind of touches the, um, the other thing I wanted to bring up, which is one of our own, um, back in August, [00:27:00] I, uh, recorded a, a conversation with Tell Chris, um, who\'s Object Cash Pro and is working on a success.</p>\n\n\n\n<p>Product, Um, and has had huge success with a high value hosting market. Partnerships with, with that, he has a freemium plugin that is also super valuable. That is originally from a forked product of, um, I think some core, core developers quite some time back about a decade, um, that they, they established and then left and, and till took over.</p>\n\n\n\n<p>Um, with his own, his own versions, he has over a hundred thousand. Installs tracked on the on the.org repo with that. But his premium product, which actually is not open source to protect, to protect it as intellectual property, um, that is where you get the big, the bigger revenue from fewer clients [00:28:00] because it appeals to hosts who have such, or anyone who has such a high volume of traffic paying you a thousand bucks.</p>\n\n\n\n<p>Uh, a month. Is saving me 20 20,000 on the bandwidth that, so it, it\'s kind of, um, it\'s a, it\'s a really fascinating model that I think doesn\'t translate to everybody. It\'s a niche product, but there are lessons from it that really do, and it\'s how can I build something that\'s so tested rigorously and so performant that I don\'t have more than like five minutes of support time a day.</p>\n\n\n\n<p>All plugin developers complain, , plugin, plugin businesses are complain about support. So amazing relationship there with kind of sell itself and, and two, this is coming from someone who is self taught, I believe, largely self taught developer who then spent time outside of WordPress in Lve and got deeply into performance and, and testing and brings a [00:29:00] rigor from that project back to WordPress, which is sad.</p>\n\n\n\n<p>Not common and not part of the culture and not intensely supported and taught. Um, so I, I think those are things plugin developers can look to and, and learn from. I don\'t know if you had a chance to listen to that. I, I actually did more writing about, about that conversation the more I thought about it than I usually do.</p>\n\n\n\n<p><strong>Eric Karkovack:</strong> Yeah. Hi. His story is very interesting and I said going to the hosting market. Is really unique. No, I mean, how many WordPress plugins are really doing that? And I think what he shows is that there are still opportunities. If you have something that is very niche that you don\'t have to necessarily even worry about the plugin repo so much.</p>\n\n\n\n<p>Right.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah. And it\'s partly an opportunity that\'s been, it\'s very stereotypical. It goes back a long way. It\'s an [00:30:00] structural feature of, of WordPress culture and, and software engineering. Um, he\'s solving a problem that exists because WordPress. Is is not super competitive on the performance front. More and more, that\'s more and more an issue at time, uh, over time.</p>\n\n\n\n<p>So it\'s being more aggressively dealt with now. Uh, but a large part of that, I remember 10, 15 years ago, you know, hosts, it was like a glass half full glass, half empty. Everyone\'s installing WordPress and 250 plugins, and some of them are nuts, . And it\'s like it brings it to a crawl. Um, so there\'s been this huge boom.</p>\n\n\n\n<p>Managed WordPress hosting and really to cater with that to, to that. Um, and I think, and it\'s not just that all P h p MyQ, um, CMS platforms that got popular around the same time, you, you can, you [00:31:00] know, left to your own devices someone can install and quite a lot of stuff on there and. That\'s never, performance, hasn\'t been pushed to as a core competency and responsibility of third party developers in, in WordPress.</p>\n\n\n\n<p>And I think that\'s really overdue and is hugely in their interest and until has a, a winning product because it matters so much at scale. Um, and that\'s another, that\'s another thing if your plugin doesn\'t. Doesn\'t, wasn\'t conceived of and architected towards, towards scale. Well you, are you going to be able to market this, um, in a higher tier?</p>\n\n\n\n<p>Is this something that a V I P agency is gonna do code review and say, you know, we like this future set, but, um, you know, uh, uh, this is gonna, here are, here are issues with security, [00:32:00] performance and so on. I think that sort of. That sort of barrier is there and maybe not talked about as much as, as it should.</p>\n\n\n\n<p>There\'s a lot of learning, um, that could happen there that\'s constructive. Um, if you\'re going for a middle or low market, maybe you don\'t think about that as much, but there\'s a lot of high dollar value in having, having something that is going to be adopted by high value market.</p>\n\n\n\n<p><strong>Eric Karkovack:</strong> Yeah. I mean, if you make yourself indispensable to, uh, Larger installs.</p>\n\n\n\n<p>I think you could find yourself, uh, doing pretty well in this space. But, you know, talking about performance, I mean, there\'s really not a lot of formal educational opportunities out there right now for that. Um, you know, and the kind of the. Blessing and curse of programming is that you can build things more than one way.</p>\n\n\n\n<p>You know, if you ask me to build you a form, I can build you a form in many different ways. [00:33:00] Doesn\'t necessarily mean it\'s gonna be the most performant. Um, and you know, if there\'s no real standard or there\'s nobody sitting there and, you know, testing all of these things, um, before they get into repository.</p>\n\n\n\n<p>You\'re, you could be stuck with something that you know isn\'t very performant and, you know, the average site owner\'s not going to know that there are faster, better alternatives. So that\'s kind of the, the, uh, the challenge we find ourselves in right now.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah, I\'ve, I\'ve said before, somewhat, you know, half serious, you know, that I would love to see statistics on, you know, what\'s the average amount of, of queries, queries that this.</p>\n\n\n\n<p>Plugin will add to my site if I install it. And is it arbitrarily loading dependencies and, and adding, adding page weight on, um, absolutely every page load? Or is it just doing that where it needs to? There there are [00:34:00] things like that that, um, I think public attention to would, would have a, be. Impact. Um, it just hasn\'t, hasn\'t really been considered.</p>\n\n\n\n<p>Do you have a third, uh, third item or, or was the Alex and, and Matt, the kind of counting his too. Did, Is there one more? Um, Pick of the week for</p>\n\n\n\n<p><strong>Eric Karkovack:</strong> you? Well, I, I, I think, uh, I was really interested in, in looking at, uh, 10 UPS Gutenberg best practices site, cuz that kind of ties into this a little bit with the education.</p>\n\n\n\n<p>Here\'s a very big agency, does a lot of, um, large WordPress based projects and they\'re kind of sharing their methods for building Gutenberg blocks, for working with block themes and the theme json file. Um, and you know, maybe that\'s one of our solutions community. Mm-hmm. members that have had success and have a reputation for quality sharing, how they do things.</p>\n\n\n\n<p>I know web dev [00:35:00] studios has done similar things in the past where if you can kind of see how they do things, maybe that rubs off on other developers and they also, you know, build things to be performant and sustainable. Um, you know, that\'s the kind of information I think is, is really just crucial to have cuz it goes beyond just the basic documentation that WordPress</p>\n\n\n\n<p><strong>Dan Knauss:</strong> provides.</p>\n\n\n\n<p>Yeah, absolutely. I, I\'ve, um, I was pleased to see that come out. I\'ve kind of been looking for that for years. I was like, you know, knowing that\'s kind of a bellwether, you know, we\'ll have turned a corner when, when you see the, um, top agencies, uh, turning. Um, case studies, documentation, tutorials, explainers that are, are really useful and, and helpful, but are also signaling, hey, they\'ve, they\'ve turned the corner on that.</p>\n\n\n\n<p>They are, they\'re doing Gutenberg first, um, with, with new, new site builds. Um, [00:36:00] and I, I think I, I\'ve never seen anyone mention this, but. I, I feel that there\'s a, um, there\'s a need there. Maybe there isn\'t enough of a hunger for, for unofficial standards. Uh, when, when back, way back when managed hosting, um, started to come out and, um, I remember WP Engine was, I think the, the first I recall where there was a public list of do of plugins.</p>\n\n\n\n<p>Don\'t allow or, Yeah. Um, and I was like, Cool. That saves me a lot of time, . And I, I kept up with that and I kind of, I aligned my own lists with that and, and tried to learn, Okay, why is that? And to kind of sharpen my own understanding of. How experts are, are picking and screening and you know, you look at, um, WordPress v i p documentation, I, I\'ve done that from time time.</p>\n\n\n\n<p>Well, what is their [00:37:00] perspective on, on ACF or, um, or, or something else that, uh, I, I don\'t, I don\'t know that that\'s done at. People who are serving a kind of lower middle market and who can count on, let\'s just, we\'ll just throw more server horsepower on that, that will be the client\'s problem. Um, there are, there are leaders who build the topnotch, you know, flagship sites out there.</p>\n\n\n\n<p>You know, everyone always mentions White house.org, which used to be, which was a big brag for Duple back in the day. That was, it was originally a droople site. And if we\'re going to recognize leadership and leaders like that, then I think what comes along with that is, is taking the best practices at standards seriously, and hopefully seeing more of those come out.</p>\n\n\n\n<p>So there was a 10 up one, and then I also noticed really all at the same time. So Mike McAllister has, um, Launched Ollie, [00:38:00] um, WordPress tutorials and tools that are really focused on the future of the block editor and full site editing. Um, and there were a couple of others that, um, that popped out. Do you know Alex, the WP Marmite?</p>\n\n\n\n<p>Um, I don\'t really, I don\'t know them that well,</p>\n\n\n\n<p><strong>Eric Karkovack:</strong> but, uh, that one I, no, I, I, I don\'t know Alex very well. Um, I\'ve heard, I\'ve heard of WP Marmite, but I.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> I\'ve looked over there a few times. I noticed I, it is like, wow, this is a trend in the, in the last seven to 10 days. Um, new tutorial sites being launched that he has one on per, I think it\'s a performance.</p>\n\n\n\n<p>Um, have to look back up, up in here. W p Turbo. Um, yeah, which has got, uh, code generators, short code generators, um, familiar things from the past, but, um, gear. Um, reminds me to generate wp, um, or what was that site called? Um, I think that was [00:39:00] it. It, this, yeah, where you can, but it\'s, it\'s got a tutorial component too.</p>\n\n\n\n<p>So, uh, kind of updating those things for, um, performance and the future of. Of the word press editor, um, Jamie Marclin put out a nice, uh, video on how to build quality page layouts in just 10 minutes. right is his, uh, sales line there, which is, which actually there, it, it\'s not easy to make things look good.</p>\n\n\n\n<p>I mean, you need layout, You need to learn some layout, design, skill, basics. Make hash in, um, any kind of , any kind of page builder. And I think people turning to focus on those, um, on those things is a really good sign.</p>\n\n\n\n<p><strong>Eric Karkovack:</strong> Yeah. I mean, when you think about it, it\'s, you know, we have great tools and some, some tools don\'t require us to write code, but you still have to have some fundamental skills in place mm-hmm.</p>\n\n\n\n<p>before you can [00:40:00] really have success with them. And I think you know it, I mean, Elementor is a great product, but it doesn\'t necessarily make you a designer by trade. No. Um, just from installing it, I mean, there, there, there\'s, you still have to put in a little bit of work. So these kind of sites are, are nice.</p>\n\n\n\n<p>To have because you, those references, you know, can help you become better at what you\'re doing. Right?</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah. And, um, on that note, um, the WordPress, WordPress 6.1 is looking like a really, you\'re gonna be a really cool release. And I noted that. Um, yeah. WordPress, v i p put out a, what they called hot takes, um, on, um, On the value of, of what\'s, what\'s in, um, what\'s in 6.1.</p>\n\n\n\n<p>That should be noted by, um, their, their audience, their clientele. So I\'m, I\'m, I\'m interested in, in that often, like, you\'re, Okay, so this is directed towards, towards their [00:41:00] clients. This is, you know, very different than the, the, you know, the, um, The broad, mid middle market. Um, and they\'re, they\'re focusing on things like constraints, you know, that you can lock lock blocks, um, which is huge.</p>\n\n\n\n<p>I, you know, you only, I, I\'ve only heard agency people and, and freelancers, anyone dealing with clients talking about, Whoa, whoa, whoa, whoa, whoa. You\'ve got reusable block. You know, we\'ve all found ways probably to new car work by. With reusable blocks that aren\'t, aren\'t locked down or, um, uh, even see Brian Cords mentioned something I\'ve, I\'ve done a few times, although I, I had revisions turned on so I could, I could go back.</p>\n\n\n\n<p>But it\'s, um, it\'s quite easy to have a second tab open and forget you\'ve made changes in this other tab and then, you know, wipe them out or, or something like that. There\'s a lot, there\'s a lot of little ways. So many more [00:42:00] options in, in Gutenberg can, um, frustrate people whose time, you know, that are, you don\'t want your clients foundering in, in these kinds of things.</p>\n\n\n\n<p>Um, so that, that to me is a good sign too, that we\'re, we\'re looking at constraints as, as a positive.</p>\n\n\n\n<p><strong>Eric Karkovack:</strong> Yeah, I mean in the old days we went to great lengths to, to lock things away from clients and now Gutenberg kind of takes that away, when it came out it\'s like, okay, well now they have access to everything and they can do freak all sorts of havocs.</p>\n\n\n\n<p>So the ability to lock things down is, you know, is, is key for the future, I think.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Anything else we should throw on the, on the, on the deck or,</p>\n\n\n\n<p><strong>Eric Karkovack:</strong> I think that was about it. Busy week.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> No, it seems not. Not, not. No one got acquired. No major, huge business things, but, um, and still trying to digest the [00:43:00] implications of all, all the new, uh, w w commerce, hosted w commerce platforms that are, are rolling out.</p>\n\n\n\n<p>Um, that\'s, that\'s a big deal. Uh, but yeah, another time another conversation all. Well, thanks for, uh, thanks for joining me again, and we can, uh, do a few more roundups like this, uh,</p>\n\n\n\n<p><strong>Eric Karkovack:</strong> now and then. Thank you for having me. It\'s my pleasure.</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:\"Fri, 21 Oct 2022 15:45:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:66:\"WPTavern: WordPress Themes Directory Adds Style Variation Previews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=138816\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wordpress-themes-directory-adds-style-variation-previews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3070:\"<p>WordPress.org theme previews just got a major improvement this week with the addition of <a href=\"https://make.wordpress.org/meta/2022/10/20/displaying-style-variations-for-supporting-themes/\">Style Variation previews</a>. The previews now appear on block themes that include style variations. </p>\n\n\n\n<img />\n\n\n\n<p>Themes that have more variations than what fits in the space beneath the preview pane will display all variations in a carousel with little arrows to navigate to the next ones. Here’s an example with the Pixl theme from Automattic that contains seven brightly colored variations:</p>\n\n\n\n<img />\n\n\n\n<p>It’s also possible to see a selected style variation loaded into the theme preview now. Clicking the ‘Preview’ button will allow users to scroll and explore the theme with their selected style variation applied.</p>\n\n\n\n<img />\n\n\n\n<p>“These style variations, designed by theme authors and packaged in block themes, help users have a diverse set of approaches to their site design allowing them to find one that aligns with their goals,” Automattic-sponsored Meta team contributor Steve Dufresne said. “This feature helps to highlight the flexibility of modern WordPress themes and it’s time to have it baked into the theme directory experience.”</p>\n\n\n\n<p>The new style variation previews are fetched from the themes’ <code>/styles/{variation_name}.json</code> files, so theme authors do not have to do anything to make the previews work. They will automatically display for any theme that includes style variations.</p>\n\n\n\n<p>Meta team contributors are also working on adding the ability to filter the directory for themes with style variations. Dufresne proposed creating a new <code>style-variations</code> theme tag as the simplest route towards implementing this.</p>\n\n\n\n<p>“Doing so will allow the active filtering of these themes without needing to make many if any code changes,” he said in the <a href=\"https://meta.trac.wordpress.org/ticket/6545\">ticket</a>‘s description.</p>\n\n\n\n<p>“A longer-term solution should look at exposing these features visibly somehow without needing to find the obscured filters that we currently have. This feature should be judged equally with others and therefore, this type of implementation should be better debated and falls out of the scope of this ticket and the immediate need to see themes with style variations.”</p>\n\n\n\n<p>This is a good observation, as not all WordPress users hunting for themes will know that a tag exists in the Feature Filter. That list is already quite lengthy and not the best user experience for discovering themes with specific features, especially if users don’t understand what the terms mean. Theme authors will want to watch this <a href=\"https://meta.trac.wordpress.org/ticket/6545\">ticket</a>. If the shorter term solution of creating a new <code>style-variations</code> tag is committed, they will need to update their themes with the tag to be included in the filtering.</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, 21 Oct 2022 15:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"Post Status: Connect freemium plugins to premium extension sales?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=141363\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://poststatus.com/connect-freemium-plugins-to-premium-extension-sales/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4531:\"<div class=\"wp-container-27 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Justin Labadie\'s wishlist for the WordPress.org plugin repo: <br /><br />1) Ensure all search results are relevant. <br />2) Standardize a Premium product upsell interface. <br />3) Make it possible to show other products by the same author. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">2</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<p class=\"has-drop-cap\"><strong>Justin Labadie</strong> from <a href=\"http://slickremix.com/\">SlickRemix</a> left <a href=\"https://poststatus.com/two-key-questions-we-need-to-answer/#comment-492939\">a helpful comment</a> that adds an interesting idea to the mix of possible futures for the wordpress.org plugin repository. </p>\n\n\n\n<h2>Search results should show peer products, not totally unrelated ones</h2>\n\n\n\n<p>Confirming <a href=\"https://www.mattcromwell.com/the-case-for-the-wordpress-plugin-freemium-model/\">some problems</a> <strong>Matt Cromwell</strong> has noted about the repository\'s search algorithm, Justin describes how he and his brother <strong>Spencer Labadie</strong> had a plugin there that was “stacked in the search [results]” with unrelated plugins showing much higher active installs. Nothing the Labadies tried changed this outcome, so “After many hours, a few years, and … little to no growth no matter the hours or money” they decided to get out of the repo. </p>\n\n\n\n<h2 id=\"h-standardize-what-works-for-freemium-premium-plugins-upsells-in-the-back-end\">Standardize what works for freemium/premium plugins: Upsells in the back end</h2>\n\n\n\n<p>At the same time, Justin says “almost every free install was a premium extension sale of some kind,” so they were definitely getting value from the plugin repository and freemium model but on the strength of their own product and sales funnel. </p>\n\n\n\n<p>“With our main plugin we have ways we hook people into purchasing our premium extensions,” Justin commented. He says there should be “a standardized way for free plugins to do this.” Why not standardize what works well?</p>\n\n\n\n<p>How it could look:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I imagine a hook [where] users installing plugins see extensions offered by the plugins/themes. If we standardize something clean and not overly spammy-looking where devs can hook into that [and] show users what they offer that is premium…. Not a “Premium plugins store” but simply a page or way to display offerings within the repo that users can choose to click see that would take them to place to purchase. There would also be a similar and standardized way of hooking into displaying [upsells] on the [end user\'s] WordPress install’s backend.</p></blockquote>\n\n\n\n<p>In other words, some kind of “Here\'s what else we offer” page or panel would come up during the installation process on each site.</p>\n\n\n\n<h2>Make it easy to find everything contributed by each author or company</h2>\n\n\n<div class=\"wp-block-image\">\n<img width=\"752\" height=\"419\" src=\"https://cdn.poststatus.com/wp-content/uploads/2022/10/Screen-Shot-2022-10-21-at-7.42.57-AM-752x419.webp\" alt=\"\" class=\"not-transparent wp-image-141397\" />This is the only place in the plugin repository where you might (possibly) find all the plugins by a single author/vendor.</div>\n\n\n<p>Currently, it\'s not easy or even truly possible to display all the plugins by a single author in the repo. If they are the only author, or if their account is connected to all their plugins in the repo (and many aren\'t), it is only possible to see all those plugins together on the authors\' own profile pages under their Contribution History\'s “Plugins” tab. Company/owner pages that list all contributors and all company products — including themes — would do the most to help WordPress businesses using the repository.</p>\n\n\n\n<p></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:\"Fri, 21 Oct 2022 13:58: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:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:97:\"WPTavern: WordPress Documentation Team to Host Its First Online Contributor Day, October 25, 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=138800\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/wordpress-documentation-team-to-host-its-first-online-contributor-day-october-25-2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2185:\"<p>WordPress’ Documentation Team will be <a href=\"https://make.wordpress.org/docs/2022/10/19/the-first-ever-documentation-team-contributor-day-25th-october-2022/\">hosting an online Contributor Day</a> on October 25, 2022, ahead of WordPress’ anticipated 6.1 release the following week. Milana Cap, who has been volunteering with the Documentation team for years and is currently sponsored by XWP, announced the event this week.</p>\n\n\n\n<p>“The primary goal is to catch up with a lot of tasks in the team’s backlog but also it’s an opportunity for all contributors to meet, collaborate in real time, and help onboard all new contributors who need any kind of help,” Cap said.</p>\n\n\n\n<p>The virtual event will be the first of its kind for the Documentation team but follows in the footsteps of other contributors teams, including the Polyglots and Accessibility teams, which have hosted wildly successful global events that include contribution and onboarding. These types of virtual gatherings help contributors get connected and put names to faces</p>\n\n\n\n<p>New contributors are encouraged to attend, even if it’s just for a short time to see what documentation contribution is all about. Cap requested everyone who plans to attend to leave their names on the GitHub <a href=\"https://github.com/WordPress/Documentation-Issue-Tracker/issues/527\">issue</a> dedicated to the Contributor Day. It outlines the steps to begin contributing and highlights a list of tickets awaiting content review for older documentation as well as more recent block editor and end user documentation tickets. For example, there is a project board specifically for <a href=\"https://github.com/orgs/WordPress/projects/45/views/11\">high priority tickets remaining for 6.1</a>.</p>\n\n\n\n<p>The Documentation team will be kicking off the event on <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20221025T1000\">Tuesday, October 25, 2022 at 06:00 AM EDT</a> and it will run for 10 hours. Attendees can <a href=\"https://us02web.zoom.us/j/88088421252?pwd=cnlRSW84YjlwdjRtYStnVXZnV0Vwdz09\">join via Zoom</a> and are not required to stay for any length of 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:\"Thu, 20 Oct 2022 21:30:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:49:\"Post Status: Best Practices and Tools from rtCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=123187\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/best-practices-and-tools-from-rtcamp/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4143:\"<p>I\'ve been collecting <strong><a href=\"https://poststatus.com/profile/rtcamp/\">rtCamp</a></strong> news for a while — they have a great <a href=\"https://rtcamp.com/subscribe/\">monthly newsletter</a> — and here are some of the highlights worth sharing broadly.</p>\n\n\n\n<h2 id=\"h-rtlearn-rtgrowth\">rtLearn = rtGrowth</h2>\n\n\n\n<p>First of all, is <a href=\"https://learn.rtcamp.com/\"><strong>rtLearn</strong></a> — not new but not as well known as it should be. As a large and growing company well positioned in Pune, <a href=\"https://yourstory.com/2020/01/pune-tech-startup-hub-maharashtra-state-innovation-policy/amp\">India\'s tech hub</a>, rtCamp recruits new university graduates but in the spirit of <a href=\"https://en.wikipedia.org/wiki/BarCamp\"><strong>BarCamp</strong></a> and the idea of a <a href=\"https://en.wikipedia.org/wiki/Round_Table_(disambiguation)\">round table</a> (where the “rt” comes from), rtLearn mints WordPress professionals from college students, new recruits, “dropouts, freshers, or people with some work experience.” </p>\n\n\n\n<p>A year ago, rtCamp CEO and Founder <strong><a href=\"https://poststatus.com/member-spotlight-rahul-bansal/\">Rahul Bansal</a></strong> wrote that all their new hires had “gone through remote training via our rtLearn platform,” and in two years “these remote classrooms … allowed us to blow past the <a href=\"https://rtcamp.com/blog/100-rtcampers/\">100-employee mark</a>.” </p>\n\n\n\n<p>A year later, and rtCamp\'s headcount has about doubled on their path to being fully distributed.</p>\n\n\n\n<p>The rtCamp on-site campus program is a full-time, paid, six-month training course rtCamp draws some employees from. They also have a free, <strong>CC0</strong> master <a href=\"https://learn.rtcamp.com/courses/wordpress-development/\">WordPress Development course</a> anyone can take online. This is an outstanding model for WordPress workforce development, and it would be terrific if other major agencies in the space borrowed from it.</p>\n\n\n\n<h2>Compare Plugins Side by Side</h2>\n\n\n\n<p>Second, I\'ve been watching rtCamp\'s <strong><a href=\"https://wpplugincompare.com/\">WordPress Plugin Compare</a></strong> directory evolve as a really helpful site for comparing plugins side-by-side. They keep adding <a href=\"https://rtcamp.com/blog/wppc-feature-update-filter/\">more features</a> to assist in comparative analysis. </p>\n\n\n\n<h2>Sharing Expertise: Personalization </h2>\n\n\n\n<p>Recently published on the rtCamp blog — an unfolding <a href=\"https://rtcamp.com/blog/personalization-web-intro/\">series on Personalization</a> geared toward the enterprise. In an upcoming post, they\'ll have a case study involving a WordPress — Salesforce Marketing Cloud integration with user segmentation functionality that empowers marketing teams to create email campaigns connected to personalized landing pages on the WordPress site.</p>\n\n\n\n<p>If case studies, tools, and explainers are your thing, the rtCamp blog is full of treats:</p>\n\n\n\n<ul><li><a href=\"https://rtcamp.com/blog/visual-automation-framework-migration-projects/\">A Visual Automation framework for pixel perfect migration and re-platforming</a> (<a href=\"https://github.com/rtCamp/visual-automation-backstop\">GitHub</a>)</li><li><a href=\"https://rtcamp.com/case-studies/migrating-vinsolutions-kentico-cms-to-wordpress-vip/\">Migrating VinSolutions.com from Kentico CMS to WordPress VIP</a> — a client migration case study where Vinsolutions.com is brought from Kentico CMS to a WordPress VIP multisite environment — while increasing the overall website Core Web Vitals performance by 48%.</li></ul>\n\n\n\n<h2>Elementary: A Block-based Starter Theme</h2>\n\n\n\n<p>Available on Github, rtCamp has shared a starter theme for block-based, full-site editing themes with developer-friendly features: <a href=\"https://github.com/rtcamp/theme-elementary\">Elementary</a>.</p>\n\n\n\n<p>It\'s solid boilerplate following WordPress coding standards that\'s fully FSE-ready with a baked-in testing framework.</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, 20 Oct 2022 20:08:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:89:\"Post Status: A Makeover for HelpHub — and you can help the Docs Team on Contributor Day\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=137716\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/a-makeover-for-helphub-and-you-can-help-the-docs-team-on-contributor-day/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:764:\"<p>Pretty <a href=\"https://make.wordpress.org/docs/2022/10/19/new-design-for-helphub-in-wordpress-org/\">snazzy new looks</a> coming the the WordPress documentation site!</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://make.wordpress.org/docs/2022/10/19/new-design-for-helphub-in-wordpress-org/\">New design for HelpHub in WordPress.org</a></blockquote>\n</div>\n\n\n\n<p>You can help the Docs Team! Come to <a href=\"https://make.wordpress.org/docs/2022/10/19/the-first-ever-documentation-team-contributor-day-25th-october-2022/\">the first ever Documentation team Contributor Day</a> on <strong>October 25th</strong>.</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, 20 Oct 2022 19:10:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:131:\"Post Status: WordPress 6.1 RC2 • 6.1 Sneak Peek with Nick Diego • WP-CLI 2.7.1 • Help Test Plugin Dependencies Feature Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=137600\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:130:\"https://poststatus.com/wordpress-6-1-rc2-6-1-sneak-peek-with-nick-diego-wp-cli-2-7-1-help-test-plugin-dependencies-feature-plugin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18470:\"<h2 id=\"h-this-week-at-wordpress-org-october-17-2022\">This Week at WordPress.org (October 17, 2022)</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\">Get a sneak peek at WordPress 6.1 with Nick Diego. Help test 6.1 Release Candidate 2 — and the Plugin Dependencies feature plugin. Be sure to browse the 6.1 DevNotes, Field Guides, and Team Updates. WP-CLI 2.7.1 is available now. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div id=\"kt-info-box_68609b-a8\" class=\"wp-block-kadence-infobox\"><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=\"kt-info-svg-icon kt-info-svg-icon-fas_stopwatch\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"><a href=\"https://make.wordpress.org/core/2022/08/10/proposal-stop-merging-experimental-apis-from-gutenberg-to-wordpress-core/\">WordPress 6.1 </a>Release Candidate 2</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/23f3.png\" alt=\"⏳\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-2-now-available/\">WordPress 6.1 Release Candidate 2 (RC) Now Available</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9ea.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">Help Test WordPress 6.1</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f50e.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/tag/dev-notes-6-1/\">WordPress 6.1 DevNotes, Field Guides, and Team Updates</a><br /><br />> <a href=\"https://make.wordpress.org/cli/2022/10/18/wp-cli-v2-7-1-release-notes/\">WP-CLI v2.7.1 Release Notes</a></p></div></div></div>\n\n\n\n<h2 id=\"h-news\">News</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-2-now-available/\">WordPress 6.1 Release Candidate 2 (RC) Now Available</a></li><li><a href=\"https://wordpress.org/news/2022/10/wordpress-6-0-3-security-release/\">WordPress 6.0.3 Security Release</a></li><li><a href=\"https://wordpress.org/news/2022/10/episode-41-wordpress-6-1-sneak-peek-with-special-guest-nick-diego/\">WP Briefing Episode 41: WordPress 6.1 Sneak Peek with Special Guest Nick Diego</a></li><li><a href=\"https://wordpress.org/news/2022/10/the-month-in-wordpress-september-2022/\">The Month in WordPress – September 2022</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/12/call-for-testing-plugin-dependencies/\">Call for Testing: Plugin Dependencies</a></li></ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_9ee0ac-7f\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 id=\"h-wp-6-1-devnotes-and-team-updates\"><a href=\"https://make.wordpress.org/core/tag/dev-notes-6-1/\">WP 6.1 DevNotes</a> and Team Updates</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">WordPress 6.1 Field Guide</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/\">Performance Field Guide for WordPress 6.1</a></li><li><a href=\"https://make.wordpress.org/polyglots/2022/10/20/wordpress-6-1-translation-status-october-20-2022/\">WordPress 6.1 Translation Status (October 20, 2022)</a></li><li><a href=\"https://make.wordpress.org/polyglots/2022/10/11/wordpress-6-1-ready-to-be-translated/\">WordPress 6.1 ready to be translated</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/20/multisite-registration-and-activation-pages-have-new-html-and-css/\">Multisite registration and activation pages have new HTML and CSS</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/14/global-terms-removed-in-wordpress-6-1/\">Global terms removed in WordPress 6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/11/enhanced-typescript-support-in-wordpress-6-1/\">Enhanced TypeScript support in WordPress 6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/11/reference-styles-values-in-theme-json/\">Reference Styles values in theme.json</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/\">WordPress 6.1 Accessibility Improvements</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/11/miscellaneous-rest-api-improvements-in-wordpress-6-1/\">Miscellaneous REST API improvements in WordPress 6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/12/block-api-changes-in-wordpress-6-1/\">Block API changes in WordPress 6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/11/content-locking-features-and-updates/\">Content locking features and updates</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/11/simplified-data-access-with-new-react-hooks-in-wordpress-6-1/\">Simplified data access with new React hooks in WordPress 6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/09/introducing-wp_list_tableget_views_links-in-wordpress-6-1/\">Introducing WP_List_Table::get_views_links() in WordPress 6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/08/escaping-table-and-field-names-with-wpdbprepare-in-wordpress-6-1/\">Escaping Table and Field names with wpdb::prepare() in WordPress 6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/07/create-block-scaffolding-tool-updates/\">Create-block scaffolding tool updates</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/07/introduction-of-presets-across-padding-margin-and-block-gap/\">Introduction of presets across padding, margin and block gap</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/07/improved-php-performance-for-core-blocks-registration/\">Improved PHP performance for core blocks registration</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/06/introducing-update-uri-theme-header-in-wordpress-6-1/\">Introducing “Update URI” theme header in WordPress 6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/04/block-based-template-parts-in-traditional-themes/\">Block-based “template parts” in traditional themes</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/07/improvements-to-wp_query-performance-in-6-1/\">Improvements to WP_Query performance in 6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/06/new-cache-site-health-checks-in-wordpress-6-1/\">New cache Site Health checks in WordPress 6.1</a></li><li><a href=\"https://make.wordpress.org/core/2022/09/27/navigation-block-fallback-behavior-in-wp-6-1-dev-note/\">Navigation Block Fallback Behavior in WP 6.1</a></li></ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_121b9e-cb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-container-31 wp-block-columns\">\n<div class=\"wp-container-29 wp-block-column\">\n<h2 id=\"h-cli\"><a href=\"https://make.wordpress.org/cli\">CLI</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/cli/2022/10/18/wp-cli-v2-7-1-release-notes/\">WP-CLI v2.7.1 Release Notes</a></li></ul>\n\n\n\n<h2 id=\"h-community\">Community</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/community/2022/10/17/report-diverse-speaker-workshop-september-2022/\">Report: Diverse Speaker Workshop September 2022</a></li><li><a href=\"https://make.wordpress.org/community/2022/10/12/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-october-12-2022/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on October 12, 2022</a></li></ul>\n\n\n\n<h2 id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/10/03/a-week-in-core-october-4-2022/\"><a href=\"https://make.wordpress.org/core/2022/10/19/a-week-in-core-october-17-2022/\">A Week in Core – October 17, 2022</a></a></li><li><a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/\">What’s new in Gutenberg 14.3? (12 October)</a></li></ul>\n\n\n\n<h3 id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/10/17/dev-chat-summary-october-12-2022/\">Dev chat summary, October 12, 2022</a></li><li><a href=\"https://make.wordpress.org/core/2022/10/13/editor-chat-summary-october-12-2022/\">Editor chat summary: 12 October 2022</a></li></ul>\n\n\n\n<h2 id=\"h-documentation\"><a href=\"https://make.wordpress.org/docs\">Documentation</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/docs/2022/10/19/new-design-for-helphub-in-wordpress-org/\">New design for HelpHub in WordPress.org</a></li><li><a href=\"https://make.wordpress.org/updates/2022/10/17/documentation-team-update-october-17-2022/\">Documentation Team Update – October 17, 2022</a></li></ul>\n\n\n\n<h2 id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/hosting/2022/10/19/call-for-action-testing-rollback-feature/\">Call For Action – Testing Rollback Feature</a></li></ul>\n\n\n\n<h2 id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/marketing/2022/10/19/agenda-global-marketing-team-meeting-october-19-2022/\">Agenda: global Marketing Team meeting, October 19, 2022</a></li><li><a href=\"https://make.wordpress.org/marketing/2022/10/17/notes-global-marketing-team-meeting-october-12-2022/\">Notes: Global Marketing Team meeting, October 12, 2022</a></li></ul>\n\n\n\n<h2 id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/meta/2022/10/20/displaying-style-variations-for-supporting-themes/\">Displaying Style Variations for Supporting Themes</a></li><li><a href=\"https://make.wordpress.org/meta/2022/10/11/renaming-wordpress-org-support-to-documentation/\">Renaming WordPress.org Support to Documentation</a></li><li><a href=\"https://meta.trac.wordpress.org/ticket/6511\"><s>Bring back the active install growth chart</s></a> <a href=\"https://meta.trac.wordpress.org/ticket/6511\">Provide helpful plugin stats and insights</a></li></ul>\n\n\n\n<h2 id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/mobile/2022/10/18/call-for-testing-wordpress-for-android-21-0/\">Call for Testing: WordPress for Android 21.0</a></li><li><a href=\"https://make.wordpress.org/mobile/2022/10/18/call-for-testing-wordpress-for-ios-21-0/\">Call for Testing: WordPress for iOS 21.0</a></li><li><a href=\"https://make.wordpress.org/updates/2022/10/18/mobile-team-update-october-18th/\">Mobile Team Update – October 18th</a></li></ul>\n\n\n\n<h2 id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/openverse/2022/10/20/community-meeting-recap-18-october-2022/\">Community Meeting Recap (18 October 2022)</a></li></ul>\n</div>\n\n\n\n<div class=\"wp-container-30 wp-block-column\">\n<h2 id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/10/18/performance-team-meeting-summary-11-october-2022-2/\">Performance Chat Summary: 18 October 2022</a></li></ul>\n\n\n\n<h2 id=\"h-polyglots\">Polyglots</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/polyglots/2022/10/20/wordpress-6-1-translation-status-october-20-2022/\">WordPress 6.1 Translation Status (October 20, 2022)</a></li><li><a href=\"https://make.wordpress.org/polyglots/2022/10/11/wordpress-6-1-ready-to-be-translated/\">WordPress 6.1 ready to be translated</a></li></ul>\n\n\n\n<h2 id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/test/2022/10/15/fse-program-guiding-the-gutenberg-gallery-summary/\">FSE Program Guiding the Gutenberg Gallery Summary</a></li><li><a href=\"https://make.wordpress.org/test/2022/10/15/week-in-test-15-october-2022/\">Week in Test: 15 October 2022</a></li><li><a href=\"https://make.wordpress.org/updates/2022/10/17/test-team-update-17-october-2022/\">Test Team Update: 17 October 2022</a></li></ul>\n\n\n\n<h2 id=\"h-themes\"><a href=\"https://make.wordpress.org/themes\">Themes</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/updates/2022/10/18/themes-team-update-october-18-2022/\">Themes team update October 18, 2022</a></li></ul>\n\n\n\n<h2 id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/individual-learner-survey/\">How did you learn WordPress?</a></li></ul>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/training/2022/10/18/training-team-meeting-recap-for-october-11-2022/\">Training Team Meeting Recap for October 11, 2022</a></li><li><a href=\"https://make.wordpress.org/training/2022/10/17/meeting-agenda-for-october-18-2022/\">Meeting Agenda for October 18, 2022</a></li><li><a href=\"https://make.wordpress.org/training/2022/10/07/ux-feedback/\">UX Feedback</a></li></ul>\n\n\n\n<h3 id=\"h-tutorials\">Tutorials</h3>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/tutorial/uncovering-the-cover-block/\">Uncovering the Cover Block</a></li></ul>\n\n\n\n<h3 id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/?meeting=blogging-with-wordpress-2022-edition-2\">Blogging With WordPress – 2022 Edition</a></li><li><a href=\"https://learn.wordpress.org/?meeting=blogging-with-wordpress-2022-edition\">Blogging with WordPress – 2022 Edition</a></li><li><a href=\"https://learn.wordpress.org/?meeting=%E3%82%AF%E3%82%A8%E3%83%AA%E3%83%AB%E3%83%BC%E3%83%97%E3%83%96%E3%83%AD%E3%83%83%E3%82%AF%E3%81%A7%E3%83%96%E3%83%AD%E3%82%B0%E3%83%9A%E3%83%BC%E3%82%B8%E3%82%92%E4%BD%9C%E3%82%8D%E3%81%86%EF%BC%81-2\">クエリループブロックでブログページを作ろう!</a></li><li><a href=\"https://learn.wordpress.org/?meeting=%E3%82%AF%E3%82%A8%E3%83%AA%E3%83%AB%E3%83%BC%E3%83%97%E3%83%96%E3%83%AD%E3%83%83%E3%82%AF%E3%81%A7%E3%83%96%E3%83%AD%E3%82%B0%E3%83%9A%E3%83%BC%E3%82%B8%E3%82%92%E4%BD%9C%E3%82%8D%E3%81%86%EF%BC%81\">クエリループブロックでブログページを作ろう!</a></li><li><a href=\"https://learn.wordpress.org/?meeting=getting-started-with-core-contribution-bangla-part-3\">Getting Started with Core Contribution (Bangla) – Part 3</a></li><li><a href=\"https://learn.wordpress.org/?meeting=getting-started-with-core-contribution-bangla-part-2\">Getting Started with Core Contribution (Bangla) – Part 2</a></li><li><a href=\"https://learn.wordpress.org/?meeting=getting-started-with-core-contribution-bangla-part-1\">Getting Started with Core Contribution (Bangla) – Part 1</a></li></ul>\n\n\n\n<h3 id=\"h-courses\">Courses</h3>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/course/introduction-to-block-development-build-your-first-custom-block/\" target=\"_blank\" rel=\"noreferrer noopener\">Introduction to Block Development: Build your first custom block</a></li><li><a href=\"https://learn.wordpress.org/course/using-the-wordpress-data-layer/\">Using the WordPress Data Layer</a></li></ul>\n\n\n\n<h2 id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul><li><a href=\"https://meta.trac.wordpress.org/ticket/1430\">WordPress TV videos now auto-published to Youtube</a></li><li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li></ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul><li><a href=\"https://tc39.es/#proposals\">ECMAScript Proposals</a></li></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\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It\'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://cdn.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/business-membership/\">your whole team</a> can <a href=\"https://poststatus.com/post-status-membership-club/\">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\" /></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, 20 Oct 2022 18:58: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: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: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:73:\"Do The Woo Community: A WooSesh Chat with Allie Brock and Daniel Espinoza\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=73152\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://dothewoo.io/woosesh-chat-allie-brock-daniel-espinoza/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:415:\"<p>In this episode we dive into a WooCommerce headless case study and discover some insights into monitoring your clients shops. </p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woosesh-chat-allie-brock-daniel-espinoza/\">A WooSesh Chat with Allie Brock and Daniel Espinoza</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, 20 Oct 2022 10:13: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: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:60:\"Post Status: Five takes on helpful plugin stats and insights\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=137754\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/five-takes-on-helpful-plugin-stats-and-insights/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7008:\"<div class=\"wp-container-35 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Good ideas for the future of data disclosed to plugin authors using the wordpress.org repository: <br /><br />1) Identify surges of unhappy users reacting to a bad release — and the opposite, happier outcome.<br /><br />2) Use pageview analytics to estimate total potential user interest and conversion rates. <br /><br />3) Assess a plugin\'s performance with the .org search algorithm, the quality of releases, and plugin incompatibility as well as PHP compatibility issues. <br /><br />4) Collect significant user behavior data anonymously without phoning home. <br /><br />5) Just reveal all the raw data with privacy options for individual authors — no interpretive analysis on wordpress.org.<br /><br />BONUS: Let\'s take this discussion somewhere else! </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">2</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<p class=\"has-drop-cap\">In the renamed <strong>Trac</strong> <a href=\"https://meta.trac.wordpress.org/ticket/6511\">ticket</a> <strong>Mark Zahra</strong> opened for the WordPress.org Active Install Growth charts (“<a href=\"https://meta.trac.wordpress.org/ticket/6511\" target=\"_blank\" rel=\"noreferrer noopener\">#6511: Provide helpful plugin stats and insights</a>“), the helpful comments offering actionable suggestions comprise about 5% of the total. At least that makes it easy to summarize the five useful ones here.</p>\n\n\n\n<p>First of all, <a href=\"https://meta.trac.wordpress.org/ticket/6511#comment:101\">Matt Cromwell</a> called for a new and proper discussion in a more appropriate setting where stakeholders can “start a process of talking publicly and with intention and strategy on what it would look like to have real actionable plugin/theme stats that authors need.” To that end, Matt proposed closing the Trac discussion:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Let\'s close this ticket as “wont fix” and move on to more important and long term strategies that actually benefit the plugin community. The longer we haggle over these ineffective charts, the longer it\'ll take to actually start getting real plugin data that is meaningful.</p></blockquote>\n\n\n\n<h2 id=\"h-unhappy-users-reacting-to-a-bad-release\">Unhappy Users Reacting to a Bad Release</h2>\n\n\n\n<p><strong>Natalie MacLees</strong> describes <a href=\"https://meta.trac.wordpress.org/ticket/6511#comment:30\">monitoring incoming support requests relative to the current number of active installs</a> and any dip in install growth following releases with “new features” or “large changes” to “judge whether a change to a plugin was a positive or negative one.” <strong>Benjamin Intal</strong> echoed this, and previously <strong>Steve Burge</strong> said he has a similar practice. No doubt others do too. </p>\n\n\n\n<h2>Total Potential User Interest</h2>\n\n\n\n<p><strong>Sybre Waaijer</strong> suggested <a href=\"https://meta.trac.wordpress.org/ticket/6511#comment:62\">sharing page views and bounce rates for individual plugin pages</a>. Paired with install stats, this would give plugin owners a conversion rate for potential customers coming through wp.org.</p>\n\n\n\n<h2>Site Search Performance, Release Quality, and Compatibility</h2>\n\n\n\n<p><strong>Amber Hinds</strong>‘ <a href=\"https://meta.trac.wordpress.org/ticket/6511#comment:105\">blue sky wishlist</a> starts with “Things that tell us if our readme [which is read by the repo\'s search algorithm] and other ranking factors are on track.” These are smart, useful metrics:</p>\n\n\n\n<ul class=\"has-theme-palette-8-background-color has-background\"><li>Number of searches (or impressions) for target keywords</li><li>Average ranking for target keywords for timeframe (month)</li><li>Conversion rates from impression to install for target keywords</li></ul>\n\n\n\n<p>So are “Things that tell us if we may have a problem with our plugin” like:</p>\n\n\n\n<ul class=\"has-theme-palette-8-background-color has-background\"><li>Number of deactivations per timeframe (month, preferably week)</li><li>Number of deletions per timeframe (month, preferably week)</li><li>Average time from activation to deactivation or deletion</li></ul>\n\n\n\n<p>And finally, “Things for better testing of releases” could include:</p>\n\n\n\n<ul class=\"has-theme-palette-8-background-color has-background\"><li>Top 20 plugins also active [on a site with your plugin installed and active]</li><li>Top 20 themes also active</li><li>PHP versions (percentage)</li><li>WordPress versions (percentage)</li></ul>\n\n\n\n<h2>Sophisticated Behavioral Data Without Telemetry</h2>\n\n\n\n<p><strong>Vito Peleg</strong> shared <a href=\"https://meta.trac.wordpress.org/ticket/6511#comment:106\">a list of his preferred metrics</a> from the wp.org repo <a href=\"https://twitter.com/VitoPeleg/status/1577784069596876800\">on Twitter</a>, which <strong>Matt Mullenweg</strong> indicated “are very doable.” <strong>Mark Zahra</strong> brought Vito\'s ideas into the Trac ticket discussion:</p>\n\n\n\n<ul class=\"has-theme-palette-8-background-color has-background\"><li>Time to churn (to deactivate) signals good/bad onboarding, UI/UX</li><li>Repeat installs – how many users (anonymized) install on multiple sites for community opp & advocacy</li><li>Time to result: dev can choose 1 single hook to trigger as “result” and the calculation checks how long from install to get there. By changing the placement of the hook devs can optimize entire flows.</li><li>Inner page tracker: which/how many inner plugin pages users visit</li><li>PHP ver distribution, general country-based installs, active install to review ratio</li></ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Some of these are very doable.</p>— Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1577981852857475072?ref_src=twsrc%5Etfw\">October 6, 2022</a></blockquote>\n</div>\n\n\n\n<h2>Open All the Data, Let the Community Interpret It</h2>\n\n\n\n<p>Finally, <a href=\"https://poststatus.slack.com/archives/CHNM7Q7T8/p1665703515129299\">in <strong>Post Status Slack</strong></a>, <strong>Drupal.org</strong> has been recommended as a model for simply revealing all the raw data without interpretation and leaving that to the community.</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, 20 Oct 2022 06:36: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:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:71:\"Post Status: How to sell plugins, themes, and services on WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=137746\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/how-to-sell-plugins-themes-and-services-on-wordpress-com/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:652:\"<ol><li>Read the <a href=\"https://developer.wordpress.com/wordpress-com-marketplace/submitting-a-product-to-wordpress-com/\">FAQ</a>.</li><li>Fill out <a href=\"https://wordpress.com/partners/\">this form</a>.</li><li>Agree to the <a href=\"https://developer.wordpress.com/wordpress-com-marketplace/wordpress-com-marketplace-vendor-agreement/\">WordPress.com Marketplace Vendor Agreement</a>.</li><li>If needed, integrate with the <a href=\"https://developer.wordpress.com/wordpress-com-marketplace/vendor-apis/\">WordPress.com Store Licensing API</a>.</li></ol>\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, 20 Oct 2022 04:40:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:97:\"WPTavern: Discussion on Replacing Plugin Active Install Growth Data Continues Behind Closed Doors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=138768\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://wptavern.com/discussion-on-replacing-plugin-active-install-growth-data-continues-behind-closed-doors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10185:\"<p>Earlier this month WordPress.org meta contributors <a href=\"https://wptavern.com/wordpress-org-removes-active-install-growth-data-for-plugins\">removed the active install growth chart from plugins</a>, sending plugin developers who relied on this data into a state of dismay and outrage. The commit cited “insufficient data obfuscation” but there was no clear communication about when and where this decision had been made. Developers <a href=\"https://wptavern.com/wordpress-org-plugin-developers-demand-transparency-regarding-the-removal-of-active-install-growth-data\">demanded more transparency</a> around the charts’ removal but received no clear answers.</p>\n\n\n\n<p>Multiple opportunities to communicate the details behind the decision were deliberately forgone, as speculation mounted. Several contributors not directly involved in the conversations prematurely insisted it was removed due to a security or privacy concern, but Samuel Otto Wood has unequivocally confirmed that it was neither of these things.</p>\n\n\n\n<p>In a recent appearance on the <a href=\"https://wpwatercooler.com/wpwatercooler/ep432-solutions-to-the-active-growth-problem/\">WPwatercooler podcast</a>, Wood elaborated on the decision, which he says was made in May through private channels via Slack DMs in a discussion initiated by Matt Mullenweg.</p>\n\n\n\n<p>“The reason is really quite simple,” Wood said. “It was removed because by and large, nobody was using them. Nobody was using the chart itself. By and large, the chart was not useful to the majority, and it didn’t really fit the purpose we had for it, that we had in mind when we implemented it.”</p>\n\n\n\n<p>Wood said the active growth chart was intended to just show growth or decline of a plugin on a weekly basis, but the data wasn’t working as intended:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>People wanted that feedback on whether plugin’s growing, whether it’s shrinking, et cetera. And that’s valuable information for developers to have, it’s valuable information users to know. But it really wasn’t working as that.</p>\n\n\n\n<p>The data that it provided was a percentage based data, and it was a very weak percentage based data. So by and large, the majority of use of that data was people scraping the data and using it to work backwards to the exact quote, exact numbers</p>\n\n\n\n<p>That was entirely the problem was that people were largely using it to get those numbers. Now, that’s not itself bad, but a, the reverse math didn’t work. It was wrong for a number of reasons, mainly because we were doing such a way obfuscating the data in such a way that it made that number wrong.</p>\n\n\n\n<p>Second, Actually, it’s kind of funny. It actually always gave numbers a bit too high, so it was giving people the wrong impression. Third, it really, people trusted it as an active number, as a number of active cells to the point where, to the point where they, they relied on it to make decisions and things like that. It was not a good idea.</p>\n</blockquote>\n\n\n\n<p>Although Otto was not involved in working on the project at the time, he was privy to the discussion and relayed some of the details:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>I read through all that discussion and we worked, they worked on it for a long, Scott and several people tried various things before removing it. They adjusted the values, they adjusted numbers. They, they went through a ridiculous amount of iteration and in the end, none of it worked. People were still using it even though it was giving them basically garbage. So finally removing it was the only thing to do. We did have a plan for replacing it. We just didn’t have a plan for replacing it immediately. Nevertheless, giving them active install count numbers that are wrong is more harmful, we felt, to both users and developers interests than simply not giving them at all. So that’s why it was removed.</p>\n</blockquote>\n\n\n\n<p>The concern podcast host Sé Reed and guest Matt Cromwell highlighted was that the decision was communicated in such a way that it suggested it was security related. Since it was not a sensitive security or privacy issue, Reed asked why was it handled in a private chat instead of the meta channel when the decision had such a profound impact on developers being able to track the trajectory of their plugins.</p>\n\n\n\n<p>Since the inaccuracy of the charts was well-known to those more intimately acquainted with the problem, Wood said its removal was “not quite the big deal” that everyone else ended up perceiving it to be. They did not anticipate the firestorm the charts’ removal would create in the <a href=\"https://meta.trac.wordpress.org/ticket/6511\">trac ticket</a> where developers were pleading to have them restored.</p>\n\n\n\n<p>“The physical visual chart itself is not so instrumental to the way I operate things,” GiveWP founder Matt Cromwell said. “But it’s the act of removing it without any conversation whatsoever.</p>\n\n\n\n<p>“And what does that mean for the long run of data about plugins on.org and the viability of their, of us, continuing to have them? That’s the real question. It’s an indicator of an underlying problem that isn’t getting better.”</p>\n\n\n\n<p>This incident has sparked discussions about <a href=\"https://thewpminute.com/what-should-plugin-developers-expect-from-wordpress/\">what kind of partnership plugin developers should expect from WordPress.org</a>, and whether it’s time they looked for support from one another instead of the platform, as Eric Karkovack suggested on The WP Minute. In light of plugin developers losing more valuable data that hasn’t been replaced, Alex Denning, managing director of Ellipsis, a digital marketing agency, makes the case that <a href=\"https://getellipsis.com/blog/org-is-ineffective-plugin-distribution/\">WordPress.org is ineffective for plugin distribution in 2022</a>. He contends that new WordPress plugins are not passing the 100k, 500k , or 1m+ install thresholds and the directory isn’t giving plugins organic reach.</p>\n\n\n\n<p>The focus of the ticket has changed from calling on WordPress.org to bring back the active growth charts to be more about brainstorming helpful plugin stats and insights that plugin developers would like to see. It is still receiving angry and frustrated comments from developers who believe the data should belong to the community.</p>\n\n\n\n<p>“I cannot emphasize enough that conversations about what to replace the active growth chart with should be happening in a public Slack channel or on a Trac ticket,” Equalize Digital CEO Amber Hinds said. “This data should belong to the community and the community should be able to participate in deciding how (or not) to display it.”</p>\n\n\n\n<p>The reasons that purportedly necessitate obfuscation have not been clearly explained, but many participants in the discussion have urged WordPress.org to simply publish the raw data so it can be accessed and processed independently of the platform. @Starbuck <a href=\"https://meta.trac.wordpress.org/ticket/6511#comment:108\">suggests</a> the community would then be able to create sites that render the data in meaningful and interesting ways.</p>\n\n\n\n<p>WordPress developers want far more data than was previously available. Hinds <a href=\"https://meta.trac.wordpress.org/ticket/6511#comment:105\">requested</a> an assortment of data points that may or may not be possible:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Things that tell us if our readme and other ranking factors are on track:</p>\n\n\n\n<ul>\n<li>Number of searches (or impressions) for target keywords</li>\n\n\n\n<li>Average ranking for target keywords for timeframe (month)</li>\n\n\n\n<li>Conversion rates from impression to install for target keywords</li>\n</ul>\n\n\n\n<p>Things that tell us if we may have a problem with our plugin:</p>\n\n\n\n<ul>\n<li>Number of deactivations per timeframe (month, preferably week)</li>\n\n\n\n<li>Number of deletions per timeframe (month, preferably week)</li>\n\n\n\n<li>Average time from activation to deactivation or deletion</li>\n</ul>\n\n\n\n<p>Things for better testing of releases:</p>\n\n\n\n<ul>\n<li>Top 20 plugins also active</li>\n\n\n\n<li>Top 20 themes also active</li>\n\n\n\n<li>PHP versions (percentage)</li>\n\n\n\n<li>WordPress versions (percentage)</li>\n</ul>\n</blockquote>\n\n\n\n<p>Atarim CEO Vito Peleg <a href=\"https://twitter.com/VitoPeleg/status/1577784069596876800\">suggested</a> some other tools for monitoring growth/decline, to which Matt Mullenweg responded that some of the ideas were “very doable:” </p>\n\n\n\n<ul>\n<li>Time to churn (to deactivate) signals good/bad onboarding, UI/UX</li>\n\n\n\n<li>Repeat installs – how many users (anonymized) install on multiple sites for community opp & advocacy</li>\n\n\n\n<li>Time to result: dev can choose 1 single hook to trigger as “result” and the calculation checks how long from install to get there. By changing the placement of the hook devs can optimize entire flows.</li>\n\n\n\n<li>Inner page tracker: which/how many inner plugin pages users visit</li>\n\n\n\n<li>PHP ver distribution, general country-based installs, active install to review ratio</li>\n</ul>\n\n\n\n<p>Wood confirmed that the active install growth charts are not coming back in their previous form and that the endpoint people were scraping before will remain disabled. He said those involved in the private discussion are monitoring the Trac ticket for feedback. </p>\n\n\n\n<p>“What’s going to happen is, that the active install count instead of being rounded to the nearest digit is going to be changed,” Wood said. “I don’t know the exact break points cutoffs, but as an example show individual up to 50, then round to nearest 10 until thousand and nearest hundred until 10,000, for example. So that we are making the active install count much more fine grained than it has been. So in that sense, yes, we’re giving you the data. It’s not going to be exact numbers, but it’s going be much better than it was before. We’re still working on doing that.”</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, 20 Oct 2022 04:38: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: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:101:\"Post Status: November: Register to speak at WordFest Live — and come to WordPress Accessibility Day\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=137720\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/register-to-speak-at-wordfest-live/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:840:\"<ul><li>Coming up on <strong>November 18</strong>, <strong>WordFest Live</strong> will once again <em>“support and promote positive well-being and mental health within remote working communities.”</em> <a href=\"https://www.wordfest.live/2022/november/\">REGISTER →</a></li><li>And don\'t forget <strong>WordPress Accessibility Day</strong> on <strong>November 2-3</strong>! <strong><a href=\"https://wpaccessibility.day/\">REGISTER →</a></strong></li><li>Then on <strong>November 21</strong>, it\'s <strong>Alicia St. Rose</strong> of <strong>WP With Heart </strong>giving a <strong>Meetup</strong> talk on <a href=\"https://www.meetup.com/wordpress-accessibility-meetup-group/events/287994860/\">Being an A11y with Your Content</a>.</li></ul>\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, 20 Oct 2022 03:37: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:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:70:\"WPTavern: #47 – Adam Silverstein on the State of Images 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:48:\"https://wptavern.com/?post_type=podcast&p=138682\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wptavern.com/podcast/47-adam-silverstein-on-the-state-of-images-in-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:57784:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> 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 state of images in WordPress.</p>\n\n\n\n<p>If you’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’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea featured on the show. Head over to WPTavern.com forward slash contact forward slash jukebox and use the contact form there.</p>\n\n\n\n<p>So on the podcast today, we have Adam Silverstein. Adam is a WordPress core comitter, where he works to fix bugs and improve modern web capabilities. As a developer relations engineer in the content ecosystem team at Google, he works to invigorate the open web by empowering and educating developers.</p>\n\n\n\n<p>At the recent WordCamp US he gave a presentation entitled images on the web, past, present and future. In it, he outlined his thoughts on where the web is going in terms of support for different image formats.</p>\n\n\n\n<p>Alongside text images are the bedrock of webpages. We browse the internet and expect pages to have images of all forms. Photos, illustrations, charts and images to convey additional meaning to the text.</p>\n\n\n\n<p>But how do the images actually get on the page? WordPress makes handling images pretty easy, and Adam explains what happens when you upload an image to the media library and then display it on a page or post in a browser.</p>\n\n\n\n<p>We discussed the fact that different image sizes are created automatically by WordPress, which can be used in a variety of contexts across your website. You’ve likely heard of many of them. But perhaps you have not thought about which image format belongs where.</p>\n\n\n\n<p>As with code, the technology behind images does not stand still. New image formats are being created all the time, and are being supported at differing rates by the major browser vendors.</p>\n\n\n\n<p>In the past, we typically used JPEG. GIF or PNG files to display images on our websites, but there’s good reason to think about adopting other defaults in the near future. We discussed some of these new formats, such as WebP, AVIF and JPEG XL, and find out how they are speeding up website loading times because of their smaller file sizes.</p>\n\n\n\n<p>We also get into how you can optimize your images and how plugins and SaaS solutions can reduce the size of your files before or after you upload them to your WordPress install.</p>\n\n\n\n<p>Adam has some good advice about a topic which is becoming increasingly important, page load time. And if you’ve never given the serious thought, this is a great podcast episode for you.</p>\n\n\n\n<p>Typically when we record the podcast, there’s not a lot of background noise. But that’s not always the case. Over the coming weeks, I’ll be bringing you recordings from a recent trip to WordCamp US 2022, and you might notice that the recordings have a little echo or other strange audio artifacts. Whilst the podcasts are more than listenable, I hope that you understand that the vagaries of the real world were at play.</p>\n\n\n\n<p>If you’re interested in finding out more, you can find all the links in the show notes by heading over to WPTavern.com forward slash podcast. Where you’ll find all of the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Adam Silverstein.</p>\n\n\n\n<p>I am joined on the podcast today by Adam Silverstein. Did I get that right?</p>\n\n\n\n<p>[00:04:38] <strong>Adam Silverstein:</strong> You did. That’s the way I like to pronounce it.</p>\n\n\n\n<p>[00:04:40] <strong>Nathan Wrigley:</strong> Yeah. Perfect. Adam is here because he did a presentation at Word Camp US this year. What was the presentation about Adam?</p>\n\n\n\n<p>[00:04:46] <strong>Adam Silverstein:</strong> It was images on the web, past, present, and future. So kind of like a history of images and also what’s coming in the future for modern image formats.</p>\n\n\n\n<p>[00:04:54] <strong>Nathan Wrigley:</strong> Okay. We’ll delve into that in a moment, but before we do, would you just give us the two minute potted history of Adam. How it is that you’ve come to speak at a WordCamp.</p>\n\n\n\n<p>[00:05:02] <strong>Adam Silverstein:</strong> Sure. Yeah. I mean, I used to build sites in, uh, Dreamweaver. Then I discovered WordPress as a way to let my clients be able to edit their content. Then one day I decided I should contribute back to WordPress. I became super involved in Core and help rewrite revisions for 3.6. Eventually, I became a core comitter. And, worked at agency, 10up, for quite a while, and then eventually wound up on the CMS team at Google. Working on the web platform, trying to make the web platform better. And I still work on WordPress quite a bit in that role.</p>\n\n\n\n<p>[00:05:30] <strong>Nathan Wrigley:</strong> Google seemed to be doing a lot more with WordPress.</p>\n\n\n\n<p>[00:05:33] <strong>Adam Silverstein:</strong> Absolutely. Since about 2017 when they started showing up at every WordCamp. And also they have that first party plugin Site Kit, which is their own plugin that’s very well supported that connects your WordPress site to Google Services.</p>\n\n\n\n<p>[00:05:45] <strong>Nathan Wrigley:</strong> Yeah, we spoke to Felix a few episodes ago. So, if you’re into Site Kit and things like that, you can search for the Felix Arntz episode. But we’re here to talk about images today. And I’m going to lead off with something which is going to make me sound incredibly ignorant, and apologize for that.</p>\n\n\n\n<p>And that is simply this. When I visit a webpage or I’m building a website, images basically just magically appear. They’re on my computer. I see that there’s an image, there’s a file name and a file format, JPEG and so on and so forth. But I honestly have no idea how the browser makes the image appear. I don’t know what the mystery voodoo that’s going on in the background to turn a piece of code, I’m guessing, into something visible on the screen. So ridiculous as it may sound. How do we even get images on the web? How does it work?</p>\n\n\n\n<p>[00:06:31] <strong>Adam Silverstein:</strong> Yeah, so it’s not a stupid question because it’s it’s incredibly complex, actually how browsers deal with images. But at a very basic level, typically there’s a lot of ways images actually appear on webpages, because it could be in your css or you could load it dynamically with JavaScript.</p>\n\n\n\n<p>But in a normal HTML context, you have an image tag, and that image tag has a url. When the browser first gets your HTML page, it goes through a parsing phase where it tries to decipher what all the elements that I’m gonna need to construct this visual page. What CSS do I need, what images do I need?</p>\n\n\n\n<p>So it goes through the HTML and each time it encounters an image. It makes another request back to your web server, that’s running WordPress. And then that image is brought back to the browser. Now that’s a binary format, that image. So the browser also has to have a capability of decoding that image. That’s where support for different image formats come in, and all the browsers support all the formats that we’re used to.</p>\n\n\n\n<p>But then there’s these more modern formats that maybe aren’t supported. That’s kind of the simple version of it, is the browser finds the reference that you have on your HTML. Goes out and retrieves it, just like it does any asset, and then it decompresses it and puts it on your display.</p>\n\n\n\n<p>[00:07:37] <strong>Nathan Wrigley:</strong> If I was to look at the binary code, which made up the image. Which I presume is possible? Is it just a combination of letters, numbers, and characters?</p>\n\n\n\n<p>[00:07:46] <strong>Adam Silverstein:</strong> I mean, it’s binary encoding, so I don’t, I don’t actually know what, it’s eight bit probably, or 16 bit encoding. But you’ll have, typically at the first bites of an image will be like a header block. That defines what the image is, the meta information about the image. And then you’ll have the actual data of the image. And that’s in chunks. And it depends on how, what image compression format you’re using.</p>\n\n\n\n<p>But typically images are compressed. So you have some information about that compression in the header, and then you have the chunks that make up the file. But it wouldn’t be something, if you looked at it, it wouldn’t make any sense to a human.</p>\n\n\n\n<p>[00:08:17] <strong>Nathan Wrigley:</strong> Right.</p>\n\n\n\n<p>[00:08:18] <strong>Adam Silverstein:</strong> It would just be like binary data, just a bunch of numbers.</p>\n\n\n\n<p>[00:08:20] <strong>Nathan Wrigley:</strong> It kind of reminds me a little bit of TCPIP packets, you know, it’s surrounded with metadata to give, well, in this case it would be the, the OS stack. But, to give the browser information about what’s coming down the pipe in the next moment.</p>\n\n\n\n<p>[00:08:32] <strong>Adam Silverstein:</strong> Right.</p>\n\n\n\n<p>[00:08:33] <strong>Nathan Wrigley:</strong> So how big it is, what the dimensions are, and so on and so forth. And then each little bit will render I guess a pixel or something like that.</p>\n\n\n\n<p>[00:08:40] <strong>Adam Silverstein:</strong> Exactly. You could think of it that way. But you know, in a lot of these compression engines, it’s actually like an eight by eight block, and then there’s more detail. It’s very complicated really.</p>\n\n\n\n<p>And even the thing about, like, I very much simplified the how the webpage is loaded because the browser has to decide which resources to load first and which to prioritize. And also just think about an image tag. Image tags now typically have a source set attribute, which indicates which size image we want, depending on the break point that we’re in.</p>\n\n\n\n<p>So the browser has to figure out that information as well. It’s quite complex and people have written whole articles on it. So if you’re interested in it, there’s, like in my talk, I’ve got like a links document and there’s some links that I’ve put out to like how browsers work. It is very interesting to understand and I think it, like, can help inform, just the more you understand that, the more you understand why trying to optimize performance is so complex.</p>\n\n\n\n<p>[00:09:32] <strong>Nathan Wrigley:</strong> It really does amaze me, and these days, images on the connection at least that I have in my home, seem to load more or less instantaneously, but I remember going back in the day when it was dial up, this laborious line by line creation of the image. You could watch the image load and it would just sort of generate going down. Do you remember seeing all of that?</p>\n\n\n\n<p>[00:09:51] <strong>Adam Silverstein:</strong> You could see it loading.</p>\n\n\n\n<p>[00:09:52] <strong>Nathan Wrigley:</strong> You could actually see the image loading.</p>\n\n\n\n<p>[00:09:53] <strong>Adam Silverstein:</strong> And you could simulate that, you know, in Chrome using the throttling, in Chrome dev. But the other thing to remember is that, we’re a little privileged here. We have very high speed connections. We have high powered devices, but if you look at the world as a whole, that’s really not the case. There’s still a lot of people in the world who are using low powered, they’re using a phone, it’s not like a smartphone, like an iPhone. It’s a very low powered device. So even just the decoding of the images can be expensive.</p>\n\n\n\n<p>And then the bandwidth thing,. Some people, a lot of places in the world, people are paying for bandwidth. So the more bandwidth you use. So they may have images turned off or they may be in a low data mode. A lot of phones support a low data mode where they’ll try to reduce the amount of data that they’re using.</p>\n\n\n\n<p>Yeah, it’s interesting. One of the things we introduced recently into Word Press Core is native lazy loading of images. So this is something we used to do in JavaScript, but now is built into browsers. And what it does is it prevents the images that are off your view port from loading until you start scrolling down. Before you reach them, when you start scrolling, as you get closer to the where they’re gonna appear, then it will load those images. So, of course this is great for saving resource because when your page loads, if it’s a long page with many images, you don’t have to load all those images unless and until the user starts scrolling down the page.</p>\n\n\n\n<p>And this sounds great, and especially at, in a high speed connection environment, it works great. But someone gave the feedback during the process of introducing this, that they work on a low bandwidth connection. And what they like to do is start loading the page and then they switch to another tab and they wait till everything loads and then they come back and they read all their content. But with lazy loading, it doesn’t work very well because suddenly they scroll a little bit and now they have to wait for another image to load.</p>\n\n\n\n<p>[00:11:26] <strong>Nathan Wrigley:</strong> I’m imagining that typical user is not browsing the web in that way. But that is an interesting.</p>\n\n\n\n<p>[00:11:31] <strong>Adam Silverstein:</strong> Isn’t it?</p>\n\n\n\n<p>[00:11:31] <strong>Nathan Wrigley:</strong> Is an interesting case.</p>\n\n\n\n<p>[00:11:32] <strong>Adam Silverstein:</strong> What it just brings up is that you really have to think about your users. When you’re trying to optimize your site, it’s not just optimizing for yourself, it’s optimizing for your users. And that’s why having real user metrics is so valuable. Collecting actual field data about how people are experiencing your website, as opposed to doing lab tests like we are running lighthouse or page speed insights to try to figure out like, oh, how’s my site performing? That gives you one metric, but that doesn’t tell you how people actually in the wild experience your website. If most people have low bandwidth connections, that’s gonna be really different than what you might get from a local test.</p>\n\n\n\n<p>[00:12:03] <strong>Nathan Wrigley:</strong> Let’s just pivot a little bit and talk about the different types of images there are. I would imagine almost everybody is familiar with the regular, the usual suspects, shall we say.</p>\n\n\n\n<p>[00:12:12] <strong>Adam Silverstein:</strong> Sure.</p>\n\n\n\n<p>[00:12:12] <strong>Nathan Wrigley:</strong> You know, the JPEGs and the PNGs, and don’t even know if that’s how you pronounce it. Some people I’ve heard say, ping. But I always say PNG and I say GIF.</p>\n\n\n\n<p>[00:12:20] <strong>Adam Silverstein:</strong> Yes, and I say GIF.</p>\n\n\n\n<p>[00:12:21] <strong>Nathan Wrigley:</strong> Okay, yeah, but there’s all of these. There’s more, which we’ll get onto later. But presumably there’s dozens more that are not typically used on the web. Why have these formats evolved over time? Why don’t we just have one?</p>\n\n\n\n<p>[00:12:33] <strong>Adam Silverstein:</strong> Right, that’s a great question, I mean, uh, the GIF format came out 35 years ago, and it pretty much did everything we needed to do, right? It could display images, it had animation, it had transparency. Wow, like images on the web. That was actually a big deal at the time. But there were some limitations. It only had 256 colors. So if you wanted to make a photograph, you had to dither the colors and it only had lossless compression, which is not really that efficient. You know, you maybe get 10 or 15%.</p>\n\n\n\n<p>And it also had copyright issues. The LZW compression algorithm that was in GIF, there were copyright holders. Big corporations and the free software movement didn’t feel that they could trust this format. That’s part of why PNG came about 15 years ago, was as a response to the limitations of the compression algorithm, the copyrights. Of course PNG also added alpha transparency, which is an improved version of transparency because you can define opacity on a per pixel basis, and this lets you create an image with a transparent background that’s got like smooth edges. Like GIF images with transparent have those like blocky edges. But with a PNG, you can create a gradual fading to opacity.</p>\n\n\n\n<p>And that was a big improvement. So it actually added a really useful feature. It’s great for product images, PNGs. Of course, JPEG introduced lossy compression, which let you just tune your compression to whatever level you wanted. You could get 10 times smaller images that still look good, which was really important at that time. But you could also fine tune that if you were a photographer and you wanted higher quality, you could choose that higher quality setting. That was really unique. GIF didn’t have that, right.</p>\n\n\n\n<p>And SVG of course is the fourth kind of major one that we use on the web. And that’s just like very different. It’s for illustrations. It’s vector based instead of raster.</p>\n\n\n\n<p>[00:14:10] <strong>Nathan Wrigley:</strong> It’s a file format isn’t it?</p>\n\n\n\n<p>[00:14:12] <strong>Adam Silverstein:</strong> It is, it’s actually XML, think.</p>\n\n\n\n<p>[00:14:13] <strong>Nathan Wrigley:</strong> Yeah.</p>\n\n\n\n<p>[00:14:14] <strong>Adam Silverstein:</strong> Unfortunately it also includes scripting, which means that we don’t support it in core because of the security concerns. But it’s also very specific to like illustration type formats. That’s where it really shines. It has some big advantages. It can be styled with css. You can’t do that with other image formats. What I’m trying to get at is that each format introduced new capabilities that were important at the time.</p>\n\n\n\n<p>We started to talk about modern image formats, which I include WebP in, even though it’s 12 years old at this point. What’s really cool about WebP is, it kind of combines all the features that came before. So it has the alpha transparency of PNG, but it also has the lossy compression of JPEG.</p>\n\n\n\n<p>So suddenly you can take a transparent PNG and you get 80% improved compression, by making it into a transparent WebP. You still get all the features you need, the alpha transparency, but the compression is lossy now, which is impossible for we didn’t have a format that had both lossy and alpha transparency.</p>\n\n\n\n<p>WebP kind of is like, essentially trying to be all the things you need. Like if we had started with WebP, we probably wouldn’t have ever needed another format, because it supports animation, it supports lossy and lossless compression, it supports alpha transparency. It also has better compression than JPEG, like 30% better on average for the same quality. So it’s a big improvement.</p>\n\n\n\n<p>Then there’s a couple other formats that are upcoming, I would say. AVIF is probably the next one. It was just, support was just announced in Safari for AVIF. So Edge is the only remaining browser, major browser, that doesn’t support it. And the big promise of AVIF really over WebP is not on features, it’s just the compression that it achieves. And it’s able to achieve a 50% improvement over JPEG. So it’s very promising.</p>\n\n\n\n<p>And then the one other one that’s, that’s kind of coming up that’s even newer is called JPEG XL. And this is from the same group that made JPEG and it’s just like a way, way better compression, like AVIF, but it has more affinity to JPEG so it works better with existing JPEGs. Like, it can losslessly recode existing JPEGs. The problem with JPEG XL, at least right now, is that it’s so new that it’s not really supported anywhere.</p>\n\n\n\n<p>So there’s a couple things that have happened. There’s been a lot of advances in compression over the years. A lot of them actually related to video, because we’ve, we started streaming video on the web and a lot of investment went into making those compressions better. And then those, like the AVI video format is the basis, the same compression, forms the basis of AVIF, hence the naming similarity.</p>\n\n\n\n<p>I’m not sure about the WebP, the history of, of like where that compression algorithm came from, but the, the goal was to create something that was better than JPEG. Higher quality at the same size, or smaller size at the same quality. You can think of it in, in either way.</p>\n\n\n\n<p>[00:16:48] <strong>Nathan Wrigley:</strong> Yeah. I remember back in the day, I hate to age myself in this way, but I remember Internet Explorer six, and the enormous fun that we had with trying to get transparency and the sort of kludges that you had to.</p>\n\n\n\n<p>[00:17:00] <strong>Adam Silverstein:</strong> To get it wo work?</p>\n\n\n\n<p>[00:17:03] <strong>Nathan Wrigley:</strong> Yeah, a little JavaScript snippet so that you could get transparency and so on. And so that tells me that, at certain points in. history, certain image formats have not been available in browsers. Broadly speaking, there’s probably three or four browsers that the majority of people on Earth are using these days. We know what they’re called. But do they support all of these? Really, the reason I’m asking this question is, let’s say I’ve got a website and I’ve got 10,000 images on website.</p>\n\n\n\n<p>And I, I now have learned that there’s a potentially 30% benefit in getting them rendered as, let’s say, WebP or, or any of the other ones that you mentioned.</p>\n\n\n\n<p>[00:17:37] <strong>Adam Silverstein:</strong> Yeah.</p>\n\n\n\n<p>[00:17:37] <strong>Nathan Wrigley:</strong> Would you say it’s worthwhile doing that work and re rendering them as, let’s say, WebP or something like that? Or should I just carry on and do the new formats for the new images? Or like I said, go back and redo them all?</p>\n\n\n\n<p>[00:17:50] <strong>Adam Silverstein:</strong> Yeah, I mean, it probably depends on how much actual traffic you get on those older posts. I think a lot of people have older posts on their site that get very little traffic, and then I would say it’s probably not worth updating it. With the filter that we have in place in core to control the output, you can use regenerate images and regenerate all your old images.</p>\n\n\n\n<p>And get that WebP benefit, like switch from JPEG to WebP for your old files. There are some caveats there. You need to make sure that the images have been inserted from the editor so that they’re actually replaced in the HTML. Because if you’re changing all your image file names, you don’t want to have broken images in your old posts.</p>\n\n\n\n<p>So WordPress does do that on the fly, where we, if you insert an image from the editor, then it has like a WP image class name. So we can identify the source image and then we go and we, we build that source set into the HTML by looking at the metadata about the image. So when you do that regenerate images, it updates the metadata and therefore you’ll get the new images even in your old posts.</p>\n\n\n\n<p>But that’s not guaranteed. If you have really old posts or they don’t have that WP class, and then for some reason, because you maybe built it with a page builder tool, for example, that doesn’t include those, there are scenarios where that could break your images. And all the regenerate images plugins have options around this.</p>\n\n\n\n<p>Like um, WPCLI, you know, you can have it not delete the old images. So if you have URLs that are still out there referring to the old images, that’ll work. Or another example is you might have a third party site that has embedded your image. If you’re okay with that and you don’t want to break that, then you want to avoid changing your file name.</p>\n\n\n\n<p>[00:19:13] <strong>Nathan Wrigley:</strong> Yeah.</p>\n\n\n\n<p>[00:19:13] <strong>Adam Silverstein:</strong> So it depends a lot on your use case.</p>\n\n\n\n<p>[00:19:15] <strong>Nathan Wrigley:</strong> Yeah. Caveat emptor really. Just give it a bit of thought. In terms of the browsers. What is the support like for, well obviously we know that the usual suspects that we mentioned at the beginning. The age old ones, GIFs and PNGs and JPEGs, that’s fine?</p>\n\n\n\n<p>[00:19:29] <strong>Adam Silverstein:</strong> Yes.</p>\n\n\n\n<p>[00:19:29] <strong>Nathan Wrigley:</strong> What about the other ones? What about the WebPs and the AVIFs and.</p>\n\n\n\n<p>[00:19:33] <strong>Adam Silverstein:</strong> Yeah. So the great place to check is the, can I use website, right? They’ve got all the details but, right now WebP is supported in all the browsers, very widely supported. The only exception is older versions of Safari, and Safari support actually depends on the underlying operating system.</p>\n\n\n\n<p>So this means that users have to upgrade to, I think it’s two versions ago of MacOS. So there is a small percentage of users out there that have this older Safari version that won’t load WebPs correctly. It’s actually very difficult to tell how many because there’s a bug, in like one of the subsequent versions of Safari where the user agent string misreported the OS version.</p>\n\n\n\n<p>So between a couple versions of Safari and iOS or MacOS, you actually can’t tell the difference from logs. And so we don’t have good data about that in the wild, but from the data that we have, we think it’s between 1 and 2% of browser users in the world that don’t support WebP currently.</p>\n\n\n\n<p>[00:20:22] <strong>Nathan Wrigley:</strong> Dare I ask, was there any politics in Safari not.</p>\n\n\n\n<p>[00:20:26] <strong>Adam Silverstein:</strong> Supporting it? I don’t think so. I mean, people say, oh, it’s a, it’s a Google format. Like it’s an open source format that Google developed. But it is widely supported across a huge number of applications. There’s a lot of criticism of Safari for under investing in web capabilities.</p>\n\n\n\n<p>I don’t know if this really falls into that. I do think that Apple as a company has a vested interest in keeping their app ecosystem more powerful than the web ecosystem. So I think there’s sort of some natural tension there, but I probably wouldn’t blame the Safari team. My expectation is the Safari team is all on board on making the web better.</p>\n\n\n\n<p>But it’s a big corporation and there’s different interests. So there could be some political part to it, but I, not that I’m aware of. Safari, just to continue like the AVIF is sort of the next one. And Safari did just recently announce AVIF support. I think they’re just slower to adopt some things than other browsers.</p>\n\n\n\n<p>[00:21:15] <strong>Nathan Wrigley:</strong> I guess if I’m using WordPress and images are a key component. I do want to be really mindful that, that number, the percentage. So you think at the moment WebP is about 98% of.</p>\n\n\n\n<p>[00:21:26] <strong>Adam Silverstein:</strong> 98 to 99.</p>\n\n\n\n<p>[00:21:27] <strong>Nathan Wrigley:</strong> So, at some point the Rubicon got crossed and you can say to. yourself, that’s fine. The percentage is easily high enough. I can confidently use WebP.</p>\n\n\n\n<p>[00:21:35] <strong>Adam Silverstein:</strong> Yes.</p>\n\n\n\n<p>[00:21:36] <strong>Nathan Wrigley:</strong> How about the other formats? Also just staying on the WebP, let’s do that bit. first. Would you recommend people to shift over to WebP henceforth?</p>\n\n\n\n<p>[00:21:44] <strong>Adam Silverstein:</strong> Yes.</p>\n\n\n\n<p>[00:21:44] <strong>Nathan Wrigley:</strong> Or is there, is there a good reason to stay with the older formats?</p>\n\n\n\n<p>[00:21:47] <strong>Adam Silverstein:</strong> The only reason I would say not use WebP would be is if you knew most of your users were all on older Safari versions. Or you sent newsletters out to Windows users using Outlook, which is one other use case. We know that doesn’t support WebP. But this is like old versions of Outlook running on Windows. Not modern outlook.</p>\n\n\n\n<p>[00:22:03] <strong>Nathan Wrigley:</strong> I guess at some point you just have to take the plunge and say there’s enough.</p>\n\n\n\n<p>[00:22:07] <strong>Adam Silverstein:</strong> Yeah, Well, and we do have a support shim for Safari. So in the browser, if the page is loading WebPs, we add this little bit of JavaScript, it’s a tiny little bit that does feature detection. So it can actually detect whether the browser supports WebP. And at that point, if it doesn’t support WebP, we can actually swap the images and use the JPEGs that we do have available, We use like the next largest size that’s available. And with the current implementation, that would be either your original image or like the one of the H, high definition images that WordPress automatically creates.</p>\n\n\n\n<p>So there will be, like, the primary sizes would be WebP, but there would be still be some available sizes in JPEG. If nothing else, the original image. So that means that your Safari users will still see images, they’ll just get a slower experience. So 1% of users will get a degraded experience. 99% users will get an improved experience, and then it’s up to you to decide whether it’s worth it. But at least those Safari users won’t be totally left out in the dark. They’ll still be able to see your images.</p>\n\n\n\n<p>[00:23:02] <strong>Nathan Wrigley:</strong> It’s really curious. For some reason I have this atrophy and I’ve known that WebP was at about 98. And I put several images online each and every week, maybe a, a dozen or so. And for some reason I always export them as a JPEG. I haven’t managed in my own mind to say, this is now the moment. I think you’ve convinced me. I think.</p>\n\n\n\n<p>[00:23:20] <strong>Adam Silverstein:</strong> Yeah. But I mean, in my opinion, like that really shouldn’t be up to users to understand that or figure that out. I mean, if you’re very technical, if you’re a photographer, maybe. But for the average WordPress user, they don’t know what image format they’re using. So this is why, it should be like a core capability where it just happens for users.</p>\n\n\n\n<p>[00:23:37] <strong>Nathan Wrigley:</strong> Yeah. Okay, so WebP, that’s great. But you, you mentioned a couple of others. There was JPEG, I wanted to say JPEG 2. What was it, JPEG?</p>\n\n\n\n<p>[00:23:46] <strong>Adam Silverstein:</strong> XL.</p>\n\n\n\n<p>[00:23:47] <strong>Nathan Wrigley:</strong> JPEG XL.</p>\n\n\n\n<p>[00:23:50] <strong>Adam Silverstein:</strong> And there’s a bunch of JPEGs actually. There was one called JPEG 2000 that you might remember that was pushed by the JPEG foundation, or organization, for a while, and that was never adopted. But yeah, let’s talk about those.</p>\n\n\n\n<p>[00:23:56] <strong>Nathan Wrigley:</strong> So they, they’re presumably growing in use? Are they safe to use at the moment? Would you recommend, for example, my website using those image formats? Or Should I wait a little bit longer?</p>\n\n\n\n<p>[00:24:07] <strong>Adam Silverstein:</strong> Probably wait a little bit longer, yeah. Safari doesn’t support it yet. They’ve announced support, it’s coming out and whenever the next Mac OS comes out, I think it’s like this week or something. Or it’s soon. It’s very soon. But that means that they’re just starting support so you probably want to wait till a significant number of users are actually on that version.</p>\n\n\n\n<p>[00:24:23] <strong>Nathan Wrigley:</strong> Yeah.</p>\n\n\n\n<p>[00:24:23] <strong>Adam Silverstein:</strong> Which in the Apple ecosystem actually happens pretty quickly. People generally, you know, there’s a very large percentage of users who will go to the next OS version very quickly. It doesn’t cost anything. And it’s like they’ve proven that it’s safe. Um, they have a pretty good uptick rate. So yeah, I mean, the only way, if you really wanted to take advantage of AVIF, we have a couple options. One is using an image CDN. So the advantage of an image CDN is that, it can actually negotiate the format.</p>\n\n\n\n<p>So when browsers make a request for an image, they actually can indicate in their header, in their request headers, which formats they’re capable of decoding. And that means that the image CDN can be like, oh, you, you take AVIF? I’ll give you AVIF. That’s the best one that we have. But if it doesn’t support AVIF, okay, how about WebP? You support that? Okay. No, you don’t support any of those? We’ll give you the JPEG version. The CDN can use this capability negotiation at header time, to deliver the best image. And also they can resize the image to exactly meet the size specifications of your HTML, which WordPress doesn’t do.</p>\n\n\n\n<p>WordPress generates several sizes, and then we pick the best size that’s the closest to the one that you’ve put on your page. And also we can’t do the header negotiation because we don’t handle the image requests. Those are handled by Apache or whatever web server you’re running Nginx, you know. You have a web server running, it actually handles the image request directly. WordPress has no involvement in that whatsoever. And there are plugins that do this, the only way that you can interact with that is, is using like htaccess. There are some ways to do it, but there generally outside of cores scope.</p>\n\n\n\n<p>[00:25:52] <strong>Nathan Wrigley:</strong> Typically, would this CDN be the kind of thing that you would negotiate with your hosting provider?</p>\n\n\n\n<p>[00:25:56] <strong>Adam Silverstein:</strong> Some hosting providers provide it. There’s of course all kinds of third party CDNs. Jetpack provides an image CDN as one example. Some of them are free, some of them are paid. I think every major CDN has a WordPress plugin that will directly integrate. So you don’t really have to do much to set it up, maybe put your login or your key in or something. So I would say like, if you can hook up with an image CDN, then you’re sort of automatically able to take advantage of the latest versions of images.</p>\n\n\n\n<p>[00:26:19] <strong>Nathan Wrigley:</strong> Yeah that sounds like the way to do it, if you can stretch to that. That sounds like the best way because you can just forget about it. Everything will be taken care of.</p>\n\n\n\n<p>[00:26:26] <strong>Adam Silverstein:</strong> Exactly. If you have a reason that you can’t do it or there’s a cost associated with it. Your best bet is probably to stick with WebP for now.</p>\n\n\n\n<p>[00:26:31] <strong>Nathan Wrigley:</strong> Right.</p>\n\n\n\n<p>[00:26:32] <strong>Adam Silverstein:</strong> Because that is so widely supported.</p>\n\n\n\n<p>[00:26:33] <strong>Nathan Wrigley:</strong> On that point, are there particular types of images that you would recommend given a certain scenario? So, for example, let’s say I’m taking wildlife photography. Fairly specific example, but there’s an awful lot on the image. There’s dark areas, light areas. Lots of color. Let’s say for example, I’m creating some graphic design and it’s fairly plain, it’s text based. There’s not a lot going on in there. Is there a preferred way in, at least in your mind, or is it always WebP?</p>\n\n\n\n<p>[00:26:58] <strong>Adam Silverstein:</strong> I mean, there are definitely cases where WebP like really performs better, and there’s cases where JPEG performs almost as well as WebP I guess. And even there are images where the WebP will be slightly larger than the JPEG, in certain cases to get the same quality. You know, I would say certainly if you’re doing illustration, something that’s like a line art, then if it could be an SVG, that’s probably gonna be your most efficient format.</p>\n\n\n\n<p>But other than that, I think probably WebP is gonna win out on average, right? So you can look at specific images and find that maybe one would be better as JPEG, one would be better as WebP. But in general, if you take all your image is an aggregate, you’re gonna be way better off going with WebP.</p>\n\n\n\n<p>I think the exception to that would be like, is if you are a photographer and what you’re showing on your website is your photography, and you want it to be like the absolute highest quality. You maybe already have changed the default quality that WordPress uses, and maybe you just want to stick with JPEG so that you know that you’re getting exactly what you’re used to. There is a visual difference between JPEG and WebP and, you know, there’s all these tools that, that they use.</p>\n\n\n\n<p>I talk about it a little bit in my talk about, how do you measure quality? It’s a very subjective thing actually. There’s algorithms, so when I’m talking about how do you measure quality, So let’s say you take an image and you compress it with a JPEG and then you’re comparing it to something you’ve compressed with WebP and you say, oh, the WebP is smaller. That’s great. But it’s not that great if also the quality is lower, right? If the quality is the same and the file smaller, you win. But if the file smaller and the quality is degraded, then is that really something you want? So that you have to look at both quality and file size as two parts of the same discussion.</p>\n\n\n\n<p>So it’s very interesting how we think about quality. I think, I have a slide in my talk where I have two images and there are very different compression qualities, but you actually can’t tell the difference on the screen because it’s blurry and you’re looking at a screen from 30 feet away. And the point is that it matters, the context where you’re gonna be viewing that matters. If it’s a little thumbnail, you’re not going to really matter if it’s like some pixels that are off. But if you’re looking at like that big gorgeous wildlife photography and you’re a photographer, you want the best possible quality.</p>\n\n\n\n<p>[00:28:57] <strong>Nathan Wrigley:</strong> I guess it’s a case by case basis, isn’t It?</p>\n\n\n\n<p>[00:29:00] <strong>Adam Silverstein:</strong> It is.</p>\n\n\n\n<p>[00:29:02] <strong>Nathan Wrigley:</strong>Just suddenly occurred to me that we didn’t talk about how WordPress deals with images. We have the media library. I would imagine that’s how most people interact with their images on WordPress. You go into the media library and you upload things, drag them in and what have you. But there’s all sorts of wizardry going on right at that moment where you pull the image in for the first time. And, potentially people listening to this, they won’t know about that. So.</p>\n\n\n\n<p>[00:29:20] <strong>Adam Silverstein:</strong> Sure.</p>\n\n\n\n<p>[00:29:21] <strong>Nathan Wrigley:</strong> Are you able to run through that quickly?</p>\n\n\n\n<p>[00:29:22] <strong>Adam Silverstein:</strong> Sure, so when you upload your image to WordPress. You’re uploading your original image, and then WordPress is gonna create a series of subsidized images. By default it has I think four, it’s actually six sizes built in. Four that you can see in the settings, or three that you can see in the settings screens. Thumbnail, medium and large. There’s also a medium large size that we added. And then there’s also two HDMI, high definition screen sizes, that are like even larger than the large size.</p>\n\n\n\n<p>So when you upload your image, WordPress will go through this kind of crunching phase where it generates all of these subsidized images, and then those can be used later on the front end, depending on your context. So if it’s a thumbnail image, it’s gonna use that really small image. If it’s a larger image, it’ll use the larger one.</p>\n\n\n\n<p>So we sort of pre-create these images when you upload. That process uses, uh, one of two libraries on the backend that tie into your web server. One’s called LibGD, which is now built into php. And the other one’s called ImageMagick, or people call it Image Magic. That’s like the GUI for it. And both of those libraries are available in WordPress.</p>\n\n\n\n<p>We have built in image handling classes for them. I will say you can also extend the image library to add your own image handling class, but I’m not aware of specific implementations. But those are sort of the two that we support out of the box. And they’re very popular and common in php. Like I said, GD’s built into php now.</p>\n\n\n\n<p>Those libraries may or may not support different formats. So getting back to your question of which format is supported. In order to be able to use AVIF with WordPress, we really need that server support. because if the server can’t read AVIF, if that means when you upload an AVIF file or you upload a JPEG and you’re trying to output AVIF, it can’t do that.</p>\n\n\n\n<p>It doesn’t know how to do that. So until we get to PHP 8.1, which supports AVIF, we’re probably not going to be able to support directly AVIF in WordPress. So there’s that server dependency that you have. And also, just to add a little wrinkle to that is that, GD supports WebP or, you know, Imagemagick supports AVIF, but only if it’s built with that. So literally at compile time, someone has to build the web server, right? It’s written in C or whatever assembly, like whatever code it’s written in, and then someone has to compile and they have to decide, am I including the AVIF i library? Am I including the WebP library? And so whether you have support for those depends on your host.</p>\n\n\n\n<p>Like what is their hosting stack, what is the distribution that they’re using? It’s a wide variety of things out there. But yeah, that’s the general process. You upload, the images get generated, and then, when you insert the image into your post WordPress will use all of those images. They’ll use it in the source set to build out the responsive design.</p>\n\n\n\n<p>[00:31:48] <strong>Nathan Wrigley:</strong> As with all things WordPress there’s plugins that step in and do additional features. I mean you can code this yourself but you know, you can create other image sizes that WordPress will create on the fly, soon as you, you know, you crunch an image. Yeah, but also there’s this curious third party industry of image s smushing, I want to call it. You know where, when it’s uploaded, and I believe also WordPress itself now has a maximum, you know, if you’ve got a vanilla install of WordPress there’s a, what is it? What’s the.</p>\n\n\n\n<p>[00:32:15] <strong>Adam Silverstein:</strong> It’s It’s like a max threshold size for image uploads.</p>\n\n\n\n<p>[00:32:18] <strong>Nathan Wrigley:</strong> Yeah. That, I suppose is a useful thing to talk about. The idea that, okay, so you’ve got this brand new beautiful camera, which is taking images.</p>\n\n\n\n<p>[00:32:27] <strong>Adam Silverstein:</strong> Sixteen megapixels.</p>\n\n\n\n<p>[00:32:27] <strong>Nathan Wrigley:</strong> Right, and honestly you’ve got a 10 megabyte image but you’re intending to display it as a thumbnail in the corner of your post or something like that.</p>\n\n\n\n<p>[00:32:34] <strong>Adam Silverstein:</strong> Right?</p>\n\n\n\n<p>[00:32:35] <strong>Nathan Wrigley:</strong> The intention, therefore, from these third party plugins and, and what have you, is to take that image and just reduce it. Make it teeny tiny. Why do we do that? What’s the benefit to begin there? You talked about bandwidth and all of that earlier. Is that the only reason that we’re doing, it’s just to save on bandwidth?</p>\n\n\n\n<p>[00:32:52] <strong>Adam Silverstein:</strong> And to speed up the loading of the page.</p>\n\n\n\n<p>[00:32:53] <strong>Nathan Wrigley:</strong> Right.</p>\n\n\n\n<p>[00:32:54] <strong>Adam Silverstein:</strong> So, and just to Expand on that. It’s not really just about the speed of the page, but it’s about the experience of your users visiting your website. If you have slow images that are too large for what you need, then you are giving your users a poor experience. There’s all kinds of studies that show that by improving the loading time and responsiveness of your website, you get better results. So whatever those goals may be, conversions into newsletter subscribers or people who purchase products, or someone who reads more than one article on your website. Those things are all enhanced by having a better user experience. And so if we’re talking about optimizing images, we’re really talking about creating a better user experience.</p>\n\n\n\n<p>[00:33:33] <strong>Nathan Wrigley:</strong> You’re wearing your Google t-shirt today.</p>\n\n\n\n<p>[00:33:35] <strong>Adam Silverstein:</strong> Yeah.</p>\n\n\n\n<p>[00:33:35] <strong>Nathan Wrigley:</strong> So you know you’re doing all all the right things.</p>\n\n\n\n<p>[00:33:37] <strong>Adam Silverstein:</strong> Google google loves open source.</p>\n\n\n\n<p>[00:33:39] <strong>Nathan Wrigley:</strong> You are not on the search team, so maybe this question is not gonna be one that’s right in your wheelhouse, but I’m gonna ask it anyway. SEO and search engine results. I’m presuming there is a benefit because you know, in the last couple of years we’ve all been thinking about Core Web Vitals and that’s been a big push from Google, and everybody’s taken that very seriously.</p>\n\n\n\n<p>[00:33:56] <strong>Adam Silverstein:</strong> Yes.</p>\n\n\n\n<p>[00:33:56] <strong>Nathan Wrigley:</strong> And, you know, is there a benefit to your search position, should you take the time to do images right?</p>\n\n\n\n<p>[00:34:04] <strong>Adam Silverstein:</strong> Yes, and I’ll say that it’s only really a very small benefit. Really what gets you the best position in search results is having the best content. And if I have an article about Bartlett pears growing in San Diego and someone Googles it, and I’m the only article about that on the web, they’re gonna go right to me. No matter how performant my site is. Where performance comes in is as a waiting factor, like many, many other factors as a signal to Google. Just like HTTPS, mobile support. These are all signals that Google has announced.</p>\n\n\n\n<p>But, uh, you’re not gonna be like, penalized for poor performance. It’s more that if all other things are equal, this could be a weighting factor that would bump you up, having a better experience for your users. But that really shouldn’t be your motivation. Your motivation should be creating a better experience for your users first, and then secondly better achieving your goals once people reach your site.</p>\n\n\n\n<p>So someone described it as a funnel, right? People think of web conversions as a funnel. You start at the top, all the people who see your search results, and then it gets smaller. All the people who click on your search results. And then, all the people who actually do something on your website. And then finally, this tiny, small number of people that convert to being paying customers. And I, and in my hands here just for audio, I’m going from wide to smaller. And where the user experience parts helps, uh, improving user pitch is not up here at the top in getting more search results. It’s here where once users reach your site, then you’re gonna really see that benefit. And so, that’s where you should think about where the benefit comes. It comes from turning those visiting users into actual, whatever your goal is.</p>\n\n\n\n<p>[00:35:36] <strong>Nathan Wrigley:</strong> Okay, I’m gonna go slightly off piste. Google does a fantastic job. I use Google photos, and Google Photos is able to identify the objects in my photos. And so I did wonder if there was a potential Google search. So, for example if I have a website I don’t label, I don’t put any metadata on my images at all. Does Google do any of that? This website is full of trees, and so if I search for a particular tree.</p>\n\n\n\n<p>[00:36:05] <strong>Adam Silverstein:</strong> That’s a really good question. I don’t know the answer. I would say, first of all, please put alt tags on your images. Don’t do that. Because there’s a reason we have alt tags. Actually someone, so it’s the reason, the big reason is of course, accessibility, right. People who are visually impaired can’t see your images. It’s nice if they have a description of what they’re missing.</p>\n\n\n\n<p>Someone actually today came by and said, do you think there’s a way we could take image recognition and make it so that non sighted users touch over the image, they get a description of what they’re seeing. So, if you’re a non sight user, I don’t know if you’ve ever seen people, a lot of times they actually use a touchscreen that’s haptic.</p>\n\n\n\n<p>[00:36:37] <strong>Nathan Wrigley:</strong> Yeah.</p>\n\n\n\n<p>[00:36:38] <strong>Adam Silverstein:</strong> So they can move over and they can feel the buttons, right. It’s not just, having the buttons described to them in text, but literally a screen that as you’re moving over elements of the page, it bumps up. So you can actually feel, oh, there’s a button. That’s where the home button is, and then they can tap it, right? So they already have this technology, screens that are like this, and of course visually impair people are, are often used to reading braille, so they’re very sensitive with their fingers.</p>\n\n\n\n<p>So imagine something where you have a picture of trees and a person and a visually impaired person could move their hand over and say like, oh, there’s the person and there’s trees back here, and they’re feeling the image. Like that would be amazing. And that would again, require that same visual recognition of images.</p>\n\n\n\n<p>[00:37:12] <strong>Nathan Wrigley:</strong> That is a truly, astonishingly good idea.</p>\n\n\n\n<p>[00:37:14] <strong>Adam Silverstein:</strong> Right, I had never heard that idea.</p>\n\n\n\n<p>[00:37:16] <strong>Nathan Wrigley:</strong> That is just mind blowingly clever. Let’s hope that somebody can build that.</p>\n\n\n\n<p>[00:37:21] <strong>Adam Silverstein:</strong> Yeah. There was another, just one more that someone posted recently to Twitter, you might have seen, but it’s the, it’s like the DALL E tools that are out now with the image generation. So someone has built a WordPress plugin in Gutenberg where you type in, like you’re working on your post and it’s about Bartlett pears in San Diego. So you type in like Bartletts flying across the San Diego Bay, and it generates an image for you of that. You’re there in Gutenberg and you just insert it.</p>\n\n\n\n<p>[00:37:45] <strong>Nathan Wrigley:</strong> The whole AI piece. Rewind the clock just two years, and I thought it was, no, this is going nowhere.</p>\n\n\n\n<p>[00:37:51] <strong>Adam Silverstein:</strong> Right.</p>\n\n\n\n<p>[00:37:51] <strong>Nathan Wrigley:</strong> At no point in the future will you be able to tell a computer to create an image or a piece of art, or replicate, well, almost anything, but especially the things which don’t exist. You know, the triangle dog or whatever it might be.</p>\n\n\n\n<p>[00:38:04] <strong>Adam Silverstein:</strong> Yeah.</p>\n\n\n\n<p>[00:38:05] <strong>Nathan Wrigley:</strong> And, and yet you input it in and just in the space of two years, it’s gone me laughing at it. To me, just being in awe of it.</p>\n\n\n\n<p>[00:38:13] <strong>Adam Silverstein:</strong> It’s amazing.</p>\n\n\n\n<p>[00:38:14] <strong>Nathan Wrigley:</strong> It’s truly amazing.</p>\n\n\n\n<p>[00:38:15] <strong>Adam Silverstein:</strong> Yeah, so I use one of those tools to generate all the images in my slideshow for my presentation yesterday. So I have like hilarious images, like a raccoon surf boarding and a, a goat driving a race car.</p>\n\n\n\n<p>[00:38:25] <strong>Nathan Wrigley:</strong> Yeah.</p>\n\n\n\n<p>[00:38:26] <strong>Adam Silverstein:</strong> Impossible things, but they look, you know, if you look closely, you can see some weird details. They’re very, very accurate.</p>\n\n\n\n<p>[00:38:32] <strong>Nathan Wrigley:</strong> There’s lots of them as well. I believe the one that captured my attention recently, I think it was called Mind Journey or something like. It’s implementation is to create art.</p>\n\n\n\n<p>[00:38:43] <strong>Adam Silverstein:</strong> Right.</p>\n\n\n\n<p>[00:38:43] <strong>Nathan Wrigley:</strong> So you give it the, the thing that you feed it is, I don’t know, I’d like a picture of a sunset that resembles Rembrandt, with a red sky to the left and so on. And it completely does it.</p>\n\n\n\n<p>[00:38:54] <strong>Adam Silverstein:</strong> That’s amazing.</p>\n\n\n\n<p>[00:38:54] <strong>Nathan Wrigley:</strong> Yeah, an absolute miracle. Adam Silverstein, thank you so much for joining me on the podcast today. I really appreciate it.</p>\n\n\n\n<p>[00:39:00] <strong>Adam Silverstein:</strong> It was fun. Thank you.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>.</p>\n\n\n\n<p>Adam is a WordPress core comitter where he works to fix bugs and improve modern web capabilities. As a Developer Relations Engineer in the content ecosystem team at Google, he works to invigorate the open web by empowering and educating developers.</p>\n\n\n\n<p>At the recent WordCamp US, he gave a presentation entitled ‘Images on the Web – past present and future’. In it, he outlined his thoughts on where the web is going in terms of support for different image formats.</p>\n\n\n\n<p>Alongside text, images are the bedrock of webpages. We browse the internet and expect pages to have images of all forms. Photos, illustrations, charts and images to convey additional meaning to the text.</p>\n\n\n\n<p>But how do the images actually get on the page? WordPress makes handling images pretty easy, and Adam explains what happens when you upload an image to the Media Library, and then display it on a page or post in a browser.</p>\n\n\n\n<p>We discuss the fact that different image sizes are created automatically by WordPress, which can be used in a variety of contexts across your website. You’ve likely heard of many of them, but perhaps you have not thought about which format belongs where.</p>\n\n\n\n<p>As with code, the technology behind images does not stand still. New formats are being created all the time and are being supported at differing rates by the major browser vendors. In the past we typically used JPEG, GIF or PNG files to display images on our websites, but there’s good reason to think about adopting other defaults in the near future.</p>\n\n\n\n<p>We discuss some of these new formats, such as WebP, AVIF and JPEG XL, and find out about how they are speeding up website loading times because of their smaller file sizes.</p>\n\n\n\n<p>We also get into how you can optimise your images, and how plugins and SaaS solutions can reduce the size of your files before or after you upload them to your WordPress install.</p>\n\n\n\n<p>Adam has some good advice about a topic which is becoming increasingly important, page load time, and if you’ve never given this serious thought, this is a great podcast episode for you.</p>\n\n\n\n<p>Typically, when we record the podcast, there’s not a lot of background noise, but that’s not always the case. Over the coming weeks, I’ll be bringing you recordings from a recent trip to WordCamp US 2022, and you might notice that the recordings have a little echo or other strange audio artefacts. Whilst the podcasts are more than listenable, I hope you understand that the vagaries of the real world were at play.</p>\n\n\n\n<h2>Useful links.</h2>\n\n\n\n<p><a href=\"https://wptavern.com/podcast/34-felix-arntz-on-wordpress-and-performance\">Jukebox Podcast episode 34 – Felix Arntz on WordPress and Performance</a></p>\n\n\n\n<p><a href=\"https://caniuse.com/\">Can I Use website</a></p>\n\n\n\n<p><a href=\"https://libgd.github.io/\">LibGD graphics library</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/new-block-diffusion-plugin-creates-ai-generated-images-from-text-prompts\">New Block Diffusion Plugin Creates AI-Generated Images from Text Prompts</a></p>\n\n\n\n<p><a href=\"https://www.midjourney.com/home/\">Midjourney</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, 19 Oct 2022 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: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:\"HeroPress: Making The World A Better Place One Line Of Code At A 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=4906\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:190:\"https://heropress.com/essays/making-the-world-a-better-place-one-line-of-code-at-a-time/#utm_source=rss&utm_medium=rss&utm_campaign=making-the-world-a-better-place-one-line-of-code-at-a-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16606:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/10/101922-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Making The World A Better Place One Line Of Code At A Time. Hacer Del Mundo Un Lugar Mejor Una Linea De Codigo A La Vez\" />\n<p><a href=\"https://heropress.com/feed/#espanol\">Este ensayo también está disponible en español.</a></p>\n\n\n\n<h2 class=\"kt-adv-heading_956780-cb wp-block-kadence-advancedheading\"><strong>How I Met WordPress</strong></h2>\n\n\n\n<p>It seems like only yesterday that I thought to myself… There have to be a better way to do this? At that time I was working as a designer for a company dedicated to sports and we were working internally on a kind of CMS to digitize our Football News magazine, but the result was horrendous, the interface did not exist, it constantly crashed and it was full of bugs.</p>\n\n\n\n<p>That’s how in the year 2008-2009 in an Internet search I discovered WP, its version at that time 2.5, I couldn’t get us to use WP as a CMS and the internal solution won. But there was one seed planted.</p>\n\n\n\n<p>At that time I used WordPress in a very simple way, my background was a graphic designer, I didn’t know anything about PHP, much less about programming, but studying the WP code I was able to make my first themes, which by the way were terrible.</p>\n\n\n\n<p>I learned HTML and CSS, at the same time I started taking Programming courses, especially in PHP, and that’s how I started this adventure.</p>\n\n\n\n<p>The first years were literally learning on my own, in my bubble, then I started to add the word web developer in my resume, I found a job in a company as a designer and web master, I designed gif banners, magazine ads, brochures and the website , this company had its page in ASP and since it was very complicated to update it, at least for me, I gave myself the task of migrating it to WordPress, it was 2014 and WP was in version 3.9, this was my first job in which I did everything from the design to the development and programming of the theme, in it I put into practice everything I had learned until then.</p>\n\n\n\n<h2 class=\"kt-adv-heading_d7c6c7-b7 wp-block-kadence-advancedheading\"><strong>Community</strong></h2>\n\n\n\n<p>In 2016, I met Roberto Remedios, my tattoo artist who was also his tattoo artist, told him that if didn’t know me?, Costa Rica is a small country where one way or another we all have friends in common, he told him that my passion was WordPress, when we met we didn’t stop talking about how cool it was, but what caught my attention the most was the word Community.</p>\n\n\n\n<p><strong>Community </strong>what was that?, I had spent so many years working on my own that I didn’t know that it even existed, my concept of Open Source was simply something free.</p>\n\n\n\n<p>Roberto convinced me that same year to go to WordCamp Miami, it was my first camp, meeting the community behind WP was something that impressed me a lot, the talks, the desire to teach and learn from all the participants, and above all to collaborate with the community, wow everything changed for me.</p>\n\n\n\n<p>When we got back, Roberto and I started talking about the possibility of holding a WordCamp in San José, Costa Rica.</p>\n\n\n\n<p>Part of that process is giving talks before the camp as a way to promote it, and as a member of the newly founded WordPress Costa Rica group, it was time for me to give a talk. It was the first time I spoke in front of the public since my student days, I remember how nervous I was, my talk revolved around page builders, there was no Gutenberg back then, I managed to get the Meetup sponsored, there were snacks, swags, A lot of people came, it was incredible. Colleagues who participated that day in that Meetup, are still an active part of the community.</p>\n\n\n\n<p>I gave that same talk at WordCamp and it was even more stressful, because my computer did not turn on, at that moment they lent me a computer, but oh surprise I could not run my test site, after 20min I was able to solve the problem, the JavaScript was disabled. I was already sweating profusely, red with shame, in the end I was able to give the talk and everything ended well.</p>\n\n\n\n<p>WordCamp San Jose, it was incredible, it was hard work, very rewarding, it was a success, never before had I felt so good professionally, years had passed, without sharing something that I like so much with anyone, suddenly we had a community, we meet regularly, and share about what we are most passionate about.</p>\n\n\n\n<p>Recently my talks revolve around making my local community aware of new WordPress trends, I collaborate as an administrator of the WordPress Costa Rica group.</p>\n\n\n\n<h2 class=\"kt-adv-heading_fdbe32-4a wp-block-kadence-advancedheading\"><strong>Outside Costa Rica</strong></h2>\n\n\n\n<p>The second year that I attended WordCamp Miami, I participated as a volunteer, and I had the opportunity to interact with many of the humans that I follow on social media, and then I was encouraged to send talks and participate in the WordCamps that take place in my region. Eager to share what I have learned, to date I have participated as a volunteer, speaker, and organizer in my city Costa Rica, Nicaragua, Mexico and in the first Central American WordCamp which was held online.</p>\n\n\n\n<p>Then came the talks in another language, I have had the opportunity to give talks in Rome, Italy, I participated as a volunteer in the WordCamp US, where I had the opportunity to meet colleagues and the CEO of a company that I admire a lot, this was in Nashville , U.S. seeing colleagues with whom I have had the privilege of working today, my circle of friends expanded.</p>\n\n\n\n<p>Also had participate in online conferences, such as <a href=\"https://www.youtube.com/watch?v=B33I2bvt6TQ\">GatsbyConf</a>, <a href=\"https://javascriptforwp.com/talks/gatsby-wordpress-alfredo-navas-fernandini/\">JavaScript For WordPress</a> and at <a href=\"https://europe.wordcamp.org/2021/session/headless-wordpress- gatsby-or-nextjs/\">WordCamp EU 2021</a>.</p>\n\n\n\n<p>I like to share and talk about JAMStack, especially with GatsbyJS and WordPress as a headless CMS.</p>\n\n\n\n<h2 class=\"kt-adv-heading_aa6505-fd wp-block-kadence-advancedheading\"><strong>Professional Path</strong></h2>\n\n\n\n<p>I have a lot to thank WordPress for, the first thing it brought was the curiosity to learn programming, then remote work. I started working for an agency located in Austin, Texas, with several collaborators in Costa Rica, it was the year 2017, they hired me for my knowledge in WordPress, it was not only the first time that I could work completely dedicated to WP, but also from my house, I never set foot in an office again, seeing my children grow up and above all working in flip flops.</p>\n\n\n\n<p>That same year, together with my wife, we founded a small specialized WordPress agency, which we still have and is managed by her. Our most recent work was the website for <a href=\"https://premiosacam.com/\">Costa Rican Music Awards</a>.</p>\n\n\n\n<h2 class=\"kt-adv-heading_e72b3f-d5 wp-block-kadence-advancedheading\"><strong>Expanding my Career</strong></h2>\n\n\n\n<p>I decided to pay attention to the Job Boards that you find when you go to a WordCamp, I was looking for the opportunity to work on larger projects, corporate projects where Icould expand my knowledge, I started applying, I was convinced that I had the level to work in a dedicated agency 100 % to WordPress.</p>\n\n\n\n<p>I worked for agencies in New York and DC but I was still searching for a place to really fit, and the opportunity came, with perseverance and effort today I work as a Senior Frontend Engineer, in the agency that I most admire, WebDevStudios, dedicated 100% to WordPress.</p>\n\n\n\n<p>WordPress definitely changed my life personally and professionally, I have met incredible people and places, above all I have been able to give time and a quality life to my family, I have learned a lot, and still learning, I write about WordPress, I help my community teaching about the tools with which they can carry out their ideas.</p>\n\n\n\n<p>And I am doing what I love the most, making the world a better place one line of code at a time.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p> </p>\n\n\n\n<h1 id=\"espanol\" class=\"kt-adv-heading_68c620-ba wp-block-kadence-advancedheading\">Hacer Del Mundo Un Lugar Mejor Una Linea De Codigo A La Vez</h1>\n\n\n\n<h2 class=\"kt-adv-heading_c92a36-80 wp-block-kadence-advancedheading\"><strong>Como Conoci WordPress</strong></h2>\n\n\n\n<p>Parece que fue ayer cuando me dije a mi mismo… <strong>¿T</strong>iene que haber una mejor manera de hacer esto? En ese entonces me desempeñaba como diseñador para una empresa dedicada a los deportes y estábamos trabajando internamente en una especie de CMS para digitalizar nuestra revista Football News, pero el resultado era horrendo, la interface inexistente, se caía constantemente y estaba lleno de bugs.</p>\n\n\n\n<p>Fue así como en el año 2008-2009 en una busqueda en la Internet descubrí WP, su versión en ese entonces 2.5, no logre que usaramos WP como CMS y la solución interna gano. Pero habia quedado una semillla,</p>\n\n\n\n<p>En ese entonces usaba WordPress de una manera muy simple, mi background era disenador grafico, no sabía nada de PHP, mucho menos de programación, pero estudiando el código de WP pude hacer mis primeros temas, que por por cierto eran terribles.</p>\n\n\n\n<p>Aprendi HTML, y CSS, al tiempo empece a llevar cursos de Programacion, sobre todo en PHP y así inicio esta aventura.</p>\n\n\n\n<p>Los primero años fueron literalmente aprendiendo por mi cuenta, en mi burbuja, luego empeze a agregar la palabra desarrollador web en mi curriculum, encontre trabajo en una empresa como diseñador y web master, diseñaba gif banners, anucios para revista, brochures y la pagina web, esta empresa tenia su pagina en ASP y como era muy complicado actualizarla, al menos para mi, me di la tarea de migrarla a WordPress, era el 2014 y WP estaba en us version 3.9, este fue mi primer trabajo en cual hice todo desde el diseño hasta el desarrollo y programacion del tema, en el puse en practica todo lo que habia aprendido hasta ese entonces.</p>\n\n\n\n<h2 class=\"kt-adv-heading_6b09c6-ce wp-block-kadence-advancedheading\"><strong>Comunidad</strong></h2>\n\n\n\n<p>Y la vida siguio su rumbo y en el año 2016, conoci a Roberto Remedios, Mi tatuador que era a la vez su tatuador, le decia que <strong>¿S</strong>i no me conocia?, Costa Rica es un pais pequeño donde de alguna u otra forma todos tenemos amigos en comun, el le comentaba que mi pasion era WordPress, cuando nos conocimos no paramos de</p>\n\n\n\n<p>hablar sobre lo cool que era, pero lo que mas me llamo la atencion era la palabra Comunidad.</p>\n\n\n\n<p><strong>¿</strong>Comunidad que era eso?, habia pasado tantos años trabajando por mi cuenta que no sabia que eso si quiera existia, mi concepto de Open Source era simplemente algo gratis.</p>\n\n\n\n<p>Roberto me convencio ese mismo año de ir WordCamp Miami, fue mi primer camp, conocer la comunidad que había detrás de WP fue algo que me impresionó mucho, las charlas, las ganas de enseñar y de aprender de todos los participantes, y sobre todo colaborar con la comunidad, wow todo cambio para mi.</p>\n\n\n\n<p>Cuando regresamos Roberto y yo empezamos a conversar sobre la posibilidad de hacer un WordCamp en San José, Costa Rica.</p>\n\n\n\n<p>Parte de ese proceso es dar charlas antes del camp como una forma de promoverlo, y como miembro del recién fundado grupo de WordPress Costa Rica, me llego el momento de dar una charla. Era la primera vez que hablaba frente al publico desde mis tiempos de estudiante, recuerdo lo nervioso que estaba, mi charla giraba en torno a los page builders, no había gutenberg en ese entonces, logre que el Meetup fuera patrocinado, habian snacks, swags, llego bastante gente, fue increible. Colegas que participaron ese día en ese Meetup, aun forman parte activa de la comunidad.</p>\n\n\n\n<p>Esa misma charla la imparti en el WordCamp y fue aún más estresante, pues mi computador no encendió, en ese momento me prestaron una computadora, pero oh sorpresa no podía correr mi sitio de prueba, después de 20min pude solucionar el problema, el JavaScript estaba desactivado. ya sudaba a mares, rojo de la vergüenza, al final pude dar la charla y todo termino bien.</p>\n\n\n\n<p>WordCamp San Jose, fue algo increible, fue un trabajo arduo, muy gratificante, fue un exito, nunca antes me habia sentido tan bien en mi lo profesional, habia pasado años, sin compartir con nadie algo que tanto me gusta, de repente teniamos una comunidad, nos reunimos habitualmente, y compartimos sobre lo que mas nos apasiona.</p>\n\n\n\n<p>Recientemente mis charlas giran en dar a conocer a mi comunidad local las nuevas tendencias de WordPress, colaboro como administrador del grupo de WordPress Costa Rica.</p>\n\n\n\n<h2 class=\"kt-adv-heading_d6d109-dc wp-block-kadence-advancedheading\"><strong>Fuera de Costa Rica</strong></h2>\n\n\n\n<p>El segundo año que asistí al WordCamp Miami, participe como voluntario, y tuve la oportunida de poder interactuar con muchos de los humanos que sigo en redes sociales, y así luego me anime a enviar charlas y participar en los WordCamps que se realizan en mi region, con muchas ganas de compartir lo que he aprendido, al día de hoy he participado como voluntario, charlista, y organizador en mi ciudad Costa Rica, Nicaragua, México y en el primer WordCamp Centroamericano el cual se realizó en línea.</p>\n\n\n\n<p>Luego vinieron las charlas en otro idioma, He tenido la oportunidad de dar charlas en Roma, Italia, participe como voluntario en el WordCamp US, donde tuve la oportunidad de conocer a colegas y al CEO de una empresa que admiro mucho, esto fue en Nashville, USA.</p>\n\n\n\n<p>volver a ver a colegas con los que he hoy tenido el privilegio de trabajar, mi circulo de amigos se expandio.</p>\n\n\n\n<p>Tambien tenido la oportunidad de participar en conferencias en línea, como en el GatsbyConf, JavaScript For WordPress y en el WordCamp EU 2021.</p>\n\n\n\n<p>Me gusta compartir y dar charlas sobre el JAMStack, especialmente con GatsbyJS y WordPress como un headless CMS.</p>\n\n\n\n<h2 class=\"kt-adv-heading_1df56f-ba wp-block-kadence-advancedheading\"><strong>Professional Path</strong></h2>\n\n\n\n<p>Tengo mucho que agradecer a WordPress, lo primero que trajo fue la curiosidad de aprender programación, luego el trabajo remoto. Al tiempo empecé a trabajar para una agencia localizada en Austin, Texas, con varios colaboradores en Costa Rica, corria el año 2017, me contrataron por mis conocimientos en WordPress, era no solo la primera vez que podía trabajar completamente dedicado a WP, si no tambien desde mi casa, nunca mas volví a pisar una oficina, ver a mis hijos crecer y sobre todo trabajar en chancletas.</p>\n\n\n\n<p>Ese mismo año, junto a mi esposa, fúndanos una pequeña agencia especializada en WordPress, la cual aún tenemos y es manejada por ella. Nuestro más reciente trabajo, fue la página de los <a href=\"https://premiosacam.com/\">Premios de la Música Costarricense</a>.</p>\n\n\n\n<h2 class=\"kt-adv-heading_a5a1dc-37 wp-block-kadence-advancedheading\"><strong>Overseas</strong></h2>\n\n\n\n<p>Decidi prestar atención a los Job Board que encuentras cuando vas a un WordCamp, buscaba la oportunidad de trabajar en proyectos más grandes, proyectos corporativos donde podría expander mis conocimientos, empecé a aplicar, estaba convencido que tenia el nivel para trabajar en una agencia dedicada 100% a WordPress.</p>\n\n\n\n<p>Trabaje para agencias en New York y DC, y la oportunidad llego y con perseverancia y esfuerzo el dia de hoy trabajo como Senior Frontend Engineer, en la agencia que más admiro, WebDevStudios, dedicado 100% a WordPress.</p>\n\n\n\n<p>WordPress definitivamente cambio mi vida en lo personal y en lo profesional, he conocido lugares y gente increible, he podido sobre todo darle tiempo y una vida de calidad a mi familia, he aprendido mucho, y aun sigo aprendiendo, escribo sobre WordPress, ayudo a mi comunidad ensenando sobre las herramientas con las cuales pueden llevar a cabo sus ideas.</p>\n\n\n\n<p>y sobre todo estoy haciendo lo que mas me apaciona y es hacer del mundo un lugar mejor una linea de codigo a la vez.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/making-the-world-a-better-place-one-line-of-code-at-a-time/\">Making The World A Better Place One Line Of Code At A Time</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, 19 Oct 2022 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:13:\"Alfredo Navas\";s: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:68:\"Do The Woo Community: Don’t Put Technical Support in the Wrong Box\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=73116\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://dothewoo.io/dont-put-technical-support-in-the-wrong-box/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:398:\"<p>Your technical support team is an extension of the customer service department and of the sales department.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/dont-put-technical-support-in-the-wrong-box/\">Don’t Put Technical Support in the Wrong Box</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, 19 Oct 2022 09:51: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: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:57:\"WPTavern: 10up Publishes Gutenberg Best Practices Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=138755\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wptavern.com/10up-publishes-gutenberg-best-practices-website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2819:\"<p>10up has published a <a href=\"https://gutenberg.10up.com/\">Gutenberg Best Practices</a> website as a public resource with tutorials, documentation, and example code. Maintaining current documentation has not been a strong point of the official Gutenberg project as the pace of the project makes it difficult for contributors and extenders to keep up.</p>\n\n\n\n<p>“Gutenberg introduced an entirely new editorial paradigm for content creation and page building within WordPress,” 10up Associate Director of Editorial Engineering Fabian Kaegy said. “Because the block editor is still fairly new, it is advancing quickly and changes are introduced regularly; as such, learning opportunities are scarce and we have felt an absence of best practice documentation that meets 10up standards for craftsmanship.”</p>\n\n\n\n<p>10up’s Gutenberg Best Practices were written to supplement WordPress’ core documentation with what Kaegy said is a “more client-services-centric approach tailored to engineering enterprise-level editorial experiences.”</p>\n\n\n\n<p>For developers who are brand new to working with the block editor, the <a href=\"https://gutenberg.10up.com/reference/\">Reference</a> section has a wealth of information about the anatomy of a block, the fundamentals of block theming with theme.json, block extensions, block variations, and more, with supporting videos and gifs. The documentation also gives a little more context for practical usage. For example, the section about <a href=\"https://gutenberg.10up.com/reference/Blocks/block-transforms\">Block Transforms</a> includes information about when and how to define block transforms.</p>\n\n\n\n<p>The Training section of 10up’s Gutenberg Best Practices contains a mini crash course on the file structure of a block and all of its components, and how to build a custom block using the <a href=\"https://github.com/10up/wp-scaffold/tree/trunk/themes/10up-theme/includes/blocks/example-block\">10up Starter Block</a>. This is especially helpful for developers looking for some extra guidance developing their first blocks.</p>\n\n\n\n<p>The <a href=\"https://gutenberg.10up.com/guides/\">Guides</a> section contains more advanced topics like extending core blocks and including frontend JS with a block. The documentation is <a href=\"https://github.com/10up/gutenberg-best-practices\">available on GitHub</a> for anyone to contribute edits. The site also links to a <a href=\"https://github.com/10up/gutenberg-best-practices/discussions\">discussion board on GitHub</a> where developers are welcome to join discussions and workshop the best practices in collaboration with 10up employees. 10up has published the Gutenberg Best Practices website with a beta designation and intends to update and expand it as WordPress evolves.</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, 18 Oct 2022 21:46: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: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:73:\"WordPress.org blog: WordPress 6.1 Release Candidate 2 (RC2) 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13646\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-2-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6966:\"<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>The second release candidate (RC2) for WordPress 6.1 is now available!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>“Release Candidate” means that this version of WordPress is ready for release and it is a key milestone in the 6.1 release cycle! Before the official release date, the community sets aside time to perform final reviews and help test. Since the WordPress ecosystem includes thousands of plugins and themes, it is important that everyone checks to see if anything has been missed along the way. That means the project would <em>greatly benefit from</em> your assistance.</p>\n\n\n\n<p>WordPress 6.1 is planned for official release on November 1st, 2022, two weeks from today. </p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test RC2 on a test server and site. </p>\n\n\n\n<p>You can test WordPress 6.1 RC2 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.1-RC2.zip\">RC2 version (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use the WP-CLI command:</p>\n\n\n\n<p><code>wp core update --version=6.1-RC2</code></p>\n\n\n\n<p>Additional information on the <a href=\"https://make.wordpress.org/core/6-1/\">6.1 release cycle is available here</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-1/\">6.1-related developer notes</a> in the coming weeks detailing all upcoming changes.</p>\n\n\n\n<h2><strong>What’s in WordPress 6.1 RC2?</strong></h2>\n\n\n\n<p>Since Release Candidate 1, approximately 65 items have been addressed, bringing the total count to more than 2,000 updates since WordPress 6.0 in May of 2022. </p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.1\">GitHub tickets</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=10%2F11%2F2022..10%2F18%2F2022&resolution=fixed&milestone=6.1&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=id\">Trac tickets</a> </li>\n</ul>\n\n\n\n<p>WordPress 6.1 is the third major release for 2022, following 5.9 and 6.0, released in January and May of this year, respectively.</p>\n\n\n\n<p>To learn more about the highlights for both end-users and developers, you’re invited to read more about them in the <a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\">RC1 announcement post</a> and review the <a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">WordPress 6.1 Field Guide</a>.</p>\n\n\n\n<h2><strong>Plugin and theme developers</strong></h2>\n\n\n\n<p>All plugin and theme developers should test their respective extensions against WordPress 6.1 RC2 and update the “<em>Tested up to”</em> version in their readme file to 6.1. If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so these items can be investigated further prior to the final release date of November 1st.</p>\n\n\n\n<h2><strong>Translate WordPress</strong></h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a> </p>\n\n\n\n<p><strong>Keep WordPress bug-free – help with testing</strong></p>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute. <a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">This detailed guide</a> is an excellent start if you have never tested a beta release.</p>\n\n\n\n<p>Testing helps ensure that this and future releases of WordPress are as stable and issue-free as possible. Anyone can take part in testing – regardless of prior experience.</p>\n\n\n\n<p>Want to know more about testing releases like this one? Read about the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join a <a href=\"https://wordpress.slack.com/messages/core-test/\">core-test channel</a> on the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack workspace</a>.</p>\n\n\n\n<p>If you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>To review features in the Gutenberg releases since WordPress 6.0 (the most recent major release of WordPress), access the <em>What’s New In Gutenberg</em> posts for <a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\">14.1</a>, <a href=\"https://make.wordpress.org/core/2022/09/01/whats-new-in-gutenberg-14-0-31-august/\">14.0</a>, <a href=\"https://make.wordpress.org/core/2022/08/17/whats-new-in-gutenberg-13-9-17-august/\">13.9</a>, <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/\">13.8</a>, <a href=\"https://make.wordpress.org/core/2022/07/20/whats-new-in-gutenberg-13-7-20-july/\">13.7</a>, <a href=\"https://make.wordpress.org/core/2022/07/07/whats-new-in-gutenberg-13-6-6-july/\">13.6</a>, <a href=\"https://make.wordpress.org/core/2022/06/22/whats-new-in-gutenberg-13-5-22-june/\">13.5</a>, <a href=\"https://make.wordpress.org/core/2022/06/10/whats-new-in-gutenberg-13-4-8-june/\">13.4</a>, <a href=\"https://make.wordpress.org/core/2022/05/26/whats-new-in-gutenberg-13-3-0-may-25/\">13.3</a>, <a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">13.2</a>, and <a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">13.1</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2><strong>Haiku Fun for RC2</strong></h2>\n\n\n\n<p><em>Two weeks from the launch </em><br /><em>Constant improvements we make </em><br /><em>Great outcomes await </em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em>Update Oct 25 12:45 UTC: This post has been updated to remove the reference to Gutenberg versions 14.3 and 14.2 being included in the 6.1 release. They will be included in a future release.</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, 18 Oct 2022 19:31: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:16:\"Jonathan Pantani\";s: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:93:\"WPTavern: Jetpack Social Plugin Adds Paid Plan, Free Users Now Limited to 30 Shares per Month\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=138706\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/jetpack-social-plugin-adds-paid-plan-free-users-now-limited-to-30-shares-per-month\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2551:\"<p>Jetpack has announced changes to its <a href=\"https://wordpress.org/plugins/jetpack-social/\">Jetpack Social</a> plugin that may impact publishers who frequently share across social media networks. Previously, users could share an unlimited number of posts automatically via their connected social media accounts. Jetpack is shuffling its monetization strategy for this extension and has capped social sharing at 30 shares per month for the free tier.</p>\n\n\n\n<p>A <a href=\"https://jetpack.com/social/\">new paid plan</a> offers 1,000 shares and re-shares per month, starting at $1/month for the first month and is $10/month thereafter. As a concession, Jetpack is rolling the social previews and re-sharing into the free plan.</p>\n\n\n\n<img />\n\n\n\n<p>With Jetpack Social, if a post is automatically shared to Twitter, Facebook, and LinkedIn, that counts as three shares. It’s easy to see how quickly these shares can rack up to where even a casual blogger might require a paid plan. Publishers that are used to being able to automatically share all their posts for free should be aware this change that limits them to to 30 shares per month.</p>\n\n\n\n<p>I would not be surprised to see some users switch to another social sharing plugin, as many others offer far more social networks and don’t limit the number of times users can share. Instead they opt to restrict re-sharing, scheduling, or the ability to connect multiple accounts per social network. </p>\n\n\n\n<p>Jetpack Social has a new team behind it focused on making the product better. In 2021, Automattic <a href=\"https://wptavern.com/automattic-acquires-social-image-generator-plugin-plans-to-integrate-with-jetpack\">acquired the Social Image Generator plugin</a> with plans to integrate it into Jetpack’s social media tools. This may make the product more compelling, since it currently doesn’t stand up well to the myriad of free sharing plugins out there. Jetpack only supports four social networks, but the team is working on expanding the plugin’s capabilities. The plugin’s development team also <a href=\"https://github.com/Automattic/jetpack/issues/new?assignees=&labels=%5BType%5D+Feature&template=feature-request.yml&title=Feature+Request%3A\">accepts feature suggestions</a> on its GitHub repository.</p>\n\n\n\n<p>Version 1.4.0 of the Jetpack Social plugin moved the share limits code to the Publicize package and added a meter to show users how many shares they have remaining. Users on the free plan should notice these changes in their dashboards.</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, 18 Oct 2022 14:54: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:96:\"Do The Woo Community: A WooSesh Chat with Paul Maiorana, Kimberly Coleman and 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=73148\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://dothewoo.io/woosesh-chat-paul-maiorana-kimberly-coleman-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:454:\"<p>In this show we talk about the new turnkey WooCommerce, flash sales year round and a look at the first day of sessions. </p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woosesh-chat-paul-maiorana-kimberly-coleman-courtney-robertson/\">A WooSesh Chat with Paul Maiorana, Kimberly Coleman and Courtney Robertson</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, 18 Oct 2022 10:15: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: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:66:\"WPTavern: Plugin Dependencies Feature Plugin Now Ready for Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=138684\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/plugin-dependencies-feature-plugin-now-ready-for-testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3427:\"<p>For more than a decade, WordPress developers have been <a href=\"https://wptavern.com/yet-another-plugin-dependencies-discussion-two-proposals-this-time\">discussing</a> how core can support plugins that require one or more other plugins in order to work. Having a standardized way of managing plugin dependencies would be a useful and time-saving feature for developers, who currently have to roll their own solutions for this. </p>\n\n\n\n<p>“The situation there is a lot like the relationship between parent and child themes,” project lead Andy Fragen said in February when <a href=\"https://make.wordpress.org/core/2022/02/24/feature-project-plugin-dependencies/\">introducing the idea for the feature plugin</a>. “Without their relationships to the bigger plugin, those dependent plugins can do very little. Every plugin developer is on their own to code a solution to resolve the issue. The single most common example is WooCommerce, which is a dependency for hundreds, if not thousands, of WooCommerce add-on plugins.”</p>\n\n\n\n<p>After nine months of discussion and development, the <a href=\"https://wordpress.org/plugins/wp-plugin-dependencies/\">Plugin Dependencies feature plugin</a> is now <a href=\"https://make.wordpress.org/core/2022/10/12/call-for-testing-plugin-dependencies/\">ready for testing</a>. It allows plugin authors to specify any WordPress.org-hosted plugin(s) that are required for their plugins to function. A plugin that has dependencies can be identified by adding a “Requires Plugins” header to the docblock of the main plugin file. Plugin authors can specify as many dependencies as necessary in a comma-separated list of plugin slugs.</p>\n\n\n\n<p>How does it work? Site owners will get an admin notice if there are dependencies they need to install. The plugin card will be updated to display the <em>Requires</em> and <em>Required by</em> information on the Plugins screen.</p>\n\n\n\n<img />\n\n\n\n<p>Fragen <a href=\"https://make.wordpress.org/core/2022/10/12/call-for-testing-plugin-dependencies/\">outlined</a> how the community can test the new core support for handling plugin dependencies. You do not have to be a developer to participate in testing this new feature. It involves installing test plugin files and confirming admin notices appear and disappear at the right times. Testers who are comfortable editing plugin files can try adding dependencies, adding a dependency for non-WordPress.org plugins, and other more advanced tests.</p>\n\n\n\n<p>Version control is not part of this project, so developers will not be able to specify a minimum required version, for example. </p>\n\n\n\n<p>“Version control is out of scope for the feature as described in the original Make post referenced above,” Fragen said in response to a question on the feature plugin. “As the majority of the dependencies come from the dot org repository, the most current versions will be installed.</p>\n\n\n\n<p>“Specifically, WordPress should automatically prompt the user to update to the current version and may use auto-updates as well.”</p>\n\n\n\n<p>Testing will be open until December 1, 2022. Anyone who wants to be part of moving this long-awaited feature towards a possible inclusion in core can <a href=\"https://github.com/WordPress/wp-plugin-dependencies/issues/new\">report issues</a> to the WP Plugin Dependencies plugin’s repository.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Oct 2022 02:53: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: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:52:\"WordPress.org blog: WordPress 6.0.3 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=13618\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2022/10/wordpress-6-0-3-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:6149:\"<p><strong>WordPress 6.0.3</strong> is now available!</p>\n\n\n\n<p>This release features several security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 6.0.3 is a short-cycle release. The next major release will be <a href=\"https://make.wordpress.org/core/6-1/\">version 6.1</a> planned for November 1, 2022.</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.0.3.zip\">download WordPress 6.0.3 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-0-3\">visit the HelpHub site</a>.</p>\n\n\n\n<h2>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>Stored XSS via wp-mail.php (post by email) – Toshitsugu Yoneyama of Mitsui Bussan Secure Directions, Inc. via JPCERT</li>\n\n\n\n<li>Open redirect in `wp_nonce_ays` – <a href=\"https://hackerone.com/devrayn\">devrayn</a></li>\n\n\n\n<li>Sender’s email address is exposed in wp-mail.php – Toshitsugu Yoneyama of Mitsui Bussan Secure Directions, Inc. via JPCERT</li>\n\n\n\n<li>Media Library – Reflected XSS via SQLi – Ben Bidner from the WordPress security team and Marc Montpas from Automattic independently discovered this issue</li>\n\n\n\n<li>CSRF in wp-trackback.php – Simon Scannell</li>\n\n\n\n<li>Stored XSS via the Customizer – Alex Concha from the WordPress security team</li>\n\n\n\n<li>Revert shared user instances introduced in <a href=\"https://core.trac.wordpress.org/changeset/50790\">50790</a> – Alex Concha and Ben Bidner from the WordPress security team</li>\n\n\n\n<li>Stored XSS in WordPress Core via Comment Editing – Third-party security audit and Alex Concha from the WordPress security team</li>\n\n\n\n<li>Data exposure via the REST Terms/Tags Endpoint – Than Taintor</li>\n\n\n\n<li>Content from multipart emails leaked – <a href=\"https://profiles.wordpress.org/kraftner\">Thomas Kräftner</a></li>\n\n\n\n<li>SQL Injection due to improper sanitization in `WP_Date_Query` – <a href=\"https://www.gold-network.ch\">Michael Mazzolini</a></li>\n\n\n\n<li>RSS Widget: Stored XSS issue – Third-party security audit</li>\n\n\n\n<li>Stored XSS in the search block – Alex Concha of the WP Security team</li>\n\n\n\n<li>Feature Image Block: XSS issue – Third-party security audit</li>\n\n\n\n<li>RSS Block: Stored XSS issue – Third-party security audit</li>\n\n\n\n<li>Fix widget block XSS – Third-party security audit</li>\n</ul>\n\n\n\n<h2>Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, and <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a> at mission control. Thanks to <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> and <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> for their help on package updates.</p>\n\n\n\n<p>WordPress 6.0.3 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver several 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-default\"><a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</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/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/voldemortensen/\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a>, <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a><a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a>, <a href=\"https://profiles.wordpress.org/tykoted/\">Teddy Patriarca</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, and <a href=\"https://profiles.wordpress.org/chesio/\">Česlav Przywara</a>.</p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Thanks to <a href=\"https://profiles.wordpress.org/peterwilsoncc/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>peterwilsoncc</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:\"Mon, 17 Oct 2022 22:55: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: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:\"\";}}}}}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:99:\"WordPress.org blog: WP Briefing: Episode 41: WordPress 6.1 Sneak Peek with Special Guest Nick Diego\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=13578\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wordpress.org/news/2022/10/episode-41-wordpress-6-1-sneak-peek-with-special-guest-nick-diego/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24119:\"<p>In the forty-first episode of the WordPress Briefing, peek into the upcoming WordPress 6.1 release with our host, Josepha Haden Chomphosy, and the release’s Editor Triage Lead, Nick Diego. </p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<p>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo: <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production: <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br />Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2>Guests</h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></p>\n\n\n\n<h2>References</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/mobile/2022/10/04/call-for-testing-wordpress-for-android-20-9/\">Call for Testing for WordPress for Android 20.9</a><br /><a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-2-now-available/\">RC2 WordPress 6.1</a> <br /><a href=\"https://make.wordpress.org/core/2022/10/10/multisite-improvements-in-wordpress-6-1/\">Multisite Improvements</a><br /><a href=\"https://make.wordpress.org/core/2022/10/10/block-styles-generation-style-engine/\">Block Style Generation Tool</a><br /><a href=\"https://make.wordpress.org/core/2022/10/10/changes-to-block-editor-preferences-in-wordpress-6-1/\">Editor Preferences Changes</a><br /><a href=\"https://make.wordpress.org/core/2022/09/14/6-1-product-walk-through-recap/\">WordPress 6.1 Walkthrough </a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-13578\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00] </strong></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.</p>\n\n\n\n<p>I’m your host, Josepha Haden Chomphosy. Here we go. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:40] </strong></p>\n\n\n\n<p>And today I have with me Nick Diego. Welcome, Nick, to the WordPress Briefing.</p>\n\n\n\n<p><strong>[Nick Diego 00:00:44] </strong></p>\n\n\n\n<p>Thank you so much for having me.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:46] </strong></p>\n\n\n\n<p>Yeah. Before we get started, why don’t you tell me a bit about yourself, just kind of your history with WordPress and then what it is that you’ve been doing with the WordPress 6.1 release squad.</p>\n\n\n\n<p><strong>[Nick Diego 00:00:56]</strong></p>\n\n\n\n<p>Yeah, so I’m actually kind of new to working with WordPress full-time. Up until about June of last year, I was in the hospitality industry for a career of 10 years. But I always loved doing WordPress on the side. And after the long pandemic, I figured it was time to kind of pursue my passion and work with WordPress full-time.</p>\n\n\n\n<p>And that ultimately led to my current role as a developer advocate at WPEngine, where I focus primarily on WordPress and contribution to Core itself. And then I guess it was maybe March or April this year when <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, who I’ve worked with a ton, she asked me if I’d be interested in helping out on 6.0 as an Editor Triage Lead which was an awesome experience.</p>\n\n\n\n<p>And now I’m back for 6.1.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:37] </strong></p>\n\n\n\n<p>That’s excellent. I always like to hear about people who are coming to do repeat tours of duty.</p>\n\n\n\n<p><strong>[Nick Diego 00:01:43]</strong></p>\n\n\n\n<p>Yes, exactly.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:44] </strong></p>\n\n\n\n<p>I probably shouldn’t refer to working on WordPress releases as a tour of duty. However, I find that releases are so large and complex, and there are so many people in there now that working on them takes an entirely different skill set now than it used to take when WordPress was like 1% of the web.</p>\n\n\n\n<p>And so I think it’s a really big task, and I think it’s great when people were, like, that was either so good that I would do it again, or I would like a second go because I could do it better. Whichever way brings people to it. So, yeah.</p>\n\n\n\n<p><strong>[Nick Diego 00:02:18] </strong></p>\n\n\n\n<p>No, I was just gonna say that’s a great point because the Editor Triage Lead, which is the role that I currently have, was a brand new role for 6.0. The project kind of got so big that it kind of made sense to have a triage lead focused specifically on Gutenberg. Gutenberg’s such a big part of WordPress now.</p>\n\n\n\n<p>And so that’s where that role kind of came from, and now we’ve carried it over to 6.1. As the project grows, we need more people to come in and help make sure the release is as smooth as it can be. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:42]</strong></p>\n\n\n\n<p>Yes. Because of that promise of backward compatibility and all the things.</p>\n\n\n\n<p><strong>[Nick Diego 00:02:47]</strong></p>\n\n\n\n<p>Exactly.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:48] </strong></p>\n\n\n\n<p>Cool. So, by the time this releases, if I recall correctly, we will have passed RC2, or RC2 is coming the next day or something like that. We’re right around the Release Candidate two. So you have been doing this for quite some time on this particular release. So far, what is the feature that you’re most excited about that’s going out in the 6.1 release?</p>\n\n\n\n<p><strong>[Nick Diego 00:03:09] </strong></p>\n\n\n\n<p>So, this is going to sound really boring, but it’s actually incredibly exciting. So, the most exciting quote-unquote feature that I’m excited about is the improved consistency and standardization of block controls that are coming in 6.1. So things like typography and color and borders and dimensions.</p>\n\n\n\n<p>These are things and tools that we’ve had in a lot of core blocks, but it hasn’t been consistent throughout. And a ton of work has been done in 6.1 to establish that consistency. We’re not a hundred percent there, but typography, I think we’re at like 85% of all core blocks now support all the typography controls, and with each release as we head to 6.2, we’ll improve on that.</p>\n\n\n\n<p>But it’s really great for theme builders, theme designers, and users to be able to control the look and feel blocks consistently throughout the editor.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:58] </strong></p>\n\n\n\n<p>I was gonna immediately answer you earlier with like, there are no boring answers, there are no boring improvements. And as you were explaining why it is that you kind of thought it might be considered boring, I think it’s fair to say that anytime that you’re increasing the consistency and you’re increasing the confidence between what you saw on the back end and what you actually shipped on the front end– anytime you’re doing that, I think that that is exciting in the prove the negative way. </p>\n\n\n\n<p>If you think about the negative excitement that occurs when you have published something, and it looks one way in the back end, and then it looks totally different on the front end, and the panic you feel when you have to fix. Not having that is a really big step up, I think. And so anything that provides more consistency for people who are using WordPress, people who are building with WordPress, I always find exciting. But also, like, I’m an office person, and so I would find office things exciting, right?</p>\n\n\n\n<p><strong>[Nick Diego 00:04:53] </strong></p>\n\n\n\n<p>It creates a more delightful experience. I do a lot of work on the Training team, doing educational things, and we teach people how to change typography and change color. Once they learn how to do it in one block, if they can take that same skill set and apply it to any other block, it’s that light bulb moment. They understand they know how to manipulate and use WordPress to its fullest. So adding that consistency really helps to level up users.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:15] </strong></p>\n\n\n\n<p>Yeah, I’m gonna take us off track a little bit and just ask a general question here. Like, I remember the first time that I was working with what was a site, I guess, qualified for a site at the time. And I remember the first time that I discovered that I could change the look and feel with HTML and CSS, and I did that.</p>\n\n\n\n<p>Also was like, well, I accept my fate. Whatever happens, if I kill everything I’ve ever written, that is just how it’ll be. Like the sheer terror of all of that is so different now. Do you recall that first moment where you’re like, Oh, I do have some power over this? I have some control over this, and whether you also found it scary.</p>\n\n\n\n<p><strong>[Nick Diego 00:05:52]</strong></p>\n\n\n\n<p>So I came to WordPress kinda as a hobby and website development kind of as a hobby. So I was kind of always in that tinkering phase, or I wasn’t building something for anyone else. I was in a safe place to destroy whatever I was working on with my tinkering. So I never really quite had that fear, but I can definitely see it from the perspective of building something for somebody else.</p>\n\n\n\n<p>But you’re right, the editor and the controls that we have, and you know, now make it a lot easier to kind of manipulate and exert your creative desires in WordPress than it was before with CSS.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:23] </strong></p>\n\n\n\n<p>I love the phrase ‘I was safe to destroy things, ’ and if I can figure out a way to make it a tagline for something, I will.</p>\n\n\n\n<p><strong>[Nick Diego 00:06:30] </strong></p>\n\n\n\n<p>Exactly.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:31] </strong></p>\n\n\n\n<p>Alright. So during your second time around here on the release squad with 6.1, what have been the bright spots of that experience, and have there been any unexpected challenges of being on the release squad?</p>\n\n\n\n<p><strong>[Nick Diego 00:06:44]</strong></p>\n\n\n\n<p>Again, I come to WordPress from, you know, from a different career. It’s kind of a passion of mine to be working with WordPress. So I kinda have a unique experience than maybe some others. And when I approach WordPress, there’s always that tendency to say, ‘why doesn’t it do this?’ Or ‘why don’t they do this?’ And I’ve always been the person…, well, it’s open source. We, we, we can, we can</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:05] </strong></p>\n\n\n\n<p>…can do it</p>\n\n\n\n<p><strong>[Nick Diego 00:07:05] </strong></p>\n\n\n\n<p>…we can do it. And so that’s kind of how I approach things. Now, of course, you know, I have the privilege of time to do that. Not everybody does, but one of the unexpected bright spots about working in a release squad is understanding how it all works. </p>\n\n\n\n<p>How does WordPress actually get built? What is the process that it goes through? It was just eye-opening to me, and I really got a shout-out, Anne, for inviting me to be on 6.0. It brought me in. I learned so much about it, and now I’m just excited to keep working on these releases.</p>\n\n\n\n<p>But a release is hard. You know, it’s a… WordPress is huge. There are a lot of moving parts, there are a lot of things going on. Right now, we’re trying to get everything ready for the first release candidate. So being on the release squad is not an easy job. But it’s exciting, it’s fun, and you really feel like you’re part of that ‘we’ really helping to build WordPress.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:53] </strong></p>\n\n\n\n<p>One of the things that I hope that people have learned from any time that they spent working with me is that like we understand here in the WordPress open source project, and I believe that all open source projects must understand this, but like every change that you make, if there are things that are dependent on it, which is gonna be true for most of us, we’ll have intended consequences and also unexpected consequences, and unintended, unexpected consequences. </p>\n\n\n\n<p>And so I’ve always felt like the thing that really makes the biggest difference about how we do open source in WordPress is that, for the most part, we have a concept of where the most likely changes are going to happen across our entire ecosystem.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:40] </strong></p>\n\n\n\n<p>We have a better understanding, at least compared to when I got here, a better understanding of how interconnected it all is. And so you’ve got this change here, and it looks small, but it’s gonna have this positive or negative impact as you kind of work your way out from it. And so I think that that is an interesting thing, and certainly, you get a really clear concept of it in the release squad, I think.</p>\n\n\n\n<p><strong>[Nick Diego 00:09:02]</strong></p>\n\n\n\n<p>Oh, absolutely. If you were to build something like the block editor without caring at all about backward compatibility, you’d be done by now, right? I mean, so much of what we do is concerning ourselves with making sure that everybody who’s on a classic theme or hybrid theme or whatever it might be that they continue to use WordPress in a safe and stable way.</p>\n\n\n\n<p>This is part of being such a large content management system.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:09:24] </strong></p>\n\n\n\n<p>So you already told us the feature that you’re most excited about, and so now I’m gonna ask you about what feature or what bug fix has the most notable improvements that are coming to 6.1. This is a little different as in, like, there’s the thing you’re excited about, which is an office thing, but like a thing that is maybe not new but has the biggest delta, the biggest change to anyone’s experience of it.</p>\n\n\n\n<p><strong>[Nick Diego 00:09:51] </strong></p>\n\n\n\n<p>Yeah, so obviously, in 5.9, we introduced full site editing, and 6.0 was a natural progression from that with more and more features. Now it’s safe to say that there’s only a small fraction of websites that are using the whole full site editing of or block themes, all that kind of stuff. One of the hangups about that was managing templates inside of the site editor.</p>\n\n\n\n<p>You could add the files to your theme, which would then show up in the site editor. But there wasn’t a direct way to add more complicated templates within the site editor itself. That is changing in 6.1. So now you actually have the functionality to install something like 2023, which is the new core theme, and build out all these very complicated templates within the UI of the site editor that you could not have done before.</p>\n\n\n\n<p><strong>[Nick Diego 00:10:38]</strong> </p>\n\n\n\n<p>I personally think that the biggest benefit of full site editing is really to empower no-code or low-code users. And the ability to add these templates directly in the UI really levels them up. Because now, you can do all that complicated stuff that you normally would need to be adding to theme files and jumping into the code. You can do that within the site editor now, which I think is fantastic.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:59] </strong></p>\n\n\n\n<p>That’s great. And just a general caveat, anytime that we talk about anything that’s very developer-y or very no code-y, I think it’s always worth mentioning, yes, a lot of what we’re trying to do with the block editor is to just kind of give some power back to folks who cannot find the time to become a developer or don’t have the inclination. They don’t want to do that. </p>\n\n\n\n<p>But that does not mean that no code is ever involved in WordPress. It’s still a software. You can still do very complicated things with it. And if you are a developer, you should not think to yourself, ‘oh now that it’s being available to low code/no code users, that means you don’t want me.’</p>\n\n\n\n<p>Like, that’s not at all what’s happening. You can do very complicated things still. </p>\n\n\n\n<p><strong>[Nick Diego 00:11:42] </strong></p>\n\n\n\n<p>A hundred percent. A hundred percent. Absolutely.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:45] </strong></p>\n\n\n\n<p>Alright, so that brings us to our final question here because we like to stay as true to the name as possible here on the WP Briefing. If someone were wanting to get involved with the next release, so WP 6.2, how would they do that?</p>\n\n\n\n<p><strong>[Nick Diego 00:12:01]</strong></p>\n\n\n\n<p>So, talk to Anne, and she’ll get you set up. No, I’m just kidding. So at the, after each release, there’s a posting that goes out that lists all the different release teams, and you can just put your name out there and ask to be, you know, for consideration to be part of the team.</p>\n\n\n\n<p>However, I will say that the best thing you can do right now is help with 6.1. You don’t necessarily need to be a release lead to do that testing, helping with bug fixes. Reach out to me. Reach out to other release leads, and we’ll get you involved and engaged with the release. That will give you a really good framework to start working and become a release lead for 6.2.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:12:37] </strong></p>\n\n\n\n<p>Yeah. I think we talked maybe two or three episodes ago, or it could be more than that, I’ll never know, about the release squad, like the group that’s doing that. In the event you think to yourself, ‘there’s no way in a million years that I’m gonna just show up tomorrow and be part of the release squad,’ I heard what they said in the first question/answer moment– that’s fine, too. </p>\n\n\n\n<p>As Nick mentioned, you can always get involved with testing, you can get involved with triage. Those are areas where any feedback at all is valuable because we can get better information about what worked and didn’t, what was expected versus what happened. And that type of information is where all of our co-creators of the WordPress software–really, we rely on what you all are pointing out to us. </p>\n\n\n\n<p>If you’re not shining spotlights on the most painful parts of your experience, sometimes we don’t necessarily know that that’s a pain point for anyone.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:13:34]</strong> </p>\n\n\n\n<p>And so yeah, that’s a great place to start. If you are more of a writer, technical or prose, there are different spaces you can go to, like keep our docs up to date or make sure that people know that changes are coming at all in WordPress because that’s a thing. If you are a backend developer, we have a million things you can do because that’s just all day, every day, for WordPress.</p>\n\n\n\n<p>It’s just all the deep backend work. And so yeah.</p>\n\n\n\n<p><strong>[Nick Diego 00:13:58] </strong></p>\n\n\n\n<p>I did want to mention that, you know, being on the release team does not necessarily mean that you’re incredibly technical. We have a documentation lead, we have a design lead, you know, a communication lead. So there’s a lot of different roles in the team that, you know, across all disciplines.</p>\n\n\n\n<p>So don’t think if you’re not a hardcore developer, that precludes you from being on the team.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:14:19] </strong></p>\n\n\n\n<p>Yeah, and if you’re really good with common sense and working fully remotely, you can be the release coordinator. I can tell you because I did that for 5.0. It was a big job. It was our, it was the first time we had a release squad as opposed to just like the release lead.</p>\n\n\n\n<p>Because there was just so much that was going into that and so much riding on it. And like you said in some other answer that you gave like if you were to just be like, we’re shutting everything down and rewriting this in six months, and I hope you can come with us on it. Like a lot of open source projects do it that way.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:14:51]</strong> </p>\n\n\n\n<p>And that is a choice, and we made the opposite choice. And so we’re bringing all of our co-conspirators with us, all of our co-creators of WordPress. That’s the hope all the time. Making sure that they have enough information, that they feel safe to destroy things, enough information, and skills about how to get out of it, that they always feel some high confidence in what they’re trying to do versus what they actually did do.</p>\n\n\n\n<p>So, yeah, excellent. Nick, do you have any final thoughts for our listeners?</p>\n\n\n\n<p><strong>[Nick Diego 00:15:20] </strong></p>\n\n\n\n<p>Nope. I just hope everybody goes out and downloads 6.1 and enjoys it as much as I am.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:15:25] </strong></p>\n\n\n\n<p>Yeah, go check it out. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:15:28] </strong></p>\n\n\n\n<p>That brings us now to our small list of big things. And actually, it is a pretty big list today, but still pretty big things too. So first up, we have a call for testing that is out, and it is for our Android users.</p>\n\n\n\n<p>There is a call for testing for WordPress for Android 20.9, and I feel like we don’t get a lot of calls for testing for Android devices. And so if you have been feeling left out or just like we don’t always have that kind of mobile testing available, this is the opportunity for you. </p>\n\n\n\n<p>The next thing is that tomorrow, we have RC2, release candidate two for WordPress 6.1.</p>\n\n\n\n<p>That’s coming out on October 18th. There will be a link in the show notes, but that means if you write a plugin or a theme or have anything that kind of extends the core of WordPress, now is the time to start testing anything that might be a bug or represent a breaking change and make sure that you file those bugs so that we can get things as settled and excellent as possible.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:16:40] </strong></p>\n\n\n\n<p>And speaking of Word points, uh, WordPress 6.1, not Word point, WordPress 6.1. I actually have three changes that I think are going to represent some pretty big changes for folks. I will have links to all of these in the show notes. If you don’t know where the show notes are, it’s on wordpress.org/news/podcast.</p>\n\n\n\n<p>So the three things that I think are gonna be big, worthwhile things. The first one is multisite improvements, and the second one will be the style engine that’s block styles generation tool, which will ship in Core and I think is really important for y’all to take a look at. And then also there are some changes coming to the block editor preferences.<br /><br />Like I said, links to all of those are going to be in the show notes, and so they should be pretty easy for you to find. But also, if you want to just get a general look at everything that’s coming in 6.1, we did a walkthrough that I will link to in the show notes as well, and you can get a full understanding of what is going to be coming early in November.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:17:45] </strong></p>\n\n\n\n<p>And that, my friends, is your small list –big list– of big things. Thanks for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosy, and I’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, 17 Oct 2022 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:14:\"Santana Inniss\";s: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:78:\"Do The Woo Community: Highlights from a WooCommerce Keynote with Paul Maiorana\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=73129\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://dothewoo.io/highlights-from-woocommerce-keynote-with-paul-maiorana/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:443:\"<p>At WooSesh, Paul Maiorana talked about their new turnkey solution, Woo Experts, new core features, performance and developer resources.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/highlights-from-woocommerce-keynote-with-paul-maiorana/\">Highlights from a WooCommerce Keynote with Paul Maiorana</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:\"Mon, 17 Oct 2022 09:08: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: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:151:\"Gutenberg Times: Extending Query Blocks, 160 Block Themes, new tickets for WordCamp Asia, WordPress 6.1 RC 1 and so much more – Weekend Edition 233\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=22413\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:153:\"https://gutenbergtimes.com/extending-query-blocks-160-block-themes-new-tickets-for-wordcamp-asia-wordpress-6-1-rc-1-and-so-much-more-weekend-edition-233/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:31861:\"<p>Howdy, </p>\n\n\n\n<p>You probably heard that <a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\">WordPress 6.1 Release candidate</a> was released. I am so excited about this ginormous release. Take a look at the <a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">WordPress 6.1 Fieldguide</a>! There are a ton of posts for developers to check out, be it about performance, accessibility, REST API, database or the block editor. Now it is definitely the time to start testing your sites, plugins, and themes for issues. If you find some report them on the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta/RC forum</a>. </p>\n\n\n\n\n<p>If you are not a developer, use links in the table of contents to jump past the long list of Dev Notes.</p>\n\n\n\n\n<p>That was however not all, that happened this week. Gutenberg plugin was released, and I also was happy to find a series of great blog posts about the development experience, extending the block editor. </p>\n\n\n\n<p>Enjoy the news below of plugins, themes, and courses. </p>\n\n\n\n<p>Have a pleasant weekend!</p>\n\n\n\n<p>Yours, ?<br /><em>Birgit</em></p>\n\n\n\n\n\n\n<div class=\"is-layout-flow wp-block-group has-light-background-background-color has-background\"><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><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-word-press-6-1\">WordPress 6.1 </a></li><li><a href=\"https://gutenbergtimes.com/feed/#1-more-editor-related-dev-notes-for-word-press-6-1\">Editor and block-theme related Dev Notes </a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-gutenberg-14-3-released\">Gutenberg 14.3 released</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#4-160-is-this-weeks-count-of-block-themes-in-the-word-press-repository\">160 Block Themes</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><li><a href=\"https://gutenbergtimes.com/feed/#5-s\">Upcoming WordPress events</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#8-learn-word-press-online-meetups\">Learn WordPress Online Meetups</a></li></ul></li></ul></div>\n</div></div>\n\n\n\n\n<h2 id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<h3 id=\"1-word-press-6-1\">WordPress 6.1 </h3>\n\n\n\n<p>The Field Guide routinely bundles all the dev notes published around a major release of WordPress. It also lists smaller changes in a “But wait there is more” section. For WordPress 6.1 the documentation release team decided on two more guides: </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/\"><strong>Performance Field Guide</strong></a> and</li>\n\n\n\n<li> A separate list of <a href=\"https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/\">Accessibility Improvements</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>Leonardus Nugraha</strong> provided insight into <a href=\"https://www.hostinger.com/blog/wordpress-6-1-beta\"><strong>WordPress 6.1 Beta: First Look Into the Next Major Release</strong></a> with code samples to create a pattern, add fluid typography to a theme’s theme.json file, and how to add block-template parts to a classic theme. It’s a great summary of many features coming to WordPress 6.1 </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 for Kinsta <a href=\"https://kinsta.com/blog/wordpress-6-1/\"><strong>What’s New in WordPress 6.1: Fluid Typography, Improved Template System, New Site Health Checks, and Much More!</strong></a>, Carlo Daniele, also describes the major features coming to WordPress 6.1, highlighting the Fluid Typography with example code, list the improvements to existing blocks, and explains how the new Border controls for Columns work. There is a lot more in that post to catch-up on what will be in the upcoming major WordPress release on November 1st, 2022. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>WordPress VIP</strong> published <a href=\"https://wpvip.com/2022/10/13/wordpress-6-1-hot-takes/\"><strong>WordPress 6.1: Hot Takes for Enterprise Content Creators</strong></a>. They highlighted the better design consistency, creating richer, more engaging experiences with an improved block editor.</p>\n\n\n\n<h3 id=\"1-more-editor-related-dev-notes-for-word-press-6-1\">Editor and block-theme related Dev Notes </h3>\n\n\n\n<p><em>Below I shared the links to this week’s Dev Notes related to Gutenberg. <a href=\"https://gutenbergtimes.com/style-variations-in-theme-directory-beta-first-devnotes-for-wordpress-6-1-ecommerce-blocks-by-edd-and-woo-weekend-edition-232/#1-word-press-6-1\">Last week’s edition listed four more.</a></em></p>\n\n\n\n<p>In <strong><a href=\"https://make.wordpress.org/core/2022/10/10/updated-editor-layout-support-in-6-1-after-refactor/\">Updated editor layout support in 6.1 after refactor</a> Isabel Brison</strong> wrote all about a new layout type in addition to Flow and Flex: Constrained. It helps designers and site builders to tame the Innerblocks of the layout blocks. In her dev note, Brison also listed additional layout updates.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In this post, <a href=\"https://make.wordpress.org/core/2022/10/10/changes-to-block-editor-preferences-in-wordpress-6-1/\"><strong>Changes to block editor preferences in WordPress 6.1</strong></a>, <strong>Daniel Richards</strong> describes the in and outs of the new Preference storage mechanism. Many content creators have waited for this for years: Now the block editor will actually remember your setting to switch on the Top Toolbar, and switch off the Full-screen view, and switch off the Welcome screen. Now it’s all stored in the database of your sites. It does not save it across multiple sites, though. WordPress is powerful but not that powerful. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Developer are now empowered <a href=\"https://make.wordpress.org/core/2022/10/10/extending-the-query-loop-block/\"><strong>extending the Query Loop block</strong></a>. This post <strong>Nik Tsekouras</strong>, explains how you can add your custom query arguments via a block variation of the Query Loop block. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The block editor now also has <a href=\"https://make.wordpress.org/core/2022/10/10/filters-for-theme-json-data/\"><strong>Filters for theme.json data</strong></a>, with it plugin and theme developer can query the styling and layout data for all three levels: Blocks, Themes and User. <strong>André Maneiro</strong> has the details for you. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Components are the building blocks of core blocks and can also be used for custom blocks. <strong>Marco Ciampini</strong> explained the <strong><a href=\"https://make.wordpress.org/core/2022/10/10/editor-components-updates-for-wordpress-6-1/\">Editor Components updates in WordPress 6.1</a>. </strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Until now, styling via theme.json only worked for blocks and for Global styling. Now theme developers can start <a href=\"https://make.wordpress.org/core/2022/10/10/styling-elements-in-block-themes/\"><strong>styling elements in block themes</strong></a>, that means all headers, regardless of where they are added can be consistently styled, same for buttons or input fields. This reduces considerably the lines in a theme’s custom style.css. This Dev note was authored by <strong>Ben Dwyer</strong>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ramon Dodd</strong> explained in his post the details of <a href=\"https://make.wordpress.org/core/2022/10/10/block-styles-generation-style-engine/\"><strong>Block styles generation (Style Engine)</strong></a>, how the styles found in themes, blocks, Styles UI and core blocks all come together in a black box before they reach the frontend of the site. Or something to that effect. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Adam Zielinski </strong>and <strong>Grzegorz Ziolkowski</strong> summarized the <strong><a href=\"https://make.wordpress.org/core/2022/10/12/block-api-changes-in-wordpress-6-1/\">Block API changes in WordPress 6.1</a>.</strong> They explain several new Block API features available via the <code>block.json</code> file, specifically the new <code>render</code> attribute for dynamic block PHP templates, how multiple scripts can now registered for blocks, and developers can import single core blocks into their apps, rather than all core/blocks/ </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>One of the missing pieces for curating the editing experience were <strong><a href=\"https://make.wordpress.org/core/2022/10/11/content-locking-features-and-updates/\">Content locking features and updates</a>.</strong> In his dev note, <strong>Jorge Costa</strong> explains how content-only editing for blocks, patterns, and templates, will work and how a template lock inheritance for the Column block functions. </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://make.wordpress.org/core/2022/10/11/simplified-data-access-with-new-react-hooks-in-wordpress-6-1/\"><strong>Simplified data access with new React hooks in WordPress 6.1</strong></a> ensure a better WordPress developer experience, we learn from <strong>Adam Zielinski’</strong>s dev note. The amount of code necessary to access WordPress data like post, pages, users, or custom post types have been considerably reduced. </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 <a href=\"https://make.wordpress.org/core/2022/10/11/reference-styles-values-in-theme-json/\"><strong>Reference Styles values in theme.json</strong></a>, <strong>Ben Dwyer</strong> outlines how you can ensure consistency and avoid duplication of code across entities. If you have a color palette defined, blocks and template parts can reference the particular variable across all other styles so they adhere to the color palette of the theme. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Brian Alexander</strong> wrote about the <a href=\"https://make.wordpress.org/core/2022/10/07/improved-php-performance-for-core-blocks-registration/\"><strong>Improved PHP performance for core blocks registration</strong></a> which is achieved through making sure that only the files required for the blocks on the canvas are loaded in memory. Until now, all 70+ core blocks were loaded all the time. That’s a huge performance gain for WordPress sites. </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://make.wordpress.org/core/2022/10/11/enhanced-typescript-support-in-wordpress-6-1/\"><strong>Enhanced TypeScript support in WordPress 6.1</strong></a> improves the developer experience for WordPress developers, as most programming tools tap into the Typescript signatures and notify the developer, when there is the wrong type or required arguments are missing. In the video embedded into the post, <strong>Adam Zielinski</strong> shows the interaction of an IDE for auto-completion and static checks.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ramon Dodd</strong> also write about the implementation of <a href=\"https://make.wordpress.org/core/2022/10/03/fluid-font-sizes-in-wordpress-6-1/\"><strong>Fluid font sizes in WordPress 6.1</strong></a>. You learn how they work and how you can control them via the theme.json file. This is another feature improving the overall responsiveness of the block editor. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In the post, <a href=\"https://make.wordpress.org/core/2022/10/10/miscellaneous-editor-changes-for-wordpress-6-1/\"><strong>Miscellaneous editor changes for WordPress 6.1</strong></a>, you learn about the small changes and sometime also make a big difference, for instance, content patterns for custom post types, improvements to the Cover block, or a new filter for he Navigation block. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Creating a consistent UI for blocks, was one of the focuses for this WordPress release. The team is about 50% there. In this <a href=\"https://make.wordpress.org/core/2022/10/11/roster-of-design-tools-per-block/\"><strong>Roster of design tools per block</strong></a>, you can look up which blocks have which set of design tools in the categories: Typography, Color, Dimension, Border, and Layout controls. </p>\n\n\n\n<img />\n\n\n\n<h3 id=\"2-gutenberg-14-3-released\">Gutenberg 14.3 released</h3>\n\n\n\n<p><strong>Aaron Robertshaw</strong> was the release lead for version 14.3 of the Gutenberg plugin. In his release post <a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/\"><strong>What’s new in Gutenberg 14.3? (12 October)</strong></a> he highlighted: </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/#quickly-navigate-blocks-of-text\">Quickly navigate blocks of text</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/#improved-drag-and-drop-for-images\">Improved drag and drop for images</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/#typography-panels\">Improved tools panels for the Styles typography controls</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>Sarah Gooding</strong> at WPTavern, took it for a spin and found <a href=\"https://wptavern.com/gutenberg-14-3-improves-image-drag-and-drop\"><strong>Gutenberg 14.3 Improves Image Drag and Drop</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>Dave Smith</strong> joined me for the <strong><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-74-gutenberg-14-2-14-3-wordpress-6-1-style-variations-in-theme-directory-course-on-gutenberg-data-layer/\">Gutenberg Changelog episode 74</a></strong> recording on Friday. We discussed WordPress 6.1, Gutenberg releases 14.2 and 14.3 community projects and what comes next. <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-74-gutenberg-14-2-14-3-wordpress-6-1-style-variations-in-theme-directory-course-on-gutenberg-data-layer/\">The episode is now available online</a>. </p>\n\n\n\n<img /><strong>Dave Smith</strong> and Birgit Pauli-Haack recording <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-74-gutenberg-14-2-14-3-wordpress-6-1-style-variations-in-theme-directory-course-on-gutenberg-data-layer/\">episode 74 of the Gutenberg Changelog</a>\n\n\n\n<div class=\"is-layout-flow wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<p><strong>?️ </strong> New episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-74-gutenberg-14-2-14-3-wordpress-6-1-style-variations-in-theme-directory-course-on-gutenberg-data-layer/\">Gutenberg Changelog #74 – Gutenberg 14.2, 14.3, WordPress 6.1, Style Variations in Theme Directory, Course on Gutenberg Data Layer</a> with special guest, Dave Smith, and host Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<h2 id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Jamie Marsland</strong> make you a master in building layouts with his newest video <a href=\"https://www.youtube.com/watch?v=Ed7s5MFg_vs\"><strong>Create Pro WordPress Page Layouts in Just 10 Minutes</strong></a>. He explains the CSS box model hierarchy, starting with the content, and the adding padding, border and margin with the new controls in the block editor. He then goes on and explains the spacing between columns, he called Gutter. Being able to change the gutter has considerable implications for creating great layouts, Marsland found. Go on, check it out and learn all about columns-based layouts in <a href=\"https://www.youtube.com/watch?v=Ed7s5MFg_vs\">this video. </a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>At this week’s <a href=\"https://www.youtube.com/watch?v=3eV6z2sNJOI\"><strong>Torque Social Hour: An AI-Generative Art Block for WordPress</strong></a>, DocPop talked to Aaron Edwards, the co-founder of Infinite Uploads and CTO of WPMU DEV. They discussed my new favorite plugin <a href=\"https://wordpress.org/plugins/imajinn-ai/\">Imajinn, a new WordPress block</a> that brings the power of AI-generative art to your WordPress dashboard.</p>\n\n\n\n<p><strong>Jeff Chandler</strong> posted not long ago a review of Aaron Edward’s plugin: <a href=\"https://torquemag.io/2022/10/imajinn-brings-royalty-free-ai-photo-generation-to-the-post-editor/\"><strong>Imajinn Brings Royalty Free AI Photo Generation to the Post Editor</strong></a>.He describes his experience with it of creating a prompt, receiving images back, going through the free credits fast and also what he finds missing. Chandler wrote “Being able to create royalty-free images from the backend of WordPress using Artificial Intelligence is one of the coolest features I’ve seen added to WordPress in a long time.” I entirely agree with him there. ?</p>\n\n\n\n<p><em>The featured image on this blog post and two other blog post on this site were also created through the Imajinn AI block. When you scroll through <a href=\"https://gutenbergtimes.com\">the home page</a> you will notice them right away, I think. </em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h3 id=\"4-160-is-this-weeks-count-of-block-themes-in-the-word-press-repository\">160 Block Themes</h3>\n\n\n\n<p>160 is this week’s count of <a href=\"https://wordpress.org/themes/tags/full-site-editing/\">Block Themes in the WordPress repository.</a> </p>\n\n\n\n<img />\n\n\n\n<p><a href=\"https://wordpress.org/themes/powder/\"><strong>Powder</strong></a> is the latest theme by <strong>Brian Gardner</strong> in the WordPress repository. According to Gardner’s <a href=\"https://twitter.com/bgardner/status/1580620907168419842\">tweet</a>, it is simple by design, a stripped down version of WP Engine’s Frost Theme. It’s still experimental and requires the Gutenberg plugin.</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://gutenbergtimes.com/feed/[https://twitter.com/mrpaultruong\">Paul Truong</a> </strong> published his first theme ever, called <a href=\"https://wordpress.org/themes/molten/\"><strong>Molten</strong></a>, a theme for passionate chefs and restaurateurs. You can find 20 well-designed patterns listed and when you add the string <code>?beta=style_variations</code> to the theme’s URL you can also browse through an additional three Style Variations. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Another first block theme contribution in the repository is <a href=\"https://wordpress.org/themes/raft/\">Raft by Themeisle</a>, with seven Style Variations, and nine patterns. <strong>Sarah Gooding</strong> has a review for you. <a href=\"https://wptavern.com/raft-a-new-multipurpose-block-theme-for-wordpress\"><strong>Raft: A New Multipurpose Block Theme for WordPress</strong></a></p>\n\n\n\n<h2 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>Will Morris</strong> published his tutorial on <a href=\"https://torquemag.io/2022/10/create-wordpress-block-theme/\"><strong>How to Create a WordPress Block Theme (In 3 Steps)</strong></a> on the Torque Magazine site. The steps he explains are: Install a WordPress block theme, customize your theme with the Site Editor, export your modifications as a new block theme. Morris works through all that using the <a href=\"https://wordpress.org/plugins/create-block-theme/\">Create Block Theme plugin</a> by the WordPress team in the plugins repository. </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> shared in his post <a href=\"https://wpengine.com/builders/box-shadow-style-blocks/\"><strong>Create a Box-shadow Style for Various Blocks</strong></a> the necessary code snippets to add box shadow to Images, Buttons, and Quote Blocks. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Julio Marchi</strong> explored <a href=\"https://thedigitalinsider.com/why-classic-wordpress-themes-arent-going-away/\"><strong>Why Classic WordPress Themes Aren’t Going Away</strong></a> on the blog The Digital Insider. One of the reasons is that classic themes provide a higher flexibility to build advanced bespoke themes. Marchi also points out that new features comeing to WordPress include ways for classic themes to make use of the theme.json file as well as the feature to allow block-theme template parts to be added to classic themes and offer patterns for those templates parts. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>New on WordPress TV: <a href=\"https://wordpress.tv/2022/10/14/lets-code-creating-custom-templates-and-template-parts/\"><strong>Let’s code: creating custom templates and template parts</strong></a> with <strong>Jonathan Bossenger</strong>. WordPress 6.1 will include ways to create custom templates and template parts for your block theme from the Site Editor. Bossenger shows in this video how you can register and create custom templates and template parts from the editor, as well as how to register them in your theme.json file when distributing your new block theme.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On CSS Tricks, <strong>Ganesh Dahal</strong> published a tutorial on how to <a href=\"https://css-tricks.com/fluid-typography-wordpress-block-themes/\"><strong>add Fluid Typography Support to WordPress Block Themes</strong></a>. Dahal has a list of all the blocks supporting Fluid typography, provides instructions on how to configure font-sizes to play well with the feature and explains what happens under the hood. </p>\n\n\n\n\n<p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">“Keeping up with Gutenberg – Index 2022”</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. 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 id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><strong>Fabian Kägy</strong> announced this week that <a href=\"https://10up.com/blog/2022/10up-publicly-releases-its-gutenberg-best-practices/\"><strong>10up publicly releases its Gutenberg Best Practices</strong></a> documentation. Kägy is an Associate Director of Editorial Engineering at 10up, an agency with plenty of contributions to the WordPress open-source project. They built highly visible websites, like The White House, Five Thirty Eight, or the World Economic Forum. </p>\n\n\n\n<p>Kägy wrote in his post: “Our Gutenberg Best Practices are meant to work in tandem with the WordPress Core documentation and expand upon its foundation to provide a more client-services-centric approach tailored to engineering enterprise-level editorial experiences.” The microsite is divided up on Training, Reference, and Guides. Check it out. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Nathan Wrigley</strong> had <strong>Nick Diego</strong> as guest on the 46th episode of the WPTavern Jukebox podcast and discussed <a href=\"https://wptavern.com/podcast/46-nick-diego-on-why-you-should-be-excited-about-the-possibilities-of-wordpress-blocks\"><strong>Why You Should Be Excited About the Possibilities of WordPress Blocks</strong></a>. Wrigley wrote: “It’s becoming easier to create the blocks, as the tools take away much of the technical burden of getting you up and running without advanced knowledge of JavaScript and React. Coupled with core components, native block supports, and a bit of guidance, Nick thinks that every WordPress developer can add custom blocks to their repertoire.”</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Brian Coords</strong> discovered the <a href=\"https://www.briancoords.com/wordpress-secret-world-of-javascript/\"><strong>WordPress’ Secret World of JavaScript</strong></a>, when taking the new Course on <em>Learn.WordPress</em> <a href=\"https://learn.wordpress.org/course/using-the-wordpress-data-layer/\">Using the WordPress Data Layer</a>. Coords also marveled on the fact that all the great tools available to allow developers to build on basis of WordPress outside the block editor for instance on settings pages of a plugin or on supplement admin pages and not many are using them (yet). </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Cameron Jones</strong> also shared his experience developing around the block editor and found: <a href=\"https://cameronjonesweb.com.au/blog/adding-a-custom-icon-to-the-social-links-block-should-not-be-this-hard/\"><strong>Adding A Custom Icon To The Social Links Block Should Not Be This Hard</strong></a>. His task was to add another service and icon to the core’s Social Block. Jones takes us along his journey of figuring out how to accomplish this task. There were a few U-turns and cul-de-sac moments on the way. I found it quite an interesting read, as it elaborated on the gaps that need to be closed for the Gutenberg project to be more attractive to extenders in the future. </p>\n\n\n\n<p>If you want to believe Jones, it was not missing documentation. “And to my pleasant surprise, the <a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/\" target=\"_blank\" rel=\"noreferrer noopener\">official documentation</a> was quite good in this regard.” he wrote. And after going through all the up and downs of learning new things, Jones concluded: <em>“The provision of the <code>@wordpress/scripts</code> package and much improved documentation makes me feel far more confident in starting to approach development for the block editor again.”</em> </p>\n\n\n\n<p>Nevertheless, I have to agree with Jones: it shouldn’t be so hard to add another block variations to a block that mostly sports block variations out of the box. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his tutorial <a href=\"https://css-tricks.com/rendering-external-api-data-in-wordpress-blocks-on-the-front-end/\"><strong>Rendering External API Data in WordPress Blocks on the Front End</strong></a>, <strong>Manoj Kumar</strong> shows you how to build a dynamic block that fetches data from an external API and renders it on the frontend when a particular block is dropped into the Block Editor of a post. He uses the create-block scaffolding tool to get started, fetches data with <code>useEffect()</code> and store the data in the database and retrieves for the block rendering on the front end. </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg’s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<h2 id=\"5-s\">Upcoming WordPress events</h2>\n\n\n\n<p>November 18, 2022 <br /><strong><a href=\"https://www.wordfest.live/2022/november/\">WordFest Live Returns</a></strong> – the 24-hour Festival of WordPress</p>\n\n\n\n<p>February 17 – 19, 2023<br /><a href=\"https://asia.wordcamp.org/2023/\"><strong>WordCamp Asia 2023</strong></a></p>\n\n\n\n<p><strong>? The next tickets will become available on October 19, 2022</strong></p>\n\n\n\n<p class=\"has-light-background-background-color has-background\"><a href=\"https://central.wordcamp.org/schedule/\"><strong>Have a look at the schedule of upcoming WordCamps</strong></a>.</p>\n\n\n\n<h3 id=\"8-learn-word-press-online-meetups\">Learn WordPress Online Meetups</h3>\n\n\n\n<p>October 17, 2022 – 4 pm EDT / 12:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/288666247/\"><strong>Part 1: Re-Creating Block Designs</strong></a> with Wes Theron</p>\n\n\n\n<p>October 25, 2022 – 3am EDT / 7am UTC <br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/289106740/\"><strong>Uncovering the Cover Block</strong></a></p>\n\n\n\n<p>October 31, 2022 – 4 pm EDT / 12:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/288666280/\"><strong>Part 2: Re-Creating Block Designs</strong></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: Imajinn AI </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’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’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, 15 Oct 2022 21:43:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:149:\"Gutenberg Times: Gutenberg Changelog #74 – Gutenberg 14.2, 14.3, WordPress 6.1, Style Variations in Theme Directory, Course on Gutenberg Data Layer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=22446\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:159:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-74-gutenberg-14-2-14-3-wordpress-6-1-style-variations-in-theme-directory-course-on-gutenberg-data-layer/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:63293:\"<p>Birgit Pauli-Haack and Dave Smith discuss Gutenberg 14.2, 14.3, WordPress 6.1, Style Variations in Theme Directory and a Developer Course on Gutenberg Data Layer</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music: <a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor: <a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo: <a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production: <a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<p><strong>Special Guest: Dave Smith</strong></p>\n\n\n\n<ul>\n<li>Dave Smith’s <a href=\"https://www.youtube.com/DaveonWP\"><strong>YouTube Channel Dave on WP</strong></a> </li>\n\n\n\n<li><a href=\"https://www.youtube.com/watch?v=e399jQagyTQ\">How to EASILY find all CHANGES coming to WordPress 6.1</a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/watch?v=Bqj2J1QYYoI\">Presentation: Gutenberg Now, Next and How to Use it Better Today</a></li>\n</ul>\n\n\n\n<p><strong>WordPress 6.1 </strong></p>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\">WordPress 6.1 RC1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">Fieldguide WordPress 6.1 </a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/10/changes-to-block-editor-preferences-in-wordpress-6-1/\">Changes to block editor preferences in WordPress 6.1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/10/extending-the-query-loop-block/\">Extending the Query Loop block</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/04/block-based-template-parts-in-traditional-themes/\">Block-based “template parts” in traditional themes</a> </li>\n\n\n\n<li>Tutorial: <a href=\"https://gutenbergtimes.com/building-a-block-based-header-template-in-a-classic-theme/\">Building a Block-Based Header Template in a Classic Theme</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/roster-of-design-tools-per-block/\">Roster of design tools per block</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/03/fluid-font-sizes-in-wordpress-6-1/\">Fluid font sizes in WordPress 6.1</a></li>\n</ul>\n\n\n\n<p><strong>Community Contributions</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/09/23/client-side-webassembly-wordpress-with-no-server/\">Client-side WebAssembly WordPress with no server</a></li>\n\n\n\n<li><a href=\"https://meta.trac.wordpress.org/ticket/6059\">Beta: Display style variations for block themes in the theme directory</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/twentytwentytwo/?beta=style_variations\">https://wordpress.org/themes/twentytwentytwo/?beta=style_variations</a></li>\n\n\n\n<li>Learn.WordPress Course: <a href=\"https://learn.wordpress.org/course/using-the-wordpress-data-layer/\">Using the WordPress Data Layer</a></li>\n</ul>\n\n\n\n<p><strong>Gutenberg Plugin 14.2</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/09/30/whats-new-in-gutenberg-14-2-28-september/\">What’s new in Gutenberg 14.2? (28 September)</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/gutenberg-14-2-improves-writing-flow-adds-kerning-controls-for-headings-in-global-styles\">Gutenberg 14.2 Improves Writing Flow, Adds Kerning Controls for Headings in Global Styles</a></li>\n</ul>\n\n\n\n<p><strong>Gutenberg Plugin 14.3 </strong></p>\n\n\n\n<p><strong>Release lead</strong>: Aaron Robertshaw</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/\">What’s new in Gutenberg 14.3? (12 October)</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/gutenberg-14-3-improves-image-drag-and-drop\">Gutenberg 14.3 Improves Image Drag and Drop</a></li>\n</ul>\n\n\n\n<p><strong>What’s in the Works?</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/38275\">Navigation Project Tracking Issue</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/44720\">Tracking: additional layout options, design tools and refinements</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"is-layout-flow wp-block-group\"><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\"><strong>Transcript</strong></p>\n\n\n\n<p><em> </em></p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hello, and welcome to our 74th episode of the Gutenberg Change Log podcast. In today’s episode, we will talk about Gutenberg 14.2 and 14.3 plugin releases, WordPress 6.1 release candidate, style variations in the theme directory as a beta, a developer course on Gutenberg data layer, and so much more. I’m Birgit Pauli-Haack, curator at the Gutenberg Times and WordPress developer advocate. And my guest today is Dave Smith, a JavaScript engineer and full-time core contributor on the Gutenberg project, sponsored by Automattic. Good afternoon, Dave. Thanks for joining me today. How are you?</p>\n\n\n\n<p><em>Dave Smith</em>: Hi, Birgit. Yeah, I’m doing really well, thank you. And it’s great to be able to join you on the show again.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, although you have been a guest on the Change Log before we always get new listeners. And so maybe you could tell us briefly about yourself and what you are working on at the moment.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, sure. I’m a developer living from and working in England in the United Kingdom. And as you mentioned before, I’m sponsored by Automattic and I work full-time on the Gutenberg Project. So my primary focus tends to be the navigation project, which I’ve been on for the 6.1 cycle, and that’s now encompassing all aspects of managing navigation in the editor, including the nav block. I also run a YouTube channel, which is Dave on WP, where I post regular videos on all aspects of the block editor. And most recently I’ve been working on an overview video for all the key features coming to WordPress 6.1, so if anyone would like to check that out, then they can have a look at the channel, which is youtube.com/c/daveonwp, and I’m sure we’ll have that link in the show notes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, of course we do put a link in the show notes. Yeah, and I found great videos about the work on the navigation block there. They were very helpful getting into the problem space and why it’s all so difficult to solve. So thanks for putting them together. </p>\n\n\n\n<p><em>Dave Smith</em>: No problem, yeah. </p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Oh, there was also another video, I watched your presentation that you gave to an agency team that is starting out adopting the block editor for their work, and they had some interesting questions for you. So what was your takeaway from the discussions with the group?</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, so that was the discussion I had with Corner Shop Creative, I believe. Yeah, they were brilliant, they were such a great team. They had loads of questions, I think the Q&A ended up being longer than the actual presentation itself, actually.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That’s a good thing.</p>\n\n\n\n<p><em>Dave Smith</em>: Yes, it was a good thing. I always think it’s a good sign. But that team had, they really fully embraced the block editor, but they’re butting up against some of the same problems we hear a lot about, styling and curation of content. An example that came up was this possibility of having a synced block pattern, which could be updated with styling changes after the fact. As you know, once you insert a pattern, it’s a one time action. Once it’s done, it’s done. You can’t go back and then update it. So every time the client wants to update their styles, they have to go through all of the instances of the pattern and update them so you that you can see how that’d be a bit of a headache. </p>\n\n\n\n<p>So I don’t see any really good way to deal with that yet apart from inheriting all the styles from global styles instead of applying bespoke ones to the pattern itself. But it’s certainly a tricky problem anyway, it illustrates that we still have some ways to go to solve all these real world use cases that folks are running up against.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, updating prior work was actually a pain point that I also heard at WordCamp Europe as well as WordCamp US, where it’s not only the pattern but it’s also when you have a theme that was modified, the template was modified, when the theme is updated through a theme shop, the user doesn’t get the new templates because they override it through their user stuff. That also a good problem to solve because if they update the template and. although it was changed by the user, they’re not getting the new features in there, whatever that’s in there. So it’s kind of a tricky bit there. Yeah. </p>\n\n\n\n<h3><strong>Announcements</strong></h3>\n\n\n\n<p>So yeah, you mentioned it, let’s discuss WordPress 6.1 release cycle for a bit before we head into the Gutenberg plugin releases. Do you want to start out with that?</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, absolutely. So I think we’ve had the RC1 on the 11th of October, 2022. We’re recording on the 14th, I think, today. So yeah, it’s time to perform those final reviews and get testing on that. As usual, we don’t recommend running this on a production or mission critical website, I think we all know that by now, but just in case. And we’ve got the final release of this 6.1 is going to be out on the 1st of November, 2022, all being well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, there’s some people who say, “Well, I’m not going to update until 6.1.1 is out,” but yeah, I hear there.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, well, I mean there’s absolutely loads of changes in this release. I think there’s some stat of 1,700 PRs merged or something like that, so there’s absolutely a load of features coming down the line. But also bug fixes and tooling and testing changes, I think it’s going to be a really strong release. Do you agree?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah, I agree. Yeah, there are countless changes for the content creators, and we talked about those in the last six or seven episodes when we discuss the Gutenberg plugin releases. But so almost all features from the plugin releases 13.1 through 14.1 will make it or made it into the WordPress 6.1. It’s already, as you said, in release candidate. So feature freeze was beta one, release candidate one is actually string free. So the army of polyglot contributors that translate all the new things coming to WordPress between now and the final release can be sure that they don’t have to do it again when there are additional string changes there. So that’s string free. So it’s pretty clear. </p>\n\n\n\n<p>So there are two or three things that didn’t make it in there as I discovered, there was a zoom out window, the table of contents block is not in 6.1, and also the theme support for the appearance tool for classic themes that didn’t make it into 6.1. They need some more testing or some more refinement before it goes out to millions of users. And I just realized that 6.0, WordPress 6.0, was already downloaded a hundred million times. </p>\n\n\n\n<p><em>Dave Smith</em>: Wow. </p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So the counter resets in about a month… No, about two weeks, for 6.1, but then we know the final number. So the field guide for WordPress 6.1 has been published and I counted 19 developer notes about the block editor and block based themes, that’s double the amount of developer notes for 6.0. There’s also a separate field guide for performance update from the performance team. Awesome work there. And also a separate post that lists all the accessibility changes coming to WordPress 6.1 by Anne McCarthy, and I think she lists about 50 different changes that were coming. So Dave, what are the features that you are most excited about this release?</p>\n\n\n\n<p><em>Dave Smith</em>: Oh, there’s so much. I’ve just been going through all these changes for WordPress 6.1 actually, and there’s just so many great things. But I think probably the biggest thing that I think people will notice when they download 6.1 for the first time is just how many more design tools are available across the blocks in 6.1. There’s been a big push throughout the 6.1 cycle to roll out all the standardized tools for blocks for things like color, typography, layout, spacing, and that kind of thing. And I think now that’s really coming to fruition. I think we’re only 50% of the way through all the blocks apparently, I read the last ticket, but it’s surprising what a difference that makes compared to 6.0.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Absolutely. Absolutely. Yeah. And I actually put, I’m so excited about it, I put a table together with all the core blocks and so you can see all the core blocks and then typography, color controls, dimension controls, border controls, and layer controls, and then you see which block has what. So that’s in the dev nodes as well.</p>\n\n\n\n<p><em>Dave Smith</em>: Oh, that sounds brilliant. Yeah, I’ll have to look that up. Yeah, well the other thing I wanted to have to talk about was the… Something that I think will help increase adoption rates for block editing, and that’s the ability to utilize and edit template parts in classic themes. And first time I heard it I thought, “Oh, what’s the point of that? It sounds a bit strange.” But actually I found that it affords a lot of power, because what it enables you to do is things like make your header or your footer fully editable whilst not requiring our users to have to fully deal with and embrace the full site editor experience. So I was testing this out and I had to go at converting the 2020 theme to allow me to be able to edit the footer. And it was so easy to do, but yet it opened up such an amazing thing because normally if you want to edit just something as simple as the text and the footer, you’d have to create an option and create a new setting in your theme and do all that sort of thing. And now you can just go in and at the footer text, click save, and it’s done. And so actually I think it’s a bigger win than you might expect when you hear that for the first time.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, absolutely. Absolutely. And Justin Tadlock actually did a little tutorial when he did the same thing that you did. I think he converted the 20… No, he converted the 2021 with some block parts and had a hero image of the header and all that. So that is actually published several weeks ago at the Gutenberg Times website. So I will add that link also to the show notes. But it goes really through the whole problems that he encountered also with CSS, because sometimes you need to update the things and that’s expected, but also how little there was to update. And he also added a few patterns to it and how you can do that. So that’s a great tutorial if you want to check that out. Yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: Absolutely. Justin’s articles are always really good, isn’t it? So I’ll definitely be looking at that. </p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: There’s one more thing actually you want to call out, if I may.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, sure. </p>\n\n\n\n<p><em>Dave Smith</em>: And this one, I think, has flown slightly under the radar on this release, but it’s actually the syncing of editor preferences across devices. So I mean you’ll be familiar that you can do things like set the persistent list view or you want top toolbar mode within the editor. But in 6.0 these rules just saved locally to the device you were on. So if you went and then switched to a new device, all those changes would be lost, you’d have to reapply those references, which is kind of annoying. So with 6.1, however, they’ve now updated it so the changes are saved to the database. So that means that they’re going to apply across all your devices. So if you’re at work and you set top toolbar mode at work, you come home, log onto your home laptop, and it’s going to be exactly the same there. So it’s a nice quality of life improvement then. And big shout out to Daniel Richards who really spearheaded all the work in that area.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I think there will be a sigh of relief for millions of block editor users that have said, “Yeah, I know the welcome guide. Yeah, go away. Let me go on with my work.” </p>\n\n\n\n<p><em>Dave Smith</em>: Absolutely. </p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it’s really a great. But I also feel that it’s the right time to actually implement that because now the full range of preference tools is actually known. And then also figure out, okay, how all these editor, being the site editor, being the post editor. Yeah, how they handle those preference tools before you’re actually put it persistently in a database. I think that’s a good… The local storage was a good solution for interim, but now that it’s in a database now plugins and others can actually also know about that and help them modify that. So for developers in 6.1, there are great improvements on the controls for theme JSON, of course the typography and border controls and color for links coming also there. </p>\n\n\n\n<p>But the most important thing that I feel is the query loop block extensions that the developer can now create a block variation for the query loop block and define, with the attributes, the customization of the list of posts, custom post types, or pages. And so theme developers working on more complex sites will hopefully make good use of that. I think the ease of style variations for theme developers is also… You can use them for classic themes. No, we talked about that. Yeah, style variations for the block themes are definitely good, coming to 6.1. They were actually for 6.0 already there, the default theme has it. But the default theme now is actually a base theme and now has 10 variations built from the community that come with a default theme. So I’m really excited about that. Yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, that’s a pretty amazing thing, that 2023 theme, I think something like 38 contributions and ended up being with 10 different variations. Amazing. A new way of generating default themes for WordPress. I think it really points to the future.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And I’m not sure if you should just keep that default theme, kind of change the name to default theme and just add variations in every area.</p>\n\n\n\n<p><em>Dave Smith</em>: There’s variations now. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And do a shout out to the community and say, “Okay, now it’s time to show us the best variations,” and then we add it to them theme or something like that. I also saw theme developers that submitted quite a few style variations, build a child theme, and submitted that to the repository with their style variations in it. So you get, even if the design team just selected 10 of them, you get to see even more style variations for it. So it’s definitely quite some creativity going on in the community about that. Which brings us to our community contributions section of the site. Dave, you brought some with us.</p>\n\n\n\n<h3><strong>Community Contributions</strong></h3>\n\n\n\n<p><em>Dave Smith</em>: Yeah, I found quite a few community contributions this week, actually. So the first one I want to chat is about is client side web assembly, WordPress with no server. It’s sort of a click bait-y title if I ever heard one. But this was a post on make blog by Adam Zielinski. And what it is is it is what it says on the tin, WordPress running completely in the browser with no web server whatsoever. And probably most of your listeners will be familiar with WordPress, traditionally you have a web server and your browser sends… When you click on something like posts, it’s going to send a request to that server and the server’s going to respond with the answer. But of course if something happens like you go offline, then you can’t reach the server anymore, and therefore your site doesn’t work. And that’s always how WordPress has worked.</p>\n\n\n\n<p>What Adam’s done is been very, very clever and he’s used the technology called web assembly, which is a low level assembly like language similar to C or C++ or whatever. And basically what he’s done is he’s taken the PHP that comprises the WordPress software, compiled it down to web assembly, packaged it up in a bundle, and then run it completely in the browser. Then any requests that go out that would normally go out to WordPress get trapped by a service worker and it get reroutes them to this in browser version of WordPress. Sounds all very, very clever and you think, “Oh well, great experiment,” but it’s actually got some real world opportunities there, I think. Especially around learning WordPress in the browser. I don’t know if you saw that post, Birgit.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh yeah, I actually reviewed it and had some questions for Adam before he published it. And I also tested some of the things. So it’s really amazing and I can imagine the opportunities are probably endless, but definitely when you have tutorial type posts, you can add that to it and people can then, in real time, make some changes to the code that they’re just learning or just reading about and then see how it impacts a website without having to spin up their own local, without any build tools, without any downloading of Gutenberg or something like that to see that all happening. And so it’s a much faster way to learn and see how things working, instead of… And then figure out how you add it to your own code. Yeah, yeah, so really I hope… And I saw Adam in between announcing, I ran into some browser freezes and browser… Because the bundle, of course, is also pretty big. If you have downloaded WordPress before, it’s about four or five megabits. And if you load that in a browser and in your memory of your local system, yeah, you need some heavy lifting there. And if you do some more, it kind of poops out on you, so to speak. Yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, exactly. Yeah, I mean that’s definitely why I think this is a first sort of prototype. I know Adam and colleagues are looking for people to start contributing and trying to make this more practical in real word usage. So if anyone is interested in that, then the link to that post will be in the show notes for this episode. I’m also going to be diving into the topic a little bit greater detail with Adam on my YouTube channel, so if you’re interested in that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, right, yeah. Excellent, yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: I’m sure you can see that video at some point.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, looking forward to that, yeah. So another community contribution is actually that the Meta team just released a beta version of displaying style variation in the theme directory. There’s a track ticket that was opened by Carolina Nemark, a full site editing expert if you need one. And so you can browse examples with a 2022 theme. I put the link in there. So the developer Steve Dufresne commented on the ticket, so to turn on the feature add ?beta-style_variations to the URL. And then the URL gets updated when you browse themes. So you’ll need to re-add that string, however, for each theme page to reload. </p>\n\n\n\n<p>So what I really like is that it’s now an increase of interactivity on the theme directory to help site owners to decide which theme they want to take. And every time you click on the little style variation card underneath the screenshot, the screenshot actually changes into displaying that style variation on the screenshot. So it’s quite fascinating and I’ve spent quite some time browsing themes that already have style variations in there. So if you don’t see a style variation, probably the theme doesn’t have some, but you find the best way… I saw maybe six or seven themes in there, but of course I didn’t browse all 160 block themes anymore. But yeah, try it out. I put the link to the track ticket into the show notes, so you can also see the string that you need to add there and a link to the 2022 theme so you can see all the style variations without downloading it. Yeah, let me know what you think about it. Yeah, I’m totally stoked about that.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, sounds really good. Well, the more themes that are adding these style variations, the more we’re going to need to have stuff like that in the theme directory. Yeah, great to see that happening. One more thing, community contributions this week is a new course on Learn.WordPress, which is the official sort of tutorial site for WordPress. And this is a new course on WordPress data layer and specifically the Gutenberg data layer. So for those who don’t know, the data layer is used throughout the block editor to read and write data. So for example, if you need a list of posts or you want to create new post, edit a post, you’re going to need to use the data layer at some point. And really that means it’s essential learning if you want to make anything more than the most basic of blocks. </p>\n\n\n\n<p>So this is a full course which covers not only the basics of the data layer but also best practices and some more advanced usages. I know the author, again, it’s Adam Zielinski, who’s been prolific recently. And he’s extremely knowledgeable in this topic so I’m confident there’ll be a great investment for anyone who’s got the time to look at that course. And the link, again, is going to be in the show notes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it’s great for any developer who has ambition in that. Yeah, definitely requires an advanced JavaScript and req knowledge to get through that course. </p>\n\n\n\n<p><em>Dave Smith</em>: Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, but not everybody is there yet. So very soon, hopefully in the upcoming weeks, there’s an introduction to block development course coming up. And it gets you from almost zero to block building a real life example, like a multi-column block when you have a text and then it kind of distributes itself over the multiple columns. So yeah, this is the Adam Zielinski fan show because Adam Zielinski also send in, I think, three dev notes on Monday that we were able to put in the field guide. So there’s definitely some great work for developers in the works or in the 6.1. </p>\n\n\n\n<p><em>Dave Smith</em>: Absolutely.</p>\n\n\n\n<h3><strong>What’s Released</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right, so that brings us to the Gutenberg plugin releases 14.2 and 14.3. Let’s start with 14.2, release lead was Michal Czaplinski, who also published a release post on Make Blog, and of course another show note link. It entailed about 80 PRs, 15 enhancements, 24 bug fixes amongst them. And some of them even made it into the release candidate 6.1 that were back ported to the core. It’s a fairly small release now compared to the last two releases. I remember 14.1 had over 383 PRs. </p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, it’s not quite that big. </p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That was quite epic. But of course there was a rush to get all the features in to make the feature freeze of beta one. And then nevertheless, there are great enhancements, made it into the plugin. And Dave, what are the key features that were merged in the plugin?</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, so for 14.2 we had smarter pattern suggestions for the query loop block variations, we’ve got improvements to the writing flow, a more polished calendar block, new banners and footers, block pattern categories, and auto completion for links is now in all blocks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, that sounds terrific. So let’s discuss them one at a time. So there is also letter spacing for the global styles, so you can now, for the heading, and you can now put them in the theme JSON file to have not only letter spacing but also font family selection and the other typography, which is letter like height, case for the headings like sentence case or title case or no case at all. So that’s all for the headings. And I think the letter spacing didn’t make it into 6.1, the others you find in the headings. Yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: We’ve also got another PR, which is switching us to using numbers instead of T-shirt sizing for labels for spacing presets. So if you’re changing something like padding or margin, there’s a little slider and you can slide between small, medium, large, extra large. That was deemed to be too complex, potentially, and had some accessibility concerns, so they’ve reversed just numbers, so zero, one, two, three, four, five. </p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, okay. Yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: It’s simple.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It’s simpler, yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And there is another quality of life change that made it into, and that is hiding the floating block UI when typing. It was always going away but it now also hides the insert, so there is no distraction coming up when you type on a paragraph block or in any other blocks for that matter. I think that’s really important because that’s one of the big concerns for writers, that there is so much distraction, especially when they start out, every time they move the mouse something appears and then there’s gone until they see what it was. And it’s kind of disconcerting sometimes for writers when they start out with the block editor. So I like that. </p>\n\n\n\n<p><em>Dave Smith</em>: Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The color block also got now color support in 14.2, and polish styles, which is nice because I think the color block… Calendar block, color block. Sorry, let’s do that again. </p>\n\n\n\n<p><em>Dave Smith</em>: Can you say it again? </p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Calendar block got now color support and polish style. And I’m really happy that the calendar block got some more love now because I think that’s the first change since the beginning of the… Just the last five years since the calendar block actually made it into the block editor. So that’s just really cool.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, that’s nice to see. Under patterns we’ve also got new categories, as I mentioned, for banners and footers. The reason we’ve got those is because we’ve already got the headers category for patterns, but that was really intended for more global elements that might be at the top of your site. But unfortunately people were putting in things like what you might call a hero section, sort of a standout call out within the flow of the page, and that wasn’t really the right place to put it. So to disambiguate those, they’ve created a new pattern category called banners and you can put all your hero sections in there as you wish. There’s also another one called footers, I think that does what it says on the tin, it’s just complimentary to headers really.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right. Yes. Yeah. And those are the perfect candidate for actually classic themes to use in their themes, is the headers and footers. But the pattern category is something, it’s a little bit different. But there are also template parts that go with that. And isn’t there a semantic recognizing that if there is somebody edits the footer or the header, they get the respective category of patterns for choices in the editor? So I think that was also a reason, definitely for the footer pattern category. So the footer template part can have their own patterns.</p>\n\n\n\n<p><em>Dave Smith</em>: Yes, and to suggest the most appropriate pattern for you. Yeah, that sounds like a good reason for that change.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Another change was a link auto completer that is enabled for the blocks. Is that the… Oh, right, right. We talked about that. That’s the bracket bracket auto completer where it shows you, you just put in bracket bracket in the paragraph and in the list block and now in all blocks and you get a choice of the latest published posts or pages that you have on your site. That’s a very fast way to do inner links on your site, which actually help you with SEO as well, but also keep your reader on the site. So this is a great tool to do that.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, it’s good to see that in all blocks now, not just the paragraph block. Especially with the new list and blocks having inner blocks, so that’s quite important there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And it was missing from the list block actually. </p>\n\n\n\n<p><em>Dave Smith</em>: Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And I used that quite a bit on the Gutenberg Times the list block where I have just a list of links and all of a sudden it didn’t work anymore. So guess what I did?</p>\n\n\n\n<p><em>Dave Smith</em>: Oh, I can guess. So next up, we’re onto the block live section and there’s been quite a number of enhancements to blocks. The main one is the query loop block now suggests patterns based on the active variation. So for this one, imagine if you have a query loop block, you might register a variation for it for something like listing out a list of products from your products custom post type. But that variation itself can also register patterns. So you might have a pattern, which is the list layout, and then another pattern which is list products in the grid. So you’ve got those two patterns. </p>\n\n\n\n<p>So what happens now is when you insert your products list variation, it will suggest to you those two patterns that the variation is registered. So it’s surfacing the most appropriate pattern for your query loop variation. And that’s quite powerful for things like e-commerce sites and things like that. So you’re not getting loads and loads of patterns you have to pick from that are completely irrelevant to the type of query loop you are inserting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it’s one of the features that quite a few agencies really love because they can narrow down the customization that a user can do and be very strict in certain things, but give a little bit of freedom. That also pairs with the content locking features that come with 6.1. I know I’m jumping back and forth, but it all comes together in one thing, in that it will be the, it’s the site editor thing. Yeah. So yeah, there also it was a great writing flow, a fix for it. Now when you partial select between blocks there and now you can drag it again, which wasn’t possible before.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, you had, when you were dragging from one across a number of blocks, it would have this strange effect where it would go back to showing you the first block you’d dragged. So if you had a sidebar open as you would drag in between the blocks, it would flash between the first block and then the multi-select, the first block, the multi-select. And now what happens is just when you start, you click on the first block you drag and the toolbar and everything around it stays based on the first block that you selected. It’s a small change you probably wouldn’t notice, but if you were doing a lot of multi-selection, especially with drag and click and drag, you would definitely notice it flickering back and forth. It was really, really distracting. So that’s just another nice quality of life improvement there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, thank you for pointing that out. Cool.</p>\n\n\n\n<p><em>Dave Smith</em>: Another one was when you’re creating templates in the editor, under the template screen. Previously you could, accidentally, if you were a bit overzealous with your clicking, you might create a number of templates because you could just repeatedly click the create button for any of the templates. So yeah, people were ending up with five versions of the one template and just thinking, “Well, how did that happen? I only clicked once.” So yeah, we’ve fixed that so it’s not possible to do that anymore.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that’s definitely a nice fix there because it’s disconcerting for anybody who has that. And then the last one for 14.2.</p>\n\n\n\n<p><em>Dave Smith</em>: Yes, under testing we have… Under storybook. Now this is quite interesting, they’ve set up a new development aid which adds visual regression testing to the components in storybook. So components are like the low level UI components that we use to build the editor as a whole, not just blocks, but everything as a whole. And storybook showcases those in one place. And what they’ve done is they set up a visual dipping tool. So you run the test, it takes a screenshot of your component at a point in time, and then the next time you run the test it takes another screenshot and says, “Is this different to the previous one?” And if a certain threshold difference is passed, then it flags it up and says, “This test has failed,” and then a human comes along and looks at it. </p>\n\n\n\n<p>And it caught my eye because I thought, “Wow, this could be something that we could extrapolate out to maybe other parts of the editor,” like actual blocks themselves. Because with the best rule in the world, you’re can have all sorts of end-to-end tests and unit tests and all sorts of things like that. But the end of the day a lot of things are visual changes that only a human can notice. So if we’ve got this extra step of automation picking up on these things, it might help. Currently this is only running locally, it’s not running on continuous integration on GitHub, but maybe in the future someone could take that and run with it and maybe it could help.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That’s a really great idea. I think that is something that developers who learn how to work with a block editor definitely can use that in their local development into figuring out, “Okay, what changed now? Yeah, what did I do wrong?” In the debugging parts, they don’t need to look at the console first when they see something like that. And they build visual regression into their own components that are based on the storybook components. So we are at the end of the Gutenberg plugin version 14.2. What did Gutenberg 14.3 bring to us? </p>\n\n\n\n<p><em>Dave Smith</em>: Okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Go ahead.</p>\n\n\n\n<p><em>Dave Smith</em>: So 14.3 we had release lead Aaron Robertshaw and he’s posted the what’s new in Gutenberg 14.3 post on Make Blog. And WP Tavern have also covered this in Gutenberg 14.3 improves image drag and drop. And those links will be in the show notes. Let’s take a look at the change log, what have we got first here, Birgit?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, first up is the post author blog now includes an option to link actually to the author archive, and this is definitely something that was… It’s a small tweak and it was probably a good first issue, but it’s definitely helping a lot of sites that have multiple authors to use it in the templates. Because then you also can, so you have an author archive and then when you template that you can also, there was one change in one of the other plugins that you can actually add the description that comes from the user database about the buyers, put it on top. So you have the author, you have the description, and then the list of all the blocks that now you can do link to that page from each host when you add the post author block to the post template. It’s a lot of templates and blocks.</p>\n\n\n\n<p><em>Dave Smith</em>: Well, I can see that it’s a small change, but I think it’s pretty handy for sites that produce a lot of content. I suppose the Gutenberg Times in fact would be one example of that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, absolutely. Absolutely.</p>\n\n\n\n<p><em>Dave Smith</em>: The next change we’ve got is we’re now using the tools panel in global styles. The typography panel is quite complex, as we mentioned before, it’s got things like letter spacing, case, all sorts of things you can change on typography these days. What it’s doing is now bringing the global styles interface into line with the typography interface that appears in blocks. So if you need to reset all the changes that you’ve made to typography across the entire site, on like a heading block, it’s now really easy to do that through a standard interface, which is a nice win there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Yeah. And now the feature that was grabbing the attention of Sarah Gooding at the WP Tavern is to allow an image to drop into an empty paragraph block and to create an image block. I think I intuitively thought that was already possible, but maybe I just dragged it between blocks. So now you can, every time you just hit enter on at the end of one block, you can just drag your image into an empty paragraph and it adds it to the site.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, I expect there’s probably instances where container blocks have a paragraph block as the default, so now you can just plug an image into that. That’s probably why it helps a lot as well. So yeah, nice little enhancement there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That’s great. Especially for the cover block, and group block, I can see that, yeah. Yeah, the next one…</p>\n\n\n\n<p><em>Dave Smith</em>: The next one is improvements to the writing flow, we’re now implementing of standardized controls that feel quite natural when you compare them with other text editors. So you can now hold down the alt key and use the arrow keys to jump around in blocks of text. So an example given is if your cursor is towards the end of a long paragraph, you can press alt and up arrow to move straight back to the beginning of that paragraph. And similarly, alt down arrow will move you to the end of that block of text. And these are all small little tweaks to the writing flow, but it does allow you to move quickly around text and brings Gutenberg into line with many other normal text editors.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I think this was very missed for those who use other text editors too, because it throws you when your shift or control and left arrow doesn’t get you to the beginning of the line and you need to use the mouse to get there. So yeah, I really love that writing flow improvement there. So the next one, it’s the WP HTML tag processor, I think you need to explain to me and our listeners what that actually does, Dave.</p>\n\n\n\n<p><em>Dave Smith</em>: I’ll give it a good go. Yes, this is a technical change, but one that is important for people who are working with dynamic blocks. So often dynamic blocks, the ones that use PHP to output the content to the front of the site, because they’ve got some sort of dynamic requirements and they have to list a post or grab your, I don’t know, post site logo or something like that. In fact, the site logo’s a good example because there’s an attribute to control whether the site logo should be a link or not. And if it isn’t going to be a link, then we need some way to strip out the anchor tag from the resulting html.</p>\n\n\n\n<p>And before this processor was added, we had to do this with what’s called regular expressions, which are notoriously unreliable for parsing and modifying html. And this was happening across a number of blocks and the use cases were getting ever more complex, especially around things like using the post featured image in the mark of the cover block for example.</p>\n\n\n\n<p>So what we’ve done here is we’ve added this HTML tag processor, which is a very standardized way to walk through the HTML of a given block, and then allow you to make common modifications to it, such as adding or removing class names. Seems like a small thing, but actually unlocks many, many doors and greatly simplifies working with blocks. Not only for core blocks like cover, gallery, and heading, but of course third party blocks can also take advantage of this now and avoid having to write lots of regex, which of course no one likes doing as far as I’m aware.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I’m really excited about that because it improves so much the developer experience for the block editor and it’s such a nice tool to be a little bit more secure about what you’re changing. And if something else is in there, does it screw up your edit or your plugin for instance, or the block? Yeah. So yeah, I’m really looking forward to the dev note for that, it won’t come until 6.2 and we don’t know yet what the planning is for next year, but I know that the leadership is working on all the things that come with 6.2, so we will soon have some information about that. But yes, this is definitely… Try it out, it’s in plugin 14.3, so the team definitely would need some feedback on that to see if it actually lives up to its expectation. </p>\n\n\n\n<p><em>Dave Smith</em>: Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And then we have some more changes in the block library and one is also for the image and the team fixed the crop area aspect ratio for when you rotate an image and you crop it, that it keeps the aspect ratio for it. So it’s a nice change and it keeps you a little bit more safe when you do cropping on your images.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, absolutely. The next one is another fix and it is for link colors in some theme contexts, specifically 2022. There was an issue whereby if an ancestor of the navigation block set a link color, then it would override any text color set on the navigation block, which is really, really confusing because say you had a, I don’t know, a green link color set on an a parent root block and you had red text color set in your navigation, you’d be seeing the green color in the editor thinking, “Well, what’s happened?” You wouldn’t know where this color’s coming from. It ended up being a temporary patch has being put in to basically increase the specificity of the CSS. But in the longer term we’re looking to migrate the nav block to use standardized color controls, but it’s a lot more complex than you’d imagine. But yeah, if you’d been experiencing that problem in your theme, then you hopefully shouldn’t have that problem anymore as of 14.3.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And that problem was on both ends, editor and front end?</p>\n\n\n\n<p><em>Dave Smith</em>: Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, good to fix, yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah. And there’s a next one, which is to re-add styles that were removed from classic themes. Why would we remove styles from classic themes, you ask? Well, obviously it was an accident. Basically a lot of the core styles have been moved to theme JSONs so that we can pass them programmatically, but in doing so some of the styles for buttons were lost and no longer output, which meant that classic themes had blank buttons for a little bit. So now those are in a separate style sheet and buttons are back looking nice again for classic themes by default.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And I’m just going through that, and yes, that had been ported back, I think to… I’m not sure, is that ported back to WordPress 6.1? It looks like it but I’m not sure.</p>\n\n\n\n<p><em>Dave Smith</em>: I assumed that it had, if not, I think it has… Yes, it has been back ported to 6.1.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that’s a good thing, yes. So 6.1 is not having some backwards compatibility issues with classic themes, so that’s definitely a good thing. And then there were quite a few code quality changes that updates some of the tooling and linking code. Linting is when… Oh, maybe you would explain it better than I do, Dave.</p>\n\n\n\n<p><em>Dave Smith</em>: It’s just programmatically checking your code for common formatting changes. So WordPress requires you to have a space around parentheses, for example, so it will automatically check those and fix them for you. That’s linting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And the reason behind removing lodash dependencies from some of the JavaScript, I think was performance reasons, right? That it increased performance when you don’t need to load lodash.</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, lodash is a fairly sizable library, so there’s an effort underway to completely remove that dependency, which should reduce the bundle size going to the editor, which is always a good thing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah. Speaking of tools, there’s another… It’s not a tool thing. There was quite a few discussions around the experimental APIs that made it into the WordPress code base, but now there is… Adam Zielinski actually put a proposal together on how to limit that access and the first version of it is now available in the Gutenberg plugin. Do you have some more information behind that?</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah, so experimental APIs were quite controversial because Gutenberg does need to iterate and move quite quickly compared to core, for example. And so they often introduce experimental APIs and they’re not guaranteed to be stable and might break at any time. But of course some of these APIs were ending up going into a core WordPress release because they hadn’t been stabilized at the point that WordPress was released. And that was understandably something that we didn’t want to happen because WordPress has a commitment to backwards compatibility, so you can’t really have experimental APIs going into a core release. </p>\n\n\n\n<p>So a middle ground had to be found between those two positions, one, that Gutenberg needs to iterate quickly, and number two, that core needs to not have breaking changes in it, which is entirely legitimate. So the way that this has been done now is from now on, if Gutenberg wants to expose experimental APIs views within its code base, it has to do so quite explicitly. You have to go through a number of quite laborious steps to do so, which is important. And number two, if you are a plugin developer and you choose to consume and experimental APIs, you also have to jump through a number of code hoops in order to do that. </p>\n\n\n\n<p>One of which actually requires you to type in, manually, a string of text which says something to the effect of, “I know that using this experimental API will break my plugin on the next release,” or something along those lines. I mean, we laugh, but the point is that it is to educate people that if you do use this, it’s it is at your own risk. And I like to think this is quite a nice middle ground between the two positions and hopefully we’ll see it come to a fruition in the next couple of releases as the current experimental APIs are stabilized and all future ones have to go through this complex setup state in order to be exposed anyway.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And it wouldn’t so much be hard if only the Gutenberg plugin, that it would use the experimental APIs. But I think because most plugin developers that adopted block development also looked at the source code of the plugin and learned how, “Oh, let’s see how the core developer do that.” And they used that experimental API in their own plugins for many, many years now. And now that’s really hard to deprecate. If just WordPress using it, it would be easier to deprecate that because nobody else uses it and everybody would know how to change that. But because they are not only the plug-ins that are in the repository, they are plugins that are done by freelancers and agencies for their sites that are third-party plugins that are not in the repo might be using it. So that backwards compatibility promise is really something that needs to… Though the experimental APIs cannot be deprecated without breaking those and it also cannot be it need, they actually should need to be documented if third-party use them. But the nature of experimental API is actually not documented and can disappear at any time. But that is not possible when they’re in WordPress core. </p>\n\n\n\n<p>So yeah, so there is a solution coming out and I think there is a lot of… We talked about it before maybe with… I’m not quite sure. On the Change Log before when for 6.0 when there were, I don’t know, 280 experimental APIs that are merged at the core. Some of them are really only used for the Gutenberg plugin or the block editor, but some of them were actually used in the wider ecosystem. So speaking of JavaScript library, there’s the next feature is remove enzyme completely, and enzyme is a react testing library.</p>\n\n\n\n<p><em>Dave Smith</em>: Yes, that’s right.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right. Yeah. But now react has created their own testing library, so that’s why it doesn’t have to be bundled anymore, right?</p>\n\n\n\n<p><em>Dave Smith</em>: Yeah. I mean, we would be using these two testing libraries on our components, one was enzyme and the other one is react testing library. And react testing library, which is built on top of react’s own library, has its own nicer encourages you to test things in a… More experiencing them how the user would interact with the component, so it encourages better accessibility practices, et cetera. So it made sense to standardize towards one. So finally, after lots of work by lots of contributors, enzyme has been removed. And now if you want to test your components, you should use react testing library.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. Yeah. And in the PR, there are also some code examples on how to do this for your own code, what you need to do in terms of taking out enzyme and using react library, so check out the PR 44494. And of course it’s on the change log for 14.3. So this concludes 14.3 and our Gutenberg plugin releases and we’ve come to the things that we discuss what’s still an active development, but what might come or will come to the Gutenberg plugin in the near future. Dave, you are part of the navigation project, almost exclusively, what is in store for the navigation project?</p>\n\n\n\n<h3><strong>What’s in Active Development or Discussed</strong></h3>\n\n\n\n<p><em>Dave Smith</em>: Yeah, absolutely. Well, we’ve just rounded off the 6.1 cycle, we’re moving into thinking about 6.2. And there’s been a number of priorities suggested on the navigation tracking issue, which we’ll put a link to in the show notes, about what we should focus on for the 6.2 cycle for navigation in the block editor, including the navigation block. The proposal is at the moment to put a specific focus on editing and managing menus within the editor itself. It sounds obvious, but previous 6.1 is focused more on importing menus and automatic fallback behavior. Whereas this one is we’re going to try and actually the editing and managing of menus themselves. So there’s that. </p>\n\n\n\n<p>We’re also going to be working on foundational issues and improving tests for better reliability and some more under the hood technical changes such as moving from in IDs to slugs when you’re relating a navigation menu to a block. So we’re looking for feedback on those proposals, so if anyone wants to input, please go along to that tracking issue and comment and we’d be only too glad to hear from you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. So there was, at the beginning of I think 5.8 or something like that, there was the idea to actually have a navigation screen also for organizing menus. Is it an idea to go back to that? Or is it all kind of happening in the sidebar? Do you know what the approach is going to be?</p>\n\n\n\n<p><em>Dave Smith</em>: Yes. Yeah. I mean, the current thinking is that having a separate navigation editor screen, there was an experiment for that for a while in the plugin, that’s now been disabled, there’s no plan to continue to work on that. But instead the idea is to bring that ability to manage multiple menus into the editor canvas itself. If you think about things like templates and template parts, you can do that all within the editor, there’s focus modes for template parts. </p>\n\n\n\n<p>And the same thing will hopefully apply to navigation, so you’ll be able to manage an individual navigation block and it’s associated menu within the editor within the block itself. But also if you have lots of other menus and you want to edit one that isn’t on the canvas, for example, there will be a global navigation sidebar that you can pop open from that W WordPress menu on the top left and there you’ll be able to choose the different menus and move things around, edit them, things like that. And so the foundational work for that should be going into 6.2, the actual screen may not appear in 6.2 but at least the foundational work will be going in to make that possible. So yeah, that’s the state of play on that particular aspect.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you to elaborate on that. And then, so Andrew Sorong has also created a new tracking issue for the layout options that are going to come after 6.1. And layouts are the ones that, for all the layout options, design tools and other refinements. And 6.1 comes with three layouts now, the flow layout, the flex layout, and the constraint layout, making it possible so the inner blocks are following their parents, so to speak, in that. </p>\n\n\n\n<p>But there are also additional improvements in the works. One was the fixed positions for head and footer template parts, meaning it’s stuck to the top or to the bottom. Also have some more layout consistencies, like an ad layout support to the cover block. Also some minor things like allow the change block cap in the editor and all that. So we’ll have that link also in the show notes, so the tracking issue, so you see what the team is working on and what they have on their priority list so you can follow along and also give input. It’s really important that people test along the way so it gets a more stable version of it.</p>\n\n\n\n<p><em>Dave Smith</em>: Ooh, I’m excited about fixed position head and footer template parts. </p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Dave Smith</em>: A lot of people ask me about that for navigation, so I can imagine.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I can imagine, yeah. So yeah, it seems that we are at the end of our show today. And I’m so happy, Dave, that you joined me today on going through the two change logs and talk about WordPress 6.1 and all these great tools that you brought in from the community.</p>\n\n\n\n<p><em>Dave Smith</em>: It was an absolute pleasure, thank you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Is there anything else that you wanted to alert our listeners to that we didn’t talk about before, before we close the show?</p>\n\n\n\n<p><em>Dave Smith</em>: No. Actually, I think we’ve covered quite a lot in this show. So no, thank you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes, we did. So when people want to reach you, how would they connect with you apart from the YouTube channel that we are going to put in the show notes?</p>\n\n\n\n<p><em>Dave Smith</em>: Sure. I think probably the best way is through WordPress Slack, I’m Get Dave on WordPress Slack. Feel free to send me a DM if you’d like to discuss anything.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. And as always, the show notes will be published on GutenbergTimes.com/podcast, this is number 74. And if you have questions and suggestions and news you want to include, send them… Or you want us to include, send them to <a href=\"mailto:ChangeLog@GutenbergTimes.com\">ChangeLog@GutenbergTimes.com</a>, <a href=\"mailto:ChangeLog@GutenbergTimes.com\">ChangeLog@GutenbergTimes.com</a>. Thanks again for listening and being part of our show. Thank you, Dave. And this is goodbye for me, bye-bye.</p>\n\n\n\n<p><em>Dave Smith</em>: Bye.</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, 15 Oct 2022 18:07:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: UniBlock: A Free Business Block Theme for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=138471\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wptavern.com/uniblock-a-free-business-block-theme-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3855:\"<p>WPZOOM is coming in strong with its first block theme approved for the WordPress Themes Directory. <a href=\"https://wordpress.org/themes/uniblock/\">UniBlock</a> is a beautifully designed theme that is well-suited for businesses and freelancers. The company plans to adopt the concept of full-site editing in other WPZOOM themes as well, following the release of UniBlock.</p>\n\n\n\n<img />\n\n\n\n<p>UniBlock’s default look is sporting a darker color palette in the navigation and above the fold, with a lighter background for the rest of the website. The video on the sample homepage uses the free <a href=\"https://wordpress.org/plugins/wpzoom-video-popup-block/\">WPZOOM Video Popup Block</a> plugin, which supports Vimeo and YouTube. It’s a simple, lightweight block that allows users to customize the play button and play icon.</p>\n\n\n\n<p>After activating the theme, clicking on ‘Customize’ will prompt the user to install the video plugin. It can also be converted to a Custom HTML block or removed entirely at the user’s discretion.</p>\n\n\n\n<p>UniBlock’s 19 custom block patterns include everything one might expect from a business theme but, most impressively, it ships with five full-page patterns:</p>\n\n\n\n<ul>\n<li>Front Page</li>\n\n\n\n<li>About</li>\n\n\n\n<li>Services</li>\n\n\n\n<li>Blog</li>\n\n\n\n<li>Contact</li>\n</ul>\n\n\n\n<p>Alternatively, users can assign the page template in the post settings to get the same effect.</p>\n\n\n\n<p>These full-page patterns are convenient for speedy page building. They make it possible to get a basic business website up in a matter of minutes. Here’s an example of the Services full-page pattern that will instantly embed when selected. Users can delete any sections they don’t need, add more blocks and patterns, and quickly fill in all their own information.</p>\n\n\n\n<img />\n\n\n\n<p>Separately there are patterns for a footer with text, links, multiple arrangements of featured boxes with text and button, multiple designs for call-to-action sections, pricing tables, team members with social icons, testimonials, header cover, sidebar, 404 page, and more.</p>\n\n\n\n<p>Users can delve even further into customizing the templates with the site editor, as UniBlock is packaged with nearly two dozen templates and template parts. Here they can also edit the menu and adjust global styles.</p>\n\n\n\n<img />\n\n\n\n<p>WPZOOM is developing a Pro version of the theme to release in a few weeks with support for importing the whole demo, multiple color schemes, multiple demos, premium block patterns, and additional header and footer layouts. </p>\n\n\n\n<p><a href=\"https://demo.wpzoom.com/uniblock/\">Check out the demo</a> on the WPZOOM website to see the theme in action. WPZOOM has also written <a href=\"https://www.wpzoom.com/documentation/uniblock\">documentation for UniBlock</a>, which covers general topics like how to use block patterns, how to set up the front and blog pages, and how to create a menu in the site editor. Since the company’s most popular themes are what would be considered classic themes, UniBlock is new territory for most of their customers. It is so far the only block theme among WPZOOM’s collection of 31 themes. </p>\n\n\n\n<p>Block theme adoption is slowly making its way across WordPress’ major theme shops and the official directory is now hosting 160 themes tagged for full-site editing. As more longtime theme companies make their block theme debuts and develop a base for future themes, WordPress users may start to see a rapid acceleration of the number and variety of block themes available. UniBlock is so far one of the few block themes in the directory with a singular focus on business websites. It is available to <a href=\"https://wordpress.org/themes/uniblock/\">download for free from WordPress.org</a> or via the admin themes panel.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 15 Oct 2022 01:00: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: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:82:\"Post Status: Does WordPress.org Data Belong to the WordPress Community? Should 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:32:\"https://poststatus.com/?p=128245\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://poststatus.com/does-wordpress-org-data-belong-to-the-wordpress-community-should-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:959:\"<p class=\"has-drop-cap\">Today <strong>WP Watercooler</strong> sought <a href=\"https://wpwatercooler.com/wpwatercooler/ep432-solutions-to-the-active-growth-problem/\">Solutions to the Active Growth Problem</a>. In a pointed but respectful conversation moderated but <strong>Sé Reed</strong>, the Watercooler crew got one new detail from <strong>Otto</strong> about the decision to remove the active install charts: it was made months ago. How should the data collected by WordPress.org be understood, as a basis for reaching a solution? A consensus understanding seems to be emerging that the data is <em>not</em> open-source and community-owned. Uncommunicated expectations, misunderstandings, distrust, and even suspicion of malfeasance have arisen from the lack of a shared understanding about who owns what.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</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:\"Fri, 14 Oct 2022 23:39: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:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:45:\"Post Status: Over, Under, Around, and Through\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=128124\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://poststatus.com/over-under-around-and-through/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9519:\"<h2>WordPress Business News Roundup for the Week of October 3</h2>\n\n\n\n<div class=\"wp-container-11 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">This week <strong>Alex Denning</strong> (Ellipsis) draws on <strong>Iain Poulson</strong>‘s historical, high-level plugin data at <strong>WP Trends</strong> to offer some thoughtful, somewhat contrary, but practical and grounded perspectives on the value of <strong>Active Install Data</strong>. At the <strong>WP Watercooler</strong> and elsewhere, a realization seems to be setting in that the data is <em>not</em> open source and <em>not</em> the property of the WordPress community. Like last week\'s episode of <strong>Post Status Draft</strong> with <strong>Katie Keith</strong> of <strong>Barn2 Plugins</strong>, <strong>Till Krüss</strong> (<strong>Object Cache Pro</strong>, <strong>Relay</strong>) offers a lot of lessons this week about less travelled paths to success in the plugin business even as a very small company or company of one. Performance, testing, and support are key, interrelated parts of Till\'s success and probably the most important ones to borrow in your own life and work if they resonate. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">3</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<h2 id=\"h-why-the-wordpress-org-growth-charts-don-t-matter\"><a href=\"https://poststatus.com/active-install-charts-removed-from-plugin-repo/\">Why the WordPress.org Growth Charts Don\'t Matter</a></h2>\n\n\n\n<p class=\"has-drop-cap\"><strong>Alex Denning</strong> pointed out in the <strong>Ellipsis</strong> newsletter that in 2019-20, only four plugins entered the space and broke into the upper tiers. These were <strong>Site Kit</strong> for <strong>Google</strong>, <strong>Facebook</strong> for <strong>WooCommerce</strong>, <strong>Creative Mail for WordPress and WooCommerce</strong>, and <strong>Google Ads and Marketing</strong> by <strong>Kliken</strong>. Has the WordPress.org repository become a closed shop, a tapped-out ecosystem where the winners have taken all? Here are some suggestions about how to break in or changes that could be proposed to open and diversify the repository. Until that happens, do growth charts matter? (Expect an article from Alex on this soon.)</p>\n\n\n\n<h2><a href=\"https://poststatus.com/does-wordpress-org-data-belong-to-the-wordpress-community-should-it/\">Does WordPress.org Data Belong to the WordPress Community? Should It?</a></h2>\n\n\n\n<p class=\"has-drop-cap\">Today <strong>WP Watercooler</strong> sought <a href=\"https://wpwatercooler.com/wpwatercooler/ep432-solutions-to-the-active-growth-problem/\">Solutions to the Active Growth Problem</a>. They got one new detail from <strong>Otto</strong> about the decision to remove the active install charts: it was made months ago. How should the data collected by WordPress.org be understood, as a basis for reaching a solution? A consensus understanding seems to be emerging that the data is <em>not</em> open-source and community-owned. Uncommunicated expectations, misunderstandings, distrust, and even suspicion of malfeasance have arisen from the lack of a shared understanding about who owns what.</p>\n\n\n\n<h2>Quick Links</h2>\n\n\n\n<ul><li>The <strong>Ellipsis Weather Report</strong> has been updated and shows no change for WordPress\'s sub-baseline performance, but <strong>WooCommerce</strong> is seeing <a href=\"https://getellipsis.com/weather-report/\">its best growth since May</a>.</li><li><strong>Post Status Draft:</strong> The story of <strong>Barn2 Plugins</strong> and their products in the WooCommerce marketplace offer <a href=\"https://poststatus.com/going-from-agency-to-products-the-story-of-barn2/\">a lot of insight into some winning strategies</a>.</li><li><strong>Kevin Ohashi</strong> sees <strong>Drupal</strong> as <a href=\"https://www.drupal.org/project/usage/ctools\">a model for a community data solution</a> in WordPress: “I am in favor of just releasing all the data, whether it\'s to authors themselves or the whole community.” (<a href=\"https://poststatus.slack.com/archives/CHNM7Q7T8/p1665703515129299\">Post Status Slack</a>) Drupal.org has the raw data and charts for their equivalent core, plugin, and theme installs by version and date going back nine years — with exact figures.</li><li>Eric Karkovack asks, <a href=\"https://thewpminute.com/what-should-plugin-developers-expect-from-wordpress/\">What Should Plugin Developers Expect from WordPress</a>? A limited partnership. No obligation to help them make money. And reasons to focus on making their own way.</li></ul>\n\n\n\n<h2><a href=\"https://poststatus.com/till-kruss-on-object-cache-pro-wordpress-plugins-testing-and-performance/\">Till Krüss on Object Cache Pro, WordPress, Plugins, Testing, Performance, and the Solo Devpreneur Life — Post Status Draft 126</a></h2>\n\n\n\n<p>This episode of <strong>Post Status Draft </strong>offers some fascinating lessons on winning in the WordPress space with a high performance, low support, well-tested, dual-market, mixed license, plugin+SaaS product. That\'s a mouthful but a quick way to describe the many facets of <strong>Till Krüss</strong>‘s business built around <strong>Object Cache Pro</strong>, “a business class <strong>Redis</strong> object cache backend for WordPress.” OCP offers a unique and highly successful model for partnerships between a WordPress plugin product business and two valuable niche markets: hosting companies (B2B) for $1,950/month and anyone running WordPress sites at scale (D2C) for $95/month. <strong>Nexcess</strong> is <a href=\"https://www.nexcess.net/blog/nexcess-to-provide-premium-caching-to-all-customers-with-new-object-cache-pro-partnership/\">the latest host to adopt</a> OCP, which they announced earlier this week.</p>\n\n\n\n<p>Till’s particular niche is not for everyone, but some of his ideas and achievements are very portable. For one thing, what plugin owner has not felt the pain of an extraordinarily busy support forum? Till is up to (wait for it…) 10 <em>minutes</em> a day on support — which he aims to decrease to five minutes. How? End-to-end unit testing to ensure the highest code quality. It’s an idea that needs to become a reality and a habit in the third-party WordPress product ecosystem, Till believes — and I think he’s right about that.</p>\n\n\n\n<ul><li><a href=\"https://objectcache.pro/\" target=\"_blank\" rel=\"noreferrer noopener\">Object Cache Pro</a> is a (closed-source) commercial product that grew out of and is developed alongside <a href=\"https://wordpress.org/plugins/redis-cache/\">Redis Object Cache</a>. (100k+ installs on WordPress.org, numerous forks and stars on <a href=\"https://github.com/rhubarbgroup/redis-cache\">GitHub</a>.) <strong>Redis Object Cache</strong> is a fork of an unmaintained precursor <a href=\"https://ethitter.com/2014/04/redis-object-cache-plugin-available-for-download/\"><strong>Erick Hitter</strong></a> and <a href=\"https://ttmm.io/tech/ludicrous-speed-wordpress-caching-with-redis/\"><strong>Eric Mann</strong></a> launched <a href=\"https://poststatus.com/redis-object-cache-wordpress/\">in 2014</a>. </li><li><a href=\"https://relay.so/\" target=\"_blank\" rel=\"noreferrer noopener\">Relay</a> looks like it will be a successor to OCP as it\'s capable of speeds up to 100 times faster than Redis. It\'s a PHP extension developed in C that is both a Redis client and a shared in-memory cache.” There is a free Community version.</li><li><strong>Felipe Elia</strong> recently wrote a great explainer on <a href=\"https://felipeelia.dev/wordpress-object-cache-and-redis/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress, Object Cache, and Redis</a>. Felipe is right that understanding key performance concepts and tools should matter in developer interviews — so if you\'re hiring developers you might want to brush up with Felipe\'s article. </li><li><strong>Do the_Woo</strong> <a href=\"https://dothewoo.io/the-evolution-of-woocommerce-and-wordpress-hosting/\">recently recorded</a> a very insightful open discussion on the Future of Hosting (and WordPress plugin business opportunities) where Till, <strong>Carl Alexander</strong>, and <strong>Zach Stepek</strong> trade insights and stories from their work with enterprise class WordPress and WooCommerce.</li></ul>\n\n\n\n<div class=\"wp-container-12 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<p><strong>From the Post Status Archive:</strong> <a href=\"https://poststatus.com/scaling-wp-draft/\">Scaling WordPress</a> (<strong>Post Status Draft #51</strong>) remains one of our all-time most listened to podcast episodes, from 2016. <strong>Brian Krogsgard</strong> and <strong>Joe Hoyle</strong> took a pretty comprehensive look at WordPress performance and caching, including Redis.</p>\n</div></div>\n\n\n\n<p></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</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:\"Fri, 14 Oct 2022 22:08:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:100:\"Post Status: A Definitive Guide to WP-Config, the WordPress 6.1 Field Guide, and Twenty Twenty-Three\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=128099\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://poststatus.com/a-definitive-guide-to-wp-config-the-wordpress-6-1-field-guide-and-twenty-twenty-three/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4290:\"<h2 id=\"h-wordpress-design-development-around-the-web-for-the-week-of-october-10\">WordPress Design & Development Around the Web for the Week of October 10</h2>\n\n\n\n<div class=\"wp-container-13 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Here’s a glimpse of what’s going on in the world of design and development in the WordPress space this past week: A delicious developer\'s advanced guide to <strong>WP-Config</strong>, the <strong>WordPress 6.1 Field Guide</strong>, and <strong>Twenty Twenty-Three</strong> looks amazing! <strong>Brian Gardner</strong> released a new <strong>FSE</strong> theme, <strong>Powder</strong>. Cool Tool of the Week: <strong>Lorem Picsum</strong> by <strong>David Marby</strong> and <strong>Nijiko Yonskai</strong>. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">3</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<h2>Serve Up a Delicious WP-Config</h2>\n\n\n\n<p>The folks at <strong>Delicious Brains</strong> have put out the ultimate <a href=\"https://deliciousbrains.com/developers-guide-to-wpconfig\" target=\"_blank\" rel=\"noreferrer noopener\">Developer’s Advanced Guide to the <code>wp-config.php</code> file</a>. I sure wish I had this years ago when I was starting out! Already found a few new tricks in here for this old dog to try out. Like did you know you could rotate keys/salts?!!?!</p>\n\n\n\n<h2>Keep This Guide Handy</h2>\n\n\n\n<p>I’ve been seeing a lot of buzz in <strong>Post Status Slack</strong> and on <strong>Twitter</strong> about <strong>WordPress 6.1</strong>, and for good reason! <strong>Milana Cap</strong> breaks down everything that is coming and what changes we can expect in the <a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress 6.1 Field Guide</a>. I’m very excited about the accessibility and performance improvements, but honestly everything looks really impressive!</p>\n\n\n\n<h2>Digesting Twenty Twenty-Three</h2>\n\n\n\n<p>Another major inclusion in 6.1 is going to be the new <strong>Twenty Twenty-Three</strong> theme with style variations, page layouts, fluid typography, and more. <strong>Kinsta</strong> gives us <a href=\"https://kinsta.com/blog/twenty-twenty-three-theme/\" target=\"_blank\" rel=\"noreferrer noopener\">a deep dive</a> into what all of the features are and how we can use them as developers.</p>\n\n\n\n<h2>Keep Your Powder DRY</h2>\n\n\n\n<p><strong>Brian Gardner</strong> released <em>another</em> amazing block theme for full-site editing with one-click layout patterns included. It\'s called <strong><a href=\"https://powder.design/\">Powder</a></strong> and is intended as a base for child themes and custom sites. <a href=\"https://powder.design/demo/\">Check out the demo</a>. Powder scores a perfect 100 in <strong>Google Pagespeed Insights</strong> for both mobile and desktop. <a href=\"https://github.com/bgardner/powder\">Get it on <strong>GitHub</strong></a>.</p>\n\n\n\n<div class=\"wp-container-14 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h2>Cool Tool</h2>\n\n\n\n<p>Each week we feature one cool tool that can help make your life easier as a WordPress builder.</p>\n\n\n\n<h3>Lorem Picsum</h3>\n\n\n\n<p>When making a new site I’m always struggling for imagery. <a href=\"https://picsum.photos/\" target=\"_blank\" rel=\"noreferrer noopener\">This site</a> makes it so easy to plop in some photos and move on. It’s the <em>lorem ipsum</em> for photos, like literally! Thanks to <a href=\"https://dmarby.se\">David Marby</a> and <a href=\"https://github.com/Nijikokun\">Nijiko Yonskai</a> for gifting this to the world. </p>\n</div></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:\"Fri, 14 Oct 2022 18:12:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Daniel Schutzsmith\";s: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:65:\"Post Status: Why the WordPress.org growth charts might not matter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=127982\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://poststatus.com/why-the-wordpress-org-growth-charts-might-not-matter/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6055:\"<div class=\"wp-container-17 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">In 2019-20, only four plugins entered the space and broke into the upper tiers. These were Site Kit for Google, Facebook for WooCommerce, Creative Mail for WordPress and WooCommerce, and Google Ads and Marketing by Kliken. Has the WordPress.org repository become a closed shop, a tapped-out ecosystem where the winners have taken all? Here are some suggestions about how to break in or changes that could be proposed to open and diversify the repository. Until that happens, do growth charts matter? </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">3</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<h2>Why lament the loss of a declining statistic?</h2>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-drop-cap\">Writing in the Ellipsis newsletter early this week, Alex Denning floated the idea that “WordPress.org growth charts might not matter.” Why? Alex writes:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Our experience is that freemium is an inefficient and ineffective channel for the average WordPress product. </p><p>You need very significant scale to make free a better marketing channel than the alternatives, and unless you already have that scale you’re probably not going to get it. </p></blockquote>\n\n\n\n<p>Alex also cited <strong>WP Trends</strong> <a href=\"https://s.wptrends.co/w/q7kbyKQdYMDinkrqezkjtg\">Q2 2022 data</a> on the number of free plugins <em>newly added each year</em> at wp.org with 100k-500k, 500k-1M, and 1M+ installs. Viewed over 15 years, the market peak appears to have been reached in 2014, although the middle and upper tiers have had a more level and wave pattern of ups and downs beneath the dramatic rise and fall of new 100k-500k install plugins, at least between 2007-16.</p>\n\n\n\n<h2>A “Closed Shop”</h2>\n\n\n\n<p>In 2019-20, only four plugins entered the space and broke into the upper tiers. These were Site Kit for Google, Facebook for WooCommerce, Creative Mail for WordPress and WooCommerce, and Google Ads and Marketing by Kliken.</p>\n\n\n\n<p>The 100-500K+ products are in a position to get their own customer data and analytics, so active install data from .org doesn\'t matter as much to them.</p>\n\n\n\n<img width=\"752\" height=\"373\" src=\"https://cdn.poststatus.com/wp-content/uploads/2022/10/image-752x373.png\" alt=\"\" class=\"has-transparency wp-image-127983\" /><strong>WP Trends</strong>, <a href=\"https://s.wptrends.co/w/q7kbyKQdYMDinkrqezkjtg\">June 2022</a>\n\n\n\n<h2>How is it Possible to Break In?</h2>\n\n\n\n<p>People looking to break into the market with a free product distributed on WordPress.org “have to do a phenomenal amount of work,” according to Alex:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>You’ll need to have an incredible product, and then support it with a mix of content, SEO, social, partnerships, etc. You then have to convert those users at ~1-2% onto your paid offering.<br /><br />Given all the work you’re doing to get the free installs, and then to convert 1-2% of those free users to paid, you’re almost certainly going to have a better time going straight to paid, focusing all your efforts into activities that help people discover your product and immediately convert.</p></blockquote>\n\n\n\n<p>Alex describes the WP.org plugin repo as a “closed shop” now with a few exceptions that make sense as a freemium product: </p>\n\n\n\n<ul><li>Anything in a crowded category, like Forms. </li><li>Anything that can leverage many marketing channels.</li><li>Anything that can leverage hosting partnerships.</li></ul>\n\n\n\n<p>There\'s also the WooCommerce market.</p>\n\n\n\n<img width=\"752\" height=\"316\" src=\"https://cdn.poststatus.com/wp-content/uploads/2022/10/Screen-Shot-2022-10-14-at-11.27.32-AM-752x316.jpg\" alt=\"\" class=\"not-transparent wp-image-128079\" />Ellipsis\' <a href=\"https://getellipsis.com/weather-report/\">Weather Report</a>\n\n\n\n<p>Largely based on search volume analysis, <a href=\"https://getellipsis.com/weather-report/\">Ellipsis\' 2022 “weather data”</a> within the larger climate systems of WordPress and WooCommerce indicate WordPress is struggling, but WooCommerce is showing its best growth since May.</p>\n\n\n\n<h2>Or, Change the System from Within?</h2>\n\n\n\n<p>If a more diverse and open ecosystem is preferred, Alex suggests the plugin repository\'s search algorithm needs to do more than reward plugins with high active install counts — like “a ‘rising star\' label.” He notes “this is a short-term commercial, rather than a long-term ecosystem view.”</p>\n\n\n\n<div class=\"wp-container-18 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h2 id=\"h-what-might-a-long-term-ecosystem-view-look-like\">What might a long-term ecosystem view look like?</h2>\n\n\n\n<p>This week, Cory says <a href=\"https://poststatus.com/two-key-questions-we-need-to-answer/\">this is the conversation we need to have</a> and the two questions we need to answer. I see many paths forward in <a href=\"https://poststatus.com/till-kruss-on-object-cache-pro-wordpress-plugins-testing-and-performance/\">Till Krüss\'s successful model with Object Cache Pro</a>. Resonating with Alex\'s observations, Till\'s model suggests several areas of opportunity for developers and founders working in the WordPress plugin market today.</p>\n</div></div>\n\n\n\n<p></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:\"Fri, 14 Oct 2022 17:42:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:48:\"Post Status: Two Key Questions We Need To Answer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=126639\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/two-key-questions-we-need-to-answer/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5970:\"<div class=\"wp-container-21 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\"><strong>What are the best things the WordPress community can do to better support plugin developers and founders?</strong> Recent discussions around the Active Install data being removed from WordPress.org forces us to respond to this question if we believe a healthy third-party plugin market is essential to WordPress, as I do. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">3</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<p class=\"has-drop-cap\">The recent discussions around the Active Installs data being removed from the WordPress Repo prompted two questions I think we need to answer as a bigger WP community and particularly our members at Post Status. </p>\n\n\n\n<p>As someone who lived in the WordPress product space for 10+ years and owned free and commercial plugins, I resonate with the issues and concerns being brought up today by plugin developers. (Here I am in 2010, writing <a href=\"https://corymiller.com/why-we-need-a-premium-wordpress-plugin-market/\">Why We Need a Premium WordPress Plugin Market</a>.)</p>\n\n\n\n<p>What I want to do here is frame the conversation to be constructive and help us all make progress together — for the good of WordPress, plugin developers, and our members. </p>\n\n\n\n<p>I\'ll try to offer as limited a commentary as I can here because I\'d like your comments and responses to these questions: </p>\n\n\n\n<h2 id=\"h-1-are-plugins-essential-to-wordpress\">1. Are plugins essential to WordPress?</h2>\n\n\n\n<p>Specifically, have (free and paid) plugins been — and will they continue to be — essential to the health and growth of WordPress? </p>\n\n\n\n<p>My answer is YES — <em>absolutely!</em> Even if it\'s a messy market. And we have work to do. </p>\n\n\n\n<p>As of this writing, there were listed 60,229 plugins in the WP repo, and of course countless other free and paid plugins elsewhere. </p>\n\n\n\n<p>Plugins are key contributions to WordPress. They extends WordPress and allows WP to stay as nimble as possible for the enormous variety of uses in our world. </p>\n\n\n\n<p>I started iThemes in 2008. We were early in the “premium” market. We didn\'t have to depend on the repo at the time, but I would have relished the opportunity to offer and sell our products there. </p>\n\n\n\n<p>If your answer to my first question is a solid <em>yes</em> too — and I hope it is — then my next question is:</p>\n\n\n\n<h2>2. What can we do to create a more sustainable model and environment for WP plugin developers? </h2>\n\n\n\n<p><strong>THIS</strong> is where we need to start the conversation, in my view. </p>\n\n\n\n<p>Merely suggesting to plugin developers committed to the WP.org repository that if they don\'t like the rules or changes they should go elsewhere isn\'t fair or reasonable to them. </p>\n\n\n\n<p>If you\'re saying that to plugin developers, but…</p>\n\n\n\n<ul><li>You don\'t own a free plugin…</li><li>You haven\'t built your business around a free plugin…</li><li>You were early into the product business like I was at iThemes in 2008…</li><li>You already have an existing platform outside of the .org repo…</li></ul>\n\n\n\n<p>…then at best, you\'re not putting yourself in their shoes. You\'re not offering realistic advice. </p>\n\n\n\n<p>I also don\'t think it\'s the best or healthiest answer for them or WordPress. </p>\n\n\n\n<p>What I\'m talking about and asking for are ideas that make incremental progress and improvement … TOGETHER. </p>\n\n\n\n<p>For WordPress and the plugin developer ecosystem to start a dialogue that is perhaps overdue. I also want to keep in mind that this is an open source project, with projects teams and volunteers who are already overloaded. </p>\n\n\n\n<p>I think we start with this question:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><strong>What are the big three things we as a larger WP community (together) can start working toward to support WP plugin devs better?</strong></p></blockquote>\n\n\n\n<p>I\'ll offer some ideas to kick off this conversation.</p>\n\n\n\n<h2>Let\'s agree we\'re all in this together. </h2>\n\n\n\n<p>There\'s so much division and polarization in our world already today outside of WP. In the spirit of open source and WP, let\'s be a shining example to our worlds of what can be when humans start talking and listening to fellow humans. Leaving some of our past behind and simply understanding where we\'re coming from. </p>\n\n\n\n<p>But at its simplest? <strong>Be open to the conversation. </strong></p>\n\n\n\n<p>At its best? <strong>Try to embody the other\'s perspective.</strong> Getting into their shoes. Seeing from their perspective. </p>\n\n\n\n<p>One of my favorite conversations this year was with <strong><a href=\"https://twitter.com/bph\">Birgit Pauli-Haack</a></strong> at WCUS. The topic was Core Contribution. We initially came at it from our separate sides. But then we started listening to each other. And now …. we\'re working together on some things we think will make a difference for ALL. </p>\n\n\n\n<p>If you know Birgit, you know she\'s a very special human in the world and we\'re privileged to have her in WP.</p>\n\n\n\n<p>But I wish we had more of these conversations in WP. </p>\n\n\n\n<p>It\'d be better for all of us. </p>\n\n\n\n<p>I grant it\'ll be tough … but I believe in us. </p>\n\n\n\n<p>Let\'s acknowledge that we need to talk … together.</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:\"Fri, 14 Oct 2022 15:55:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:116:\"Post Status: Till Krüss on Object Cache Pro, WordPress, Plugins, Testing, and Performance — Post Status Draft 126\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=127872\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/till-kruss-on-object-cache-pro-wordpress-plugins-testing-and-performance/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:65548:\"<div class=\"wp-container-17 wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\"><strong>Till Krüss</strong> explains how he found his way into WordPress and a successful business that\'s solving the hard problems of caching and performance optimization. His work and business model suggest several areas of opportunity for developers and founders working in the WordPress plugin market today. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">3</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n<p class=\"has-drop-cap\">Back in August, I had a long conversation with <strong>Till Krüss</strong> (edited down to <60 minutes here) about his path into <strong>WordPress</strong>, <strong>Laravel</strong>, and performance. It\'s about time we published it as an episode of <strong>Post Status Draft</strong>!</p>\n\n\n\n<p>Till is the developer and owner of <strong>Object Cache Pro</strong>, “a business class <strong>Redis</strong> object cache backend for WordPress.” OCP offers a unique and highly successful model for partnerships between a WordPress plugin product business and two valuable niche markets: hosting companies (B2B) for $1950/month and anyone running WordPress sites at scale (D2C) for $95/month. <strong>Nexcess</strong> is <a href=\"https://www.nexcess.net/blog/nexcess-to-provide-premium-caching-to-all-customers-with-new-object-cache-pro-partnership/\">the latest host to adopt</a> OCP, which they announced earlier this week.</p>\n\n\n\n\n\n\n\n<blockquote><p>What plugin owner has not felt the pain of an extraordinarily busy support forum? Till is up to (wait for it..) 10 <em>minutes</em> a day on support — which he aims to decrease to five minutes. How? End-to-end unit testing to ensure the highest code quality.</p></blockquote>\n\n\n\n<p>Performance optimization in general — and caching in particular — are <a href=\"https://poststatus.com/2022-web-almanac-cms-report/\">possibly the oldest and most persistent hard problems</a> for people running WordPress and similar applications at scale. Historically, performance has been a problem passed to the hosting industry by WordPress developers and users of too many plugins — or too many plugins that use too many server resources, especially as measured in database queries. </p>\n\n\n\n<p class=\"eplus-wrapper\">Till’s particular niche is not for everyone, but some of his ideas and achievements are very portable. For one thing, what plugin owner has not felt the pain of an extraordinarily busy support forum? Till is up to (wait for it…) 10 <em>minutes</em> a day on support — which he aims to decrease to five minutes. How? End-to-end unit testing to ensure the highest code quality. It’s an idea that needs to become a reality and a habit in the third-party WordPress product ecosystem, Till believes — and I think he’s right about that.</p>\n\n\n\n<h2>Test Everything, End-to-End</h2>\n\n\n\n<p>A large part of the challenges people have with WordPress in the wild have to do with plugins that have not been built and tested to perform at scale. There’s likely a lot of opportunity in aligning people on performance as a key, common interest. What people are these? Product, agency, and hosting companies in the WordPress space. <em>And</em>, as Till’s example shows, a small WordPress company, or company of one that wants to stay that way, still can thrive today.</p>\n\n\n\n<h2>Quality Product = Nearly No Support Needs</h2>\n\n\n\n<p>Traditionally, plugin owners have struggled with burdensome customer support, and having to resort to support as a customer is always an unwanted burden. Neither party wants to relate primarily through the support desk! So … why not just eliminate it or diminish support needs as much as possible? It\'s a win for everyone, and resources go into product development, another win-win. </p>\n\n\n\n<h2>Pricing and Value</h2>\n\n\n\n<p>Object Cache Pro\'s sales and distribution through hosting partnerships leave support obligations with the hosting partner and their own customers. The value to hosts is how they can bundle OCP, a high-value product, at a low cost to their customers\' hosting plans. This leaves OCP focused on product development, quality assurance, and lower support/maintenance costs — which is in everyone\'s interest. </p>\n\n\n\n<p>Object Cache Pro\'s Direct-to-Consumer pricing has no SaaS component. It does come with support, but customers are expected to install and maintain OCP themselves without an additional white-glove support plan. The value proposition: It just works and delivers incredible performance gains that have a quantifiable dollar value on high-traffic sites.</p>\n\n\n\n<h2>Should we continue this conversation?</h2>\n\n\n\n<p><em>If you\'re interested in a follow-up</em> conversation with Till or have questions about the things we covered in this one, please get in touch. Let us know if you\'d like to hear a follow-up episode about the risks that come with the opportunities of a small open-source<em> company with a high-value product. For one thing, there are the pirates and the sharks — anyone who might steal, buy, or recreate a GPL product and kill or dilute its profitability. How do you cope with that? </em><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f914.png\" alt=\"?\" class=\"wp-smiley\" /><em> </em></p>\n\n\n\n<div class=\"wp-container-20 wp-block-columns Pressable has-theme-palette-8-background-color has-background\" id=\"Pressable\">\n<div class=\"wp-container-18 wp-block-column\">\n<h3><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/pressable\">Pressable</a></h3>\n\n\n\n<p>Founded in 2010, <strong>Pressable</strong> is a world-class managed WordPress hosting provider built on the same data network as <strong>WordPress.com</strong> and <strong>WordPress VIP</strong>. With industry-leading performance, 24/7 expert support, a 100% uptime guarantee, and seamless integrations with <strong>WooCommerce</strong> and <strong>Jetpack</strong>, Pressable provides the tools you need to manage your WordPress websites and grow your business all in one place.</p>\n</div>\n\n\n\n<div class=\"wp-container-19 wp-block-column is-vertically-aligned-center\">\n<a href=\"https://poststat.us/pressable\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2022/01/pressable-icon-primary.svg\" alt=\"Pressable\" class=\"wp-image-121339\" width=\"150\" title=\"Pressable\" /></a>Pressable\n</div>\n</div>\n\n\n\n<h3 class=\"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 class=\"eplus-wrapper\"><li><strong>Till Krüss</strong>‘s <a href=\"https://objectcache.pro/\" target=\"_blank\" rel=\"noreferrer noopener\">Object Cache Pro</a> is a (closed-source) commercial product that grew out of and is developed alongside <a href=\"https://wordpress.org/plugins/redis-cache/\">Redis Object Cache</a>. (100k+ installs on WordPress.org, numerous forks and stars on <a href=\"https://github.com/rhubarbgroup/redis-cache\">GitHub</a>.) <strong>Redis Object Cache</strong> is a fork of an unmaintained precursor <a href=\"https://ethitter.com/2014/04/redis-object-cache-plugin-available-for-download/\"><strong>Erick Hitter</strong></a> and <a href=\"https://ttmm.io/tech/ludicrous-speed-wordpress-caching-with-redis/\"><strong>Eric Mann</strong></a> launched <a href=\"https://poststatus.com/redis-object-cache-wordpress/\">in 2014</a>. </li><li><a href=\"https://relay.so/\" target=\"_blank\" rel=\"noreferrer noopener\">Relay</a> looks like it will be a successor to OCP as it\'s capable of speeds up to 100 times faster than Redis. It\'s a PHP extension developed in C that is both a Redis client and a shared in-memory cache.” There is a free Community version.</li><li><strong>Felipe Elia</strong> recently wrote a great explainer on <a href=\"https://felipeelia.dev/wordpress-object-cache-and-redis/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress, Object Cache, and Redis</a>.</li><li><strong>Do the_Woo</strong> <a href=\"https://dothewoo.io/the-evolution-of-woocommerce-and-wordpress-hosting/\">recently recorded</a> a very insightful open discussion on the Future of Hosting (and WordPress plugin business opportunities) where Till, <strong>Carl Alexander</strong>, and <strong>Zach Stepek</strong> traded insights and stories from their work with enterprise-class WordPress and WooCommerce.</li><li>Scaling WordPress (Post Status Draft #51) remains one of our all-time most listened-to podcast episodes, from 2016. <strong>Brian Krogsgard</strong> and <strong>Joe Hoyle</strong> take a pretty comprehensive look at WordPress performance and caching, including Redis.</li><li><strong>Jon Christopher</strong> is trying <a href=\"https://poststatus.com/who-benefits-from-a-decentralizing-plugin-ecosystem/\">a unique business strategy</a> with his <a href=\"https://organizewp.com/\" target=\"_blank\" rel=\"noreferrer noopener\">OrganizeWP</a> plugin that suggests cooperative ways to win outside centralized markets.</li><li><strong>Kevin Ohashi</strong>‘s <a href=\"https://en-ca.wordpress.org/plugins/wpperformancetester/\">WP Performance Tester</a> plugin will test your server\'s raw capacity and show you how it compares to the current industry average established by Kevin\'s testing at <a href=\"https://wphostingbenchmarks.com/\">WP Hosting Benchmarks</a>.</li><li><strong>Mark Jacquith</strong>‘s <a href=\"https://wordpress.org/plugins/cache-buddy/\" target=\"_blank\" rel=\"noreferrer noopener\">Cache Buddy</a> (2015) “[m]inimizes the situations in which logged-in users appear logged-in to WordPress, which increases the cacheability of your site.”</li><li><strong>Shaun Kester</strong>‘s <a href=\"https://skfox.com/2008/10/09/latency-tracker-phpmysql-tracking-for-wordpress/\">Latency Tracker</a> (2008) was a helpful diagnostic when pre-“Managed WordPress” hosts were struggling to keep up with the booming use (and abuse) of self-hosted WordPress and other <strong>PHP</strong>/<strong>MySQL</strong>-based publishing platforms. </li><li><strong>Paul Jarvis </strong><a href=\"https://unemployable.com/podcast/company-of-one/\">talks about his book</a>, <em><a href=\"https://www.goodreads.com/en/book/show/37570605-company-of-one\">Company of One: Why Staying Small Is the Next Big Thing for Business</a></em>, with <strong>Brian Clark</strong> at <strong>Unemployable</strong>. </li><li>The <a href=\"https://make.wordpress.org/performance/\">WordPress Core Performance Team</a> is dedicated to monitoring, enhancing, and promoting performance in WordPress core and its surrounding ecosystem. We build and manage the <a href=\"https://wordpress.org/plugins/performance-lab/\">Performance Lab plugin</a>, a collection of performance-related “feature projects” for WordPress core.</li></ul>\n\n\n\n<h3 class=\"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\"><li><a href=\"https://twitter.com/tillkruss\">Till Krüss</a> (Founder, <a href=\"https://www.linkedin.com/company/rhubarb-group/\">Rhubarb Group</a>)</li><li><a href=\"https://twitter.com/dan_knauss\">Dan Knauss</a> (Editor, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li><li><a href=\"https://twitter.com/lemonadecode/photo\">Olivia Bisset</a> (Intern, Post Status)</li></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=\"eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<h3><strong>Intro</strong>duction</h3>\n\n\n\n<p><strong>Till Krüss:</strong> [00:00:00] I forked it and now it grew to like, I don\'t know, a hundred thousand users probably a lot more because most people just use the upstream object cash drop and not the full plugin. I know that, um, Cloud Linux is using now Spin up, WP Blue Host. A lot of big hosts are using it.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> I\'m here with Till..</p>\n\n\n\n<p><strong>Till Krüss:</strong> <em>Krüss</em>.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> …and we\'re going to be talking about Object Cache Pro, which Till launched at the end of 2019. It\'s a business class Redis Object Cache backend for WordPress that\'s used by GoDaddy, Pagely Nexus Cloud Ways, and Convesio. The free, open-source version, Redis Object Cache is available at wordpress.org on the plugin repo.</p>\n\n\n\n<p>It makes WordPress much, much faster. Till\'s also building [00:01:00] Relay Redis client that\'s two orders of magnitude (100x) faster, and there are Laravel, WordPress, and Magento integrations for it. Till\'s a company of one and has a really unique view of how he wants to do business in the WordPress space. We\'ll spend some time talking about that, how Till got into WordPress in the first place as a very self-taught developer.</p>\n\n\n\n<p>And we\'ll talk about performance and testing in the WordPress plugin ecosystem. Why there needs to be more of it and why this matters to WordPress\'s Growth and competitiveness. Before we get into that, let me tell you about one of our great sponsors, Pressable. Founded in 2010. Pressable is a world class managed WordPress hosting provider built on the same data network as wordpress.com and WordPress VIP.</p>\n\n\n\n<p>Their state of the [00:02:00] art platform empowers agencies, freelancers, e-commerce businesses, IT professionals, and WordPress developers. To build, launch, and maintain amazing WordPress websites quickly, easily, and affordably with industry leading performance 24/7 expert support, a hundred percent uptime guarantee, and seamless integrations through commerce and Jetpack.</p>\n\n\n\n<p>Pressable provides the tools you need to manage your WordPress websites and grow your business all in one place. They\'ve also got a really cool demo system now. It\'s called My Pressable Playground, and you can create sites back in there. Edit the settings for each. Look at the security tools performance, other site management tools, and check out the Pressable API. For more advanced users, there\'s a robust REST API that you can develop applications on. It\'s all pretty open there and get a full view of everything. Just click the big “try for free” [00:03:00] button and give Pressable a try.</p>\n\n\n\n<h3>Dialogue Starts</h3>\n\n\n\n<p>So your main vocation, these, these days is, uh, am I right that what you\'re spending most of your time on is, is Object Cash Pro?</p>\n\n\n\n<p><strong>Till Krüss:</strong> Yeah. It\'s a 50 50 split, more or less between object, cash, Pro and relay. Right. Which hasn\'t really, you know,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> been too public. Relay that\'s, um, how much is, is that coming back into WordPress?</p>\n\n\n\n<p>That\'s a kind of a larger PHP project.</p>\n\n\n\n<p><strong>Till Krüss:</strong> Yeah. Without, you know, diving off the deep end here, essentially, I spoke with a bunch of people. The result was Object Cash Pro. And once I released this, you know, enterprise grade object cashing solution hosting companies came to me and be like, Hey, we want even more performance.</p>\n\n\n\n<p>And then the last two years, me and Michael, um, mostly him, but the [00:04:00] last two years we spent building Relay because it\'s the, it\'s a nice addition. And to answer your question about, Back to WordPress is like, yes. However, we are expanding into the, The extension works with laville magenta, with all PHP frameworks, messes.</p>\n\n\n\n<p>It\'s not only restricted to WordPress, but I assume this is gonna be the right dominant market. The first couple of years object. Cing is a very WordPress specific term. You see it here and there in other frameworks, but often it\'s just called caching. They just say, Hey, we just throw something into the cash and.</p>\n\n\n\n<p>Then they differentiate between page caching and all the other things. In WordPress, it\'s a specific term called object caching, but really it\'s, it\'s a, yeah, it\'s a WordPress specific thing.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> So what, what, how would you define object caching? I have kind of a metaphor, simplification for it in my, in my mind.</p>\n\n\n\n<p>But what\'s, what\'s a semi-technical. Deeper technical understanding of, of what we\'re doing [00:05:00] with object caching in, in WordPress,</p>\n\n\n\n<p><strong>Till Krüss:</strong> how I define it. There\'s some really good articles written out there. I think someone just posted something a few days ago. I dunno if I can pull this up right now. Um, Interesting Filipe ira.</p>\n\n\n\n<p>Yes. He just posted something. . We should put his initial notes. He has nice illustrations and he explains it. Um, essentially object hashing is you, you know, database might MariaDB all the S SQL queries that typically quite slow at scale, the more low you put on it. If you have a thousand people asking questions at the send them, it can be a bit much so at word pr Let\'s.</p>\n\n\n\n<p>You want to fetch the most recent comments and it gives you 20 comments instead of always asking your database server for it, you throw it into the object cash. I\'m doing air quotes here, which can be backed by many different service or architectures. In my case with object [00:06:00] cash Pros, cuz I think it\'s a really neat piece of software home and.</p>\n\n\n\n<p>Instead of, you know, the next couple of visitors, they don\'t have to ask the database. You don\'t have to wait your time to first buy. It doesn\'t increase. You can just throw it into Redis and retrieve it really, really quickly. And Redis doesn\'t really break a sweat. If you have a thousand people asking questions, it\'s fine.</p>\n\n\n\n<p>Maybe at a hundred thousand, a million, then you know, it starts to consume some resources. But it\'s just a really, really fast key value store. And. Ultimately object cashing helps you reduce the load on your database, which in most cases, I wanna say unless you have these, you know, 250 plugin, web percent stalls.</p>\n\n\n\n<p>Yeah. Big chunk of your response time is always taking up by talking to the database, right? Mm-hmm. ,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> I, I haven\'t seen a lot of 250 plugin my press installs. You run into those very often.</p>\n\n\n\n<p><strong>Till Krüss:</strong> Uh, I don\'t, I not directly, but [00:07:00] you know, working. The guys at Page Lee and some other hosting companies I see. Really horrendous What setups that it\'s, it feels abusive, what they\'re doing.</p>\n\n\n\n<p>It\'s just, it\'s, it\'s cruel what, what they\'re doing with the service.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Right? Yeah. I I\'m sure there\'s, there\'s plenty of, We\'ve probably touched a few of those here and here and there. Everyone\'s experience, um, just keep adding to it. Mm-hmm. . But the, the thing with Adri cash, um, That\'s really valuable is it doesn\'t matter whether those queries come from the back end or whether you\'re in the Yeah.</p>\n\n\n\n<p>Unit or not. And that\'s traditionally been people are working, um, doing a lot of writing inside their content management. And then if you have multiple users back there, there\'s really nothing that traditional cash would. Offer you. I remember there was this old plugin, um, I used for a long time. Mark Jake with, had written that, um, did try to do some smart things to cash some on the back end, [00:08:00] um, when you had multiple users going, but.</p>\n\n\n\n<p>Uh, if, if you\'re caching, well, it\'s not, Is it caching queries? Um,</p>\n\n\n\n<p><strong>Till Krüss:</strong> yeah, , it\'s unclear. Um, it\'s not a query. Cash query caching would be select user one from, you know, WP Onco users that would be specifically cashing this result. And some MyQ Marie BI was actually do this internally. If the same query happens, then they just send a cash response.</p>\n\n\n\n<p>It\'s more that WordPress says, Hey, I wanna. Look up this one user and then WordPress function itself. Check, Do I already have this in cash? Instead of cashing the query, it just cashes the object. Hence object cashing. But to speak to what you said earlier, they\'re just there. Yes. The advantage of object cashing, I always, I\'m so involved in it, so I forget how to properly explain it.</p>\n\n\n\n<p>Maybe in the, Explain to me like I\'m five, the big advantages. It\'s easy to install a plugin like WP Rocket or. , [00:09:00] I don\'t know what the go-to standard is nowadays to get some browser cashing going. So if you have anonymous traffic, if you have the Google crawler going to your website, that you serve these static pre-generated HDML files.</p>\n\n\n\n<p>So you don\'t have even talk to anything, you just, the server just has to redefine and send it back, which is really, really fast, like milliseconds. However, the moment you\'re logged in, if you have a community. Buddy boss, or if you have something here, shopping cart with wms, you\'re not an anonymous visitor anymore.</p>\n\n\n\n<p>And then every request when you wanna browse to the next category in wms, for example, you always have to talk to my sequel. And now if you do a flash sale with a thousand people at the same time on you site, You always will hit the object cash and it\'s just nice that it\'s whether you\'re in the back end, whether you are logged in, used on the front end with a shopping guard or you know, just commented, object cashing will reduce the response times of the page load times [00:10:00] for all of these requests.</p>\n\n\n\n<p>Not only anonymous traffic. It\'s really good to have both, to have a page cash and an object cash because you know, a fast back end, maybe even the page generation. when you run your, Hey, warm up my page cash would be faster because it doesn\'t have to hammer your my SQL server. Um, but yeah, that\'s, that\'s the, the essence, it, it cashes all requests or all it cashes.</p>\n\n\n\n<p>That\'s not true. It cashes many parts that affect all requests.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Right. Yeah. I noticed the big difference, uh, when we started using it, uh, with Pagely, and I think in some other context I have, um, yeah. Cause that\'s traditionally been the, the big problem with, with WordPress, if you\'re trying to use it as a community site or you, you\'ve got a forum or, uh, Yeah, some of a social site and a lot of people are logged in, so there\'s very little that.</p>\n\n\n\n<p>That page cashing would do anything for. So, um, [00:11:00] In my recollection, that was the major problem hosts had. There were more and more WordPress sites and others of its generation. They\'re all PHP in my sequel. Um, and so you would have someone just getting hammered with a lot of concurrent visitors. Maybe they don\'t.</p>\n\n\n\n<p>Maybe the page doesn\'t. Has like 50, a hundred queries. It\'s reasonable, but there\'s like 300 people doing that all at once. Or you have someone who has like the 250 plugins and it\'s like a hundreds of queries to load the, the front page. And it took a close look at that at one point with, uh, with another guy on the WordPress community.</p>\n\n\n\n<p>And um, you would see like one, even if it was one out of a hundred queries that just went. It just never came back. , and you wouldn\'t get a full page load. Um, was that, is that still a [00:12:00] scaling issue that every host has to deal with? Um, or is that becoming a thing of the past? With, with stuff like object</p>\n\n\n\n<p><strong>Till Krüss:</strong> cashing, having an object, Cash.</p>\n\n\n\n<p>And what press helps, um, because it\'s not really designed. To run a community to run these highly dynamic sites. We\'re making dm, we\'re making it work. I think the buddy boss guys talked to me recently and they said that just a load of feed of any given user, like you logged in, lot of feed. It\'s 300 my queries or SQL queries.</p>\n\n\n\n<p>Most people I think, use Marie db. I can\'t speak too much about what the challenges of hosting companies are. Um, I do see. Here and there, The stories and scaling the database over seems often an issue. I don\'t know what it\'s like in shared hosting. This is not my expertise, but yeah. Um, it\'s a, it\'s a hard [00:13:00] challenge to, to scale WordPress.</p>\n\n\n\n<p>That\'s, And it\'s my business now, it\'s, it\'s hard to scale and we have better tools, we have more powerful service. It\'s working, but it\'s, it\'s definitely pushing the edge of what it\'s meant to be doing initially. .</p>\n\n\n\n<p><strong>Dan Knauss:</strong> And is that how you got into this? Just because, well, you had a kind of history with WordPress and, and Lael, um, does it naturally, Does the nature of working with a WordPress for long lend itself to.</p>\n\n\n\n<p>Man, I gotta deal with some performance issues. Um, but what was your way into that? Becoming a</p>\n\n\n\n<p><strong>Till Krüss:</strong> main focus? Yeah, I was working as a freelancer and I was working on this really large Ttra community, um, as a women run company, which was kind of funny as like, I think when I left there was 50 women and me, and it was a fantastic work environment.</p>\n\n\n\n<p>I could say and. [00:14:00] The, It was like online learning, online courses. We didn\'t really have any tools when we started. I think I know 10 years ago, eight years ago, there was no good tools out there and at some point we started using Access Ally to connect with part and was just always a performance nightmare and I wanted to use an object answer.</p>\n\n\n\n<p>I ran into the same problem that now people run into and come to me essentially, or to other people like Pan. And they\'ve got a reddish caching plug in as well. That\'s, the data was just a sudden there so much load, page load signs were low and each page had, you know, three, 400 comments and just to load them, it was just not feasible to always ask the SQL Server and.</p>\n\n\n\n<p>Saw what\'s out there and it was kind of a bit dire, the situation. So I forked one of, I do not remember who it was. There was a popular Redis plugin, but Eric man, Eric man, I think way back in the day, released something where it was just unmaintained. I forked it, and now it grew to like, [00:15:00] I know a hundred thousand users probably a lot more because most people just use the upstream object cash drop and not the full plugin.</p>\n\n\n\n<p>I know that, um, Cloud Linux is using now Spin up, WP Blue Host. A lot of big hosts are using it, so the 100,000 users might be with Misleading, and I just scratched my own itch. I needed a good Redis plugin and it just kept on growing. That\'s how I kind of, you know, got into this and got started with it. I, I needed faster page load times.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah, I think that\'s, that\'s a, not that un uncommon of a, of a story, but you, what\'s unique is to, to build a product as, as successful as, um, as Object Cash Pro, I imagine. Um, how many, how many hosting partners are you working with now with that? Because it\'s a, there\'s the free plugin, but then there\'s the, um, the, there\'s the, [00:16:00] I guess the.</p>\n\n\n\n<p>Top shelf, high, high end premium version, that that\'s, is that mostly gonna be of use to a hosting market?</p>\n\n\n\n<p><strong>Till Krüss:</strong> Um, yeah. And individual, like the small medium businesses that, you know, if you run an eCommerce side, and we have many customers like that. Mm-hmm. , they have eCommerce sites, they make $50,000 a month in revenue and they run their own either infrastructure, have a tiny engineering team.</p>\n\n\n\n<p>Two, three guys run their own infrastructure because often when you have these large scale sites, it\'s tricky to find a hosting company that will serve that. Right. And I recommend Pagely personally because they seem to be able to just scale out. Um, What was the question again? ,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> I\'m thinking Yeah. Whether I That was hosting buttons.</p>\n\n\n\n<p>Yeah. Answered it. Yeah. If so, there are larger, So, so the, the client market for object cash bros is not just hosts, but businesses that are large [00:17:00] enough where they\'re monthly revenue, they can quantify exactly what performance is costing them. Yes. So if you are shaving. Off $10,000 worth of bandwidth. You know, it\'s, it, you, you can be that precise about it.</p>\n\n\n\n<p>That that\'s, um, yeah. You know, this is a measurable quantity and your, your value is, um, auto, it sells itself, I suppose. Right. Is that, is that kind of how you</p>\n\n\n\n<p><strong>Till Krüss:</strong> approach? Yeah, and because I believe in open source, there\'s always the free version that gives you a lot of benefits already. Um, there\'s been these studies from Amazon, Walmart, Etsy.</p>\n\n\n\n<p>Google where every 10th of a second a hundred milliseconds page load delays cost you. I think 1% conversion rate. Companies who worry about those numbers, they should be using Object, cash Pro. Yeah. Or if you just want the best of the best.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah, there\'s that side of it too. That\'s it. It\'s probably fairly quantifiable what you\'re losing in customers.</p>\n\n\n\n<p>[00:18:00] Um, and just you\'re paying for less efficient, You\'re paying to lose customers if you, if you can\'t, can\'t serve, um, pages efficiently at scale. So, All right. Um, Do you want to talk more about your, your background and, and history, or do you like to, you know, I imagine there\'s some things farther back that maybe suggest some things about you and, and why you shaped your business this way, because, We\'ve talked about that before, and you know, this isn\'t, this isn\'t something you want to grow into, uh, a massive company where you become a manager of, of a support desk , or you, you know, that\'s under you.</p>\n\n\n\n<p>You\'ve got people, you\'ve got engineers and, and support people. Um, this is something you wanted to remain hands on and, um, in a particular way so, Are there things in your experience and you know, the rest of life that made you aware of that, [00:19:00] um, about yourself? Because, you know, the standard stereotypical model is let\'s like on, let\'s make this thing as big as we can.</p>\n\n\n\n<p>Like Yeah. Cava</p>\n\n\n\n<p><strong>Till Krüss:</strong> dozen,</p>\n\n\n\n<p>Um, yeah. I.</p>\n\n\n\n<p>I\'m neuro atypical and I, whatever. I touched a knife I wanted to do, figured out myself. I mean, I, I really enjoy learning from other people and I constantly ask other people about things and advice, but. Just seeing the standard model of you start a business, you get some funding, then you rent an offer, and I just, I can\'t be asked to, to do that.</p>\n\n\n\n<p>I, I wanna do things my way. That works for me, meaning working from home, I. In my underwear. Kind of, that\'s the, the picture you, you can visualize there. I, it works for me to be quiet by myself to focus time. If I want to take three [00:20:00] days off, I will and not be forced into this nine to five productivity model because it doesn\'t serve my, I don\'t wanna say best interest.</p>\n\n\n\n<p>I\'ve never really articulated this. Um, it doesn\'t work for me. It\'s, I work long, hard hours, sometimes months in a row and sometimes I just take time off and all I wanna do is mo lawn and go for work. That flexibility, I think, really allowed me to.</p>\n\n\n\n<p>maybe make the best product I could possibly make. And I just essentially, I just wanted to do things my way. Even with the pricing model, of course, looking at all the other WordPress plugins, this pricing model, I think hasn\'t changed in the last 10 years. Five years. I don\'t know what the first paid plugin was except for, was it, um, Kareem with crowd favorite?</p>\n\n\n\n<p>He had this one plug and I was, I dunno, [00:21:00] $500 a month or like some crazy amount, the, where you could migrate between sites with this one outlier. Everybody does the same pricing with, you know, a couple of dollars a month, maybe less than a hundred a year, and you get your unlimited license to me didn\'t work.</p>\n\n\n\n<p>I wanted to keep it small. I wanted to have a hundred customers that pay me a hundred dollars a month. That would be my full-time work and support a hundred companies individually. That was the initial intention support a hundred companies because I can\'t, that wouldn\'t, wouldn\'t be too far out of my capabilities and it wouldn\'t completely drown me in work.</p>\n\n\n\n<p>And so that\'s how I really priced ocp. This is, this is what I wanted and. What I\'m seeing now is that I can serve the WebPress industry much more by working with hosting companies, and I\'m talking with a lot more than, uh, listed on my website officially, who already, you know, signed up. There\'s a few bigger announcements coming now with Word Cam BS that I don\'t think I can talk about or would be, It\'s not my [00:22:00] place to her to share these things.</p>\n\n\n\n<p>Um, but yeah, I just, I wanted to. I wanna do this, do things my way. That was, it was really important to me, and I\'m really glad I did because I\'m also seeing that I don\'t think I\'m a good employer. Um, unlike people. What\'s his face? Joshua? Joshua Trouble? Yes. I think he was a really, it\'s, he seemed, Maybe you can leave some notes here.</p>\n\n\n\n<p>If, if anybody\'s working for him. He seems like a really good boss and, I\'d like to be like him, but I\'m not, or at least not at this point. And may, maybe I\'ll get there and I want to grow and scale. What, what I would like is I would like someone to come in, be the CT cto, as ceo, take over the company, and I\'m down with whether this is raising money or.</p>\n\n\n\n<p>Getting, you know, with all the acquisitions, I think it makes sense for a established, skilled team to come in and grow this. But as long as I\'m [00:23:00] not on my own, but have a very small team, which I have right now, I don\'t, I don\'t wanna just grow and grow and grow. That\'s not my, I wanna create a good product.</p>\n\n\n\n<p>I wanna have happy customers and not have depression because I\'m burning the candle at both. . Yeah. Do</p>\n\n\n\n<p><strong>Dan Knauss:</strong> do you think that, that to me doesn\'t, man, I, I, I resonate with that a lot. I, I feel that a lot. I, I feel like there\'s a lot of, well, maybe not a lot, but proportionally, but that there\'s a, there\'s a culture in, in WordPress among developers and, and others that is kind of the smallest, beautiful Yeah.</p>\n\n\n\n<p>Approach. And have you found other, like others? Kind of supporting, validating that or other people you think have done</p>\n\n\n\n<p><strong>Till Krüss:</strong> that except that all the smallest beautiful gets bought up. . Yeah, they do. But then because we have these, oh, what do you call them? [00:24:00] Conglomerates now, like with the cloud waste acquisition today, um, by digital ocean.</p>\n\n\n\n<p>There are these giant, I dunno, visually speaking skyscrapers, you know, there\'s a bunch of them, but there are so many CRAs in the pavement in between that where smallest, beautiful can grow and you have like beautiful little happy, healthy flowers. I don\'t know what the, where the analogy is going. Um, There\'s space to grow.</p>\n\n\n\n<p>There\'s always issues in between where you have small companies that can solve a problem that there\'s so many that exist in workers and create a really good solution, and then they will grow and maybe they\'ll be bought up and integrated in the big sky scrapers. Maybe not that, that it doesn\'t really matter.</p>\n\n\n\n<p>There\'s always space for small, whether it\'s a startup or just a small business or your, your site project to, to flourish. I.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah, I was thinking of John Christopher, who\'s you, you probably saw some of that in post [00:25:00] Slack and his give attention because it\'s an unusual, um, approach with organized wp. Um, yeah, he goes way back with, He\'s very intentional about it.</p>\n\n\n\n<p>I think that\'s actually a project that has a previous plugin behind it goes back 10 years or so. So even when he was doing search WP and from what I was reading and hearing, A large part of it sounds, sounds like you, where part of the thinking is not just a technical or revenue oriented planning, but how is this something that fits into my life where my relationship with my customers is meaningful?</p>\n\n\n\n<p>Um, and that kind of connects with what I\'m hearing from you about like yeah, you don\'t want the, the stress. Over promising and delivering cuz your own scale has gotten out. Like, that\'s, that\'s what I\'ve found most painful and personally a barrier in, um, [00:26:00] freelancing. You know, if, if you\'re doing you, it doesn\'t, it wasn\'t, it\'s not something that quality can maintain at, at scale and to the extent you put relationships and maybe in your own community, into your clients, um, that really matters.</p>\n\n\n\n<p>Like you, uh, you feel. Like you\'re letting people down if, if you can\'t, so, and I don\'t, I think they\'re at a point of scale. No one cares anymore. Right. They don\'t care. A big conglomerate, like you\'re not a successful</p>\n\n\n\n<p><strong>Till Krüss:</strong> number. The customer service, this is always what I think about, and I\'m sure I\'ve shared this once or twice before where I don\'t wanna interact with.</p>\n\n\n\n<p>Customers or people like this. I have my friends and I have my personal world where I wanna interact with humans, but on the internet there\'s too many sketchy people out there. So to me, one big goal was to keep customer service as minimal. And what\'s the opposite of hostile? Um, peaceful . As [00:27:00] nourishing as possible to me being an open source maintainer for, I dunno, 18.</p>\n\n\n\n<p>18 years maybe. Mm-hmm. started with like half a mint back in the day, if anybody remembers that. Yeah, I do. Only the old people and Sean Inman, Iam, I dunno what his name is, but, um, you know, this analytics software, being an open source maintainer for so long, I, I saw the progression. Maybe I\'m so jaded now.</p>\n\n\n\n<p>Maybe the internet has changed and there\'s more people now I\'m not. But back in the day, it was really pleasant to interact with users of my software that I wanted to write and publish for free. And over the years I just saw that it\'s more, not more and more, but the percentage of shitty and hostile and interactions.</p>\n\n\n\n<p>I don\'t know if I can curse on this podcast here. Um, I think just the F word probably, maybe I\'ll refrain from using it became. It\'s more [00:28:00] unpleasant to me. And with object aspro, I wanted to have the same thing where I, I make a software, people pay me for the service every month to use the best of the best, but they didn\'t talk to me.</p>\n\n\n\n<p>That was my, my goal. And instead of keeping them away and not responding to customer service requests, I wanted to create software that is so stupid, reliable that they don\'t have to talk to me and bring back everything I learned from my many years in the Laville community. Bring this back. Test driven development, reliability as a, as.</p>\n\n\n\n<p>The number one core value of, of the software, not performance, not all the fancy belts and whistles and, and cool designs, not reliability, just you install it and you don\'t have to think about it because it just works. If there\'s an error, it recovers by itself. That was the intention because I don\'t wanna do customer service as my, my, my life, and.</p>\n\n\n\n<p>Again, I could scale and hire people, but I know why have a whole customer service team, What if the [00:29:00] software just works? And right now it\'s slowly changing over the last, let\'s say, I think it\'s almost three years now in ste, in November, um, two and a half years, let\'s say the majority of my days is I work, I do whatever I want, I can, I can drive my businesses forward, whether it\'s the sales and marketing or whether it\'s software and I.</p>\n\n\n\n<p>Have been doing five minutes of customer service so far, and now it\'s slowly getting to like 10 minutes a day, which is still delightful to me, but it\'s 10 minutes now. I\'m not stoked about it, so I\'m working on making all these questions that over and over ask, and in the customer service chat or emails I integrate into the software, so I wanna bring it down to five minutes by just making it more intuitive, more reliable, and more.</p>\n\n\n\n<p>Explan explanatory. Explanatory. Kind of like the apple iPhone where you, it just works for the most part, right?</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Some, I, I can, I can hear people, I, I can read minds of [00:30:00] like, you know, you, you\'re talking on the one hand of like putting yourself out of business almost. But on the other hand, I can also imagine a lot of WordPress plug-in developers and, and far beyond that.</p>\n\n\n\n<p>10 minutes. 10 minutes a day. One guy on support. That\'s, that\'s like paradise . Yeah. Cause the, the, the, for years and years and, and ongoing, the, the, probably the single most common, um, uh, complaint and, and it\'s more than a complaint. It\'s a life. It\'s a quality of life. Mm-hmm. issue when you listen to developers and product owners with.</p>\n\n\n\n<p>With a support desk and it\'s, it\'s where the highest frustrations are and where they end up spending its money, time, and, and your mind.</p>\n\n\n\n<p><strong>Till Krüss:</strong> Mm-hmm. . So, and to me it\'s, my personally till this thing here, it\'s my happiness, my, [00:31:00] my contentment, and how I feel about life. Doing a lot of customer service is not part of that.</p>\n\n\n\n<p>Right.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah. Uh, to be honest, both sides of that transaction don\'t really want to be in there. It\'s not, um, it\'s not where we wanna spend our time.</p>\n\n\n\n<p><strong>Till Krüss:</strong> Yeah. And if it\'s five minutes a day, I can put in the energy. I can be quite nice and helpful. But if it would be 2030, if it\'s an hour, and like this is what I gotta do if I wake up and.</p>\n\n\n\n<p>Have a coffee and new customer. So it\'s just, I don\'t wanna do it. I would probably sell the business to Digital Ocean and, and move on. It\'s, that\'s not the life that I wanna live. Right. Yeah.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> What, what allowed you to, to know that about yourself earlier on? So that just seems unusual. What, what takes you down that, that path of knowing your limitations and know?</p>\n\n\n\n<p>What you want when it\'s the opposite of what everything else says, like go and grow. This is a form of growth, but it\'s not the [00:32:00] stereotype, the one we always think about of bigger, more people, more tickets that come with our support tickets. Mm-hmm. .</p>\n\n\n\n<p><strong>Till Krüss:</strong> What? Think. Think what\'s? I think, I think the Ansys iowaska, psychedelic substances.</p>\n\n\n\n<p>What do you call them? plant medicines, if you wanna say. I think that\'s the answer. It could also be just I, because I\'m near atypical, I have to do things my way. Maybe that\'s it. But I definitely, as a human, I value introspection and self inquiry. It\'s top of my list of things that I like to do in life and with myself and what drives me and what I find interesting in myself and understanding how do I.</p>\n\n\n\n<p>How to still function and how do other people work, which is a lot more challenging sometimes because there\'s someone that can be so irrational and self inquiry and [00:33:00] psychedelics allows me to. Or has allowed me to just be more self-aware than I was five years ago, 10 years ago, and just increase that. If that\'s a quantifiable number, which I don\'t, maybe it isn\'t, get to know myself more of like what makes me happy, what makes me, what helps me be content, or what nourishes me, What drains me, and being self-aware I am, I\'m a huge fan of that, that self inquiry.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah, there\'s no, if you don\'t leave any room for it, it\'s, it\'s gone. And that time is gone. I, I feel you on that. Um, yeah. The last five years have probably, for almost everyone, have been possibly the toughest, um, in our lives. I, I think that\'s probably not that unique. And a big part of it for me is, um, along with, with remote relationships and remote.</p>\n\n\n\n<p>and social isolation happening at the same [00:34:00] time that there\'s, um, it\'s been a complicated, um, situation to keep enough of your own head space and relationships and, and things like that, um, that are, that are closer to home. That, you know, traditionally we find our identity and grounding and meaning and, um, Yeah, it\'s just gotten so much harder.</p>\n\n\n\n<p>And it sounds like you\'ve kind of gone the, the opposite, opposite direction. Pretty successfully with, with that, ironically, by, as, as other people scale up and develop all these inefficiencies, here\'s this guy with this, with this product that solves that problem to some extent, remaining this kind of calm.</p>\n\n\n\n<p>Center of the wheel , it\'s like I\'m imagining the, the nun, everything else spinning around and you\'re trying to [00:35:00] do as few, uh, as little, as little movement within the center of that as as possible. Um, seems like a smart, desirable way to work. To me, um, it</p>\n\n\n\n<p><strong>Till Krüss:</strong> wasn\'t,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah. Have you changed, has anything changed in, in your practices, in, in models or is this pretty confirmed at, at this point, this is how you want to do it?</p>\n\n\n\n<p>You\'re, it sounds like you\'re entertaining some idea of business partners. You know, as long as you have a, a role that allows, allows you to, to have the, the space and, and activity that you want.</p>\n\n\n\n<p><strong>Till Krüss:</strong> I think it\'s, um, it\'s a good question. I dunno if I have an answered this. Um, I,</p>\n\n\n\n<p>because it\'s such a loud voice on the outside, everybody does the same thing. This is how you speak, this is how you [00:36:00] behave. This, there\'s so much conformity and we all wanna do this. As you know, talking apes. Because this, It\'s such a reinforcement. I think it\'s called something cultural head. Gem. Gem. Gem.</p>\n\n\n\n<p>Yeah. That\'s the word. Yeah. This is my ESL coming out here. Where it\'s over and over reinforced that it\'s good to be efficient. As a German, this is, I relate to this a lot, but um, it\'s, efficiency is important. Work is important. First question is, what do you do? Like everything is so work centric that it\'s.</p>\n\n\n\n<p>Sometimes hard to put aside. So I still entertained the thought of like, Hmm, can I do this my way again, , Can I do this in a way that works for me? Can I be efficient or can I support growth my way? It\'s hard to just shut it out because it\'s so dominant in all of, at least the societies that I live in and [00:37:00] the circuits that I live in where money and success.</p>\n\n\n\n<p>What are you doing within like that, the values are just so reinforced externally. That to me to again, find, I\'m gonna quote Joshua Strayer again here. Like, what do I actually wanna do with my life? Um, not that he\'s the first question you ever asked me that, but how do, what do I want? And, and, and forgetting my inner.</p>\n\n\n\n<p>Sometimes happens, and maybe those are the moments that I think about growth and investment. Yeah. And, and scaling out. Um,</p>\n\n\n\n<p>I definitely see to, to switch gears here as well, I definitely see being, working with hosting companies the last couple of years, maybe the last years last year more and. I can make a bigger impact in the workforce community if I would have proper backing and, and, [00:38:00] uh, better team. And seeing now working on this particular product for the last close to three years or three years, probably with the development cycle, I\'m really good at product.</p>\n\n\n\n<p>I\'m good at figuring out with people need. In my five minutes of customer service, I get enough information figuring out what they need. Being technical enough to bridge the gap and, and creating quality products. That\'s kind of the, the pride or that\'s what I\'m proud of or take pride in. And I, in an idea world, I\'d love to focus on that and not think about receipts and my.</p>\n\n\n\n<p>Accounting balances and all these other things. I try to outsource these things, but there\'s so much more to a business, so much more including customer service. Just focusing on product would be, I think, a very idea idyllic state for me to be in, of just, I get to just [00:39:00] create and make the world a better place.</p>\n\n\n\n<p>At the same time, less resource usage, faster, low times, less electricity being used and. Less headaches for people like the, the emotional impact of people worrying about the WordPress websites. That to me is a un quantifiable number that I really like to get higher. Um, why worry about your software? Like, let\'s worry about the relationships that we have or the what we want maybe, um, our ourselves and like these, the things that actually matter.</p>\n\n\n\n<p>So with software is making the lives a bit easier and less annoying. Um, I\'d love to do that. Back to your question of like, has anything changed? Just more and more discovering, running all of this myself and then outsourcing some engineering parts or the, you know, accounting, bookkeeping. Obviously it would be fun to just do product itself.</p>\n\n\n\n<p>Um, it\'s not [00:40:00] my reality at the moment, but I would entertain it if it\'s, if it\'s done right. And I\'ve heard this a few times, whether this is the Pagely acquisition or WP Media, the WP Rocket guys, there seems to be companies out there that are still have a lot of financial backing, but they\'re not,</p>\n\n\n\n<p>I, I don\'t know how to say this. They\'re not cutthroat capitalists. Right machines. Good.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> disadvantage maybe, but worth life. Worth living.</p>\n\n\n\n<p><strong>Till Krüss:</strong> Yeah. Like the, the one group one or one group. Mm-hmm. one.com hosting. And in Scandinavia, they just seem to, maybe it\'s a Scandinavian model. Again, just more focus on Yeah, we all work, we all pick pride in that maybe or identify with what we do for, for, for work.</p>\n\n\n\n<p>But not at the extreme expense of our personal lives.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah. [00:41:00] I, I think who\'s gonna argue with that? and feel good, feel like they really mean it. But yeah, that is a, it does seem more and more like that\'s a, a culture and the spirit and ethos that\'s, that\'s been diminished over time. Mm-hmm. in open source and Yeah.</p>\n\n\n\n<p>It needs, it needs advocates in</p>\n\n\n\n<p><strong>Till Krüss:</strong> it\'s, Yeah,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> it\'s a, it\'s good to have voices for that, but there\'s also some really practical things to it. Some of what you were saying, I, I know you, um, if you wanna drive down headaches and inefficiencies and stuff that doesn\'t work and poor quality products, testing is probably your main answer to that.</p>\n\n\n\n<p>For practically speaking, what can WordPress do to. take, take a lot of trouble off of, off of, um, individual shoulders and off, you know, off the project, I [00:42:00] suppose too. Is that, is that accurate that the, the role of testing and standards, um, are an area that we\'re, we</p>\n\n\n\n<p><strong>Till Krüss:</strong> haven\'t, um, yeah. Really matured in? I think so, and I\'m still , I still dislike it, um, but I do it because it\'s, I wanna push a big release on a Friday afternoon and go camping for the weekend without having to worry about it.</p>\n\n\n\n<p>And I\'ve done this a few times now, like I try to release on a Friday afternoon and push big releases to, I don\'t know what, it\'s like 400,000 sites now. Um, Test driven development, whether this is, yeah, whether this is test driven development, meaning first you write your tests and then you write the software, or if you do it after the fact and you spend the extra, you know, 30% I think it is on, on average.</p>\n\n\n\n<p>Um, The extra time to write tests, get to, you don\'t have to chase the [00:43:00] 100% code coverage where every single line is tested, but at least test the major parts of your software and whether this is JavaScript browser integration testing, and when you click this button, something happens and it works. Or this is just following the, the paths and PHP of like when.</p>\n\n\n\n<p>What happens when you flush the cash by cli? Does it actually empty your red estate? Just having sanity checks in place? It\'s a very technical topic. Testing in general, there\'s, what\'s his name? Um, Chris Hard, The grumpy programmer, who is just his whole life seems to be an advocate for testing, um, in, in many, many different communities.</p>\n\n\n\n<p>Not exclusive to php, just test your software. And to me, that allows me to be confident in what I. To trust my own software cuz I\'m very flawed and make mistakes all the time. But my tests will tell me when I do and just have peace of mind over the weekend where I [00:44:00] can, I don\'t have to stress out about pushing out a release that might break other people\'s sites.</p>\n\n\n\n<p>And this has been a very frequent occurrence. And WordPress, anybody from, I\'m not gonna say any names, but I\'m sure we all write the stories that as a release and sudden. I don\'t know. Millions of websites are slower because there\'s no tests, so there\'s no quality. Qa, What\'s it called? Quality assurance.</p>\n\n\n\n<p>Quality qa. Qa, Yeah. There\'s no teams. And whether this is manual or I think it should be automated because why spend human hours trying to do this? Just take the time to write these test. It\'s. It helps me. And then also to this extent of like customers have, I think more trust in the software. When there\'s releases and there\'s no, Oh, buck fix is, Buck fix is buck fixes and many small.</p>\n\n\n\n<p>You can see the the evolution of my free plugin, the Reddest object Cash. Sometimes when I do a big release, they do six [00:45:00] releases and 24 hours. It\'s so many people using it and something breaks for someone. And this is what I wanted to do different with Object Cash Pro. It\'s written from the ground up and it\'s test driven.</p>\n\n\n\n<p>Like there is no, it\'s not, not quite a hundred percent quote coverage at this point, but it\'s a very, It\'s thoroughly tested. Yeah.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Right. And what\'s the barrier to that? Becoming more of the. in WordPress are, are you involved in the on the core test team at all? I know you do. Uhfor the new</p>\n\n\n\n<p><strong>Till Krüss:</strong> performance team.</p>\n\n\n\n<p>No, I\'m not. I see that there is a lot of tests in WordPress core, like it\'s well tested. I think the, not the theme market, but the plugin market itself seems are probably a pain to test the plugin. Industry plugin. Severe is, testing is not a common thing. I, I don\'t see it very much. No few people seem to even talk about it.</p>\n\n\n\n<p>I don\'t wanna be an [00:46:00] advocate for it. I have other things to do. Maybe I should do a presentation at some point at a conference just to like see the, So the seats, what do you call? Put the seats in the ground. Yeah. Yeah. It\'s, uh, it\'s really good. I don\'t know if there\'s anything in the way except for awareness and then actually taking the time to do it.</p>\n\n\n\n<p>It, it, it\'s time consuming. It\'s expensive. If it\'s 30% of the time that you write code, that if it\'s an hour, I don\'t know what 30% is, 20 minutes, 80 minutes, something like that. A third, let\'s say, of that time coding. , you would then spend writing tests. It\'s not fun. I, I don\'t, You can make it kind of fun with like a decent test.</p>\n\n\n\n<p>We, a nice tooling, but it\'s still, you, you, you\'re doing this. However, for me, now down the road, seeing that I have three years of. Software in one place. I don\'t wanna test all these pieces that have written a year ago. They work, they can just stay [00:47:00] as they are, and if they break, I will know down the road and they can actually move a bit faster.</p>\n\n\n\n<p>Now, in the future of like whether this is adding new features or changing how timeouts work. The last release I pushed yesterday was adding connection retries and the few things broke and I, I just know I don\'t have. Abuse . I don\'t have to abuse my customers and they test it on their life production sites.</p>\n\n\n\n<p>My tests will reveal these issues first, which I, I think it\'s the more customer friendly approach to not let your customers test your software. And, um, I listen to the Accidental Tech podcast the other day where Apple kind of dust is at scale. They just throw it out. Developers do the QA for them. I think that was the comment.</p>\n\n\n\n<p>I can\'t speak to that, but it reminds me of this talking about this.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Yeah, very much so. Yeah. Do you, do you think that that, um, WordPress is, you could say relative [00:48:00] isolation or under participation in the larger PHP world is part of the story too, that if, if there was more overlap and more. Mm.</p>\n\n\n\n<p>Relationships in, into, into things like Elle or a Million Possible Directions with, with PHP and is more, more directly involved with it. That, that, that would help, uh, that would enhance some things like, like stand uh, standards around testing and and so on. Um, we just kind of, our ecosystem and people do their own thing cause it\'s, they\'re not.</p>\n\n\n\n<p>They\'re not, um, their peers are in a, in a different place than, say, someone working in, in a, a PHP framework somewhere</p>\n\n\n\n<p><strong>Till Krüss:</strong> else. Yeah. I think there\'s, I mean, there\'s a lot of smart developers on WordPress as well that\'s maybe [00:49:00] cross to, to the other. Ecosystems over outside of WordPress and they include testing, whether this is Google engineers being hired or whatever it is.</p>\n\n\n\n<p>There is, there is good tooling out there. I don\'t think we\'re too isolated. We definitely judge and look down upon, um, understandably so. Maybe that\'s just because of the lack of testing, but I, I don\'t even know how to solve this. To me it\'s a problem and maybe it would be enforcing tests for plugins with more than, I don\'t know, a thousand users on the repository.</p>\n\n\n\n<p>Because you can measure OB objectively. You can quantify the code coverage, whether let\'s say it\'s 80% what, whatever\'s a reasonable or 50%. , I dunno if you can have the main path. I, I, I don\'t know the, the details of this, but you could also enforce it such as like, Hey, you\'ve got now 12 months to test your software, and then it gets a little check mark.</p>\n\n\n\n<p>Hey, [00:50:00] this plugin has a test suite. I would need to build one for my free plugin. Now , But it, it might be a good, good idea and to include in that there\'s been a. Talk in deep What Core Performance? Performance Core, I don\'t know. They just changed the name, The performance team. Mm-hmm. , Um, to have, whether there\'s this badges that.</p>\n\n\n\n<p>When you have a clean, what percent stall you install a plugin. How do the, my queries, like what\'s the impact of this plugin? How is performance being handled? And I dunno how much you can automate these tests, but maybe we need more reviewers that there is more high quality code a. On the wordpress.org, at least for the ones that have, um, you know, a hundred thousand, a million users that you know that these are actually properly tested for performance degradations or recessions, um, regressions.</p>\n\n\n\n<p>Sorry, so many recessions going on at the moment, and for [00:51:00] performance regressions or just for testing, I think that would be a decent approach. I don\'t know if this is feasible. Someone, what\'s her? Epstein, she something. Half Elf is on a Twitter profile. I don\'t, Yeah. You know what I\'m talking about. Yes. Um.</p>\n\n\n\n<p>She, I think, runs the plugin team and I don\'t know what of the, what is possible and it\'s of course it\'s a big burden. Again, on that you, we push on open source developers and maybe there needs to be fun. I don\'t know how to solve this problem, but testing would definitely improve the overall trust in WordPress, that you can upgrade a plugin without things going slow or breaking.</p>\n\n\n\n<p>I think it would be a good approach and. I would say it\'s certainly part of the secret sauce for Object Cash Pro and its success. It just, you can trust that it\'s reliable. Yeah. And business is first. Well,</p>\n\n\n\n<p><strong>Dan Knauss:</strong> as an alternative to putting it on on.org, there\'s always the possibility I\'ve wondered about this, like why the, I\'m not aware of this happening, but [00:52:00] in a maturing market and ecosystem that I think we do have, there\'s the possibility of industry.</p>\n\n\n\n<p>cooperation and self-regulation to some extent, where you, those larger plugin, um, companies could on their own, see the, see that value and decide on a standard amongst themselves some common tooling or, or practice or something like that and do their part to kind of police that end of the, the market or set an example that, that sounds like.</p>\n\n\n\n<p>Very strong policing, but I mean you\'re, you know, pleasing bugs. Um,</p>\n\n\n\n<p><strong>Till Krüss:</strong> oh, we already have guidelines for the plugins, what you can and can\'t do. Yeah, it\'s very clear and they all make sense. Maybe adding performance and test coverage to that could be at least a discussion. I\'m sure it has been. I will talk to Felix at work, us about this on the country today.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> Good. That\'s, uh, yeah, that\'s definitely a, a [00:53:00] progressive direction to, to move in. Um, where, where do you see, um, opportunities and, you know, for, for you and, and just WordPress in general, where are they, where are the opportunities and I guess the, the risks and, and threats. People would often seem to have more of those in mind, but, um, how those two relative quantities is they\'re, Which is more on your mind and, and what are you, what are you seeing down the road?</p>\n\n\n\n<p><strong>Till Krüss:</strong> probably with everybody. I\'m more, I think more about the risks. Yeah. And threat than the opportunities. The monkey brand. Mm-hmm. , I don\'t know if an answer to, if I have an answer to this, I, some of them are a bit concerned of like, how long is WordPress around? , but it doesn\'t, it\'s not slowing. Maybe this is just like you said, the talking apr, [00:54:00] I, it\'s not slowing down.</p>\n\n\n\n<p>There\'s acquisitions everywhere. I don\'t see it dying out for whatever reason. All the replacements like it\'s.</p>\n\n\n\n<p>I guess, yeah, I don\'t know. I, I, I don\'t, I don\'t think I have an answer to that question. Sorry.</p>\n\n\n\n<p><strong>Dan Knauss:</strong> That\'s fine. It\'s a big, big, wide open one. Um, I, I think a lot of, a lot of things you, you\'ve touched on, I wish I, you know, we, we hear more, and I, I hope resonates with, uh, a lot of people. We don\'t often connect the human social embeddedness of our lives with the.</p>\n\n\n\n<p>We\'re doing or not openly or we don\'t share that and, you know, why else are you doing what you do? Um, some people are pretty open about it, but, um, I would, I would like to hope that there\'s, there\'s opportunity in this space for people who wanna work that way, who are wanna work like you [00:55:00] do, and that this is, this is a good model that however big everything else may get.</p>\n\n\n\n<p>There\'s those cracks, like you said, between. The sidewalk where there\'s room for a relatively low stress. Good, good work. Um, and</p>\n\n\n\n<p><strong>Till Krüss:</strong> I\'m glad you found that. If there\'s any more questions, if, if you like listening to this, if you enjoy the, the, this conversation, the stories, if there\'s anything the listeners want to hear more about or any questions, I\'m always happy.</p>\n\n\n\n<p>You can hit me up on Slack, on post status, Slack for of course, WordPress, Slack email. You know, or send questions to Dan and we can do, uh, if there\'s the demand for it. Uh, episode two on this.</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:\"Fri, 14 Oct 2022 13:15:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:61:\"WordPress.org blog: The Month in WordPress – September 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13596\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2022/10/the-month-in-wordpress-september-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14922:\"<p>September was an exciting month with the return of many in-person WordCamps, WordPress Translation Day, and preparations for WordPress 6.1. Contributors across teams continue to work hard to ensure that the last major release of the year is the best it can be for everyone. Let’s catch up on all things WordPress.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2>Countdown to WordPress 6.1: Coming November 1, 2022</h2>\n\n\n\n<p><strong>WordPress 6.1 is scheduled for release on November 1, 2022</strong>—less than three weeks away. Following the beta releases in September, the <a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-1-rc1-now-available/\">first release candidate (RC1) is now ready for download and testing</a>.</p>\n\n\n\n<p>Members of the release squad hosted a casual walk-through of some of the expected WordPress 6.1 features last month. <a href=\"https://make.wordpress.org/core/2022/09/14/6-1-product-walk-through-recap/\">The recording and transcript are available in this post</a>.</p>\n\n\n\n<p>This next major release focuses on increased control for a more intuitive site and content creation experience, and will be bundled with a new default block theme, <strong>Twenty Twenty-Three (TT3)</strong>. This theme comes with <a href=\"https://make.wordpress.org/design/2022/09/07/tt3-default-theme-announcing-style-variation-selections/\">10 style variations designed by community members</a> that you can easily switch between to customize the look and feel of your site.</p>\n\n\n\n<p>Other exciting updates include <a href=\"https://make.wordpress.org/core/2022/09/26/core-editor-improvement-catalyst-for-creativity/\">enhanced consistency of design tools across blocks</a>, a <a href=\"https://make.wordpress.org/core/2022/08/25/core-editor-improvement-refining-the-template-creation-experience/\">refined</a> and <a href=\"https://make.wordpress.org/core/2022/07/21/core-editor-improvement-deeper-customization-with-more-template-options/\">expanded template creation experience</a>, improved Quote and List blocks, and support for <a href=\"https://make.wordpress.org/core/2022/08/04/whats-new-in-gutenberg-13-8-3-august/#fluid-typography-support\">fluid typography</a>.</p>\n\n\n\n<em>Selected style variations for the Twenty Twenty-Three theme.</em>\n\n\n\n<p><strong>Want to know what else is new in WordPress 6.1?</strong> Check out these resources for more details:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/09/24/roadmap-to-6-1-core-companion/\">Roadmap to 6.1: Core Companion</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">WordPress 6.1 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/\">WordPress 6.1 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/\">Performance Field Guide for WordPress 6.1</a></li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Take part in this release by <a href=\"https://make.wordpress.org/test/2022/09/21/help-test-wordpress-6-1/\">helping to test key features</a> or <a href=\"https://make.wordpress.org/polyglots/2022/10/11/wordpress-6-1-ready-to-be-translated/\">translating WordPress 6.1</a>.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Gutenberg versions 14.1, 14.2, and 14.3 are out</h2>\n\n\n\n<p>Three new versions of Gutenberg have been released since last month’s edition of The Month in WordPress:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/09/16/whats-new-in-gutenberg-14-1-15-september/\"><strong>Gutenberg 14.1</strong></a> shipped on September 15, 2022. It adds typography and spacing support for many blocks, continuing efforts to consolidate design tools in blocks. It also includes improvements to the Navigation block and the content-locking experience. This is the last version of Gutenberg that will merge into WordPress 6.1, which will include updates from Gutenberg 13.1 to 14.1.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/09/30/whats-new-in-gutenberg-14-2-28-september/\"><strong>Gutenberg 14.2</strong></a> comes with writing flow improvements, a more polished Calendar block, and autocompletion for links. It was released on September 28, 2022.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/\"><strong>Gutenberg 14.3</strong></a> is available for download as of October 12, 2022. This version makes it easier to navigate text blocks with <code>alt + arrow</code> keyboard combinations, and brings an improved drag-and-drop functionality for images, among other updates.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>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 class=\"wp-block-spacer\"></div>\n\n\n\n<h2>WordPress Translation Day</h2>\n\n\n\n<p>On September 28, 2022, the Polyglots community celebrated <a href=\"https://wptranslationday.org/\"><strong>WordPress Translation Day</strong></a> (WPTD) with some global events throughout the week, including an <a href=\"https://wordpress.tv/2022/09/27/jesus-amieiro-alex-kirk-translate-wordpress-org-feedback-tool-walk-through/\">overview of the GlotPress feedback tool</a>. In addition, there were 13 local events in 11 different languages and across four continents.</p>\n\n\n\n<p>The Training Team joined the celebration by hosting a day-long event to help new contributors translate materials on learn.wordpress.org.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/polyglots/2022/10/04/2022-wordpress-translation-day-recap/\">Check out this recap</a> for more highlights from the event.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Team updates: Dropping security updates for WP 3.7 – 4.0, a new developer-focused course, and more</h2>\n\n\n\n<ul>\n<li>The WordPress Security Team will no longer provide <a href=\"https://wordpress.org/news/2022/09/dropping-security-updates-for-wordpress-versions-3-7-through-4-0/\">security updates for WordPress versions 3.7 through 4.0</a> as of December 2022.</li>\n\n\n\n<li>The first developer-focused course, <a href=\"https://learn.wordpress.org/course/using-the-wordpress-data-layer/\">Using the WordPress Data Layer</a>, is live on Learn WordPress.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/community/2022/09/29/meetup-reactivation-update/\">Global Meetup Reactivation project</a> gathered 39 supporters worldwide so far. As a result of their efforts, 117 meetup groups have reactivated or plan to reactivate in 2022! </li>\n\n\n\n<li>Learn more about <code>do_action</code>’s charity hackathons and how to host one in <a href=\"https://make.wordpress.org/community/2022/09/22/meetup-organizer-newsletter-september-2022/\">the latest edition of the Meetup Organizer Newsletter</a>.</li>\n\n\n\n<li>Would you like to help create content for the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> platform? The Training Team shared a post on <a href=\"https://make.wordpress.org/training/2022/09/30/become-an-online-workshop-facilitator-or-tutorial-presenter-today/\">how to become an online workshop facilitator or tutorial presenter</a>.</li>\n\n\n\n<li>The WebP proposal was pulled from the upcoming WordPress 6.1 release in response to <a href=\"https://make.wordpress.org/core/2022/09/11/webp-in-core-for-6-1/\">this post and subsequent discussions</a>. Users can still get this feature using the <a href=\"https://wordpress.org/plugins/performance-lab/\">Performance Lab plugin</a>.</li>\n\n\n\n<li>WordPress co-founder Matt Mullenweg suggested <a href=\"https://make.wordpress.org/core/2022/09/11/canonical-plugins-revisited/\">revisiting canonical plugins</a> and adopting a plugin-first approach when developing new features for core.</li>\n\n\n\n<li>The Plugin Team <a href=\"https://make.wordpress.org/plugins/2022/09/13/heroku-free-tier-being-retired/\">reminds plugin authors using Heroku’s free services to update their services</a> after the company announced the removal of their free plans.</li>\n\n\n\n<li>The Openverse Team <a href=\"https://make.wordpress.org/openverse/2022/09/13/community-meeting-recap-13-september-2022/\">removed the ‘beta’ status</a> from audio support. Also, the index <a href=\"https://make.wordpress.org/openverse/2022/09/05/openverse-biweekly-update-september-5th/\">now includes iNaturalist</a>, making it easy to discover CC-licensed images of flora, fauna, and nature contributed by this community of scientists and naturalists.</li>\n\n\n\n<li>The Hosting and Documentation Teams are collaborating on the creation of a new <a href=\"https://make.wordpress.org/hosting/2022/09/07/wordpress-advanced-administration-handbook/\">WordPress Advanced Administration Handbook</a>.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Want to create diverse and inclusive events that make the WordPress community stronger, but not sure where to get started? <a href=\"https://make.wordpress.org/community/tag/wpdiversity/\">Join WPDiversity to learn more about upcoming workshops</a>.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Feedback & testing requests</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2022/09/27/15-oct-survey-deadline/\"><strong>Last call to complete the Meetup Annual Survey</strong></a>! Help strengthen this global WordPress program by sharing your feedback by October 15, 2022.</li>\n\n\n\n<li>The Core Team is seeking <a href=\"https://make.wordpress.org/core/2022/10/10/seeking-proposals-for-interop-2023/\">proposals for Interop 2023</a>. Interop is an effort to improve interoperability across the three major web browser engines (Chromium, WebKit, and Gecko). You can submit yours until October 15, 2022.</li>\n\n\n\n<li>Don’t miss this call for testing on <a href=\"https://make.wordpress.org/themes/2022/09/12/testing-and-feedback-for-using-block-based-template-parts-in-classic-themes/\">using block-based template parts in classic themes</a>.</li>\n\n\n\n<li>The Community Team is gathering feedback on <a href=\"https://make.wordpress.org/community/2022/09/30/help-improve-the-make-community-contributor-day-onboarding/\">onboarding experiences at Contributor Days</a>.</li>\n\n\n\n<li>Version 20.9 of WordPress for <a href=\"https://make.wordpress.org/mobile/2022/10/04/call-for-testing-wordpress-for-android-20-9/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/10/04/call-for-testing-wordpress-for-ios-20-9/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/news/2022/10/episode-40-all-things-testing-with-special-guests-anne-mccarthy-and-brian-alexander/\">Tune in to the latest episode of WP Briefing</a> to hear guests Anne McCarthy and Brian Alexander discuss their work on the Testing Team and how you can get involved.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Event updates & WordCamps</h2>\n\n\n\n<ul>\n<li>The last batch of <a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia 2023</a> tickets will be released on October 19, 2022. The organizing team is also <a href=\"https://asia.wordcamp.org/2023/call-for-contributors-stories/\">calling for contributors’ stories</a>.</li>\n\n\n\n<li><a href=\"https://us.wordcamp.org/2022/\">WordCamp US (WCUS) 2022</a> was successfully held last month in San Diego, California. Following two days of presentations, workshops, and a <a href=\"https://make.wordpress.org/project/2022/09/19/wcus-2022-qa/\">Q&A session with Matt Mullenweg</a>, more than 300 attendees participated in the <a href=\"https://make.wordpress.org/updates/2022/09/18/wordcamp-us-contributor-day-2022-recap/\">Contributor Day</a>. National Harbor, Maryland, will host <a href=\"https://us.wordcamp.org/2022/announcing-wordcamp-us-2023/\">next year’s WordCamp US</a> and a Community Summit on August 23-25, 2023.</li>\n\n\n\n<li>In addition to WCUS, four in-person WordCamps took place in September in <a href=\"https://jinja.wordcamp.org/2022/\">Jinja (Uganda)</a>, <a href=\"https://kathmandu.wordcamp.org/2022/\">Kathmandu (Nepal)</a>, <a href=\"https://netherlands.wordcamp.org/2022/\">The Netherlands</a>, and <a href=\"https://pontevedra.wordcamp.org/2022/\">Pontevedra (Spain)</a>. And more WordPress events are on the schedule for the rest of October:\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://valencia.wordcamp.org/2022/\">WordCamp Valencia</a>, Spain on October 21-22, 2022</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e8-1f1ff.png\" alt=\"??\" class=\"wp-smiley\" /> <a href=\"https://brno.wordcamp.org/2022/\">WordCamp Brno</a>, Czech Republic on October 22, 2022</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1eb-1f1f7.png\" alt=\"??\" class=\"wp-smiley\" /> <a href=\"https://lyon.wordcamp.org/2022/\">WordCamp Lyon</a>, France on October 28, 2022</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Curious about attending a WordCamp event? Listen to <a href=\"https://wordpress.org/news/2022/09/episode-39-contributor-stories-live-from-wordcamp-us/\">contributor stories from WordCamp US 2022</a> on why they use WordPress and go to WordCamps.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story that 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 edition of The Month in WordPress: </em><a href=\"https://profiles.wordpress.org/chaion07/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chaion07</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>laurlittle</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>robinwpdeveloper</a>, <a href=\"https://profiles.wordpress.org/santanainniss/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>santanainniss</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Oct 2022 10:07:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 27 Oct 2022 17:31:59 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 27 Oct 2022 17:15:33 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20210311161520\";}','no'),(147,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1666935119','no'),(148,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1666891919','no'),(149,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1666935119','no'),(150,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-3/\'>WordPress 6.1 Release Candidate 3 (RC3) Now Available</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-2-now-available/\'>WordPress 6.1 Release Candidate 2 (RC2) Now Available</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://dothewoo.io/building-woocommerce-community-in-africa-with-sunday-ukafia/\'>Do The Woo Community: Building WooCommerce Community in Africa with Sunday Ukafia</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/2022-web-almanac-performance-data-shows-wordpress-sites-may-be-overusing-lazy-loading\'>WPTavern: 2022 Web Almanac Performance Data Shows WordPress Sites May Be Overusing Lazy-Loading</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/podcast/48-christina-deemer-on-making-digital-content-usable-for-people-with-cognitive-disabilities\'>WPTavern: #48 – Christina Deemer on Making Digital Content Usable for People With Cognitive Disabilities</a></li></ul></div>','no'),(151,'_site_transient_timeout_available_translations','1666902722','no'),(152,'_site_transient_available_translations','a:126:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-02-23 11:41:38\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-18 17:28:01\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.21\";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.21/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-25 05:49:11\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/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.22\";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.22/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:6:\"5.6.10\";s:7:\"updated\";s:19:\"2022-09-27 18:32:39\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.6.10/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:6:\"5.4.12\";s:7:\"updated\";s:19:\"2020-10-31 08:48:37\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.12/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:3:\"5.7\";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:59:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-04 21:12:21\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-08 23:10:51\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-30 05:11:19\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-24 14:40:54\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-10 09:14:23\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-30 12:56:11\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-30 12:57:49\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/5.7/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:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-10 19:15:18\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-14 20:06:52\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.7/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_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-14 20:06:23\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-05 13:55:07\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-29 03:44:37\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/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_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-05 12:20:18\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-08 05:55:53\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-11 03:55:02\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-05 13:26:56\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-07 04:06:50\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-27 16:08:13\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-15 02:05:15\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-15 02:05:34\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-02 20:55:33\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-15 02:04:33\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-10 15:04:44\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-11 17:28:23\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:6:\"5.6.10\";s:7:\"updated\";s:19:\"2020-12-11 02:12:59\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.6.10/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_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.12\";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.12/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.17\";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.17/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_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-05 14:13:12\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-03 15:32:45\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:3:\"5.7\";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:62:\"https://downloads.wordpress.org/translation/core/5.7/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:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:3:\"5.7\";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:59:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-30 16:20:48\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/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_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-02 13:52:39\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-01 11:39:36\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-16 17:24:47\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/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_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:3:\"5.7\";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:62:\"https://downloads.wordpress.org/translation/core/5.7/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-06 09:54:03\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-24 19:13:29\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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.21\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.21/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-05 17:02:42\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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.22\";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.22/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.29\";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.29/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-10 10:31:33\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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.12\";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.12/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-14 11:07:41\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-05 13:52:56\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-22 14:59:40\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-31 01:08:49\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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.22\";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.22/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-10 07:40:23\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-16 12:44:38\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/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.22\";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.22/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-29 10:00:46\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-11 22:04:53\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/5.7/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.22\";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.22/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.17\";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.17/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:6:\"4.9.22\";s:7:\"updated\";s:19:\"2021-10-03 06:15:17\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.22/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-13 12:20:51\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-02-28 14:29:24\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-23 12:35:40\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-05 08:18:24\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/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:6:\"5.4.12\";s:7:\"updated\";s:19:\"2020-07-01 09:16:57\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.12/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.22\";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.22/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.11\";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.11/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.34\";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.34/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-09 14:07:20\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:6:\"5.2.17\";s:7:\"updated\";s:19:\"2020-05-31 16:07:59\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.17/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:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-07 11:18:48\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-14 08:52:19\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-12 11:48:35\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/5.7/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:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:3:\"5.7\";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:62:\"https://downloads.wordpress.org/translation/core/5.7/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.21\";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.21/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-18 09:04:34\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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.30\";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.30/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:3:\"5.7\";s:7:\"updated\";s:19:\"2020-12-08 14:21:04\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-02 15:18:31\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.7/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-19 15:11:25\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-02 12:56:07\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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: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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-12 09:04:59\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-06 19:27:20\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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.12\";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.12/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-17 18:59:02\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2020-09-13 06:50:55\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/5.7/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:6:\"5.1.14\";s:7:\"updated\";s:19:\"2019-04-30 13:03:56\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.1.14/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-17 16:48:34\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-14 22:03:48\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-14 18:45:21\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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.14\";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.14/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.34\";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.34/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:6:\"5.6.10\";s:7:\"updated\";s:19:\"2022-06-07 09:52:43\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.6.10/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.21\";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.21/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-07 22:10:38\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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.22\";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.22/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-12 18:11:26\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/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.12\";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.12/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:3:\"5.7\";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:62:\"https://downloads.wordpress.org/translation/core/5.7/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:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-10 06:03:58\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/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_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-15 01:05:53\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-07 07:43:24\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-04-10 05:43:57\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/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'),(153,'can_compress_scripts','1','no'),(154,'_transient_health-check-site-status-result','{\"good\":11,\"recommended\":7,\"critical\":2}','yes'),(157,'finished_updating_comment_type','1','yes'),(158,'recently_activated','a:0:{}','yes'),(159,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1666902799','no'),(160,'_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:5797;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4800;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2772;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2644;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2041;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1891;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1890;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1601;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1553;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1539;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1530;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1512;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1497;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1416;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1345;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1313;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1260;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1174;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1147;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1130;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:1037;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:994;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:984;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:953;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:900;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:866;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:858;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:856;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:852;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:848;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:834;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:788;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:782;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:775;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:762;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:760;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:742;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:735;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:729;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:727;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:714;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:705;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:683;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:678;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:678;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:677;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:667;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";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:623;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:613;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:604;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:602;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:601;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";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:587;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:583;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:582;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:580;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:573;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:565;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:561;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:556;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:542;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:542;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:538;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:536;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:531;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:530;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:522;}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:518;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:509;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:507;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:506;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:506;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:502;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";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:469;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:465;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:463;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:450;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:450;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";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:443;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:434;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:427;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:426;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:420;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:417;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:416;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:412;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:409;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:406;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:403;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:400;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:395;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:394;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:386;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:385;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:381;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:380;}}','no'),(161,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:5:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.0.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.0.3\";s:7:\"version\";s:5:\"6.0.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.0.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.0.3\";s:7:\"version\";s:5:\"6.0.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.9.5\";s:7:\"version\";s:5:\"5.9.5\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.6.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.6.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.8.6-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.8.6-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.8.6\";s:7:\"version\";s:5:\"5.8.6\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.8.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.8.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.8-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.7.8-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.7.8-partial-0.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.8-rollback-0.zip\";}s:7:\"current\";s:5:\"5.7.8\";s:7:\"version\";s:5:\"5.7.8\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:3:\"5.7\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1666892026;s:15:\"version_checked\";s:3:\"5.7\";s:12:\"translations\";a:0:{}}','no'),(162,'auto_core_update_failed','a:6:{s:9:\"attempted\";s:5:\"6.0.3\";s:7:\"current\";s:3:\"5.7\";s:10:\"error_code\";s:27:\"copy_failed__copy_dir_retry\";s:10:\"error_data\";s:35:\"wp-includes/class-wp-http-proxy.php\";s:9:\"timestamp\";i:1666892027;s:8:\"critical\";b:1;}','no'),(163,'auto_core_update_notified','a:4:{s:4:\"type\";s:8:\"critical\";s:5:\"email\";s:19:\"trestivo@tarinc.com\";s:7:\"version\";s:5:\"6.0.3\";s:9:\"timestamp\";i:1666892027;}','no'),(165,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1666892051;s:7:\"checked\";a:3:{s:19:\"akismet/akismet.php\";s:5:\"4.1.9\";s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.2\";s:9:\"hello.php\";s:5:\"1.7.2\";}s:8:\"response\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.0.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.0.3\";s:12:\"requires_php\";s:3:\"5.2\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}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\";}}}','no'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_postmeta` -- LOCK TABLES `wp_postmeta` WRITE; /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,5,'_edit_last','1'),(4,5,'_edit_lock','1666892074:1'),(5,6,'_edit_last','1'),(6,6,'_edit_lock','1666891995:1'); /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_posts` -- LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; INSERT INTO `wp_posts` VALUES (1,1,'2021-03-10 20:15:34','2021-03-10 20:15:34','<!-- 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','','','2021-03-10 20:15:34','2021-03-10 20:15:34','',0,'http://tarinc.com/tarinc/?p=1',0,'post','',1),(2,1,'2021-03-10 20:15:34','2021-03-10 20:15:34','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://tarinc.com/tarinc/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2021-03-10 20:15:34','2021-03-10 20:15:34','',0,'http://tarinc.com/tarinc/?page_id=2',0,'page','',0),(3,1,'2021-03-10 20:15:34','2021-03-10 20:15:34','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://tarinc.com/tarinc.</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’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 "Remember Me", 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 we send your data</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','','','2021-03-10 20:15:34','2021-03-10 20:15:34','',0,'http://tarinc.com/tarinc/?page_id=3',0,'page','',0),(4,1,'2022-10-27 17:31:52','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2022-10-27 17:31:52','0000-00-00 00:00:00','',0,'http://tarinc.com/tarinc/?p=4',0,'post','',0),(5,1,'2022-10-27 17:34:34','0000-00-00 00:00:00','','index','','draft','closed','closed','','','','','2022-10-27 17:34:34','2022-10-27 17:34:34','',0,'http://tarinc.com/tarinc/?page_id=5',0,'page','',0),(6,1,'2022-10-27 17:35:28','2022-10-27 17:35:28','coming soon','index','','publish','closed','closed','','index','','','2022-10-27 17:35:28','2022-10-27 17:35:28','',0,'http://tarinc.com/tarinc/?page_id=6',0,'page','',0),(7,1,'2022-10-27 17:35:28','2022-10-27 17:35:28','coming soon','index','','inherit','closed','closed','','6-revision-v1','','','2022-10-27 17:35:28','2022-10-27 17:35:28','',6,'http://tarinc.com/tarinc/?p=7',0,'revision','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` VALUES (1,1,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_taxonomy` -- LOCK TABLES `wp_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_termmeta` -- DROP TABLE IF EXISTS `wp_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_termmeta` -- LOCK TABLES `wp_termmeta` WRITE; /*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_usermeta` -- LOCK TABLES `wp_usermeta` WRITE; /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','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,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'default_password_nag','1'),(16,1,'show_welcome_panel','1'),(17,1,'session_tokens','a:1:{s:64:\"2e7f4bc3c0eb16da7d18ab4b57b3f13317c8466e8240eaf8802116aa6ae581d6\";a:4:{s:10:\"expiration\";i:1668101502;s:2:\"ip\";s:14:\"162.217.212.34\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36\";s:5:\"login\";i:1666891902;}}'),(18,1,'wp_dashboard_quick_press_last_post_id','4'),(19,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"162.217.212.0\";}'); /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_users` -- DROP TABLE IF EXISTS `wp_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`), KEY `user_email` (`user_email`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_users` -- LOCK TABLES `wp_users` WRITE; /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; INSERT INTO `wp_users` VALUES (1,'admin','$P$B3VIsPjQBylQMV4R2WkT3BnXE7s9V01','admin','trestivo@tarinc.com','http://tarinc.com/tarinc','2021-03-10 20:15:34','',0,'admin'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database '1_018a4ea_3' -- /*!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 2022-10-27 13:39:48