-- date: 2021-11-22 06:21:42
-- table_prefix: wp_


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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- end of statement


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_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_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_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_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_ci; -- end of statement
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
  (1, 1, 'A WordPress Commenter', 'wapuu@wordpress.example', 'https://wordpress.org/', '', '2021-11-18 06:17:26', '2021-11-18 06:17:26', '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); -- end of statement


CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_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_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- end of statement


CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=196 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- end of statement
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
  (1, 'siteurl', 'https://burdujandent.ro/new', 'yes'),
  (2, 'home', 'https://burdujandent.ro/new', 'yes'),
  (3, 'blogname', 'Burdujan Dent', 'yes'),
  (4, 'blogdescription', 'Just another WordPress site', 'yes'),
  (5, 'users_can_register', '0', 'yes'),
  (6, 'admin_email', 'ovidiublaga1@gmail.com', 'yes'),
  (7, 'start_of_week', '1', 'yes'),
  (8, 'use_balanceTags', '0', 'yes'),
  (9, 'use_smilies', '1', 'yes'),
  (10, 'require_name_email', '1', 'yes'),
  (11, 'comments_notify', '1', 'yes'),
  (12, 'posts_per_rss', '10', 'yes'),
  (13, 'rss_use_excerpt', '0', 'yes'),
  (14, 'mailserver_url', 'mail.example.com', 'yes'),
  (15, 'mailserver_login', 'login@example.com', 'yes'),
  (16, 'mailserver_pass', 'password', 'yes'),
  (17, 'mailserver_port', '110', 'yes'),
  (18, 'default_category', '1', 'yes'),
  (19, 'default_comment_status', 'open', 'yes'),
  (20, 'default_ping_status', 'open', 'yes'),
  (21, 'default_pingback_flag', '1', 'yes'),
  (22, 'posts_per_page', '10', 'yes'),
  (23, 'date_format', 'F j, Y', 'yes'),
  (24, 'time_format', 'g:i a', 'yes'),
  (25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
  (26, 'comment_moderation', '0', 'yes'),
  (27, 'moderation_notify', '1', 'yes'),
  (28, 'permalink_structure', '/{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}year{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}/{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}monthnum{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}/{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}day{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}/{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}postname{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}/', 'yes'),
  (29, 'rewrite_rules', 'a:94:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}', 'yes'),
  (30, 'hack_file', '0', 'yes'),
  (31, 'blog_charset', 'UTF-8', 'yes'),
  (32, 'moderation_keys', '', 'no'),
  (33, 'active_plugins', 'a:4:{i:0;s:61:\"bootstrap-for-contact-form-7/bootstrap-for-contact-form-7.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:27:\"dentist-cpt/dentist-cpt.php\";i:3;s:17:\"unyson/unyson.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', 'dentist_wp', 'yes'),
  (41, 'stylesheet', 'dentist_wp', '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', 'posts', 'yes'),
  (52, 'tag_base', '', 'yes'),
  (53, 'show_avatars', '1', 'yes'),
  (54, 'avatar_rating', 'G', 'yes'),
  (55, 'upload_url_path', '', 'yes'),
  (56, 'thumbnail_size_w', '150', 'yes'),
  (57, 'thumbnail_size_h', '150', 'yes'),
  (58, 'thumbnail_crop', '1', 'yes'),
  (59, 'medium_size_w', '300', 'yes'),
  (60, 'medium_size_h', '300', 'yes'),
  (61, 'avatar_default', 'mystery', 'yes'),
  (62, 'large_size_w', '1024', 'yes'),
  (63, 'large_size_h', '1024', 'yes'),
  (64, 'image_default_link_type', 'none', 'yes'),
  (65, 'image_default_size', '', 'yes'),
  (66, 'image_default_align', '', 'yes'),
  (67, 'close_comments_for_old_posts', '0', 'yes'),
  (68, 'close_comments_days_old', '14', 'yes'),
  (69, 'thread_comments', '1', 'yes'),
  (70, 'thread_comments_depth', '5', 'yes'),
  (71, 'page_comments', '0', 'yes'),
  (72, 'comments_per_page', '50', 'yes'),
  (73, 'default_comments_page', 'newest', 'yes'),
  (74, 'comment_order', 'asc', 'yes'),
  (75, 'sticky_posts', 'a:0:{}', 'yes'),
  (76, 'widget_categories', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
  (77, 'widget_text', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
  (78, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
  (79, 'uninstall_plugins', 'a:0:{}', 'no'),
  (80, 'timezone_string', '', 'yes'),
  (81, 'page_for_posts', '0', 'yes'),
  (82, 'page_on_front', '0', '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', '1652768245', 'yes'),
  (92, 'disallowed_keys', '', 'no'),
  (93, 'comment_previously_approved', '1', 'yes'),
  (94, 'auto_plugin_theme_update_emails', 'a:0:{}', 'no'),
  (95, 'auto_update_core_dev', 'enabled', 'yes'),
  (96, 'auto_update_core_minor', 'enabled', 'yes'),
  (97, 'auto_update_core_major', 'enabled', 'yes'),
  (98, 'wp_force_deactivated_plugins', 'a:0:{}', 'yes'),
  (99, 'initial_db_version', '49752', 'yes'),
  (100, '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'),
  (101, 'fresh_site', '1', 'yes'),
  (102, 'widget_block', 'a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
  (103, 'sidebars_widgets', 'a:3:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:12:\"sidebar-blog\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:13:\"array_version\";i:3;}', 'yes'),
  (104, 'cron', 'a:7:{i:1637565446;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:1637605046;a:4:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1637648246;a:1:{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:1637648252;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:1637648253;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1637907446;a:1:{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:7:\"version\";i:2;}', 'yes'),
  (105, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
  (106, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
  (107, 'widget_archives', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
  (108, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
  (109, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
  (110, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
  (111, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
  (112, 'widget_meta', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
  (113, 'widget_search', '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:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1637216383;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}', 'yes'),
  (121, 'https_detection_errors', 'a:0:{}', 'yes'),
  (122, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.8.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.8.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.8.2\";s:7:\"version\";s:5:\"5.8.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1637561880;s:15:\"version_checked\";s:5:\"5.8.2\";s:12:\"translations\";a:0:{}}', 'no'),
  (128, '_site_transient_timeout_browser_b4088f046bf9a570f2964ffc86d258ff', '1637821053', 'no'),
  (129, '_site_transient_browser_b4088f046bf9a570f2964ffc86d258ff', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"96.0.4664.45\";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'),
  (130, '_site_transient_timeout_php_check_8706d9e16ec2aa6542c624d1e3c9facd', '1637821053', 'no'),
  (131, '_site_transient_php_check_8706d9e16ec2aa6542c624d1e3c9facd', 'a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}', 'no'),
  (139, 'can_compress_scripts', '1', 'no'),
  (148, 'finished_updating_comment_type', '1', 'yes'),
  (150, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1637561724;s:7:\"checked\";a:4:{s:10:\"dentist_wp\";s:5:\"1.6.8\";s:14:\"twentynineteen\";s:3:\"2.1\";s:12:\"twentytwenty\";s:3:\"1.8\";s:15:\"twentytwentyone\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:3:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.1.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:\"1.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.8.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.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.4.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}', 'no'),
  (151, 'current_theme', 'Dentist WP theme', 'yes'),
  (152, 'theme_mods_dentist_wp', 'a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}', 'yes'),
  (153, 'theme_switched', '', 'yes'),
  (154, 'widget_social', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
  (156, 'widget_recent-comments', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
  (157, 'widget_recent-posts', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
  (160, 'wp_less_cached_files', 'a:2:{s:4:\"twbs\";a:3:{s:4:\"vars\";a:14:{s:8:\"themeurl\";s:59:\"~\"https://burdujandent.ro/new/wp-content/themes/dentist_wp\"\";s:7:\"lessurl\";s:71:\"~\"https://burdujandent.ro/new/wp-content/themes/dentist_wp/public/less\"\";s:9:\"assetsdir\";s:66:\"~\"https://burdujandent.ro/new/wp-content/themes/dentist_wp/public\"\";s:16:\"head-info-height\";s:4:\"40px\";s:22:\"font-family-sans-serif\";s:59:\"\"Open Sans\", \"Helvetica Neue\", Helvetica, Arial, sans-serif\";s:16:\"font-weight-base\";s:0:\"\";s:14:\"font-size-base\";s:4:\"14px\";s:21:\"secondary-font-family\";s:70:\"\"Georgia\", \"Open Sans\", \"Helvetica Neue\", Helvetica, Arial, sans-serif\";s:20:\"headings-font-weight\";s:3:\"300\";s:13:\"brand-primary\";s:7:\"#2488dd\";s:10:\"text-color\";s:7:\"#000000\";s:7:\"body-bg\";s:7:\"#ffffff\";s:9:\"footer-bg\";s:7:\"#1a171b\";s:17:\"footer-text-color\";s:7:\"#f3f3f3\";}s:4:\"less\";a:4:{s:4:\"root\";s:90:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap.less\";s:8:\"compiled\";s:0:\"\";s:5:\"files\";a:52:{s:90:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap.less\";i:1637216373;s:90:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/variables.less\";i:1637216373;s:97:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins.less\";i:1637216373;s:107:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/hide-text.less\";i:1637216373;s:105:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/opacity.less\";i:1637216373;s:103:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/image.less\";i:1637216373;s:104:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/labels.less\";i:1637216373;s:110:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/reset-filter.less\";i:1637216373;s:104:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/resize.less\";i:1637216373;s:119:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/responsive-visibility.less\";i:1637216373;s:102:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/size.less\";i:1637216373;s:107:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/tab-focus.less\";i:1637216373;s:111:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/text-emphasis.less\";i:1637216373;s:111:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/text-overflow.less\";i:1637216373;s:113:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/vendor-prefixes.less\";i:1637216373;s:104:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/alerts.less\";i:1637216373;s:105:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/buttons.less\";i:1637216373;s:104:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/panels.less\";i:1637216373;s:108:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/pagination.less\";i:1637216373;s:108:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/list-group.less\";i:1637216373;s:109:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/nav-divider.less\";i:1637216373;s:103:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/forms.less\";i:1637216373;s:110:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/progress-bar.less\";i:1637216373;s:107:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/table-row.less\";i:1637216373;s:116:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/background-variant.less\";i:1637216373;s:111:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/border-radius.less\";i:1637216373;s:107:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/gradients.less\";i:1637216373;s:106:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/clearfix.less\";i:1637216373;s:110:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/center-block.less\";i:1637216373;s:116:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/nav-vertical-align.less\";i:1637216373;s:112:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/grid-framework.less\";i:1637216373;s:102:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/grid.less\";i:1637216373;s:100:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/normalize.less\";i:1637216373;s:96:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/print.less\";i:1637216373;s:102:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/scaffolding.less\";i:1637216373;s:95:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/type.less\";i:1637216373;s:95:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/grid.less\";i:1637216373;s:97:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/tables.less\";i:1637216373;s:96:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/forms.less\";i:1637216373;s:98:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/buttons.less\";i:1637216373;s:103:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/input-groups.less\";i:1637216373;s:96:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/pager.less\";i:1637216373;s:97:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/alerts.less\";i:1637216373;s:107:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/responsive-embed.less\";i:1637216373;s:100:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/utilities.less\";i:1637216373;s:111:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/responsive-utilities.less\";i:1637216373;s:94:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/assets/mixins.less\";i:1637216373;s:98:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/assets/block-grid.less\";i:1637216373;s:93:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/assets/slick.less\";i:1637216373;s:99:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/assets/img-compare.less\";i:1637216373;s:100:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/assets/social-likes.less\";i:1637216373;s:102:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/assets/magnific-popup.less\";i:1637216373;}s:7:\"updated\";i:1637216396;}s:3:\"url\";s:69:\"https://burdujandent.ro/new/wp-content/uploads/wp-less-cache/twbs.css\";}s:10:\"style-main\";a:3:{s:4:\"vars\";a:14:{s:8:\"themeurl\";s:59:\"~\"https://burdujandent.ro/new/wp-content/themes/dentist_wp\"\";s:7:\"lessurl\";s:71:\"~\"https://burdujandent.ro/new/wp-content/themes/dentist_wp/public/less\"\";s:9:\"assetsdir\";s:66:\"~\"https://burdujandent.ro/new/wp-content/themes/dentist_wp/public\"\";s:16:\"head-info-height\";s:4:\"40px\";s:22:\"font-family-sans-serif\";s:59:\"\"Open Sans\", \"Helvetica Neue\", Helvetica, Arial, sans-serif\";s:16:\"font-weight-base\";s:0:\"\";s:14:\"font-size-base\";s:4:\"14px\";s:21:\"secondary-font-family\";s:70:\"\"Georgia\", \"Open Sans\", \"Helvetica Neue\", Helvetica, Arial, sans-serif\";s:20:\"headings-font-weight\";s:3:\"300\";s:13:\"brand-primary\";s:7:\"#2488dd\";s:10:\"text-color\";s:7:\"#000000\";s:7:\"body-bg\";s:7:\"#ffffff\";s:9:\"footer-bg\";s:7:\"#1a171b\";s:17:\"footer-text-color\";s:7:\"#f3f3f3\";}s:4:\"less\";a:4:{s:4:\"root\";s:86:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/style.less\";s:8:\"compiled\";s:0:\"\";s:5:\"files\";a:33:{s:86:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/style.less\";i:1637216373;s:90:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/variables.less\";i:1637216373;s:97:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins.less\";i:1637216373;s:107:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/hide-text.less\";i:1637216373;s:105:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/opacity.less\";i:1637216373;s:103:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/image.less\";i:1637216373;s:104:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/labels.less\";i:1637216373;s:110:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/reset-filter.less\";i:1637216373;s:104:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/resize.less\";i:1637216373;s:119:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/responsive-visibility.less\";i:1637216373;s:102:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/size.less\";i:1637216373;s:107:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/tab-focus.less\";i:1637216373;s:111:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/text-emphasis.less\";i:1637216373;s:111:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/text-overflow.less\";i:1637216373;s:113:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/vendor-prefixes.less\";i:1637216373;s:104:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/alerts.less\";i:1637216373;s:105:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/buttons.less\";i:1637216373;s:104:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/panels.less\";i:1637216373;s:108:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/pagination.less\";i:1637216373;s:108:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/list-group.less\";i:1637216373;s:109:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/nav-divider.less\";i:1637216373;s:103:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/forms.less\";i:1637216373;s:110:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/progress-bar.less\";i:1637216373;s:107:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/table-row.less\";i:1637216373;s:116:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/background-variant.less\";i:1637216373;s:111:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/border-radius.less\";i:1637216373;s:107:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/gradients.less\";i:1637216373;s:106:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/clearfix.less\";i:1637216373;s:110:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/center-block.less\";i:1637216373;s:116:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/nav-vertical-align.less\";i:1637216373;s:112:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/grid-framework.less\";i:1637216373;s:102:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/bootstrap/mixins/grid.less\";i:1637216373;s:94:\"/home/burdujandent/public_html/new/wp-content/themes/dentist_wp/public/less/assets/mixins.less\";i:1637216373;}s:7:\"updated\";i:1637216396;}s:3:\"url\";s:75:\"https://burdujandent.ro/new/wp-content/uploads/wp-less-cache/style-main.css\";}}', 'yes'),
  (164, 'fw_active_extensions', 'a:30:{s:10:\"shortcodes\";a:0:{}s:12:\"page-builder\";a:0:{}s:17:\"editor-shortcodes\";a:0:{}s:7:\"builder\";a:0:{}s:5:\"forms\";a:0:{}s:13:\"contact-forms\";a:0:{}s:6:\"mailer\";a:0:{}s:5:\"media\";a:0:{}s:6:\"slider\";a:0:{}s:11:\"nivo-slider\";a:0:{}s:9:\"bx-slider\";a:0:{}s:12:\"owl-carousel\";a:0:{}s:14:\"dentist-slider\";a:0:{}s:17:\"population-method\";a:0:{}s:23:\"population-method-posts\";a:0:{}s:28:\"population-method-categories\";a:0:{}s:22:\"population-method-tags\";a:0:{}s:24:\"population-method-custom\";a:0:{}s:6:\"backup\";a:0:{}s:20:\"backup-storage-local\";a:0:{}s:3:\"seo\";a:0:{}s:16:\"seo-titles-metas\";a:0:{}s:14:\"seo-webmasters\";a:0:{}s:11:\"seo-sitemap\";a:0:{}s:9:\"analytics\";a:0:{}s:4:\"blog\";a:0:{}s:6:\"update\";a:0:{}s:16:\"bitbucket-update\";a:0:{}s:13:\"custom-update\";a:0:{}s:13:\"github-update\";a:0:{}}', 'yes'),
  (166, 'wpcf7', 'a:2:{s:7:\"version\";s:5:\"5.5.2\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1637216435;s:7:\"version\";s:5:\"5.5.2\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}', 'yes'),
  (170, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1637561724;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:5:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.2.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.2.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:61:\"bootstrap-for-contact-form-7/bootstrap-for-contact-form-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:42:\"w.org/plugins/bootstrap-for-contact-form-7\";s:4:\"slug\";s:28:\"bootstrap-for-contact-form-7\";s:6:\"plugin\";s:61:\"bootstrap-for-contact-form-7/bootstrap-for-contact-form-7.php\";s:11:\"new_version\";s:5:\"1.4.8\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/bootstrap-for-contact-form-7/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/bootstrap-for-contact-form-7.1.4.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/bootstrap-for-contact-form-7/assets/icon-256x256.png?rev=1021147\";s:2:\"1x\";s:81:\"https://ps.w.org/bootstrap-for-contact-form-7/assets/icon-128x128.png?rev=1021147\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/bootstrap-for-contact-form-7/assets/banner-1544x500.png?rev=1019325\";s:2:\"1x\";s:83:\"https://ps.w.org/bootstrap-for-contact-form-7/assets/banner-772x250.png?rev=1019325\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.6\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.5.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.2.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";}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:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:17:\"unyson/unyson.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:20:\"w.org/plugins/unyson\";s:4:\"slug\";s:6:\"unyson\";s:6:\"plugin\";s:17:\"unyson/unyson.php\";s:11:\"new_version\";s:6:\"2.7.24\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/unyson/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/unyson.2.7.24.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/unyson/assets/icon-256x256.jpg?rev=1034261\";s:2:\"1x\";s:59:\"https://ps.w.org/unyson/assets/icon-128x128.jpg?rev=1034260\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/unyson/assets/banner-1544x500.png?rev=1034271\";s:2:\"1x\";s:61:\"https://ps.w.org/unyson/assets/banner-772x250.png?rev=1034270\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}}s:7:\"checked\";a:6:{s:19:\"akismet/akismet.php\";s:5:\"4.2.1\";s:61:\"bootstrap-for-contact-form-7/bootstrap-for-contact-form-7.php\";s:5:\"1.4.8\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.5.2\";s:27:\"dentist-cpt/dentist-cpt.php\";s:3:\"1.0\";s:9:\"hello.php\";s:5:\"1.7.2\";s:17:\"unyson/unyson.php\";s:6:\"2.7.24\";}}', 'no'),
  (172, 'recently_activated', 'a:0:{}', 'yes'),
  (175, '_site_transient_timeout_theme_roots', '1637563523', 'no'),
  (176, '_site_transient_theme_roots', 'a:4:{s:10:\"dentist_wp\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";}', 'no'),
  (177, '_transient_health-check-site-status-result', '{\"good\":13,\"recommended\":5,\"critical\":1}', 'yes'),
  (178, '_site_transient_timeout_fw_ext_upd_gh_fw', '1637604939', 'no'),
  (179, '_site_transient_fw_ext_upd_gh_fw', 'a:12:{s:36:\"ThemeFuse/Unyson-Analytics-Extension\";s:6:\"v1.0.1\";s:33:\"ThemeFuse/Unyson-Backup-Extension\";s:7:\"v1.0.13\";s:31:\"ThemeFuse/Unyson-Blog-Extension\";s:6:\"v1.0.2\";s:34:\"ThemeFuse/Unyson-Builder-Extension\";s:7:\"v1.2.12\";s:32:\"ThemeFuse/Unyson-Forms-Extension\";s:7:\"v2.0.31\";s:33:\"ThemeFuse/Unyson-Mailer-Extension\";s:7:\"v1.2.12\";s:44:\"ThemeFuse/Unyson-PopulationMethods-Extension\";s:7:\"v1.0.19\";s:34:\"ThemeFuse/Unyson-Sliders-Extension\";s:7:\"v1.1.19\";s:30:\"ThemeFuse/Unyson-SEO-Extension\";s:7:\"v1.0.11\";s:37:\"ThemeFuse/Unyson-Shortcodes-Extension\";s:7:\"v1.3.31\";s:38:\"ThemeFuse/Unyson-PageBuilder-Extension\";s:7:\"v1.6.19\";s:33:\"ThemeFuse/Unyson-Update-Extension\";s:7:\"v1.0.12\";}', 'no'),
  (180, '_site_transient_timeout_community-events-cd0829571a2ea5b8b7f61146a39521c9', '1637604942', 'no'),
  (181, '_site_transient_community-events-cd0829571a2ea5b8b7f61146a39521c9', 'a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"5.13.113.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:31:\"WordCamp São Paulo Online 2021\";s:3:\"url\";s:35:\"https://saopaulo.wordcamp.org/2021/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2021-11-27 14:15:00\";s:8:\"end_date\";s:19:\"2021-11-27 14:15:00\";s:20:\"start_unix_timestamp\";i:1638033300;s:18:\"end_unix_timestamp\";i:1638033300;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"BR\";s:8:\"latitude\";d:-23.555771400000001136731953010894358158111572265625;s:9:\"longitude\";d:-46.63955709999999754700183984823524951934814453125;}}}}', 'no'),
  (182, '_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3', '1637604942', 'no'),
  (183, '_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:79:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"News –  – WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"Fri, 19 Nov 2021 00:11:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=5.9-alpha-52230\";s:7:\"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:20:{i:0;a:6:{s:4:\"data\";s:55:\"\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:44:\"WP Briefing: Episode 20: WordPress=Blogging+\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/11/episode-20-wordpressblogging/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Nov 2021 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=11556\";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:386:\"In this episode, WordPress&#8217;s Executive Director, Josepha Haden Chomphosy, answers two recently asked questions. Tune in to hear what those questions were and her response, in addition to this week&#8217;s small list of big things. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/11/WP-Briefing-020.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:10275:\"\n<p>In this episode, WordPress&#8217;s Executive Director, Josepha Haden Chomphosy, answers two recently asked questions. Tune in to hear what those questions were and her response, in addition to this week&#8217;s small list of big things.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<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 id=\"references\">References </h2>\n\n\n\n<ul><li><a href=\"https://w3techs.com/technologies/details/cm-wordpress\">W3Techs WordPress Usage Statistics </a></li><li><a href=\"https://make.wordpress.org/core/5-9/\">WordPress 5.9 Development Cycle </a></li><li><a href=\"https://make.wordpress.org/updates/2021/10/22/team-rep-nominations/\">Call for Team Rep Nomination</a></li></ul>\n\n\n\n<h2 id=\"transcript\">Transcript</h2>\n\n\n\n<span id=\"more-11556\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>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 the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:40</p>\n\n\n\n<p>So I was in a meeting recently, which I realize isn&#8217;t saying much for me since I spend a quarter of my time in meetings. But in this particular meeting, I was asked a couple of questions that I absolutely loved. The first question was, “if there were one thing you could change in people&#8217;s minds about WordPress, what would it be?” And my answer, predictable though it may be, was that I want to change the idea that WordPress is just a blogging platform.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:06</p>\n\n\n\n<p>WordPress has grown into a lot more than that. But the idea of a content management system, even now, sometimes gets a mental shorthand where content is a stand-in for the word writing or words. If you&#8217;re using WordPress today in an enterprise context, or as part of a governmental agency, or if you use it in a classroom setting, you know that your content cannot be confined that way. And if you&#8217;re supporting or building anything to hand off to clients, you know that timely, easy-to-ship changes on a site are considered a vital part of any overarching brand and marketing strategy. And when was the last time that any marketing strategy was literally only about the words?&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:51</p>\n\n\n\n<p>So that was the first question. And also my first answer. There is also this kind of annual, not fear, necessarily, but this annual question that is sort of related that is raised to me and has been asked of me recently, that I&#8217;m just going to give you a small answer to. One annual worry that I get every year around November and December is, &#8220;What are we going to do about the fact that the term blog and blogging are declining in search popularity?&#8221; And I was gonna say it&#8217;s been a while since I answered that in any sort of public format. But I think maybe I&#8217;ve never answered it in a public format at all. And so I&#8217;m just going to answer it here. Because I think maybe a lot of people have that same question.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:36</p>\n\n\n\n<p>So number one, I think that the way that people search now is different. There&#8217;s a lot more semantic cognition. This is not the way to answer this &#8212;  search engines are smarter now. So like, it used to be the case with early search engines that yeah, there was a lot of just like, individual search terms that were looked for. But now, people are asking full questions; they have, essentially, an entire sentence that they are searching for. And then, search engines are able to parse that information better and get more high-quality answers and information for them. So like, that&#8217;s one thing that I&#8217;m already not worried about. If people are searching for individual words anymore, it&#8217;s so that they can get a definition of that word. So I&#8217;m not specifically worried about a decline in search volume for the word blog or blogging for that reason. But the answer to my first question, if there is probably the real reason that I&#8217;m not actually super worried about any decline in search volume for the word blog, or blogging, is that WordPress has really moved beyond that. And since we have moved beyond that, then it doesn&#8217;t necessarily make sense for WordPress as an entity for WordPress as a project to get overly hung up on the idea that the term blog has gone out of fashion.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:52</p>\n\n\n\n<p>Okay, now that I did my first question, and the answer, and then an additional question that only ever gets asked in private and is being answered by me for the first time in public, I will tell you now, the second question that I loved, someone asking of me, and that question is this: &#8220;What is one thing you&#8217;d like people to see or experience, right when they first land on wordpress.org?&#8221; Now, I often don&#8217;t get asked questions about the wordpress.org website, like administrative tasks, things that we need to update, move around where they should go. Sure. But like, “Josepha, what&#8217;s the point and purpose of this site?” Never. I&#8217;ve never been asked that, and so I was really excited that someone asked me, and I&#8217;m going to give you a heads up. I think some of you might disagree with my answer.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:40</p>\n\n\n\n<p>So the primary thing that I want people to see or experience when they first get to wordpress.org, the website is the depth of WordPress. Not which audience segment they should belong to or that we believe they should belong to or raw data about the CMS or even how much we care about the freedoms of open source. Now the first thing I want people to see on that site is that WordPress has not only 18 years of learned knowledge that every single new user benefits from, but that it also has 1,000s of really smart people making sure it works and gets better every day, now.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:19</p>\n\n\n\n<p>WordPress is a Goliath in its field. I know that we cite this bit of context. Frequently, we say that we are 42{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} of the web. And that is true that is the percentage by usage. But in its field, which is websites that are using a content management system, we actually have a 65{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} market share. This is very easy to find. It&#8217;s on the W3Techs website: I can put a link in the show notes, but you could find it just by searching for it.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:46</p>\n\n\n\n<p>So WordPress is a Goliath in its field of websites that are run using a CMS. Because we have always brought our learnings forward with us with the understanding that knowledge, when shared grows rather than diminishes. But open source, the heart of what defines this project, open source is not a Goliath; it&#8217;s barely even David somedays. Even though the web is built on scads of open source software, there&#8217;s a pervasive public perception that it is built by and for hobbyists or that it is inherently risky, and that if there were if it were worth something, then people would pay something. And I just know that if the first impression of WordPress, we&#8217;re, &#8220;we&#8217;ve got 18 years of experience and learning that brought us to today,&#8221; the rest of the sale to adopt software that protects other people&#8217;s freedoms would take care of itself. And I guess, to quote John Oliver, at this point, &#8220;And now this.&#8221;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:59</p>\n\n\n\n<p>Alright, that brings us now to our small list of big things. There are actually quite a few big things on this small list today. So number one, we have reached the beta phase for the year&#8217;s final release, which means that WordPress 5.9 beta one is happening tomorrow, Tuesday, November 16. And then seven days later, I believe on the 23rd, if I recall correctly, comes beta two.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:24</p>\n\n\n\n<p>The second thing on my list is that team rep nominations are happening all over the project right now. I&#8217;ve got a post that I will share in the notes below that I believe all the team reps have put their team&#8217;s nomination posts on. So if you have had an interest in learning more about that and what it means to help keep teams kind of running in the WordPress project, then this is a great opportunity to check those out.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:49</p>\n\n\n\n<p>And the third thing, this last thing actually isn&#8217;t in the next two weeks, but it is very important, nonetheless. Matt&#8217;s annual State of the Word is coming up on December 14. So basically a month from today. It&#8217;s going to join the growing list of in-person events that are on the calendar. It will be in New York City but will also be live-streamed across the world as usual. Keep an eye out for additional updates about that for anyone who, like me, really looks forward to this particular presentation from our project co-founder every year.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:25</p>\n\n\n\n<p>And that is your small list of big things. Thank you for tuning in today for the WordPress briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11556\";s: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:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"State of the Word 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/news/2021/11/state-of-the-word-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 13 Nov 2021 00:38: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11567\";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:\"Howdy, World!&#160; Mark your calendars; it’s almost time for State of the Word 2021! State of the Word is the annual keynote address delivered by the WordPress project’s co-founder, Matt Mullenweg. Every year, the event allows us to reflect on the project’s progress and the future of open source. This year will include that and [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5258:\"\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img width=\"632\" height=\"430\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/11/SOTW-Post-e1636763589410-1024x696.png?resize=632{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C430&#038;ssl=1\" alt=\"State of the Word 2021\" class=\"wp-image-11568\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/11/SOTW-Post-e1636763589410.png?resize=1024{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C696&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/11/SOTW-Post-e1636763589410.png?resize=300{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C204&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/11/SOTW-Post-e1636763589410.png?resize=768{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C522&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/11/SOTW-Post-e1636763589410.png?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>State of the Word 2021 is happening on Dec 14!</figcaption></figure></div>\n\n\n\n<p>Howdy, World!&nbsp;</p>\n\n\n\n<p><a href=\"https://calendar.google.com/calendar/render?action=TEMPLATE&amp;text=State{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Word{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}202021{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20livestream&amp;dates=20211214T150000Z{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F20211214T170000Z&amp;details=State{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Word{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20is{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20annual{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20keynote{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20address{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20delivered{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20by{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20WordPress{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20project{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}27s{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20co-founder{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Matt{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Mullenweg.{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}0AJoin{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Matt{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20as{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20he{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20provides{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20a{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20retrospective{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}202021{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20celebrates{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20community{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}27s{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20amazing{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20wins{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20discusses{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20latest{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20trends{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20he{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}27s{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20seeing{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20and{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20explores{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20future{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20open{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20source.{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}0AState{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Word{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20will{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20be{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20live{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20streamed{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20from{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20New{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20York{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20City{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20and{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20is{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20free{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20for{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20all{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20to{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20watch.{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}0Ahttps{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}3A{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2Fwordpress.org{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2Fnews{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F2021{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F11{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2Fstate-of-the-word-2021{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F\">Mark your calendars</a>; it’s almost time for State of the Word 2021!</p>\n\n\n\n<p>State of the Word is the annual keynote address delivered by the WordPress project’s co-founder, Matt Mullenweg. Every year, the event allows us to reflect on the project’s progress and the future of open source. This year will include that and more.</p>\n\n\n\n<p>Due to the pandemic, we moved the State of the World online for the first time ever in 2020. This year, the event will be livestreamed from New York City. That will enable us to take as many folks as possible along for the ride!</p>\n\n\n\n<p>Join Matt as he provides a retrospective of 2021, discusses the latest trends he’s seeing, celebrates the community’s amazing wins, and explores the future. Expect to hear about a range of topics, from WordPress 5.9 and Openverse to Web3 and non-fungible tokens (NFTs).</p>\n\n\n\n<p><strong>What:</strong> State of the Word 2021</p>\n\n\n\n<p><strong>When:</strong> <a href=\"https://calendar.google.com/calendar/render?action=TEMPLATE&amp;text=State{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Word{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}202021{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20livestream&amp;dates=20211214T150000Z{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F20211214T170000Z&amp;details=State{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Word{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20is{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20annual{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20keynote{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20address{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20delivered{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20by{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20WordPress{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20project{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}27s{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20co-founder{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Matt{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Mullenweg.{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}0AJoin{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Matt{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20as{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20he{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20provides{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20a{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20retrospective{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}202021{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20celebrates{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20community{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}27s{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20amazing{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20wins{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20discusses{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20latest{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20trends{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20he{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}27s{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20seeing{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20and{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20explores{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20future{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20open{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20source.{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}0AState{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Word{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20will{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20be{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20live{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20streamed{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20from{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20New{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20York{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20City{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20and{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20is{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20free{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20for{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20all{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20to{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20watch.{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}0Ahttps{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}3A{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2Fwordpress.org{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2Fnews{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F2021{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F11{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2Fstate-of-the-word-2021{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F\">December 14, 2021, between 5 and 7 pm ET/10 &#8211; 12 am (December 15) UTC</a></p>\n\n\n\n<p><strong>How:</strong> If you’re watching from the comfort of your home or local watch party, the livestream will be embedded on wordpress.org/news.</p>\n\n\n\n<p><strong>Have a question for Matt?</strong></p>\n\n\n\n<p>State of the Word will be followed by a Question &amp; Answer session. If you want to participate, you can either send your question ahead of time to <a href=\"mailto:ask-matt@wordcamp.org\">ask-matt@wordcamp.org</a>, or ask during the event in the livestream chat on YouTube.</p>\n\n\n\n<p>If you’re new to State of the Word, the previous years’ recordings (below) will help you get a sense of what the event is about. Check them out:</p>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2020/12/state-of-the-word-2020/\">State of the Word 2020 (online)</a></li><li><a href=\"https://wordpress.tv/2019/11/03/2019-state-of-the-word/\">State of the Word 2019 – WordCamp US, St. Louis</a></li><li><a href=\"https://wordpress.tv/2018/12/27/state-of-the-word-2018/\">State of the Word 2018 – WordCamp US, Nashville</a></li><li><a href=\"https://wordpress.tv/tag/state-of-the-word/\">All recordings</a></li></ul>\n\n\n\n<p>We hope to see you online on December 14th!</p>\n\n\n\n<p><em>Thanks to <a href=\'https://profiles.wordpress.org/anjanavasan/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>anjanavasan</a> <a href=\'https://profiles.wordpress.org/eidolonnight/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>eidolonnight</a> <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a> for their work on this post. The featured image was created by <a href=\'https://profiles.wordpress.org/beafialho/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>beafialho</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:\"11567\";s: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:66:\"Take the 2021 WordPress Annual Survey (and view the 2020 results)!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wordpress.org/news/2021/11/take-the-2021-wordpress-annual-survey-and-view-the-2020-results/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Nov 2021 23:52: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: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:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11551\";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:359:\"Each year, members of the WordPress community (users, site builders, extenders, and contributors) provide their valuable feedback through an annual survey. Key takeaways and trends that emerge from this survey often find their way into the annual State of the Word address, are shared in the public project blogs, and can influence the direction and [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4885:\"\n<p>Each year, members of the WordPress community (users, site builders, extenders, and contributors) provide their valuable feedback through an annual survey. Key takeaways and trends that emerge from this survey often find their way into the annual <a href=\"https://wordpress.tv/tag/state-of-the-word/\"><em>State of the Word</em></a> address, are shared in the public project blogs, and can influence the direction and strategy for the WordPress Project.</p>\n\n\n\n<p>Simply put: this survey helps those who build WordPress understand more about how the software is used, and by whom. The survey also helps leaders in the WordPress open source project learn more about our contributors’ experiences.&nbsp;&nbsp;</p>\n\n\n\n<p>To ensure that <strong><em>your</em></strong> WordPress experience is represented in the 2021 survey results, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2021-survey-english\" target=\"_blank\" rel=\"noreferrer noopener\">take the 2021 annual survey now.</a></p>\n\n\n\n<div class=\"wp-container-619b32da2bc79 wp-block-buttons\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://wordpressdotorg.survey.fm/wordpress-2021-survey-english\" target=\"_blank\" rel=\"noreferrer noopener\">Take the Annual Survey! (English)</a></div>\n</div>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>You may also take the survey in <a href=\"https://wordpressdotorg.survey.fm/wordpress-2021-survey-french\" target=\"_blank\" rel=\"noreferrer noopener\">French</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2021-survey-german\" target=\"_blank\" rel=\"noreferrer noopener\">German</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2021-survey-japanese\" target=\"_blank\" rel=\"noreferrer noopener\">Japanese</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2021-survey-russian\" target=\"_blank\" rel=\"noreferrer noopener\">Russian</a>, or <a href=\"https://wordpressdotorg.survey.fm/wordpress-2021-survey-spanish\" target=\"_blank\" rel=\"noreferrer noopener\">Spanish</a>. These are the top five languages (other than English) based on the number of WordPress locale downloads. For 2022, additional languages may be considered for translation.</p>\n\n\n\n<p>The survey will be open through the end of 2021, and the results will be published in a future post on this blog for anyone to view. Next year, there will be a new format for this survey, including which segments and questions are included, so that your valuable time spent responding results in equally valuable information.</p>\n\n\n\n<h2 id=\"2020-survey-results\">2020 Survey Results</h2>\n\n\n\n<p>For the 2020 survey, more than 17,000 responses were collected, representing the highest submission volume in four years, up three times from the prior year. In the inaugural year of the survey (2015), over 50,000 responses were collected. Given the reach and adoption of WordPress, there is a significant number we have not reached. As you take the 2021 survey, consider sharing the link on social media and with other colleagues who use WordPress. Gathering feedback from more folks who benefit from WordPress will strengthen our project.</p>\n\n\n\n<div class=\"wp-container-619b32da2bf8e wp-block-buttons\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/news/files/2021/11/WordPress.org-2020-Annual-Survey.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">View the 2020 Survey Results (PDF)</a></div>\n</div>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>The 2020 survey results show that the pandemic has had a major impact on how we operate as a community. With few in-person events, many community members continue to find it challenging to balance community contributions with their own personal and professional obligations.&nbsp;</p>\n\n\n\n<h2 id=\"footnotes\">Footnotes:</h2>\n\n\n\n<p>Data security and privacy are paramount to the WordPress project and community. With this in mind, all data will be anonymized: no email addresses nor IP addresses will be associated with published results. To learn more about WordPress.org’s privacy practices, view the <a href=\"https://wordpress.org/about/privacy/\">privacy policy</a>.</p>\n\n\n\n<p>Like last year, the 2021 survey will be promoted via a banner on WordPress.org, and throughout the make blogs. However, taking a moment to amplify these posts through your own social media and Slack accounts will ensure broader participation. Each of the translated surveys will be promoted through banners on their associated localized-language WordPress.org sites.</p>\n\n\n\n<p><em>Thanks to <a href=\"https://profiles.wordpress.org/dansoschin/\">@dansoschin</a> for the initial draft of this post, and to <a href=\"https://profiles.wordpress.org/annezazu/\">@annezazu</a> &amp; <a href=\"https://profiles.wordpress.org/zackkrida/\">@zackkrida</a> for review!</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:\"11551\";s: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:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 5.8.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/2021/11/wordpress-5-8-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:\"Wed, 10 Nov 2021 18:20:45 +0000\";s: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=11546\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:365:\"WordPress 5.8.2&#160;is now available! This security and maintenance release features 2 bug fixes in addition to 1 security fix. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 5.2 have also been updated. WordPress 5.8.2 is a small focus security and maintenance release. The next [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Jonathan Desrosiers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3030:\"\n<p><strong>WordPress 5.8.2&nbsp;</strong>is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?id=54129{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C54323{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C54207&amp;milestone=5.8.2&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;col=milestone&amp;order=priority\">2 bug</a> fixes in addition to <a href=\"https://core.trac.wordpress.org/ticket/54207\">1 security</a> fix. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 5.2 have also been updated.</p>\n\n\n\n<p>WordPress 5.8.2 is a small focus security and maintenance release. The next major release will be version&nbsp;<a href=\"https://make.wordpress.org/core/5-9/\">5.9</a>.</p>\n\n\n\n<p>You can download WordPress 5.8.2 by downloading from WordPress.org, or visit your Dashboard → Updates and click Update Now. If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?id=54129{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C54323{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C54207&amp;milestone=5.8.2&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;col=milestone&amp;order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-8-2/\">version 5.8.2 HelpHub documentation page</a>.</p>\n\n\n\n<h2 id=\"thanks-and-props\">Thanks and props!</h2>\n\n\n\n<p>The 5.8.2 release was led by&nbsp;<a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>&nbsp;and&nbsp;<a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>.</p>\n\n\n\n<p>In addition to the release squad members mentioned above, thank you to everyone who helped make WordPress 5.8.2 happen:</p>\n\n\n\n<a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/bradleyt/\">Bradley Taylor</a>, <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shimon246/\">shimon246</a>, and <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>.\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Props </em><a href=\'https://profiles.wordpress.org/circlecube/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>circlecube</a><em> and </em><a href=\'https://profiles.wordpress.org/pbiron/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>pbiron</a> <em>for peer review.</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:\"11546\";s: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:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"The Month in WordPress: October 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2021/11/the-month-in-wordpress-october-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Nov 2021 23:35:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11501\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:344:\"October 2021 brought a lot of new things to WordPress, from release updates to new versions of Gutenberg. More notably, in the latest episode of WP Briefing, Executive Director Josepha Haden reminded us about the importance of freedom in open source platforms like WordPress. Free speech has with it a lot of responsibility, just like [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Anjana Vasan\";s: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:24011:\"\n<p>October 2021 brought a lot of new things to WordPress, from release updates to new versions of Gutenberg. More notably, in the <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/news/2021/10/episode-18-the-economics-of-wordpress/\" target=\"_blank\">latest episode</a> of <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/news/podcast/\" target=\"_blank\">WP Briefing</a>, Executive Director <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/chanthaboune/\" target=\"_blank\">Josepha Haden</a> reminded us about the importance of freedom in open source platforms like WordPress.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Free speech has with it a lot of responsibility, just like being a part of a community. Governments or communities, or in our case, <strong>this software is built by the people who show up. </strong><br><br>For WordPress, at 42{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} of the web, every small choice we make can cause huge changes in the way that people experience the web today and tomorrow.</p><cite>Josepha Haden, Executive Director of the WordPress project</cite></blockquote>\n\n\n\n<p>Last month was yet another chapter in this journey. So keep reading to learn what&#8217;s new. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.9: All proposed updates will likely be included</h2>\n\n\n\n<ul><li>We announced the<strong> </strong><a href=\"https://make.wordpress.org/core/2021/10/15/wordpress-5-9-feature-go-no-go-october-14-2021/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>go/no-go for WordPress 5.9 features</strong></a><strong> </strong>in mid-October. The release will probably include all the proposed features—though not all of them are ready yet, they should be by the <a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\" target=\"_blank\" rel=\"noreferrer noopener\">proposed release date</a> (December 14, 2021).</li><li><strong style=\"color: initial\">WordPress 5.9 will include a new default theme called </strong><a href=\"https://make.wordpress.org/core/2021/10/06/introducing-twenty-twenty-two/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Twenty Twenty-Two</strong></a><strong style=\"color: initial\">! </strong><span style=\"color: initial\">The theme&#8217;s foundation will be strong, and the unpredictable yet reliable behavior of birds inspired the intentionally subtle design. </span></li></ul>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"433\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/11/WordPress-Twenty-TwentyTwo-Theme.jpg?resize=632{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C433&#038;ssl=1\" alt=\"WordPress Default Theme Twenty Twenty-Two released with WordPress Version 5.9\" class=\"wp-image-11509\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/11/WordPress-Twenty-TwentyTwo-Theme.jpg?resize=1024{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C701&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/11/WordPress-Twenty-TwentyTwo-Theme.jpg?resize=300{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C205&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/11/WordPress-Twenty-TwentyTwo-Theme.jpg?resize=768{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C526&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/11/WordPress-Twenty-TwentyTwo-Theme.jpg?resize=1536{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C1051&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/11/WordPress-Twenty-TwentyTwo-Theme.jpg?resize=2048{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C1402&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2021/11/WordPress-Twenty-TwentyTwo-Theme.jpg?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/11/WordPress-Twenty-TwentyTwo-Theme.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<ul><li>5.9 bug scrub sessions began in September and will continue each week until the release on December 14, 2021. <strong>View the full </strong><a href=\"https://make.wordpress.org/core/2021/10/18/bug-scrub-schedule-for-5-9/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>bug scrub schedule</strong></a><strong>. </strong></li><li>Many of you requested a few <a href=\"https://make.wordpress.org/core/2021/10/25/wordpress-5-9-editor-update-26-october/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;must have&#8221; enhancements</a> for the 5.9 release—follow the <a href=\"https://github.com/WordPress/gutenberg/projects/62\" target=\"_blank\" rel=\"noreferrer noopener\">5.9 Must-Haves project board</a> to track their status.</li><li>The Test Team <a href=\"https://make.wordpress.org/test/2021/10/27/overview-of-the-5-9-test-leads-approach/\" target=\"_blank\" rel=\"noreferrer noopener\">shared an overview</a> of the team’s approach to testing WordPress 5.9.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center is-style-default\"><p><strong>Interested in contributing to WordPress core?</strong> Join the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\" target=\"_blank\" rel=\"noreferrer noopener\">#core</a> channel, follow the <a href=\"https://make.wordpress.org/core/\" target=\"_blank\" rel=\"noreferrer noopener\">Core Team blog</a>, and check out the <a href=\"https://make.wordpress.org/core/handbook/\" target=\"_blank\" rel=\"noreferrer noopener\">team handbook</a>. Also, don&#8217;t miss the Core Team’s weekly developer chat on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&amp;min=00&amp;sec=0\" target=\"_blank\" rel=\"noreferrer noopener\">8 PM</a> UTC.</p></blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Gutenberg releases: 11.6, 11.7, and 11.8 are here</h2>\n\n\n\n<p>We released three new versions of the Gutenberg block editor between the end of September and October:</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2021/10/01/whats-new-in-gutenberg-11-6-29-september/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Version 11.6</strong></a><strong> </strong>brings site logo cropping and rotation, block-level locking, improvements to Query Pagination block, support for child themes and <a href=\"https://make.wordpress.org/core/2021/10/29/thunks-in-gutenberg/\" target=\"_blank\" rel=\"noreferrer noopener\">thunks</a>, template focus mode, and enhancements to the writing flow.</li><li><a href=\"https://make.wordpress.org/core/2021/10/14/whats-new-in-gutenberg-11-7-october-13th/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Gutenberg version 11.7</strong></a><strong> </strong>includes bug fixes and polishes to the navigation block and editor, global styles and full site editing (including a handy back button that lets you quickly return to the site editor), and columns block support, among other improvements.</li><li>Finally, <a href=\"https://make.wordpress.org/core/2021/10/28/whats-new-in-gutenberg-11-8-0-27-october/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Gutenberg 11.8</strong></a> is the second to last version to make it into the <a href=\"https://make.wordpress.org/core/5-9/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress 5.9</a> release, and it comes with plenty of developments to the editing experience: featured Block Patterns, new animations for a few elements (like Dropzone and Insertion Point), spacing tools for heading blocks, and a lot more.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><strong>Want to get involved in developing Gutenberg? </strong>Follow <a href=\"https://make.wordpress.org/core/\" target=\"_blank\" rel=\"noreferrer noopener\">the Core Team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\" target=\"_blank\" rel=\"noreferrer noopener\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\" target=\"_blank\" rel=\"noreferrer noopener\">#core-editor</a> channel in the <a href=\"https://make.wordpress.org/chat/\" target=\"_blank\" rel=\"noreferrer noopener\">Make WordPress Slack</a>. For details on the latest updates, follow the &#8220;<a href=\"https://make.wordpress.org/core/2021/09/17/whats-next-in-gutenberg-mid-september-2021/\" target=\"_blank\" rel=\"noreferrer noopener\">What&#8217;s next in Gutenberg</a>&#8221; post.</p></blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2>WordCamp US returned virtually this year with more than 3,600 attendees</h2>\n\n\n\n<p><a href=\"https://us.wordcamp.org/\" target=\"_blank\" rel=\"noreferrer noopener\">WordCamp US</a> 2021 was on October 1, and it was online for the first time. The event drew more than 3,600 attendees, 27 sponsors, and 18 remarkable speakers on topics ranging from accessibility and sustainability to e-commerce, to name a few. </p>\n\n\n\n<p>Matt Mullenweg&#8217;s “State of the Word” is expected to be held as a separate event later this year, rather than being part of WordCamp US.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p>If you missed the live event, <strong>you can still watch the <a href=\"https://www.youtube.com/watch?v=0Vkq4BFZbhI\" target=\"_blank\" rel=\"noreferrer noopener\">Yukon Track</a> and the <a href=\"https://www.youtube.com/watch?v=_6-yAZRXY8k\" target=\"_blank\" rel=\"noreferrer noopener\">Columbia Track</a> of WordCamp US 2021.</strong></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: Polyglots monthly newsletter, a new Performance team, and more</h2>\n\n\n\n<ul><li>The <a href=\"https://make.wordpress.org/polyglots/2021/10/15/polyglots-monthly-newsletter-october-2021/\" target=\"_blank\" rel=\"noreferrer noopener\">first edition</a> of the <a href=\"https://make.wordpress.org/polyglots/2021/09/27/sign-up-for-the-new-polyglots-monthly-newsletter/\" target=\"_blank\" rel=\"noreferrer noopener\">Polyglots monthly newsletter</a> went out on October 15, 2021.</li><li>The following teams opened up their call for team representatives last month, and more are coming soon: <a href=\"https://make.wordpress.org/core/2021/10/26/nominations-for-core-team-reps-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">Core</a>, <a href=\"https://make.wordpress.org/community/2021/10/11/community-team-rep-nominations-for-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">Community</a>, <a href=\"https://make.wordpress.org/themes/2021/10/27/nominations-call-for-the-themes-team-representatives/\" target=\"_blank\" rel=\"noreferrer noopener\">Themes</a>, <a href=\"https://make.wordpress.org/accessibility/2021/10/30/call-for-team-rep-nominations-3/\" target=\"_blank\" rel=\"noreferrer noopener\">Accessibility</a>, <a href=\"https://make.wordpress.org/support/2021/10/team-representative-nominations/\" target=\"_blank\" rel=\"noreferrer noopener\">Support</a>, <a href=\"https://make.wordpress.org/training/2021/11/02/nominations-for-training-team-reps-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">Training</a>, and <a href=\"https://make.wordpress.org/hosting/2021/10/30/nominations-for-hosting-team-reps-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">Hosting</a>.</li><li>A draft of the <a href=\"https://make.wordpress.org/community/2021/10/08/proposal-2022-global-community-sponsorship-program/\" target=\"_blank\" rel=\"noreferrer noopener\">2022 Global Community Sponsorship program proposal</a> was released on October 8, 2021. </li><li>The October 2021 edition of <a href=\"https://wordpress.org/news/2021/10/people-of-wordpress-ecommerce-ronald-gijsel/\" target=\"_blank\" rel=\"noreferrer noopener\">People of WordPress</a>, featuring WordPress e-commerce specialist Ronald Gijsel, went live.</li><li>Following excellent responses to the <a href=\"https://make.wordpress.org/core/2021/10/12/proposal-for-a-performance-team/\" target=\"_blank\" rel=\"noreferrer noopener\">initial proposal</a>, members of the Core Team announced the next steps in <a href=\"https://make.wordpress.org/core/2021/10/28/wordpress-performance-team-kick-off/\" target=\"_blank\" rel=\"noreferrer noopener\">launching a performance team</a> that aims to increase the performance (speed) of WordPress.</li><li>The Polyglots Team kicked-off <a href=\"https://make.wordpress.org/polyglots/2021/10/12/new-glotpress-meetings/\" target=\"_blank\" rel=\"noreferrer noopener\">bi-weekly Glotpress meetings</a> aimed at improving the functionality of the plugin that powers <a href=\"https://translate.wordpress.org/\" target=\"_blank\" rel=\"noreferrer noopener\">translate.wordpress.org</a>.</li><li>A <a href=\"https://make.wordpress.org/training/2021/10/27/documentation-sprint/\" target=\"_blank\" rel=\"noreferrer noopener\">sprint</a> is planned on November 10-12 to explore a <a href=\"https://make.wordpress.org/training/2021/10/04/a-dedicated-volunteer-program-for-the-training-team/\" target=\"_blank\" rel=\"noreferrer noopener\">dedicated volunteer program</a> for the Training Team, similar to the Deputy program in the Community Team.</li><li>WordPress.org profiles now display <a href=\"https://make.wordpress.org/meta/2021/10/11/wordpress-org-profiles-now-show-github-activity/\" target=\"_blank\" rel=\"noreferrer noopener\">activity from the WordPress GitHub organization</a>.</li><li>The Test Team <a href=\"https://make.wordpress.org/test/2021/10/21/fse-program-pattern-party-summary/\" target=\"_blank\" rel=\"noreferrer noopener\">shared results</a> of the tenth Full Site Editing (FSE) Outreach Program: Pattern Party. </li><li>Answers from the <a href=\"https://make.wordpress.org/core/2021/10/28/fse-program-answers-from-round-three-of-questions/\" target=\"_blank\" rel=\"noreferrer noopener\">third round of questions</a> from the FSE Outreach Program are now out!</li><li>The Docs Team is<a href=\"https://make.wordpress.org/docs/\" target=\"_blank\" rel=\"noreferrer noopener\"> consulting with independent legal experts</a> to explore whether there are issues with having Gutenberg (which is dual-licensed GPL + MPL) coexist with other contents in WordPress (our documentation has a CC0 license and the code is GPL). </li><li>The Themes Team shared a recap of work happening on <a href=\"https://make.wordpress.org/themes/2021/10/14/theme-tools-and-requirements-recap/\" target=\"_blank\" rel=\"noreferrer noopener\">automation and improvement processes</a> for the WordPress Themes directory. The Team also shared a p2 post highlighting the performance impact of<a href=\"https://make.wordpress.org/themes/2021/10/04/the-performance-impact-of-using-jquery-in-wordpress-themes/\" target=\"_blank\" rel=\"noreferrer noopener\"> jQuery on WordPress themes</a>.</li><li>The Marketing Team participated in a <a href=\"https://make.wordpress.org/marketing/2021/10/21/make-marketing-workshop-contributor-ladder/\" target=\"_blank\" rel=\"noreferrer noopener\">contributor ladder workshop</a> to help plan their future activities.</li><li>The feature<a href=\"https://wptranslationday.org/blog/celebrating-wordpress-translation-day-2021/\" target=\"_blank\" rel=\"noreferrer noopener\"> recap of the WordPress Translation Day 2021</a> is out from the Polyglots and Marketing teams, with the results of the <a href=\"https://wptranslationday.org/wptd-2021/polyglots-appreciation-nominees/\" target=\"_blank\" rel=\"noreferrer noopener\">Polyglots appreciation nominations 2021</a>.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong><a href=\"https://wordpressfoundation.us17.list-manage.com/subscribe?u=0f93eb6000a019fcbd53d10be&amp;id=04c6fa5c90\" target=\"_blank\" rel=\"noreferrer noopener\">Sign up </a>for the Polyglots monthly newsletter</strong>, if you haven’t already.</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: Deadline for redesigned Gutenberg landing page is November 5, 2021</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"396\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/11/WordPress_Gutenberg_Page.jpg?resize=632{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C396&#038;ssl=1\" alt=\"WordPress.Org redesigned Gutenberg page\" class=\"wp-image-11519\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/11/WordPress_Gutenberg_Page.jpg?resize=1024{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C642&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/11/WordPress_Gutenberg_Page.jpg?resize=300{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C188&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/11/WordPress_Gutenberg_Page.jpg?resize=768{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C482&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/11/WordPress_Gutenberg_Page.jpg?resize=1536{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C963&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/11/WordPress_Gutenberg_Page.jpg?resize=2048{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C1284&amp;ssl=1 2048w, https://i1.wp.com/wordpress.org/news/files/2021/11/WordPress_Gutenberg_Page.jpg?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2021/11/WordPress_Gutenberg_Page.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<ul><li><strong>The Design Team is </strong><a href=\"https://make.wordpress.org/design/2021/10/29/redesign-of-the-gutenberg-page/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>working on redesigning</strong></a><strong> the </strong><a href=\"https://wordpress.org/gutenberg/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>wordpress.org/gutenberg</strong></a><strong> landing page, and has already shared a </strong><a href=\"https://www.figma.com/proto/Gl653sYvO3RBhVtWSFwMcD/Gutenberg-Page?page-id=1865{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}3A12926&amp;node-id=1919{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}3A14707&amp;viewport=241{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C48{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C0.15&amp;scaling=min-zoom&amp;starting-point-node-id=1919{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}3A14707\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>prototype</strong></a><strong>. </strong></li><li>The team has also shared a few other concepts where they have requested feedback from contributors:<ul><li>Site Editing iA Concepts: <a href=\"https://make.wordpress.org/design/2021/10/15/site-editing-ia-concepts-how-to-surface-and-access-new-features/\" target=\"_blank\" rel=\"noreferrer noopener\">Part1</a> and <a href=\"https://make.wordpress.org/design/2021/10/22/site-editing-ia-concepts-part-2/\" target=\"_blank\" rel=\"noreferrer noopener\">Part 2</a></li><li><a href=\"https://make.wordpress.org/design/2021/10/08/adventures-in-block-theme-switching/\" target=\"_blank\" rel=\"noreferrer noopener\">Block theme switching</a> concepts</li></ul></li><li>Version 18.5 of WordPress for <a href=\"https://make.wordpress.org/mobile/2021/10/18/call-for-testing-wordpress-for-ios-18-5/\" target=\"_blank\" rel=\"noreferrer noopener\">iOS</a> and <a href=\"https://make.wordpress.org/mobile/2021/10/19/call-for-testing-wordpress-for-android-18-5/\" target=\"_blank\" rel=\"noreferrer noopener\">Android</a> are now available for testing!</li><li>The Accessibility Team is <a href=\"https://make.wordpress.org/accessibility/2021/10/30/accessibility-team-meeting-notes-october-22-2021-2/\" target=\"_blank\" rel=\"noreferrer noopener\">requesting feedback</a> on a new Gutenberg Pull request that <a href=\"https://github.com/WordPress/gutenberg/pull/35896\" target=\"_blank\" rel=\"noreferrer noopener\">announces formatting changes or screen readers</a>.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Share your feedback on the new Gutenberg landing page design in </strong><a href=\"https://meta.trac.wordpress.org/ticket/5600\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Trac</strong></a><strong> or by </strong><a href=\"https://make.wordpress.org/design/2021/10/29/redesign-of-the-gutenberg-page/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>commenting on the blog post</strong></a><strong> by November 5, 2021.</strong></p></blockquote>\n\n\n\n<h2>Keep an eye out for WordCamp Spain, Sâo Paulo, and Taiwan 2021</h2>\n\n\n\n<p>We had several WordPress events in October, and several more to look forward to the rest of the year:</p>\n\n\n\n<ul><li>We’re seeking a new host city for <a href=\"https://us.wordcamp.org/2021/wordcamp-us-update-city-search-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">WordCamp US 2022</a>.</li><li>WordCamp Europe 2022 has extended its <a href=\"https://europe.wordcamp.org/2022/porto-is-calling/\" target=\"_blank\" rel=\"noreferrer noopener\">call for organizers</a>.</li><li><a href=\"https://italia.wordcamp.org/2021/\" target=\"_blank\" rel=\"noreferrer noopener\">WordCamp Italia 2021</a> was held online on October 22-23, 2021. The event had 23 speakers, 17 sponsors, and more than 1,000 registrants. Check out its <a href=\"https://www.youtube.com/channel/UCGdoJtlsv9BhODCQ71cOFnQ\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube channel</a> to watch the event replay.</li><li>Another highlight of the month was <a href=\"https://nicaragua.wordcamp.org/2021/\" target=\"_blank\" rel=\"noreferrer noopener\">WordCamp Nicaragua 2021</a> which was held on October 8-9, 2021.</li><li>The <a href=\"https://make.wordpress.org/community/tag/wpdiversity/\" target=\"_blank\" rel=\"noreferrer noopener\">#WPDiversity</a> working group of the Community Team organized an <a href=\"https://make.wordpress.org/community/2021/10/15/workshops-from-wpdiversity-october-and-november-2021/\" target=\"_blank\" rel=\"noreferrer noopener\">Allyship workshop for event organizers</a> on October 28. <a href=\"https://make.wordpress.org/community/2021/10/15/workshops-from-wpdiversity-october-and-november-2021/\" target=\"_blank\" rel=\"noreferrer noopener\">Sign up now</a> for the diversity events planned by the team for November! </li><li>A <a href=\"https://make.wordpress.org/training/2021/10/29/contribute2wp-learn-training-contributor-day/\" target=\"_blank\" rel=\"noreferrer noopener\">two-day contributor event</a> focused on <a href=\"https://learn.wordpress.org/\" target=\"_blank\" rel=\"noreferrer noopener\">Learn WordPress</a>, took place on October 29 and 31, 2021. There was also another <a href=\"https://yoast.com/about-us/events/yoast-contributor-day/\" target=\"_blank\" rel=\"noreferrer noopener\">contributor day</a> on October 8, 2021, which involved working groups across the board, from accessibility to user testing.</li><li>The Test Team organized the following Hallway Hangouts this week—check out their recaps:<ul><li><a href=\"https://make.wordpress.org/test/2021/10/06/hallway-hangout-pattern-party-testing-walkthrough-6-october/\" target=\"_blank\" rel=\"noreferrer noopener\">Pattern Party Testing Walkthrough </a></li><li><a href=\"https://make.wordpress.org/test/2021/10/20/hallway-hangout-5-9-go-no-go-site-editor-ia-and-more/\" target=\"_blank\" rel=\"noreferrer noopener\">5.9 Go/No go, Site Editor Internal Audit, and more</a></li></ul></li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Don’t miss the following upcoming online WordCamps: </strong><a href=\"https://spain.wordcamp.org/2021/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>WordCamp Spain 2021</strong></a><strong>, </strong><a href=\"https://saopaulo.wordcamp.org/2021/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>WordCamp Sâo Paulo 2021</strong></a><strong>, and </strong><a href=\"https://taiwan.wordcamp.org/2021/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>WordCamp Taiwan 2021</strong></a><strong>!</strong></p></blockquote>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><strong><em>Have a story that we could include in the next ‘Month in WordPress’ post? Let us know by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><em>this form</em></strong></a><strong><em>.</em></strong></p>\n\n\n\n<p><em>The following folks contributed to October 2021’s Month in WordPress: </em><a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/anjanavasan/\" target=\"_blank\"><em>@anjanavasan</em></a><em>, </em><a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/harishanker/\" target=\"_blank\"><em>@harishanker</em></a><em>, </em><a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/rmartinezduque/\" target=\"_blank\"><em>@rmartinezduque</em></a><em>, <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/callye/\" target=\"_blank\">@callye</a></em>, <em><a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/webcommsat/\" target=\"_blank\">@webcommsat</a></em>, and <em><a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/chaion07/\" target=\"_blank\">chaion07</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:\"11501\";s: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:55:\"\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:\"WP Briefing: Episode 19: The 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2021/11/episode-19-the-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Nov 2021 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=11368\";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:463:\"In this nineteenth episode, WordPress&#8217;s Executive director, Josepha Haden Chomphosy, discusses and expresses gratitude for the inspiration behind the People of WordPress series, HeroPress. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Editor:&#160;Dustin Hartzler Logo:&#160;Beatriz Fialho Production:&#160;Chloé Bringmann Song: Fearless First by Kevin [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/10/WP-Briefing-019.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:8207:\"\n<p>In this nineteenth episode, WordPress&#8217;s Executive director, Josepha Haden Chomphosy, discusses and expresses gratitude for the inspiration behind the People of WordPress series, HeroPress.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<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<p><a href=\"https://wordpress.org/news/category/interviews/\">People of WordPress series</a></p>\n\n\n\n<p><a href=\"https://heropress.com/\">HeroPress</a></p>\n\n\n\n<p><a href=\"https://heropressnetwork.com/\">HeroPress Network</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/5-9/\">WordPress 5.9 Development Cycle</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/updates/2021/10/22/team-rep-nominations/\">Call for Team Rep Nomination</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-11368\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:11</p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:29</p>\n\n\n\n<p>The month of November includes the Thanksgiving holiday in my part of the world and in my familial traditions. And one of the things that November always brings up for me is the concept of gratitude. I have a gratitude practice that lasts throughout the year. But this time of year always kind of lets me look outside what makes me feel routinely grateful and explore areas that I don&#8217;t always notice.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:05</p>\n\n\n\n<p>This year, I&#8217;m taking some time to do that in the context of the WordPress project, and it&#8217;s reminded me of one of the foundational things I talk about a lot that may be a little harder for folks to see. I am routinely grateful, of course, for the people who show up to maintain WordPress, the people who keep the back office work going, the contributors who contribute directly to the WordPress CMS and project, the folks who routinely go out and tell other people about WordPress and make sure others know how to use it.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:35</p>\n\n\n\n<p>But there&#8217;s another group that I talk about a lot that is a little harder to grasp. And that&#8217;s this conceptual group of people whose lives have been changed by WordPress. I used to run into people like this all the time when I was organizing WordCamps. And the small but meaningful successes that they share year after year made me realize that my small contribution of organizing these events was really quite valuable; valuable to them, and I assumed also valuable to just other people in the WordPress project.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:09</p>\n\n\n\n<p>Now, if you&#8217;re contributing in a way that doesn&#8217;t let you have contact with the same users consistently over time, or if contributing doesn&#8217;t quite balance out in your ledger at the moment, it can be hard to put names to faces in a way that lets you see how your contributions are making an impact. To help with that, a few years ago, the WordPress project partnered with the community Marketing team and the HeroPress team to share the People of WordPress series which you can find monthly on wordpress.org/news. For me, this series provides a glimpse into the humanity of the people who use WordPress, and for me, that&#8217;s enough. If all the series ever did was to remind us that WordPress was made for people whose needs matter, that would be enough to continue to have that series forever. But fortunately, the series does quite a bit more than that.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:04</p>\n\n\n\n<p>The People of WordPress series also lifts up the stories of people who we don&#8217;t always hear from in technology. It highlights the wide array of origin stories that lead people to WordPress. It reminds us of the global nature of what we&#8217;re doing. It reconnects us to the hopefulness of our own first WordPress successes. And it draws a direct line to why we should care about refreshing the commons of this open ecosystem. I&#8217;m sure that there are more things that do as well. But those are just the things off the top of my head, we draw all of the people of WordPress stories that are inside that series directly from the HeroPress essays that have been submitted by users. And I was gonna say users like you in a kind of Reading Rainbow way. But I actually don&#8217;t know if any of you are everyday users who are also using WordPress but maybe not contributing yet. If you are then like I&#8217;m talking to you. And if you&#8217;re not, I&#8217;m probably still talking to you. Because all of these stories that go to HeroPress are very valuable and very important for us to know. Anyway, I digress.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:14</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/topher1kenobe/\">Topher DeRosia</a>, who founded HeroPress, is among the first people I met in the community lo these many years ago. And I think the impact that HeroPress has on the WordPress community as a whole is not always well recognized. So in the spirit of expanding the scope of my gratitude, and in the context of refreshing the commons, I would encourage you to head over to HeroPress.com and their newly launched HeroPress Network and see if there&#8217;s any little way that you can contribute to their commons, submitting your story donating to their network offering a small bit of volunteer time if you happen to have any spare time lying around. I know that the team would be delighted to hear from you.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:01</p>\n\n\n\n<p>That leads us now to our small list of big things. We are about a week away from the feature freeze for WordPress 5.9, the final release of the year. Feature freeze caused a little confusion last time. So I just want to clarify there won&#8217;t be a package released with this milestone. But no more enhancements or features will be worked on at that point. And bug fixing will become the primary focus. That will be on November 9, which I believe is next Tuesday. It&#8217;s definitely next week whenever the calendar turns to nine of November 2021. That&#8217;s the day that we&#8217;re going into feature freeze.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:38</p>\n\n\n\n<p>The second big thing in our small list of big things is that team rep nomination season is upon us. If you are a team rep or want to learn more about being one, now is the time to kind of look at what&#8217;s going on and how to keep everything moving in that way. I&#8217;ll include a link to the announcement post of that in the notes below.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:57</p>\n\n\n\n<p>And finally, Daylight Saving Time movements are also upon us. Some parts of the world are ending Daylight Saving Time others are starting it and some have already started or stopped that already. So no matter where you are, don&#8217;t forget to check and double-check the timing of things across time zones for the next few weeks.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:21</p>\n\n\n\n<p>And that is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11368\";s: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:78:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"People of WordPress: Ronald Gijsel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/news/2021/10/people-of-wordpress-ecommerce-ronald-gijsel/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 30 Oct 2021 12:21: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:8:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:17:\"Contributor Story\";s: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:7:\"meetups\";s: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:5:{s:4:\"data\";s:20:\"WordPress e-commerce\";s: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:5:{s:4:\"data\";s:17:\"WordPress journey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11370\";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:132:\"Ronald Gijsel on his path from chef to WordPress e-commerce specialist, in the latest People of WordPress feature. #ContributorStory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:11750:\"\n<p>In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people&#8217;s lives for the better. This month we feature a WordPress e-commerce specialist on the difference it makes.</p>\n\n\n\n<h2>Empowered to make a change</h2>\n\n\n\n<p><strong>For WordPress contributor Ronald Gijsel, open source is a lifeline and a perfect place for people with creative minds. It led him on a transformational journey from chef to WordPress e-commerce specialist. Originally from the Netherlands, where he trained in hospitality, he was to find a restorative and energizing power within the WordPress local and global community. </strong></p>\n\n\n\n<p>Ten years ago, life took a sad turn for Ronald and his wife Nihan when their baby daughter passed away only a few days after she was born. At that time, Ronald was a restaurant owner in the UK, working hard in a challenging economic environment.&nbsp;Discovering open source was in many ways his lifeline and helped him and his wife through their considerable heartache. Through this community, a journey to understand the opportunities of the web and new career paths began.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2021/10/ronaldgijsel2-1.jpg?w=632&#038;ssl=1\" alt=\"Portrait picture of Ronald Gijsel\" class=\"wp-image-11403\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Ronald believes that working together in WordPress and other open source communities can lead to massive benefits for a large number of users. Not least, an online presence has been essential to the survival of many businesses during the Covid-19 pandemic.&nbsp;</p>\n\n\n\n<p>During recent years, he has visited open source events worldwide as a partnership manager at a WordPress e-commerce plugin company and community supporter. His enthusiasm for WordPress has steered him to being part of local support, solutions and collaboration as a co-organizer of <a href=\"https://central.wordcamp.org/\">WordCamp</a> Bristol, the <a href=\"https://www.meetup.com/Cheltenham-WordPress-Meetup/\">WordPress Cheltenham Meetup</a> and more.</p>\n\n\n\n<h2>Moving forward&nbsp;</h2>\n\n\n\n<p>When Nihan enrolled in the UK&#8217;s Open University to complete her computer science degree, Ronald found her course materials stirring his own interest. He started to follow the lectures with her and even attempted some of the course work for himself &#8211; all whilst he continued to work as a chef in various local pubs.&nbsp;</p>\n\n\n\n<p>Through this, he discovered how to generate affiliate commission earnings through blogging on different platforms. “Creating websites was slowly becoming a passion. In these first few years, I enjoyed every part of the steep learning curve, from tackling the basics to more advanced coding and designs,” said Ronald.</p>\n\n\n\n<h2>The Start of a Web Career</h2>\n\n\n\n<p>Ronald reduced his hours as a chef and devoted more time to online courses learning coding, e-commerce, SEO, and online marketing. Yet when he applied for a job as a WordPress designer, he had only heard of the platform in the context of blogging. This was all to change when an online tutor on one of the training sites revealed the many functions available with WordPress. It was the start of a new career and life journey. This tutor was Topher DeRosia, who went on to create <a href=\"https://heropress.com/\">HeroPress</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"632\" height=\"467\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/10/with-topher.jpg?resize=632{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C467&#038;ssl=1\" alt=\"Ronald Gijsel and Topher De Rosia at \na WordCamp\" class=\"wp-image-11398\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/10/with-topher.jpg?w=900&amp;ssl=1 900w, https://i2.wp.com/wordpress.org/news/files/2021/10/with-topher.jpg?resize=300{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C222&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/10/with-topher.jpg?resize=768{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C567&amp;ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>Ronald with Topher at WordCamp London in 2019</figcaption></figure>\n\n\n\n<p>To learn WordPress, Ronald ‘binge-watched’ webinars on various development topics and over time he became more familiar with it. Securing a job as a designer was only the beginning of his journey into the WordPress ecosystem.</p>\n\n\n\n<p>A year later in 2015, after landing the job as a WordPress designer, Ronald&#8217;s boss asked him to consider taking on the business and its clients. With his wife, Ronald decided to take on the firm and to expand their work in WordPress e-commerce and online marketing.</p>\n\n\n\n<p>As an advocate for learning new skills and practicing them, Ronald encourages others to continue to expand their knowledge through study, attending talks at Meetups and WordCamps, and using the new <a href=\"https://learn.wordpress.org/\">Learn WordPress resource</a>. </p>\n\n\n\n<p>“WordPress has evolved in so many branches that require different skills. There are hundreds of areas of expertise, roles, and jobs that complement WordPress to make it what it is.”</p>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" width=\"528\" height=\"652\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/10/meetup3-1.jpg?resize=528{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C652&#038;ssl=1\" alt=\"Ronald talking about WordPress and e-commerce solutions\" class=\"wp-image-11414 size-full\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/10/meetup3-1.jpg?w=528&amp;ssl=1 528w, https://i2.wp.com/wordpress.org/news/files/2021/10/meetup3-1.jpg?resize=243{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C300&amp;ssl=1 243w\" sizes=\"(max-width: 528px) 100vw, 528px\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-large-font-size\">“WordPress is an essential tool in my box.”<br><em><strong>Ronald Gijsel</strong></em></p>\n</div></div>\n\n\n\n<p>Ronald believes WordPress thrives on diversity, with many <a href=\"https://make.wordpress.org/\">contributor opportunities</a> and jobs in the ecosystem that require a wide range of skills.&nbsp;</p>\n\n\n\n<p>“A big part of this is that each person’s personal background complements their skill sets. Who you are and what you do is influenced by what you have done and learned. We need to cherish this. These things also add to our culture, language, experience, and knowledge,” he said.<br></p>\n\n\n\n<h2>A journey into WordPress e-commerce</h2>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/10/meetup2.jpg?resize=632{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C442&#038;ssl=1\" alt=\"Ronald presenting on WordPress and e-commerce at an event\" class=\"wp-image-11400\" width=\"632\" height=\"442\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/10/meetup2.jpg?zoom=2&amp;resize=900{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C630&amp;ssl=1 1800w, https://i2.wp.com/wordpress.org/news/files/2021/10/meetup2.jpg?zoom=3&amp;resize=900{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C630&amp;ssl=1 2700w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>Ronald shares his enthusiasm for building WordPress and e-commerce websites at WordCamp London in 2019</figcaption></figure>\n\n\n\n<p>Ronald initially extended his interest in the&nbsp;WordPress ecosystem through representing a plugin company at WordCamps in the UK. He became hooked and went on to attend events in many different countries.&nbsp;</p>\n\n\n\n<p>In 2018, he realized he could do more with his connections and create meaningful partnerships. Within a few weeks, he had crafted his dream job and sent a proposal to the CEO of a WordPress e-commerce firm.</p>\n\n\n\n<p>But pitching to strangers wasn’t an easy task, as he did not know if they would understand his vision. </p>\n\n\n\n<p>Ronald said: “The doubts went through my head for months. ‘Do I give up my business and work for the benefit of another company? What if I don’t get on? What do I do with my customers?’ But I decided to take the leap.&#8221; His pitch proved successful, joining his current firm in 2019.<br><br>In the firm’s CEO, Ronald found a mentor, supporter, and a friend. He explained: “Nando Pappalardo never tells me what to do, but instead, he asks questions to make me realize what is achievable, or could be even better. He simply makes suggestions that I read something and reach my own conclusions.”</p>\n\n\n\n<h2>Looking back at the journey&nbsp;</h2>\n\n\n\n<p>Taking risks or changing directions in mid-career often involves a giant leap. In Ronald&#8217;s view, through WordPress, you don&#8217;t need to be alone. He believes its community can offer support and help to process thinking.</p>\n\n\n\n<p>Ronald said: “I often think back to the moment my daughter passed away. She only lived for a few days. Every day, I wonder how events would have unfolded if she had survived. Maybe her memory lives on in every decision I make and the paths I decide to take.”</p>\n\n\n\n<p>From his experience, he found that&nbsp;changing a career can sometimes take a few years and have a period of transition. He said: “Only looking back do I realize that each small step slowly made a difference in my life.”</p>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p>“It was WordPress that made the online world easier to navigate and empowered me to make a change”&nbsp;</p><cite>Ronald Gijsel</cite></blockquote></figure>\n\n\n\n<p>He added: “Feeling welcomed into the WordPress community through Meetups and WordCamps added a human dimension and confidence that I can do ‘this’ too.”</p>\n\n\n\n<p>Ronald’s wish is that his story will offer support to others who may have experienced tragedy in their lives. “I hope that I can give you the hope and strength to try and put your energy into something else that can lead to more significant changes in your life. Try to take it as one positive decision at a time.”</p>\n\n\n\n<h2>Share the stories</h2>\n\n\n\n<p>Help us share these stories of open source contributors and continue to grow the community.&nbsp;Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series.</a>&nbsp;#ContributorStory.</p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@</a><a href=\"https://profiles.wordpress.org/webcommsat/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/webcommsat/\">webcommsat</a>), and Surendra Thakor (<a href=\"https://profiles.wordpress.org/sthakor/\">@sthakor</a>) for the interviews and writing this feature, and to Ronald Gijsel (<a href=\"https://profiles.wordpress.org/just2ronald/\">@just2ronald</a>) for sharing his story.</p>\n\n\n\n<p>Thanks to Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>), Chloé Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>), Anjana Vasan (<a href=\"https://profiles.wordpress.org/anjanavasan/\">@anjanavasan</a>), Collieth Clarke (<a href=\"https://profiles.wordpress.org/callye/\">@callye</a>), and Reyes Martinez (<a href=\"https://profiles.wordpress.org/rmartinezduque/\">@rmartinezduque</a>) for their content contributions, and Josepha Haden Chomphosy (@<a href=\"https://profiles.wordpress.org/chanthaboune/\">chanthaboune</a>), and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) for their support for the series.</p>\n\n\n\n<p><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.&nbsp;</em>#HeroPress</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:\"11370\";s: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:55:\"\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:51:\"WP Briefing: Episode 18: The Economics of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/news/2021/10/episode-18-the-economics-of-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Oct 2021 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=11351\";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:364:\"In episode 18 of WP Briefing, Josepha Haden Chomphosy reflects on a recent lecture that she gave to students at Hendrix College in which she explored the economics of WordPress and the principles that sustain the project&#8217;s ecosystem. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/10/WP-Briefing-018.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:20806:\"\n<p>In episode 18 of WP Briefing, Josepha Haden Chomphosy reflects on a recent lecture that she gave to students at Hendrix College in which she explored the economics of WordPress and the principles that sustain the project&#8217;s ecosystem.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<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<p><a href=\"https://wordpress.org/showcase/\">WordPress Showcase</a></p>\n\n\n\n<p><a href=\"https://wpengine.com/resources/value-of-wordpress-worlds-first-study-of-wordpress-economy/#An_Expansive_WordPress_Ecosystem\">The Value of WordPress: The World&#8217;s First Study of the WordPress Economy </a></p>\n\n\n\n<p><a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/10/15/wordpress-5-9-feature-go-no-go-october-14-2021/\">WordPress 5.9 Feature Go/No-Go </a></p>\n\n\n\n<h3>Digital Citizenship Resources</h3>\n\n\n\n<p><a href=\"https://wordpress.org/news/2019/10/becoming-better-digital-citizens-through-open-source/\">Becoming Better Digital Citizens Through Open Source</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2019/10/empowering-generations-of-digital-natives/\" data-type=\"post\" data-id=\"7413\">Empowering Generations of Digital Natives</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2019/10/responsible-participation-in-online-communities/\" data-type=\"post\" data-id=\"7386\">Responsible Participation in Online Communities</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-11351\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:11</p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Joseph Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:40</p>\n\n\n\n<p>So today marks the start of Digital Citizenship week. This year in 2021, it is the week of October 18th, and to kick it off, I want to share with you a bit of a lecture that I gave to a college class last week.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:55</p>\n\n\n\n<p>An economics professor teaches this class. And so, a little bit, I went to talk about how WordPress is essentially a microcosm of global societies. That was mostly why I was invited to come and give the talk. But one of the students asked a really interesting question about economics, and especially the economics of WordPress. And so, I&#8217;m going to take some time to do my best to answer that question here as well. But first, we&#8217;re going to start with some big picture information about WordPress that I shared with the students, and then maybe you also don&#8217;t necessarily know.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:00</p>\n\n\n\n<p>So the first place that we started was with the question of what WordPress is. Most of them had heard of it but didn&#8217;t necessarily have a good handle on what it is. And so this is the definition that I gave to them. This is a bit of each of the facets of WordPress that we kind of see right now.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:57</p>\n\n\n\n<p>Firstly, WordPress is, of course, a content management system, which means it&#8217;s a piece of software that uses a copyleft license, which means that it&#8217;s open source, and no one individual necessarily owns the rights to the code. If you get very specific, WordPress is, of course, a FOSS project or a free and open source software project. I know that there are discussions around when a piece of software is free, then what are you using to pay for that piece of software or to pay for your access to that software? And often, the answer is that you&#8217;re using your personally identifying information to pay for something commonly referred to as the data economy. If you&#8217;re not familiar with that, it&#8217;s a little bit of a three-pronged effort there. So you submit your data to get access to the software, or you can join the platform, depending on what it is that you&#8217;re working with. That platform or that software collects your data so that they can build a profile about what sorts of content engages you and so that they can share, essentially, audience cohorts like groups of people that kind of are talking about what you&#8217;re talking about, agree with what you agree about, and find interesting, the same sorts of things that you find interesting. And then those companies sell access to your attention. This is something that I refer to as the attention economy. I think there are a lot of startups at the moment that refers to the attention economy. The most iconic recent example was when the folks over at Netflix said that they weren&#8217;t competing against other streaming services; they were competing against sleep.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:54</p>\n\n\n\n<p>And I think that might ring true for quite a few of us at the moment. But anyway, to scoot us back one level, I had, as I said, WordPress is free software. But the difference with WordPress is that to get a copy of WordPress, you are not necessarily required to hand over any data. You don&#8217;t need to give anyone data to get a copy. You don&#8217;t need to give anyone money or data to open up a copy that you own or to build a website in it if you&#8217;re just doing it locally, but especially around that data side because WordPress is not collecting any data, we&#8217;re also not brokering access to anyone&#8217;s attention.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:37</p>\n\n\n\n<p>Another answer to the question of &#8220;What is WordPress?&#8221; WordPress software and the project enable nearly half a trillion dollars of revenue in the global digital economy, as we learned from a recent study from one of the hosting companies inside the WordPress project&nbsp; &#8211; oh, Inside the WordPress ecosystem anyway. And WordPress also runs 42{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} of the web, with some of the biggest sites we know using WordPress. Such sites like the New York Times, Rolling Stone, many, many others, which you can see in the WordPress showcase as well. I don&#8217;t necessarily want to just like call out all the big groups that use it. But it&#8217;s a lot.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:22</p>\n\n\n\n<p>&nbsp;To recap what we just learned about WordPress and what WordPress is. It is software that one uses a copyleft license, meaning no single entity owns it. Two, it is available at no cost, meaning no money changes hands for you to own a copy. Three does not track you, which means that you don&#8217;t have to give WordPress any personally identifying information to get a copy. Four is an enabler of a massive digital economy massive portion of the digital economy even. That, you know, means their services, extensions, themes, plugins, all of that stuff. And five, it is software that supports 42{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} of the web. Practically every other site you visit uses the software. So that&#8217;s WordPress.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:10</p>\n\n\n\n<p>With this massive free software, you might be thinking to yourself a couple of things. The first thing you might be thinking is, &#8220;Well, that sounds impossible.&#8221; But if that&#8217;s not what you&#8217;re thinking, you may be thinking, &#8220;how is it possible that a software that is technically owned by no one and takes no money or data to obtain &#8211;&nbsp; how is it that a software like that can power 42{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} of the web.&#8221; This brings me, of course, to a topic that I specialize in, which is how WordPress is made.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:45</p>\n\n\n\n<p>WordPress is, by now you know, built by a global community of contributors. And it&#8217;s partially contributors that are self-sponsored or giving of their own time freely, and partly sponsored volunteers, people who are paid by Five for the Future initiatives inside various companies. I have said many times, most recently at WordCamp US, that I have an ideal ratio of about two to one in that kind of volunteer or self-sponsored versus corporately sponsored set of voices. And also, as I said, at WordCamp US, we’re not necessarily getting to that ideal ratio right now because of the nature of the way the world is at the moment. However, this community functions almost like a tiny little digital society. There are ways to get your voice heard ways to take on leadership roles; there is a little bit of light governmental structure. And as with any society, any community like this, there&#8217;s a relationship inherent there. There&#8217;s almost a transactional element that takes place when you&#8217;re participating fully. Although I know that for the WordPress project, especially for open source in general, there is a reminder that we should always be contributing without the expectation of reciprocity. But even if you are contributing without the expectation of reciprocity, you still are engaging in an existing community, which means that you are fostering a relationship with the community or with the people who are also participating in the community with you. It&#8217;s just inescapable if you have people around and working together.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:38</p>\n\n\n\n<p>So two concepts really informed my work to future-proof the WordPress project. And the first one is digital citizenship, which is why this particular WordPress Briefing fits today. And the other is the Tragedy of the Commons, especially how we go about refreshing those commons. So digital citizenship, I talked about it a bit in the last WP Briefing. But it&#8217;s still true today that that&#8217;s important. And the thing that really matters to me as we are working through how to make sure that WordPress is moving forward together. But most discussions of citizenship are location-specific, which makes plenty of sense. However, with so many mobile devices and broader access to some level of internet, we have increasing opportunities to be connected because of interests or skill sets. And even the things that we aspire to or aspire to be with a community like WordPress, which has no home office or main location. Of course, it&#8217;s very important that all of the leaders in WordPress, all of the team reps in WordPress, are proactively engaging with the people in their teams and in their portions of the community instead of waiting for like happenstance running into people. We also use a bunch of social stuff to get people together: twitch screams, not twitch screams because it&#8217;s not that Halloweeny! Twitch streams, hallway hangouts, events that are both online and off. Everything that the Learn section of the community is doing with their discussion groups. There are so many ways that WordPress proactively engages with each other and engages with itself. And that work is all really important to keeping the community involved, which is key to any organization&#8217;s long-term success, and certainly is true for WordPress as long-term success. Because when your community or your organization or your society is engaged and invested in your collective success, then you are (get ready for a list) one, more likely to see obstacles early and be able to overcome them, two more likely to see upcoming trends and prepare for them, three more likely to see what is broken and be able to repair it before it is a major issue. And four, you are more likely to be a resilient and fruitful organization long after any single member has stopped participating.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>11:10</p>\n\n\n\n<p>The more connected to the community you are and the more active, the greater your influence and the ability to affect changes also become. And so, not only is it important for us to remain connected as a community just to make sure that everything is going well. But also, it&#8217;s one of the primary ways that people who are giving back can sort of have more of an opportunity in this particular ecosystem. In open source, anyone can gain influence by helping others by helping the software and by keeping the trains on the tracks. And so, one of the only lasting limits to long-term potential in an open source project is how good you are at seeing beyond yourself and seeing what good action can make beyond just your own benefits. I understand that there are also specific hurdles to contribution in your free time that I have dedicated a couple of different podcasts to, so I don&#8217;t want to neglect that reality.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:19</p>\n\n\n\n<p>I have found in my experience that one of the limiting factors that sometimes cannot be unlearned is not being able to see kind of a broader scope, a broader perspective than what you&#8217;re already bringing into it.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:34</p>\n\n\n\n<p>So being a good digital citizen, that&#8217;s a really important part of keeping any society together any organization together and moving forward. But especially is in the context of digital citizenship, is true for WordPress.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:48</p>\n\n\n\n<p>The second thing that is really important to me is this concept of the Tragedy of the Commons, which is, of course, an economics term, open source has borrowed. We have talked about it in this podcast in the past. And today, I specifically am talking about how WordPress works to consistently be refreshing the commons. So the theory of the Tragedy of the Commons says that all societies can withstand a certain volume of free-riders. A certain number of people who reap the benefits of that community’s society without necessarily putting anything back into it. And that is no different in open source than in any other place where you would apply this concept. The particular catch for WordPress is of course, that it is free, freely available and has no specific copyright holder. And so in those circumstances, it is incredibly easy for a small group of people to maintain the software while the whole world uses it for free. And not only is it possible for a small group of people to maintain it, but if you&#8217;re not careful, it&#8217;s also easy for a small group of unpaid people and unacknowledged people to maintain something forever. And at the volume that WordPress operates at, that&#8217;s a really risky choice. It doesn&#8217;t help to support those people; it puts the long-term stability of the software in jeopardy. And at the end of the day, it just does not help to replenish the commons to make sure that everybody keeps getting to have the benefits of this ecosystem in the long term.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>14:39</p>\n\n\n\n<p>As many of you know, there is this program called Five for the Future. And that program is essentially modeled after a tithe. So the invitation to this program when it was first introduced in 2014 was that if you or your company or your community is made better or made possible by WordPress, you should give back to the WordPress project 5{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} of your resources.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>15:07</p>\n\n\n\n<p>It is an aspirational 5{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}, of course, and some groups give back their time while others give back with their money. But almost anyone who wants to give back has some skill that WordPress needs. That particular program has really grown in leaps and bounds since it was introduced. I don&#8217;t know exactly how many team members were considered Five for the Future contributors when it was first introduced in 2014; it was a little before my time. But at the moment, it&#8217;s about 150 people that I am routinely aware of or in contact with, which is still a small number considering how many people use WordPress.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>15:52</p>\n\n\n\n<p>However, many corporations who have seen the most benefit, including, you know, the company that I work for (Automattic), and a lot of other hosting companies in the ecosystem, all do a really good job of refreshing the commons so that WordPress is still usable for businesses of all levels.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>16:11</p>\n\n\n\n<p>I want to leave us with one final big picture thought about open source. This is going to be a callback to one of my earliest episodes in this podcast. But I think that it&#8217;s always worth remembering. We&#8217;re going to talk about this really popular phrase in open source projects &#8220;free as in speech, not free as in beer.&#8221; And for WordPress, as you know, it&#8217;s a little bit of both. It&#8217;s literally free. But also, since it&#8217;s open source, it has a free as in speech component to it as well.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>16:46</p>\n\n\n\n<p>The four freedoms of open source as laid out in the 90s. So 10 years into the open source movement, are basically that you have the freedom to run the program for any purpose, the freedom to study how the program works, and change it so that it can do your computing as you wish, the freedom to redistribute copies so that you can help your neighbor and the freedom to distribute copies of your modified versions, giving the community a chance to learn and benefit from the changes that you put into the software.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>17:22</p>\n\n\n\n<p>I don&#8217;t remember if I said this in my original podcast, but I&#8217;m going to say it today, free speech has a lot of responsibility, just like being a part of a community. Governments or communities, or in our case, this software is built by the people who show up. For WordPress at 42{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} of the web, every small choice we make can cause huge changes in how people experience the web today and tomorrow. And that, to my mind, is really no different than participating in any sort of civic infrastructure. The changes that are made today, or the errors that we prevent, set the tone and the circumstance and the potential to thrive for everyone who comes after us.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>18:17</p>\n\n\n\n<p>That leads us into our smallest of big things. I just have a couple of things for you all today. Firstly, at the time of this recording, this is prior to the Go/No-Go demo meeting for WordPress 5.9. So I have no idea what&#8217;s happened. But by the time this podcast has been released, we will have had the Go/No-Go meeting and also have shipped the post that summarizes what happened, what we hope to change in the next essentially sprint so that we can confidently move forward with a clear set of features for the 5.9 release. I will include a link to the notes below in the show notes. Kudos to everyone, props to everyone who participated in that meeting. And also props to all the people who have been helping us as we head into this final release of the year and all of you who are going to help us make it successfully to the end.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>19:15</p>\n\n\n\n<p>The second thing I already kind of alluded to at the top of the podcast, it is Digital Citizenship week; two or three years ago, the WordPress blog had a series about digital citizenship and what it means to be a good digital citizen, what it means to do that in the context of WordPress. I will drop a link to those posts in the show notes as well. They are very well written and very important, and fairly evergreen content. If I think that there is something worth updating, I will update it before putting it in the show notes. And that is your small list of big things.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>19:57</p>\n\n\n\n<p>Thank you all for tuning in today for the WordPress sprint. I&#8217;m your host, Joseph Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11351\";s: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:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"The Month in WordPress: September 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/news/2021/10/the-month-in-wordpress-september-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Oct 2021 20:01:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11327\";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:351:\"There’s a lot of tolerance in open source software for shipping slightly imperfect work. And that’s good. When we ship software that’s a little bit imperfect, it makes it clear how everyone can participate, how everyone could participate, if they could find this WordPress community that supports the CMS. That was Josepha Haden on the [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:16575:\"\n<blockquote class=\"wp-block-quote\"><p>There’s a lot of tolerance in open source software for shipping slightly imperfect work. And that’s good. When we ship software that’s a little bit imperfect, it makes it clear how everyone can participate, how everyone could participate, if they could find this WordPress community that supports the CMS.</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">That was <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> on the “<a href=\"https://wordpress.org/news/2021/09/episode-16-a-sneak-peek-at-wordpress-5-9/\">A Sneak Peek at WordPress 5.9</a>” episode of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a>, talking about what goes into a WordPress release like version 5.9. Read on to find out more about updates on the latest release and the latest WordPress news from September 2021.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress Translation Day 2021 Celebrations ran for 30 days</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"332\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/10/image.png?resize=632{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C332&#038;ssl=1\" alt=\"WP Translation Day Matt Mullenweg Quote. Quote text: “Translation is so magical because it multiplies the work of all the other contributors of WordPress. If you care about freedom and the future of the internet, translating WordPress is one of the best things you can do for people who speak your language.”\" class=\"wp-image-11328\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/10/image.png?resize=1024{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C538&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/10/image.png?resize=300{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C158&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/10/image.png?resize=768{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C403&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/10/image.png?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>WordPress Contributor teams, led by the Polyglots and Marketing teams, organized <a href=\"https://wptranslationday.org/\">WordPress Translation Day celebrations</a> for the entire month of September. Contributors from across the world joined the celebrations by translating WordPress into their own languages. Additionally, the team organized a host of <a href=\"https://wptranslationday.org/wptd-2021/global-events/\">global</a> and <a href=\"https://wptranslationday.org/wptd-2021/local-events/\">local events</a>. Translation sprints were organized by the <a href=\"https://make.wordpress.org/community/2021/09/20/kicking-off-the-community-documentation-translation-sprint-from-september-20-to-24/\">Community</a> and <a href=\"https://make.wordpress.org/training/2021/09/30/wptranslationday-subtitling-videos-on-learn/\">Training</a> teams, as well as local groups.</p>\n\n\n\n<p>As part of the celebrations, nominations were invited for contributors who had made a significant impact on the translation of WordPress and its availability in so many languages worldwide. <a href=\"https://wptranslationday.org/blog/call-for-nominations-polyglots-appreciation/\">More than 30 notable polyglot contributors were nominated for their contributions</a>. They will be featured in the coming month on the <a href=\"https://wptranslationday.org/\">WP Translation Day website, together with event recaps and more news.</a></p>\n\n\n\n<p>Read the latest <a href=\"https://wordpress.org/news/2021/09/people-of-wordpress-yordan-soares/\">People of WordPress feature on polyglots contributor Yordan Soares</a>, from South America.</p>\n\n\n\n<h2>WordPress Release updates</h2>\n\n\n\n<ul><li>WordPress security and maintenance release – <a href=\"https://wordpress.org/news/2021/09/wordpress-5-8-1-security-and-maintenance-release/\">Version 5.8.1</a> came out on September 9, 2021. The release fixes three major issues and includes 60 bug fixes. You can update to the latest version directly from your WordPress dashboard or by <a href=\"https://wordpress.org/download/\">downloading</a> it from WordPress.org. The <a href=\"https://make.wordpress.org/core/2021/10/04/wordpress-5-8-2-deferred/\">5.8.2 release has been deferred</a> and if needed a minor release will be added before 5.9.&nbsp;</li><li>Work is progressing towards WordPress 5.9, and the team released a <a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\">planning round-up</a> along with a <a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\">call for release leads</a>. October 14 is the go/no-go date of the release, which is planned to be <a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\">launched on December 14, 2021</a>.</li></ul>\n\n\n\n<p>Want to contribute to WordPress core? Join the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel, follow the <a href=\"https://make.wordpress.org/core/\">Core Team blog</a>, and check out the <a href=\"https://make.wordpress.org/core/handbook/\">team handbook</a>. Don’t miss the Core Team chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&amp;min=00&amp;sec=0\">5 AM</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&amp;min=00&amp;sec=0\">8 PM</a> UTC.&nbsp;</p>\n\n\n\n<h2>Say hi to Gutenberg Versions 11.4 and 11.5</h2>\n\n\n\n<p>We launched Gutenberg <a href=\"https://make.wordpress.org/core/2021/09/01/whats-new-in-gutenberg-11-4-1-september/\">version 11.4</a> and <a href=\"https://make.wordpress.org/core/2021/09/17/whats-new-in-gutenberg-11-5-16-september/\">version 11.5</a> this month. <a href=\"https://make.wordpress.org/core/2021/09/01/whats-new-in-gutenberg-11-4-1-september/\">Version 11.4</a> adds image blocks to the gallery block, duotone filters for featured images, and padding support for Button Blocks. <a href=\"https://make.wordpress.org/core/2021/09/17/whats-new-in-gutenberg-11-5-16-september/\">Version 11.5</a> adds flex layout support to the group and social icon blocks along with <a href=\"https://make.wordpress.org/core/2021/09/22/core-editor-improvement-introducing-the-widget-group-block/\">widget group blocks</a>. It will support the addition of a site logo or title directly into menus.</p>\n\n\n\n<p>Want to get involved in developing Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core Team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a>. The <a href=\"https://make.wordpress.org/core/2021/09/17/whats-next-in-gutenberg-mid-september-2021/\">What’s next in Gutenberg</a> post gives details on the latest updates.</p>\n\n\n\n<h2>New Guidelines for in-person WordCamps</h2>\n\n\n\n<p>The Community Team <a href=\"https://make.wordpress.org/community/2021/09/13/announcement-updated-guidelines-for-in-person-wordcamps/\">published new guidelines</a> for returning to in-person WordCamps in regions where in-person events are allowed by the local public health authorities.&nbsp;</p>\n\n\n\n<p>Community members can now organize in-person WordCamps for fully vaccinated, recently tested negative, or recently recovered folks (in the last three months) — provided their region passes the in-person <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/2021-returning-to-in-person-meetups/in-person-meetup-decision-checklist/\">safety checklist</a> OR if vaccines and/or COVID testing are accessible to all. Organizers can continue to plan online WordCamps if their region does not meet the guideline.&nbsp;</p>\n\n\n\n<p>New guidelines are also available on the <a href=\"https://make.wordpress.org/community/2021/09/27/announcement-returning-to-in-person-do_action-charity-hackathons/\">return of in-person do_action hackathons</a>.</p>\n\n\n\n<p>Want to get involved in the Community Team and help bring back in-person WordPress events? <a href=\"https://make.wordpress.org/community/\">Follow the Community Team blog</a> and join the <a href=\"https://wordpress.slack.com/archives/C02RQC7RN\">#community-events</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Make WordPress Slack</a>! Check out the following <a href=\"https://central.wordcamp.org/\">upcoming WordCamps</a> and <a href=\"https://make.wordpress.org/community/events/\">meetups</a>.</p>\n\n\n\n<h2>Important Team announcements/updates</h2>\n\n\n\n<ul><li>The Polyglots Team <a href=\"https://make.wordpress.org/polyglots/2021/09/27/sign-up-for-the-new-polyglots-monthly-newsletter/\">opened sign-ups</a> for their new monthly newsletter. The first edition goes out on October 15!</li><li>The<a href=\"https://make.wordpress.org/project/2021/09/10/suggested-iterations-for-the-five-for-the-future-program-and-tool/\"> Five for the Future program is being revisited</a> to identify opportunities for growth.&nbsp;</li><li>The Docs Team formally <a href=\"https://make.wordpress.org/docs/2021/09/15/announcement-new-workflow-for-reporting-documentation-issues/\">launched a new repository</a> for tracking issues with WordPress documentation: <a href=\"https://github.com/WordPress/Documentation-Issue-Tracker\">https://github.com/WordPress/Documentation-Issue-Tracker</a></li><li>The Plugins Team <a href=\"https://make.wordpress.org/plugins/2021/09/20/change-to-how-long-active-reviews-remain-open/\">reduced the time period to complete active review requests for plugins</a> from six to three months.</li><li>The Community Team started work on the <a href=\"https://make.wordpress.org/community/2021/09/10/2022-global-sponsorship-working-group/\">2022 Global Sponsorship program</a>.</li><li>The Design Team is <a href=\"https://make.wordpress.org/design/2021/09/16/document-status-and-visibility/\">working on a redesign proposal of the Inspector sidebar</a> in the WordPress post/page editor.</li><li>The Themes Team announced the results of the <a href=\"https://make.wordpress.org/themes/2021/09/13/theme-upload-survey-results-next-steps/\">six-week Theme author survey</a>.</li><li>The Training Team also shared <a href=\"https://make.wordpress.org/training/2021/09/14/learn-wordpress-needs-assessment-results/\">results of a third-party needs assessment exercise for Learn WordPress</a> which offers some excellent insights.&nbsp;</li></ul>\n\n\n\n<h2>Feedback/Testing requests from Contributor Teams</h2>\n\n\n\n<ul><li>Version 18.3 of WordPress for <a href=\"https://make.wordpress.org/mobile/2021/09/20/call-for-testing-wordpress-for-ios-18-3/\">iOS</a> and <a href=\"https://make.wordpress.org/mobile/2021/09/21/call-for-testing-wordpress-for-android-18-3/\">Android</a> are now available for testing!</li><li>Join the <a href=\"https://make.wordpress.org/test/2021/09/29/fse-program-testing-call-10-pattern-party/\">10th challenge</a> of the <a href=\"https://make.wordpress.org/core/2020/12/11/the-fse-outreach-program-is-officially-starting/\">Full Site Editing (FSE) Outreach program</a> &#8211; “<a href=\"https://make.wordpress.org/test/2021/09/29/fse-program-testing-call-10-pattern-party/\">Pattern Party</a>”. Check out the <a href=\"https://make.wordpress.org/test/2021/09/29/fse-program-testing-call-10-pattern-party/\">announcement post</a> for testing instructions and join the fun in the <a href=\"https://wordpress.slack.com/archives/C015GUFFC00\">#fse-outreach-experiment</a> Slack channel. Deadline: October 13, 2021</li><li>The Training Team is requesting feedback on:<ul><li><a href=\"https://make.wordpress.org/training/2021/09/27/proposal-ensuring-high-quality-video-contributions-to-learn-wordpress/\">Strategies to ensure high-quality video contributions for Learn WordPress</a>. Deadline: October 6, 2021</li><li><a href=\"https://make.wordpress.org/training/2021/08/10/proposal-learner-achievements-on-profiles/\">Learner achievements on profiles</a>: no current deadline</li></ul></li><li>Help the Test Team <a href=\"https://make.wordpress.org/test/2021/10/01/test-team-chat-summary-28-september-2021/\">reach out to extenders to check if their test suites are compatible with the modernization of the WordPress Core PHP Test Suites</a>. Information on what the changes mean and step-by-step instructions are available over in the following post: <a href=\"https://make.wordpress.org/core/2021/09/27/changes-to-the-wordpress-core-php-test-suite/\">Changes to the WordPress Core PHP Test Suite</a>.</li><li>The Polyglots Team is <a href=\"https://make.wordpress.org/polyglots/2021/09/19/how-to-handle-block-pattern-translations/\">exploring two different mechanisms on translating user-submitted block patterns</a>: GlotPress v/s forking patterns to locales and is requesting feedback from community members.</li></ul>\n\n\n\n<h2>WordPress Events updates</h2>\n\n\n\n<ul><li><a href=\"https://galicia.wordcamp.org/2021/\">WordCamp Galicia 2021</a> was held from September 30 &#8211; October 2, 2021 and <a href=\"https://us.wordcamp.org/2021/\">WordCamp US 2021</a> ran on October 1.</li><li>Don’t miss these upcoming WordCamps: <a href=\"https://nicaragua.wordcamp.org/2021/\">WordCamp Nicaragua 2021</a> (October 8-9, 2021) and <a href=\"https://italia.wordcamp.org/2021/\">WordCamp Italia 2021</a> (October 22-23, 2021) </li><li>The Diverse Speakers Training group (<a href=\"https://make.wordpress.org/community/tag/wpdiversity/\">#WPDiversity</a>) of the Community Team organized an <a href=\"https://make.wordpress.org/community/2021/09/15/wpdiversity-events-in-september-attention-india/\">allyship workshop, along with dedicated workshops focused on India in September</a>.</li><li>The Test Team organized a <a href=\"https://make.wordpress.org/test/2021/09/17/hallway-hangout-discussion-on-adoption-pathways-for-full-site-editing-16-september/\">Hallway Hangout on adoption pathways for Full Site Editing</a> where attendees mentioned how they use FSE and shared ideas for improvement. </li></ul>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further reading</h2>\n\n\n\n<ul><li>The Hosting Team recommended that all web hosts <a href=\"https://make.wordpress.org/hosting/2021/09/15/wordpress-5-8-1-security-release-is-time-sensitive/\">test and push the WordPress 5.8.1 security update through to their users</a> as soon as possible.</li><li>The Training Team <a href=\"https://make.wordpress.org/training/2021/09/21/should-learn-wordpress-contributors-be-gpl-compliant/\">clarified GPL compliance guidelines</a> for Learn WordPress contributions, and the <a href=\"https://learn.wordpress.org/meta/handbook/workshops/eligibility-of-workshop-presenters/\">guidelines for workshop presenters are available in the handbook</a>.</li><li>The codebase for Openverse, a search engine for openly-licensed media,&nbsp; i<a href=\"https://make.wordpress.org/openverse/2021/09/03/call-for-translations-i18n-in-openverse/\">s now available for translation</a>.</li><li>The Core Team implemented a <a href=\"https://make.wordpress.org/core/2021/09/28/implementing-a-webfonts-api-in-wordpress-core/\">Webfonts API in WordPress core</a> for simplifying the process of enqueuing external fonts on WordPress sites.&nbsp;</li><li>The Test Team rescheduled <a href=\"https://make.wordpress.org/test/2021/09/23/5-9-end-to-end-e2e-working-strategy-session-agenda-for-29-sep-2021/\">the End-to-End (e2e) Test working strategy session</a> to October 6. More details <a href=\"https://make.wordpress.org/test/2021/09/23/5-9-end-to-end-e2e-working-strategy-session-agenda-for-29-sep-2021/\">in the announcement post</a>.</li></ul>\n\n\n\n<p><em>Have a story that we could include in the next ‘Month in WordPress’ post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.&nbsp;</em></p>\n\n\n\n<p><em>The following folks contributed to September’s Month in WordPress: <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/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>, <a href=\'https://profiles.wordpress.org/harishanker/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>harishanker</a>, <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>, and <a href=\'https://profiles.wordpress.org/tobifjellner/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>tobifjellner</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:\"11327\";s: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:55:\"\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:66:\"WP Briefing: Episode 17: WordPressing Your Way to Digital Literacy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/10/episode-17-wordpressing-your-way-to-digital-literacy/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Oct 2021 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=11316\";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:400:\"In episode 17 of the WordPress Briefing, Josepha Haden Chomphosy reflects on her WordCamp US keynote and digs into how participating in open source projects can help you learn 21st Century Skills.&#160; Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Editor:&#160;Dustin Hartzler Logo:&#160;Beatriz [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/09/WP-Briefing-017.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:29421:\"\n<p>In episode 17 of the WordPress Briefing, Josepha Haden Chomphosy reflects on her WordCamp US keynote and digs into how participating in open source projects can help you learn 21st Century Skills.&nbsp;</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<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<p><a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\">WordPress 5.9 Planning</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/08/13/preliminary-road-to-5-9/\">5.9 Target Features</a></p>\n\n\n\n<p><a href=\"https://us.wordcamp.org/2021/\">WordCamp US 2021</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-11316\"></span>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. See, here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:42</p>\n\n\n\n<p>Today I want to talk to you a little bit about the digital divide, where it is, maybe a bit of where it&#8217;s headed, and which parts of the WordPress open source project and CMS can help. This is a focused look, though, so I won&#8217;t touch on some of the hurdles that everyone is aware of when you get outside of in-person environments, things like parental modeling or supervision, education on the relevance of technology, etc. This is a follow-up to the conversation that I had at WordCamp US last week—and so doing a little bit of a deeper dive here. And we&#8217;re gonna start with what exactly is the digital divide.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:23</p>\n\n\n\n<p>So the digital divide is considered those who benefit from the digital age versus those who don&#8217;t; that feels like a really big concept. And the current discussion is primarily about access, or for years that has been about access anyway, especially physical access. So those who have computers versus those who do not have internet in their homes versus those who do not. But I don&#8217;t necessarily agree with that particular, really focused definition of the problem.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:59</p>\n\n\n\n<p>If the only problem we see is access, then the solution becomes to get cheap devices and internet to everyone, which certainly has led to more people being connected than ever before.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:12</p>\n\n\n\n<p>With this proliferation of devices that are considered both smart and mobile (mobile in this context, meaning handheld or pocket-sized), the discussion over the last few years has been shifting. It’s been shifting into more of a discussion around the education around the relevance of internet access, discussions around the quality of access to the Internet, and also discussions around Wi-Fi and dial-up and the surprising cost of data.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:42</p>\n\n\n\n<p>But from my perspective, there are a number of really dangerous assumptions that we make when we boil it all the way down to who has access and the quality of that kind of access.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:54</p>\n\n\n\n<p>The first dangerous assumption is that we run the risk of conflating being tech-savvy with being digitally literate, and they&#8217;re not really the same things. The second assumption that we run the risk of is assuming that access to cellular data equals access to the internet through any other means. And also assuming that cost is always the determining factor.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:19</p>\n\n\n\n<p>And the final fairly dangerous assumption that we&#8217;re making there is that we allow ourselves the ability to mark the digital divide is fixed in our minds. Once we get enough access to everyone, we&#8217;re just done. There is no more divide. But as a way of illustration, if you think about access, not in the context of technology, like high technology, digital technology, and in the context of like writing, you probably own a writing utensil, and you probably have access to paper of some sort, which is great. But just because you have like a pencil and a piece of paper doesn&#8217;t mean that I can send you home right now &#8211; I guess most of you are listening at home.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:07</p>\n\n\n\n<p>It doesn&#8217;t mean that I can send you to your desk right now. And consider you prepared to write a best-selling novel, right? Because giving you physical tools no more makes you a novelist than handing me a computer when I was a teen made me digitally literate.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:24</p>\n\n\n\n<p>So let&#8217;s talk about what it takes to be digitally literate. I&#8217;ve lumped the following skills into three groups. It&#8217;s broadly defined as 21st-century skills, but the groups that I have them in is not a comprehensive list of those 21st-century skills.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:41</p>\n\n\n\n<p>The first group that is a large component of digital literacy is critical thinking skills. So computational thinking and problem-solving. That particular one is not new, exactly. But the computational thinking part certainly is. Not all problems are solved with code, but the basis for thinking through things procedurally is increasingly important.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:04</p>\n\n\n\n<p>The second one in that set is communication through multiple media, consuming communications or content through Twitter, Instagram, Snapchat, or any other format, but also creating the things that communicate—writing blogs, creating videos, both calls and standalone, and forums, things like that.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:27</p>\n\n\n\n<p>The third set in that group of critical thinking skills is around collaboration, which some people will say is more about communication. But I find that collaboration both online and in-person is a skill set all to its own. Communication only gets you so far when you&#8217;re learning to cook to collaborate with people that you don&#8217;t normally work with. And so, I have lumped that into critical thinking skills.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:54</p>\n\n\n\n<p>The second big bucket for digital literacy is actually literally digital literacy. So I have three, three things in here as well. Evaluating information is obviously incredibly important in the environment that we&#8217;re in right now, for just information’s sake. But then things like understanding the differences between copyright versus copyleft licenses, understanding the difference between an .org ending URL and a .com ending URL, and evaluating the general veracity of sources that you&#8217;re finding on the web.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:32</p>\n\n\n\n<p>The second part of that group is media use and creation, understanding the difference between folks who consume and folks who create the content we have, how to find information online, and the most sensible places to keep information online. And the third area of digital literacy that I find to be vitally important is the ethics of licenses both around use and access. So again, things like copyright vs. Copy, copyleft. And specifically for WordPress, that means understanding things like the Creative Commons licenses, GPL, MIT, but then also copyright is its own complicated question unto itself. But the other things that show up for us for WordPress that show up for us with technology are also things like open access versus proprietary information and sources. And things like plagiarism versus sampling.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:33</p>\n\n\n\n<p>And our third big bucket, which has become increasingly complex, but the third big bucket for digital literacy to my mind is actually considered something that I call life skills. So things like self-direction, knowing what you want to do next, and how to get it done. Time management is also in there, knowing how much time something will take and being able to make sure that you are getting things done over time, as opposed to trying to accomplish everything at the last second.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:03</p>\n\n\n\n<p>A big part of these life skills is cross-cultural and social communication. The internet is tricky, right? Because it&#8217;s simultaneously incredibly insular and increasingly global. Like you can if you wanted only ever read things that already confirm your existing biases. But the very nature of the internet, the very nature of the web, means that the world is much smaller. We have more ready access faster to everyone everywhere in the world than we used to have. This means, of course, that cultural awareness is an absolute must now more than ever. This is for what it&#8217;s worth the time of year when I give this talk. And that&#8217;s because of this last part of the life skills section, which is digital citizenship.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:54</p>\n\n\n\n<p>Digital citizenship generally is the second week of October 2 or the third week of October. And it&#8217;s one of my favorite weeks because it is something that comes up all the time in our ecosystem. It comes up all the time and open source in general, but certainly for WordPress. So those are our three big buckets of digital literacy, a subset of 21st-century skills as a whole.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>09:22</p>\n\n\n\n<p>That&#8217;s a lot of stuff, I know. And it&#8217;s also really hard to figure out how you can learn any of those skills, and from my experience, I really believe that WordPress as an open source project can help people learn those things.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>09:43</p>\n\n\n\n<p>Once upon a time, ages and ages ago, my mother told me that in order for me to become a better writer, I would have to read and in order to become a better communicator, it would probably help if I spent a little bit more time writing, and I have always felt that the same must be true for all the things that we learn, you find a positive example and study it to become better. Or, depending on what you&#8217;re learning and how you&#8217;re trying to learn it, you find a passive example of something that you want to be able to do better from an active standpoint and participate in that so that your active production of the other part is better.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>10:24</p>\n\n\n\n<p>Here are a few parts of the WordPress project and WordPress itself that can help with this.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>10:31</p>\n\n\n\n<p>So there are first a few really specific teams; if you&#8217;re contributing to a team like Themes, or Plugins, or Core, the three areas of those digital literacy skills that you have an opportunity to learn there. For critical thinking, you&#8217;re going to run into problem-solving and computational thinking. You’re also going to run into distributed collaboration, which was really important as just a concept when I first wrote this talk. And now it is currently really important as a reality because we have a bunch of companies that are going to either remote work or partially distributed or fully distributed. And that&#8217;s the way that WordPress has worked for a pretty long time.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>11:19</p>\n\n\n\n<p>So I&#8217;ve always felt like it was important because it was important to WordPress, but it&#8217;s also becoming increasingly an important part of just how to exist in the world at the moment. For those three teams, the things that you can really tap into and practice for the life skill section are digital literacy, nope, digital citizenship, self-direction, and time management obviously comes up in any open source project because you are volunteering your time and it is up to you to kind of decide how much you can commit or not various other parts of time management and directing one&#8217;s own project. Now, but you also get the opportunity to test and practice your cross-cultural communication, social communication and learning what it means to collaborate across cultures in that way.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:15</p>\n\n\n\n<p>On the digital literacy side, you also get a little bit of that information evaluation and synthesis for what it&#8217;s worth. And then obviously get to learn more about the ethics of various types of licenses and how use and access relate to those things.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:35</p>\n\n\n\n<p>We also have a team or two; these are not really teams or twos. These are things that you can do that are either solo activities or group activities. One is working or checking out the support forums, and the other is blogging. We’ll start with support forums.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:52</p>\n\n\n\n<p>If you&#8217;re doing this as a group activity, there are a couple of extra things that that you can practice here. But suppose you&#8217;re doing it as a solo, just way to give back to the project sort of thing or way to learn some of these skills sort of thing. In that case, you can get almost all of these digital literacy skills woven into working in the support forums, depending on what&#8217;s happening in the moment and the questions people have brought up. But for critical thinking, obviously, you get some problem solving in there, not as much the computational thinking as the procedural thinking part. But you certainly also get to tap into communication with multiple types of media, collaboration in person and online, depending on whether you&#8217;re doing this as a solo effort or a group effort. And then, of course, research, which I didn&#8217;t really bring up in any of those groupings for digital literacy, is certainly a very important part of it.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>13:49</p>\n\n\n\n<p>For the digital literacy grouping of skills related to digital literacy, you get to work on evaluating information and, depending on how complicated an answer might be. You can also get that opportunity to practice synthesizing complex information and research, a digital literacy skill. And then, once people have responded to a topic you&#8217;ve answered, you also get to tap into that life skill section. You get to be you get the opportunity to practice digital citizenship related to synchronous or asynchronous conversation. You also get to see more about how cross-cultural communication and collaboration works and social communication across those various boundaries that naturally show up when we&#8217;re working across cultures that way. And as I mentioned previously, information synthesis, as well.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>14:53</p>\n\n\n\n<p>The second one that I have mentioned can be like a solo effort or a group effort, depending on what you do. Blogging, for most people who use WordPress, is probably the most common application of how WordPress can help you do stuff. So I often see it as the most relevant and the most immediately accessible to anyone. But you know, you got to meet people where they are. So, I would strongly believe that this is our best way to help people learn these things.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>15:30</p>\n\n\n\n<p>So blogging for the critical thinking sorts of things, you have an opportunity to practice communication across mediums. You will probably get an opportunity to practice your research skills, chances are, you&#8217;re going to get the opportunity to practice some problem solving, and honestly, like if you&#8217;re hosting your site, problem-solving is going to come up when using WordPress as soon as you add in plugins and themes, because you sometimes kind of have to figure out what&#8217;s working and what&#8217;s not, and what&#8217;s playing nicely with other things and what&#8217;s not. It&#8217;s possible that with blogging, you&#8217;re also going to have an opportunity to get to practice some distributed collaboration. But that&#8217;s probably going to depend on what you&#8217;re doing with your site as well.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>16:30</p>\n\n\n\n<p>Licenses and how they apply to the thing that you&#8217;re using feel a bit different when you are the one who&#8217;s creating. And so learning about how those things work and don&#8217;t work and how they can best suit what you&#8217;re trying to do. Blogging is absolutely an excellent opportunity to dig into that a bit and learn a bit more about that. As far as your life skills go,</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>16:56</p>\n\n\n\n<p>that&#8217;s where you, again, get to practice some digital citizenship by figuring out who your audiences are and also when you have to communicate with them via the comments or any other way that you have built up a feedback mechanism there.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>17:11</p>\n\n\n\n<p>Self-direction obviously will come into this, maybe time management if you are blogging on, I was gonna say on a paid basis, but that&#8217;s not really I don&#8217;t know, on a project basis, like some of us are students and have to write things based on deadlines. And so, you know, self-direction, potentially time management, always cross-cultural communication, social communication, research, all of these things show up in there.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>17:41</p>\n\n\n\n<p>And, you know, I really believe in this concept of how blogging and bringing people into maintaining a website can teach you all of these skills. Because when I was younger, I was a bad communicator. And now, I am across the board known for my effective communication and my ability to work across cultures. And so the defining moment, which was like a four-year moment, and so not necessarily a moment, but the thing that really made all the difference was when my mom challenged me to write every single day. She had noted that I was not necessarily great at getting from one point to the next. I wasn&#8217;t necessarily great at building my arguments when I had to explain something to people. And she suggested that writing every day would help me tap into this big thing about communication and working with other people collaboration, all of that. And as an adult on the other side of it. Like, I thought she was super wrong when I was younger, because don&#8217;t we all think our parents are wrong when we&#8217;re younger. But as an adult on the other side of it, not only was that an opportunity for me to literally learn how to communicate better. But it also, when I look at it, gave me access to opportunities to practice all sorts of 21st-century skills and digital literacy skills in an environment that was relatively safe. And so, I am a big proponent of this particular one.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>19:26</p>\n\n\n\n<p>Another team that helps us tap into and practice a lot of our digital literacy skills is the Documentation team. I recommend that you let this be a supervised activity if you&#8217;re doing this with students because, you know, it&#8217;s a wiki. You can put weird things in there on accident or just inaccurate things. So for critical thinking, the primary skill that you&#8217;re going to be able to practice if you&#8217;re working on documentation is collaboration. You would think that it was also like information synthesis and information evaluation. But for a lot of the work that we&#8217;re doing, the documentation exists. And what we&#8217;re looking at is trying to figure out where it no longer matches what is currently in the CMS, or currently in the project or currently in the team, whatever it is that you&#8217;re working on at that moment. And so, it&#8217;s a strong collaborative effort in the WordPress project. You have to have done the general work to figure out what needs to be changed in the documentation. But a lot of times, you need to figure out who has access to make the changes, what has prevented us from making changes in the past, and things like that. And so I say, collaboration is the only one to learn and critical thinking, but it&#8217;s actually a really big one and can take a fair amount of effort in this particular context.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>20:49</p>\n\n\n\n<p>From the digital literacy aspect, of course, there is evaluating information. But this particular type of information evaluation is a little different for documentation. And this actually is true for the Documentation team, for the Training team, and also for the new Learn team. This question is true for all of them. There is a huge difference between presentation versus application of information. The way you present information for people who already know it and just need confirmation of something or are using it for reference material is really different from when people are looking at a piece of documentation that should be telling them how to accomplish something. And they try to apply it either to their own processes at the moment or apply it to teaching other people. And so evaluating information to make sure that what is presented can be applied, and all of the ways that that very complicated journey with managing information can kind of work or not, depending on how things are going in your section of the open source project at the moment.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>21:59</p>\n\n\n\n<p>The third group of skills that you can really dig into in those teams, again, is digital citizenship, basically, everything is digital citizenship in WordPress because we&#8217;re just people online.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>22:24</p>\n\n\n\n<p>And this final grouping that we have this final team and group of skills. So the Community team is a substantial and far-ranging team; they have many things that fall into their area of expertise. And so this has traditionally kind of functioned as a linchpin around education and ensuring that that was all relevant for users and attendees of events. The Community team will remain pivotal to so many things that we do now. But now that we have really awakened the Learn team and re-enlivened that Training team, this will shift a little over time. But yes, so that grain of salt that depending on when you listen to this, if you listen to it in 2050, maybe it&#8217;s not accurate anymore. Hopefully, most of what I say is not accurate in 2050. But you know, still.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>23:27</p>\n\n\n\n<p>&nbsp;Anyway! Critical thinking that&#8217;s where we were. So the critical thinking group of skills inside the Community team, you are going to have an opportunity to practice problem-solving. And frequently also procedural thinking, depending on what you&#8217;re working on in that team. Multimedia communication is absolutely true. And that&#8217;s true, whether you contribute to the team itself and make sure that the team is functioning and doing their basic tasks. Or if you are organizing an entire event, whether it&#8217;s online or offline or however that is being accomplished.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>24:07</p>\n\n\n\n<p>Multimedia communication for this particular team is constant for all of their work and something that everyone who works on there gets to practice all the time. For digital literacy, this comes up a lot if what you&#8217;re doing is working through any sort of like programming plans, making sure that what we have in place for events is really excellent. It&#8217;s a really excellent opportunity for practicing the evaluation of information, learning more about media use and creation, and then naturally, everything to do with licenses copyright copyleft, not only for everything that we produce but then also for everyone in the ecosystem.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>24:55</p>\n\n\n\n<p>This team helps so many plugins, authors and theme developers, and other groups who participate in the ecosystem understand the nuances of the GPL and why it matters so much to WordPress. And then in the life skill section, there&#8217;s the obvious life skill section, life skills that have come up for all of them—so digital citizenship, cross-cultural and social communication. But also you have the opportunity to tap into that self-direction and time management practice, which probably should also be considered in all of these teams. But, you know, things change as we go.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>25:45</p>\n\n\n\n<p>Those are the most likely digital literacy skills that you would end up practicing in the Community team, depending on how you are participating in the Community team at that moment.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>25:59</p>\n\n\n\n<p>So I said that we would talk a little bit about where this is all headed and what to do next. And like I just said, when I got lost in my own reverie, they&#8217;re like, hopefully, everything that I&#8217;ve shared here is out of date by 2050. Like, if we can come back to this particular podcast, or this presentation, or anything I&#8217;ve ever said, about digital literacy over my time with WordPress. And if we could come back to that in 2050, or, you know, I was going to say, 20 years from now, 2041 feels really close. But, you know, come back to it in the future, and say, that was all really excellent information to know at the moment. And we did do those things. And now, WordPress has proven that open source contribution and collaboration can teach all of the necessary 21st-century skills that anyone would need to survive in the world. And we did do it, that would be really cool. But I don&#8217;t think that that&#8217;s where we&#8217;re headed. Not because I don&#8217;t think people believe in what I&#8217;m saying or care about what I&#8217;m saying. But because it&#8217;s very easy to kind of let these things go at some point.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>27:20</p>\n\n\n\n<p>Even if you at some point, were proficient in all of what is considered 21st-century skills, sometimes our skills don&#8217;t get used very much. And so we lose track of them. And we don&#8217;t know, or we don&#8217;t know how to teach them to other people and various ways to do that. So I hope that when we revisit this in the time capsule of the internet 20 years from now, we can say that was a great explanation. And we learned so much. And we made so many changes in such progress that now we need a new version of this. That&#8217;s really all we can do, always striving to leave the world in a better position than when we found it.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>28:07</p>\n\n\n\n<p>All right, that brings us to our small list of big things. I don&#8217;t have a ton to share with you today. But what I do have to share with you is a really big deal. So we are about a week away from the Go/No-Go point of WordPress 5.9. That is the final release of the year. And as soon as we know what is a go or a no go from that meeting on October 12th,&nbsp; everyone is going just to hit the ground running. And so, if you are interested in contributing to that release, either by being a participant in the release squad or leading some part of the release squad. Absolutely. Drop by and let me know because I am interested to know who wants to learn more about doing that. And this is actually something that has gone by. I mentioned at the top that I spoke at WordCamp US.&nbsp; That is still true; I did do it. And so did a bunch of other really excellent presenters. If you missed WordCamp US on Friday, for whatever reason, because you know, life is complicated. Pretty soon, we will have the videos. We&#8217;ll have all the videos up with captions quickly and have those available for everyone to watch and learn more from as their schedule allows and as their attention allows. And that is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphos, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11316\";s: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: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:\"People of WordPress: Yordan Soares\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2021/09/people-of-wordpress-yordan-soares/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Sep 2021 13:14:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s: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: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:16:\"wptranslationday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=11279\";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:160:\"To coincide with International Translation Day, we feature the story of a WordPress developer and translator Yordan Soares from South America. #ContributorStory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:14398:\"\n<p>In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people&#8217;s lives for the better. This month we feature a South American WordPress developer and community translator on how it brought him a freelance career.</p>\n\n\n\n<p><strong>To coincide with International Translation Day and the final day of the <a href=\"https://wptranslationday.org/\">2021 WordPress Translation celebration</a>, we feature the story of a WordPresser who has made a major impact in the polyglots team. </strong></p>\n\n\n\n<h2>Beyond software, meeting the WordPress community</h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"600\" height=\"600\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/09/yordan-min-300x300@2x.jpg?resize=600{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C600&#038;ssl=1\" alt=\"Yordan Soares pictured in front of a bookcase packed with books\" class=\"wp-image-11299\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/09/yordan-min-300x300@2x.jpg?w=600&amp;ssl=1 600w, https://i2.wp.com/wordpress.org/news/files/2021/09/yordan-min-300x300@2x.jpg?resize=300{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C300&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/09/yordan-min-300x300@2x.jpg?resize=150{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C150&amp;ssl=1 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>For Yordan Soares, finding WordPress also meant discovering friends, community, and opportunities. He had not expected to find a whole global movement behind the web development software.</p>\n\n\n\n<p>Yordan, who is from Venezuela, South America, said: “The first time I used WordPress, I had no idea what was going on behind the software or beyond it. I knew there was someone making it all work, but I couldn’t even remotely imagine all the people who were making WordPress not just a tool for developing websites, but a whole movement that comes together to share, build, and help make the world better.”<br></p>\n\n\n\n<h2>Turning your hobby into your job</h2>\n\n\n\n<p>Initially, Yordan earned his income from computer technical support and installing networks for small and medium-sized businesses. Back in 2005, web development and code-writing was just a hobby. When he discovered the concept of CSS and how it could make everything dynamic. This opened up a whole new career pathway for him.</p>\n\n\n\n<p>In 2010, an introduction to WordPress through a friend opened up a future he had not imagined. He stopped using any other content management system (CMS) and wanted to explore how much he could do with the platform.</p>\n\n\n\n<p>Three years later in 2013, he was able to take his WordPress journey further by starting a small advertising agency with some of his friends. During this time, they crafted commercials for local radio and TV stations. Through WordPress, they found it easy to build more than 15 websites for businesses in a market that previously had not valued the importance of having an online presence.</p>\n\n\n\n<p>He said: “We were working for almost four years until at the end of 2017 the economic crisis in Venezuela became too acute, and we decided to close the agency when we stopped making profits. Taking stock of that period, I think we changed the way merchants saw the Internet business in the city.”</p>\n\n\n\n<h2>Working full time as a freelancer</h2>\n\n\n\n<p>One year on in 2018, Yordan began to freelance full-time as a web developer. His first clients were primarily agencies and friends who had emigrated to other countries. Later, he expanded into freelance marketplaces.</p>\n\n\n\n<p>At that time, getting started as a freelancer was quite a challenging task in Venezuela. The first hindrance was getting a fair level of recompense. Additionally, the deteriorating conditions in the country with constant blackouts and internet connection failures complicated matters.</p>\n\n\n\n<p>At the time, Yordan was living in Guarenas, where the situation was relatively better. He managed to get a reasonably uninterrupted electricity supply with adequate internet speed, which was just good enough to complete his projects.</p>\n\n\n\n<h2>Meeting the WordPress community</h2>\n\n\n\n<p>“Surely if I hadn’t met the community, I would have continued to work on my own, like a lone wolf, doing the ordinary work of solving problems for occasional customers and paying my bills,” he said.</p>\n\n\n\n<p>Living in Guarenas, Yordan began to experience stability in his career and made new friends and contacts. He began looking for co-working spaces or technology communities nearby, and that’s when he met the WordPress community in Caracas.</p>\n\n\n\n<p>He quickly signed up for the first face-to-face event. As soon as the event concluded, he went to talk to the co-organizer and offered his help. He was inspired to help with designing promotional pieces, managing social networks, and organizing events.</p>\n\n\n\n<p>Through such events, he met and connected with several people living in nearby cities.</p>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\" style=\"grid-template-columns:32{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} auto\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" width=\"120\" height=\"300\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/09/WP_Guarenas-Guatire-120x300-1-120x300.png?resize=120{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C300&#038;ssl=1\" alt=\"WordPress Guarenas-Guatire Meetup logo \" class=\"wp-image-11300 size-medium\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/09/WP_Guarenas-Guatire-120x300-1.png?resize=120{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C300&amp;ssl=1 120w, https://i0.wp.com/wordpress.org/news/files/2021/09/WP_Guarenas-Guatire-120x300-1.png?w=240&amp;ssl=1 240w\" sizes=\"(max-width: 120px) 100vw, 120px\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-normal-font-size\"> A few months later, with other WordPress users in the area, the idea emerged to start a new Guarenas-Guatire meetup group. The idea became a reality by December 2019, when they applied to the WordPress community team. </p>\n\n\n\n<p>Once the final approvals came in, the team started scheduling the activities. The <a href=\"https://www.meetup.com/wordpress-meetup-guarenas-guatire/\">WordPress Guarenas-Guatire Meetup</a> was officially recognized!</p>\n\n\n\n<p>During the first quarter of 2020, just before the pandemic, Yordan and colleagues organized five face-to-face events. With the worldwide lockdown, in-person community engagements came to a halt. However, the Guarenas-Guatire community was eager to continue meeting.</p>\n</div></div>\n\n\n\n<p>To keep the community active and motivated, and with the support of sponsors, they started organizing online events under a format called “WordPress a la medianoche” (WordPress at midnight).</p>\n\n\n\n<p>The format of these events was inspired by Alexis Arnal, who suggested meeting at midnight to make the most of the internet speed that would usually improve somewhat after that time!</p>\n\n\n\n<p>At the time of writing, Yordan and the team have organized 16 WordPress a la medianoche events with an attendance of up to 50 people per online gathering. An impressive audience which enabled a comparatively small meetup to keep communications flowing at a difficult and unprecedented time.</p>\n\n\n\n<p>One positive of such events, is an opportunity to invite people from other countries and run sessions in partnership with others. An example was a special translation event with Javier Esteban, a member of the translation team from Spain. The meetup also invited contributors from Mexico, Costa Rica, Peru, and Colombia who were happy to participate.</p>\n\n\n\n<h2>Strengthened by the community</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"241\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/09/wp-translation-2020.jpg?resize=632{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C241&#038;ssl=1\" alt=\"Screenshot from the WordPress Translation Day 2020 events streamed on YouTube featuring Yordan\" class=\"wp-image-11307\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/09/wp-translation-2020.jpg?resize=1024{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C390&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/09/wp-translation-2020.jpg?resize=300{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C114&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/09/wp-translation-2020.jpg?resize=768{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C292&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/09/wp-translation-2020.jpg?resize=1536{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C585&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/09/wp-translation-2020.jpg?w=1889&amp;ssl=1 1889w, https://i1.wp.com/wordpress.org/news/files/2021/09/wp-translation-2020.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>Yordan (pictured bottom left) speaking at the WordPress Translation Day 2020 events</figcaption></figure>\n\n\n\n<p>Yordan believes that he would have continued to work on his own had he not met the WordPress community.</p>\n\n\n\n<p>He said: &#8220;Fortunately, this was not the case and I have been able to live a lot of transforming experiences that have shown me the meaning of the words &#8216;community&#8217; and &#8216;volunteerism&#8217;.&#8221;</p>\n\n\n\n<p>Yordan felt empowered by the community and it led him to volunteer for many other roles and activities, including Locale Manager for <a href=\"https://translate.wordpress.org/locale/es-ve/\">Spanish Venezuela</a>, a moderator for <a href=\"https://make.wordpress.org/tv/\">WordPress.tv</a>, and as a <a href=\"https://make.wordpress.org/support/\">support</a> contributor in the forums helping people with technical issues. He has also developed free plugins for the official WordPress directory and <a href=\"https://wordpress.tv/speakers/yordan-soares/\">spoken at community events</a> including <a href=\"https://spain.wordcamp.org/2020/session/actualizaciones-automaticas-para-tus-plugins-y-temas-personalizados/\">WordCamp Spain 2020</a>.  </p>\n\n\n\n<p>All this has a boomerang effect, Yordan explains. These experiences helped him grow personally and professionally, as it’s always rewarding to know that you’ve helped improve the WordPress ecosystem.</p>\n\n\n\n<p>He also likes being able to directly help people when they need it and feels it is a two-way learning process.</p>\n\n\n\n<p>&#8220;At first, when I told my family and friends about the community and the work I was doing, they would ask me &#8216;what do you get in return?&#8217; Perhaps they expected me to tell them a specific amount of money, but the answer is more complex,&#8221; he said.</p>\n\n\n\n<p>&#8220;It’s rewarding to know that you’ve helped improve the WordPress ecosystem, the tool you use to work and put food on the table.&#8221;</p>\n\n\n\n<p>During his journey, Yordan has met many wonderful people with common interests and values, and the best part is that many of these people are now his friends, business partners, or customers.</p>\n\n\n\n<p>At the same time, he has learned new skills and gained experience, which have given him a significant confidence boost in facing difficult situations that may come in life.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"332\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/10/special-acknowledgement-yordansoares.png?resize=632{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C332&#038;ssl=1\" alt=\"Polyglots special appreciation poster featuring Yordan Soares. \" class=\"wp-image-11320\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/10/special-acknowledgement-yordansoares.png?resize=1024{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C538&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/10/special-acknowledgement-yordansoares.png?resize=300{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C158&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/10/special-acknowledgement-yordansoares.png?resize=768{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C403&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/10/special-acknowledgement-yordansoares.png?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>As part of the <a href=\"https://wordpress.org/news/2021/09/join-us-for-wordpress-translation-day-global-events-in-september-2021/\">WordPress Translation Day 2021</a> celebrations, Yordan was nominated for his contribution to the work of the Polyglots Team translating WordPress. The full nominations list and stories will be published in October and November on the <a href=\"https://wptranslationday.org/\">WordPress Translation Day website</a>. </p>\n\n\n\n<h2>Share the stories</h2>\n\n\n\n<p>Help us share these stories of open source contributors and continue to grow the community.&nbsp;Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series.</a>&nbsp;#ContributorStory.</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>), Larissa Murillo (<a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>), Maedah Batool (<a href=\'https://profiles.wordpress.org/maedahbatool/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>maedahbatool</a>), Chloé Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), and Nalini (<a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>) for work on this story. Thank you to Yordan Soares (<a href=\'https://profiles.wordpress.org/yordansoares/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>yordansoares</a>) for sharing his Contributor Story, and to Josepha Haden Chomphosy (<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 series. The WordPress Guarenas-Guatire logo on this page was designed by <a href=\"https://profiles.wordpress.org/bragnieljimenez/\">Bragniel Jimenez</a>. </p>\n\n\n\n<p><em>This People of WordPress feature is inspired by an article originally published on <a href=\"https://heropress.com/\">HeroPress.com</a>, a community initiative created by Topher DeRosia. The initiative highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard. </em>#HeroPress</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:\"11279\";s: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:65:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Upcoming Gallery Block improvements\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/09/upcoming-gallery-block-improvements/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Sep 2021 15:36: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:\"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: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:2;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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11258\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"Thanks to @javiarce &#38; @annezazu for design and copy contributions. An exciting update to the Gallery Block gives you more ways to show off images in your posts and pages. While this change won’t be available for most folks until WordPress 5.9’s launch in December, we wanted to share some of what’s to come to [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:49:\"https://wordpress.org/news/files/2021/09/Main.mp4\";s:6:\"length\";s:8:\"16081214\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:56:\"https://wordpress.org/news/files/2021/09/Drag-_-Drop.mp4\";s:6:\"length\";s:7:\"1557447\";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:13:\"Kelly Hoffman\";s: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:2589:\"\n<p><em>Thanks to <a href=\'https://profiles.wordpress.org/javiarce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>javiarce</a> &amp; <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a> for design and copy contributions.</em></p>\n\n\n\n<figure class=\"wp-block-video\"><video autoplay controls loop src=\"https://wordpress.org/news/files/2021/09/Main.mp4\"></video></figure>\n\n\n\n<p>An exciting update to the Gallery Block gives you more ways to show off images in your posts and pages. While this change won’t be available for most folks until WordPress 5.9’s launch in December, we wanted to share some of what’s to come to get you excited about the future.</p>\n\n\n\n<h2>Style individual images</h2>\n\n\n\n<p>You can now use the same tools that are available for individual image blocks on <em>each</em> image in the Gallery Block! This added flexibility means you can do more customization &#8211; from adding links to each individual image, inline cropping to edit on the fly, apply unique styles for more visually compelling images, and apply an array of duotone filters.</p>\n\n\n\n<h2>Add custom styles</h2>\n\n\n\n<p>For more advanced folks who like to go a bit deeper in their customizations, you now have the option to add custom CSS styles per image. This is thanks to the ability to assign CSS classes to each image.</p>\n\n\n\n<h2>More accessible and intuitive&nbsp;</h2>\n\n\n\n<p>With this change comes the benefit of improved keyboard navigation and the ability to add alt text right within the block sidebar. You can also drag and drop to rearrange images.</p>\n\n\n\n<figure class=\"wp-block-video\"><video autoplay controls loop src=\"https://wordpress.org/news/files/2021/09/Drag-_-Drop.mp4\"></video></figure>\n\n\n\n<h2>Next steps</h2>\n\n\n\n<p>This will be available in December with the release of WordPress 5.9. You can check it out now if you’re using the Gutenberg plugin on any of your sites. Read more about <a href=\"https://wordpress.org/news/2021/04/become-an-early-adopter-with-the-gutenberg-plugin/\">becoming an early adopter</a> if you’d like to get ahead.</p>\n\n\n\n<p>If you’re a plugin or theme author who has built upon the Gallery Block functionality,<a href=\"https://make.wordpress.org/core/2021/08/20/gallery-block-refactor-dev-note/\"> be sure to check out this Dev Note detailing what steps need to be taken for compatibility</a> since this is a breaking change.</p>\n\n\n\n<p>We’re excited to see the new galleries that these options open up and what ideas you have to make creating galleries even better.</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:\"11258\";s: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:58:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WP Briefing: Episode 16: A Sneak Peek at WordPress 5.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2021/09/episode-16-a-sneak-peek-at-wordpress-5-9/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Sep 2021 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:1:{i:0;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=11248\";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:423:\"In addition to this episode’s small list of big things, Josepha Haden Chomphosy reviews the upcoming 5.9 WordPress release and its Full Site Editing features. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Editor:&#160;Dustin Hartzler Logo:&#160;Beatriz Fialho Production:&#160;Chloé Bringmann Song: Fearless First by [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/09/WP-Briefing-016.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:11753:\"\n<p>In addition to this episode’s small list of big things, Josepha Haden Chomphosy reviews the upcoming 5.9 WordPress release and its Full Site Editing features.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<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<p><a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\">WordPress 5.9 Planning&nbsp;</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/08/13/preliminary-road-to-5-9/\">5.9 Target Features</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/08/20/gallery-block-refactor-dev-note/\">Gallery Block Refactor Dev Notes</a></p>\n\n\n\n<p><a href=\"https://en.wikipedia.org/wiki/The_Cathedral_and_the_Bazaar\">The Cathedral and the Bazaar, 19 Lessons of Open Source</a></p>\n\n\n\n<p><a href=\"https://wptranslationday.org/\">WordPress Translation Day</a></p>\n\n\n\n<p><a href=\"https://us.wordcamp.org/2021/\">WordCamp US 2021</a></p>\n\n\n\n<p><a href=\"https://andreamiddleton.blog/2021/09/07/letters-to-an-open-source-contributor/\">Letters to an open source contributor, by Andrea Middleton</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-11248\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>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 the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Joseph Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:40</p>\n\n\n\n<p>Today I&#8217;m going to take you through a quick look at the final WordPress release of 2021. It will be WordPress 5.9. And there will be a ton of things in it, including a fresh new default theme. And there are a few things that you need to know about it right now. The target release date is December 14, 2021, which means some of our milestones happen around Thanksgiving in the US. And a few significant commercial dates globally, days, like Giving Tuesday and Black Friday, etc. I&#8217;ll include a link to the post with all the target dates in the show notes so that you can plan with those in mind. And also in the show notes. I&#8217;ll include a link to Matías Ventura&#8217;s post that includes the target features for the release. When you look at that post, you&#8217;ll notice that you can sort of group things into two big buckets. The two buckets that I grouped them into are themes plus tools, and also better tools.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:31</p>\n\n\n\n<p>So bucket number one themes and all their tools. Three things were important for me as I was reading through them. Number one is that there is a default theme. As of the time of this recording, I&#8217;ve seen the early concepts for the theme, and I love them. Hopefully, by the time this podcast is published, the post that showcases the look and feel will also be up on make.wordpress.org/design. If it is, I&#8217;ll include a link in the show notes to make it easy for everyone to reference.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:04</p>\n\n\n\n<p>The second thing is block themes in general. So WordPress 5.8 brought to core WordPress a lot of the infrastructure needed to create block themes. And in this release in WordPress 5.9, much of that infrastructure will be made available for folks who don&#8217;t always feel comfortable working in the code. That&#8217;s mostly UX and UI changes. So user experience and user interface changes are based on user feedback that we&#8217;ve gathered over the last six to eight months. But it also will include the long-awaited navigation block.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:37</p>\n\n\n\n<p>The third thing that shows up for me in this first bucket, in the themes and all their tools bucket, is the UX and interface for theme.json. The user interface that we&#8217;re making available for theme.json is a major step forward in this project has been referred to as global styles for a few years. And it kind of is what it sounds like on the box, a way for users to tap into that powerful management tool that we have built through theme.JSON.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:09</p>\n\n\n\n<p>Bucket number two, which I am calling publicly &#8220;tools for days.&#8221; But also, I refer to it as design tools, block tools, and pattern tools. I had this whole vision of a Wizard of Oz, “lions and tigers and bears. Oh my!” moment, but I couldn’t make it work. So “design tools and block tools and pattern tools Hoorah!” That&#8217;s as close as we&#8217;re getting. So that&#8217;s my first big number two bucket for you.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:37</p>\n\n\n\n<p>For most of these tools, the best way to describe it is quality of life improvements, lots of streamlining of what&#8217;s there, lots of building what&#8217;s not. But there&#8217;s one that&#8217;s substantial and worth digging into a bit more. And that&#8217;s the gallery block refactor. The dev note for this already exists. Like before we had the planning round-up post, the dev note was created. And so I will put a link to that in the show notes. But the headline is that this refactor will make the creation and maintenance of image blocks and the gallery block work the same way. If you are a theme or plugin developer, head on over to the dev notes that I have linked below and take some time to get familiar with it.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:20</p>\n\n\n\n<p>And then the final thing, which has a bunch of small things in it, but will make a huge impact for all of our users overall, is that we&#8217;re working on more intuitive and responsive tools on blocks. That has come up frequently in our user testing again over the last six to eight months. And we are going to chip away at that long list of needs that we have in those particular toolsets. And that&#8217;s it. So that&#8217;s a really big broad look at what we&#8217;re trying to get into the final release of the year.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:58</p>\n\n\n\n<p>I&nbsp; know that when I say like this is our hoped for stuff. This is our best guess at the moment. Sometimes it can feel like we should know that already &#8212; I should know already what&#8217;s going into the release. And on the one hand, yes, I believe in this list of things that we&#8217;re going to put into the release, I think they&#8217;re going to be good. But I always refer to it as like the hoped-for things, the things that are on the roadmap, our best targets, because I know that I don&#8217;t ever want to ship something that is going to be a worse experience for users. And so I always like to save the space to be able to remove a feature or remove an enhancement, a little bit closer to the time of the release, just to make sure that what we are offering is the best that we can offer. However, as it says right there in the 19 learnings of open source, “if there&#8217;s a bug, there&#8217;s a job,” right? There&#8217;s a lot of tolerance in open source software for shipping, slightly imperfect work. And that&#8217;s good. When we ship software that&#8217;s a little bit imperfect, it makes it clear how everyone can participate, how everyone could participate, if they could find this WordPress community that supports the CMS.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:20</p>\n\n\n\n<p>If you&#8217;ve never participated in a release and are interested in learning how it goes, you can always follow along on make.wordpress.org/core. And of course, we do a lot of our meetings in the making WordPress, community Slack, which you can find at chat.wordpress.org if you are not already in that particular instance.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:49</p>\n\n\n\n<p>That brings us now to our small list of big things. I have three things on my list for you. The first one is WP Translation day slash month. For folks who&#8217;ve been following along for a bit, you probably noticed that Translation Day has been going on all month long all of September so that we can have small individual local events and bring people into the process of translating WordPress and making WordPress more usable for more people, especially when they don&#8217;t necessarily speak English as their first language. It&#8217;s a wonderful event. There&#8217;s been Translation Day at the end of September for years. And this Translation Month is working its way up to that Translation Day; I will leave a link to the event page in the notes below. And I really encourage you to drop by.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:38</p>\n\n\n\n<p>The second thing is that WordCamp US is coming up on October 1. It is going to be a virtual event, as so many of our events are right now. Tickets are open. The schedule just got published last week. And so we have a good concept of who is talking about what while we&#8217;re there. I suggest you wander over to the schedule. Take a look at anything that might be inspirational to you or anyone who looks like they&#8217;re answering questions that you&#8217;ve had as you have been trying to build your WordPress business.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:08</p>\n\n\n\n<p>And then the third thing on my smallest of big things. Some of you may already be aware that <a href=\"https://profiles.wordpress.org/andreamiddleton/\">Andrea Middleton</a> has left the WordPress project. She has been an absolute fixture in the WordPress open source project for the last ten years. And while we will all miss her terribly, her work has been so influential and so foundational that we actually won&#8217;t really feel much like she&#8217;s gone. We will see the evidence of her work in everything she does and everything she has done while we build a better and more inclusive WordPress after her.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:47</p>\n\n\n\n<p>As a final love letter to the community, she published a series of things that she learned about contributing to open source and especially how to contribute to WordPress as an open source project. I&#8217;m going to link those in the show notes as well. For anyone who has worked with Andrea for a long time, when you read it, it will just remind you of her voice and will be like a nice warm, comforting hug as she heads on to her next endeavors. And for folks who have never worked with her before. It&#8217;s still really excellent information that I think translates into all areas of our work, especially right now as people are moving to distributed work and remote work a bit more. Now I encourage everyone to at least give one or two of them a read.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>09:38</p>\n\n\n\n<p>That, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11248\";s: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: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:69:\"Join us for WordPress Translation Day Global Events in September 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://wordpress.org/news/2021/09/join-us-for-wordpress-translation-day-global-events-in-september-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 16 Sep 2021 21:51: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:5:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i: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:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"polyglots\";s: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:\"translation\";s: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:16:\"wptranslationday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=11215\";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:126:\"WordPress contributors around the world are celebrating the sixth Global WordPress Translation Day throughout September 2021! \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:8447:\"\n<p>WordPress contributors around the world are <a href=\"https://wptranslationday.org/\">celebrating the sixth Global WordPress Translation Day</a> throughout the entire month of September! That&#8217;s 30 days dedicated to help and encourage the volunteers that translate the software and its related resources. One of the highlights will be a <a href=\"https://wptranslationday.org/wptd-2021/global-events/\">series of exciting global events</a>, starting on September 17 2021 and finishing on the United Nations&#8217; International Translation Day itself on September 30, 2021.</p>\n\n\n\n<p>Everyone is welcome to watch these events live on <a href=\"https://www.youtube.com/c/WordPressMarketingTeam\">YouTube</a> and to share their translation stories which will be featured during the celebrations and beyond. The global events will be in English and include presentations on how and why to you should join the thousands of translators in the project, tips and tools, interviews, and much more. </p>\n\n\n\n<p>There are now 205 locales translating in what is a remarkable open source effort, bringing the opportunities of the software and its community to people in their own native languages.   </p>\n\n\n\n<h2>Inaugural session: Introduction and latest news on WordPress Translation</h2>\n\n\n\n<h3><strong>Friday, September 17, 2021 at </strong><a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210917T1000\"><strong>10:00 UTC</strong></a></h3>\n\n\n\n<p>We will start the <a href=\"https://wptranslationday.org/wptd-2021/global-events/\">global events</a> with a panel featuring the latest update on what is happening in the world of WordPress polyglots. Panellists will include translators and polyglot supporters <a href=\"https://profiles.wordpress.org/petya/\">Petya Raykovska</a> and <a href=\"https://profiles.wordpress.org/evarlese/\">Erica Varlese</a>. There will be a video demonstration on how to translate WordPress, a short presentation on translation statistics, a run down of upcoming events, and more. <br><br>Watch the <a rel=\"noreferrer noopener\" href=\"https://www.youtube.com/watch?v=3HSBB5F_ag0\" target=\"_blank\">event live on YouTube</a> (or click on the play button below) &#8211; sign-up for notifications in the video stream right now so you don&#8217;t miss it when it goes live!&nbsp;</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=\"632\" height=\"356\" src=\"https://www.youtube.com/embed/3HSBB5F_ag0?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;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<h3><strong>Friday, September 17, 2021 at 11:00 UTC</strong> </h3>\n\n\n\n<p>Right after the livestream, there will be a &#8216;drop-in&#8217; translation sprint on Zoom video-conferencing, open to all. You can join and hang out virtually with your Polyglots friends from all around the world and translate WordPress in your own language! <a href=\"https://www.meetup.com/Portsmouth-WordPress-Meetup/events/280823032/\">RSVP for the session now and get joining links!</a> </p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh4.googleusercontent.com/r2rVEDkb39h02LiBg2GdayDk1LpZi6kxZnv1MRzT9h6pgSQE9FMBmyx_kJUA-Pjyy1KD__YlzLYvd1P53o1UIxTEfb0fmQnHm40UU23Wb1slXm-ajdGNP5qOyzHyTI07NBCM-mwY=s0\" alt=\"\" /></figure>\n\n\n\n<h2>Check out the other exciting global events</h2>\n\n\n\n<h3><strong>Sunday, September 19, 2021 <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210919T1200\">12:00 UTC</a></strong></h3>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://www.youtube.com/watch?v=M7UtEKIp2FY\" target=\"_blank\"><strong>Panel on Polyglots Tools</strong></a><a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210919T1200\"> <br></a>Join <a href=\"https://profiles.wordpress.org/amieiro/\">Jesús Amieiro</a>, <a href=\"https://profiles.wordpress.org/psmits1567/\">Peter Smits</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad Timotei</a>, and <a href=\"https://profiles.wordpress.org/vibgyj/\">Vibgy Joseph</a> to talk about the tools they’ve contributed to or developed to help translators and translation editors.</p>\n\n\n\n<h3><strong>Tuesday, September 21, 2021 <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210921T1100\">11:00 UTC</a></strong></h3>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=0Ps8byYIwLs\"><strong>Panel on Open Source Translation Communities</strong></a> (YouTube link &#8211; opens in a new tab)<a rel=\"noreferrer noopener\" href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210921T1100\" target=\"_blank\"><br></a>Join <a href=\"https://profiles.wordpress.org/vanillalounge/\">Zé Fontainhas</a> (WordPress), <a href=\"https://profiles.wordpress.org/tokyobiyori/\">Ali Darwich</a> (WordPress), <a href=\"https://www.linkedin.com/in/mstanke?originalSubdomain=cz\">Michal Stanke</a> (Mozilla), and <a href=\"https://www.linkedin.com/in/satomi-tsujita/?originalSubdomain=jp\">Satomi Tsujita</a> (Hyperledger Fabric) to learn about nurturing translation communities.</p>\n\n\n\n<h3><strong>Thursday, September 30, 2021 <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210930T1600\">16:00 UTC</a></strong></h3>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=qyQUaiK19js\"><strong>Finale Event – Why do you translate?</strong></a> <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210930T1600\"><br></a>Our finale event for 2021 with emcee <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> and a panel from the WordPress Translation Day Team. It will feature highlights from some of the local and global events during the month and a selection of results. Some of the nominees for this year&#8217;s polyglots appreciation will join the livestream to share their stories.</p>\n\n\n\n<p>The livestream will be followed by an after party celebration for anyone who has taken part in the event or is a WordPress polyglot. <a href=\"https://www.meetup.com/Portsmouth-WordPress-Meetup/events/280823393/\">Book now</a> for the session on Zoom.</p>\n\n\n\n<h2>Ideas on how to get involved this September</h2>\n\n\n\n<p>There&#8217;s lots of ways to take part &#8211; discover this <a href=\"https://wptranslationday.org/blog/ways-to-participate/\">list of ideas</a>.</p>\n\n\n\n<p>You can also nominate <a href=\"https://wptranslationday.org/blog/call-for-nominations-polyglots-appreciation/\">translation contributors</a> to be featured in this year&#8217;s celebrations.</p>\n\n\n\n<h2>Help us spread the word about #WPTranslationDay</h2>\n\n\n\n<ul><li>Share what you are translating using the #WPTranslationDay hashtag on: <a href=\"https://www.facebook.com/WPTranslationDay/\">Facebook</a>,<a href=\"https://twitter.com/TranslateWP\"> Twitter</a>, <a href=\"https://www.instagram.com/wptranslationday/\">Instagram</a>, and <a href=\"https://www.linkedin.com/company/wptranslationday/\">LinkedIn</a>! </li><li>You can also find images and translator badges in our <a href=\"https://wptranslationday.org/wptd-2021/media-kit/\">Media Kit</a> to share during September.</li></ul>\n\n\n\n<p>For more information on the 2021 WordPress Translation Day celebrations, visit <a href=\"https://wptranslationday.org/\">the WordPress Translation Day website</a>.</p>\n\n\n\n<p></p>\n\n\n\n<p><em>Props to <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/harishanker/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>harishanker</a>, <a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>, <a href=\'https://profiles.wordpress.org/oglekler/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>oglekler</a>, <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>, <a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>, <a href=\'https://profiles.wordpress.org/evarlese/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>evarlese</a></em> for contributing to this story.</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:\"11215\";s: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:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 5.8.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2021/09/wordpress-5-8-1-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Sep 2021 03:11:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=11190\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:363:\"WordPress 5.8.1 is now available! This security and maintenance release features 60 bug fixes in addition to 3 security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 5.4 have also been updated. WordPress 5.8.1 is a short-cycle security and maintenance release. The next [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Jonathan Desrosiers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8900:\"\n<p>WordPress 5.8.1 is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?milestone=5.8.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">60 bug</a> <a href=\"https://github.com/WordPress/gutenberg/pull/34393\">fixes</a> in addition to 3 security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 5.4 have also been updated.</p>\n\n\n\n<p>WordPress 5.8.1 is a short-cycle security and maintenance release. The next major release will be version <a href=\"https://make.wordpress.org/core/5-9/\">5.9</a>.</p>\n\n\n\n<p>You can download WordPress 5.8.1 by downloading from WordPress.org, or visit your Dashboard → Updates and click Update Now.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3><strong>Security Updates</strong></h3>\n\n\n\n<p>3 security issues affect WordPress versions between 5.4 and 5.8. If you haven’t yet updated to 5.8, all WordPress versions since 5.4 have also been updated to fix the following security issues:</p>\n\n\n\n<ul><li>Props <a href=\'https://profiles.wordpress.org/mdawaffe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mdawaffe</a>, member of the WordPress Security Team for their work fixing a data exposure vulnerability within the REST API.</li><li>Props to Michał Bentkowski of Securitum for reporting a XSS vulnerability in the block editor.</li><li>The Lodash library has been updated to version 4.17.21 in each branch to incorporate upstream security fixes.</li></ul>\n\n\n\n<p>In addition to these issues, the security team would like to thank the following people for reporting vulnerabilities during the WordPress 5.8 beta testing period, allowing them to be fixed prior to release:</p>\n\n\n\n<ul><li>Props <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://evanricafort.com/\">Evan Ricafort</a>&nbsp;for reporting a XSS vulnerability in the block editor discovered during the 5.8 release’s beta period.</li><li>Props <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a>&nbsp;for reporting a privilege escalation issue in the block editor.</li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>. This gave the WordPress security team time to fix the vulnerabilities before WordPress sites could be attacked.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?milestone=5.8.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-8-1/\">version 5.8.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>The 5.8.1 release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> and <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>.</p>\n\n\n\n<p>In addition to the security researchers and release squad members mentioned above, thank you to everyone who helped make WordPress 5.8.1 happen:</p>\n\n\n\n<a href=\"https://profiles.wordpress.org/2linctools/\">2linctools</a>, <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/algala/\">AlGala</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">André</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</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/ribaricplusplus/\">Bruno Ribaric</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/dariak/\">Daria</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van&nbsp;Durpe</a>, <a href=\"https://profiles.wordpress.org/enchiridion/\">Enchiridion</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</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/priethor/\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/kevinfodness/\">Kevin Fodness</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/mark-k/\">Mark-k</a>, <a href=\"https://profiles.wordpress.org/mhuntdesign/\">Matt</a>, <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/moch11/\">moch11</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a>, <a href=\"https://profiles.wordpress.org/radixweb/\">Radixweb</a>, <a href=\"https://profiles.wordpress.org/rtm909/\">Rahul Mehta</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a>, <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</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/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a>, <a href=\"https://profiles.wordpress.org/terraling/\">terraling</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/hellofromTonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a>, <a href=\"https://profiles.wordpress.org/wb1234/\">wb1234</a>, and <a href=\"https://profiles.wordpress.org/wfmattr/\">WFMattR</a>.\n\";s: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:\"11190\";s: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: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:35:\"The Month in WordPress: August 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2021/09/the-month-in-wordpress-august-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Sep 2021 14:00: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:8:\"category\";a:3:{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:\"\";}i:2;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=11176\";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:338:\"I really believe in WordPress’ mission to democratize publishing. And I, for one, will never stop learning about what gives people more access to the software, and what makes the software more usable, and especially how we can combine usability with accessibility in a way that puts form and function on a level playing field. [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:16142:\"\n<blockquote class=\"wp-block-quote\"><p>I really believe in WordPress’ mission to democratize publishing. And I, for one, will never stop learning about what gives people more access to the software, and what makes the software more usable, and especially how we can combine usability with accessibility in a way that puts form and function on a level playing field.<br></p></blockquote>\n\n\n\n<p>That was <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> on the “<a href=\"https://wordpress.org/news/2021/08/episode-14-the-art-and-science-of-accessibility/\">The Art and Science of Accessibility</a>” episode of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a>, talking about accessibility and exploring how it applies to the WordPress open source software. You will find that many of our updates from August 2021 tie in closely with the core principles of access, accessibility, and usability. Read on to find out more!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Join the 2021 WordPress Translation Day Celebrations in September</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://wptranslationday.org/\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" width=\"632\" height=\"395\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/09/image.jpeg?resize=632{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C395&#038;ssl=1\" alt=\"WordPress Translation Day 2021 September 1 - 30, 2021\" class=\"wp-image-11177\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/09/image.jpeg?resize=1024{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C640&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2021/09/image.jpeg?resize=300{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C188&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/09/image.jpeg?resize=768{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C480&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2021/09/image.jpeg?w=1440&amp;ssl=1 1440w, https://i0.wp.com/wordpress.org/news/files/2021/09/image.jpeg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure>\n\n\n\n<p>Join WordPress contributors around the world on <a href=\"https://wptranslationday.org/\">WordPress Translation Day celebrations</a> for the entire month of September! The sixth edition of #WPTranslationDay &#8211; which is a cross-team effort led by the Polyglots and Marketing Teams, has a host of fun programs aimed at helping WordPress speak all languages of the world. Want to join the fun? Here’s how.</p>\n\n\n\n<ul><li><a href=\"https://wptranslationday.org/wptd-2021/local-events/\">Join your local translation event</a> and collaborate on efforts to translate WordPress! Can’t find a <a href=\"https://wptranslationday.org/wptd-2021/local-events/\">local event in your area</a>? Why don’t you <a href=\"https://make.wordpress.org/polyglots/2021/08/11/call-for-local-event-organizers-wordpress-translation-day-2021/\">organize one on your own</a>?</li><li>Join <a href=\"https://wptranslationday.org/wptd-2021/global-events/\">one of our global events</a> from September 17-30!<em> </em>We have exciting sessions on <a href=\"https://wptranslationday.org/wptd-2021/global-events/\">polyglots tools and open source translation communities</a>, to name a few.</li><li>You can help<a href=\"https://translate.wordpress.org/\"> translate WordPress to your own language</a>, in your own time, this month! <a href=\"https://make.wordpress.org/polyglots/handbook/translating/first-steps/\">Here’s how!</a></li><li>Share what you are translating using the #WPTranslationDay hashtag on social media, to build excitement around the event! Don’t forget to amplify posts about the event on <a href=\"https://www.facebook.com/WPTranslationDay/\">Facebook</a>, <a href=\"https://twitter.com/TranslateWP\">Twitter</a>, <a href=\"https://www.instagram.com/wptranslationday/\">Instagram</a>, and <a href=\"https://www.linkedin.com/company/wptranslationday/\">LinkedIn</a>!</li></ul>\n\n\n\n<p>&nbsp;For more information, check out <a href=\"https://wptranslationday.org/\">the translation day website</a> and the <a href=\"https://make.wordpress.org/polylgots/tag/wptranslationday/\">Polyglots blog</a>.</p>\n\n\n\n<h2>WordPress Release Updates</h2>\n\n\n\n<p>The Core Team <a href=\"https://make.wordpress.org/core/2021/08/13/preliminary-road-to-5-9/\">commenced work</a> on the next major release &#8211; WordPress 5.9. The team aims to ship some cool features such as intrinsic web design to blocks, improved block patterns, navigation menus, better design tools, edit flows for block themes, and a new interface for theme.json. Check out the <a href=\"https://make.wordpress.org/core/5-9/\">WordPress 5.9 development cycle</a> to know more. This release is set to go out in December 2021. The team is also <a href=\"https://make.wordpress.org/core/2021/08/24/wordpress-5-8-x-release-team-and-5-8-1-schedule/\">working on shipping a minor release WordPress 5.8.1</a> –– its <a href=\"https://make.wordpress.org/core/2021/09/01/wordpress-5-8-1-rc-1/\">release candidate</a> is already out and the final release will launch on September 8.</p>\n\n\n\n<p>Want to contribute to WordPress core? Join the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel, follow the <a href=\"https://make.wordpress.org/core/\">Core Team blog</a>, and check out the <a href=\"https://make.wordpress.org/core/handbook/\">team handbook</a>. Don’t miss the Core Team chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&amp;min=00&amp;sec=0\">5 AM</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&amp;min=00&amp;sec=0\">8 PM</a> UTC. You can also help <a href=\"https://translate.wordpress.org/\">translate WordPress</a> to your local language &#8211; and what better time to do it, than in September, <a href=\"https://wptranslationday.org/\">during the translation month celebrations</a>? Another fun way to contribute would be to <a href=\"https://make.wordpress.org/marketing/2021/08/11/share-about-wordpress-5-8-on-social-media/\">share about WordPress 5.8 on social media</a>!</p>\n\n\n\n<h2>Say Hello to Gutenberg Versions 11.2 and 11.3</h2>\n\n\n\n<p>We launched Gutenberg <a href=\"https://make.wordpress.org/core/2021/08/05/whats-new-in-gutenberg-11-2-0-4-august/\">version 11.2</a> and <a href=\"https://make.wordpress.org/core/2021/08/18/whats-new-in-gutenberg-11-3-18-august/\">version 11.3</a> this month. <a href=\"https://make.wordpress.org/core/2021/08/05/whats-new-in-gutenberg-11-2-0-4-august/\">Version 11.2</a> adds customizing/color options to the search block, a flex layout for the group block, and a new button for creating posts as part of the publishing flow. <a href=\"https://make.wordpress.org/core/2021/08/18/whats-new-in-gutenberg-11-3-18-august/\">Version 11.3</a> offers a new dimensions panel (replacing the spacing panel) with more styling options, dimensions control for the feature image block, and significant performance improvements for block inserters.<br></p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core Team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a>. The “<a href=\"https://make.wordpress.org/core/2021/07/21/whats-next-in-gutenberg-site-editing-status-check-late-july-august-2021/\">What’s next in Gutenberg</a>” post offers more details on the latest updates.&nbsp;</p>\n\n\n\n<h2>Get Excited about WordCamp US 2021</h2>\n\n\n\n<p>The biggest WordCamp in North America &#8211; <a href=\"https://us.wordcamp.org/2021/\">WordCamp US 2021-</a> is barely a month away. <a href=\"https://us.wordcamp.org/2021/tickets/\">Get your (free) tickets</a>, if you haven’t already! The organizing team has opened up calls for <a href=\"https://us.wordcamp.org/2021/calling-all-musicians/\">musicians</a>, <a href=\"https://us.wordcamp.org/2021/call-for-contributor-stories/\">contributor stories</a>, and <a href=\"https://us.wordcamp.org/2021/call-for-media-partners/\">media partners</a>. Check out <a href=\"https://us.wordcamp.org/2021/\">the event website</a> and follow the event on <a href=\"https://twitter.com/wordcampus\">Twitter</a>, <a href=\"https://www.instagram.com/wordcampus/\">Instagram</a>, and <a href=\"https://www.facebook.com/WordCampUSA\">Facebook</a> to stay updated on all that #WCUS news.</p>\n\n\n\n<h2>Important Announcements/Updates</h2>\n\n\n\n<ul><li>Support for the Classic Editor plugin <a href=\"https://wordpress.org/news/2021/08/an-update-on-the-classic-editor-plugin/\">will be extended for a full year until 2022</a>!</li><li>The Themes Team published a <a href=\"https://make.wordpress.org/themes/2021/08/06/summary-of-the-request-for-feedback-on-requirement-changes/\">feedback summary</a> on the <a href=\"https://make.wordpress.org/themes/2021/07/20/discussion-request-for-feedback-on-requirement-changes/\">proposed requirement changes for WordPress theme review</a>, and will soon be updating the handbook and review tools. You will find more context in their <a href=\"https://make.wordpress.org/themes/2021/08/10/meeting-notes-themes-team-and-theme-authors-regarding-requirements-change/\">meeting notes</a>.</li><li>The Plugins Team <a href=\"https://make.wordpress.org/plugins/2021/08/27/inaccurate-stats-have-been-corrected/\">corrected inaccurate plugin statistics</a> in the plugin directory.</li><li>Check out the <a href=\"https://make.wordpress.org/test/2021/08/17/fse-program-theme-design-survey-results/\">results of the FSE Theme Design (theme.json) survey</a>!</li></ul>\n\n\n\n<h2>Feedback/Testing Requests from Contributor Teams</h2>\n\n\n\n<ul><li>The Testing Team is requesting testing help for a <a href=\"https://make.wordpress.org/test/2021/08/30/week-in-test-30-aug-2021/\">few tickets and patches in WordPress</a>. The team is also looking for volunteers to <a href=\"https://make.wordpress.org/test/2021/08/20/call-for-volunteeers-audit-and-update-testing-instructions-across-the-make-sites/\">audit and update Core testing instructions </a>across different Make sites.</li><li>The Community Team shared a <a href=\"https://make.wordpress.org/community/2021/09/01/proposal-centralized-global-do_action-charity-hackathons/\">proposal on planning online-only recurring global do_action charity hackathons</a>. Share your feedback by September 24.</li><li>The Training Team is also exploring the possibility of adding <a href=\"https://make.wordpress.org/training/2021/08/10/proposal-learner-achievements-on-profiles/\">learner achievements (on learn.wordpress.org) on WP Profiles</a> and is requesting feedback from the community.</li><li>Help the Marketing Team’s outreach research by filling out <a href=\"https://forms.gle/4QFhX8fcNxKAfK8y5\">this 2 question survey</a> on how you search for WordPress release information. If you have any favorite features from the latest release (WordPress 5.8) let the team know by completing this <a href=\"https://docs.google.com/forms/d/e/1FAIpQLSd_2llymf79-h5sgTiprz7Kw4Gr4cbDHh-AAdAQfiArXlHksg/viewform\">short form</a>.</li><li>Version 18.1 of WordPress for <a href=\"https://make.wordpress.org/mobile/2021/08/23/call-for-testing-wordpress-for-ios-18-1/\">iOS</a> and <a href=\"https://make.wordpress.org/mobile/2021/08/23/call-for-testing-wordpress-for-android-18-1/\">Android</a> are now available for testing!</li></ul>\n\n\n\n<h2>WordPress Event Updates</h2>\n\n\n\n<ul><li><a href=\"https://floripa.wordcamp.org/2021/\">WordCamp Florianopolis 2021</a> was held on August 11-12, 2021. The event, which sold 390 tickets, had 11 speakers and 4 sponsors. Catch the <a href=\"https://www.youtube.com/channel/UCh1CeGfuDRH-o13xh7kpgUQ\">event recap on YouTube</a>!</li><li><a href=\"https://galicia.wordcamp.org/2021/\">WordCamp Galicia 2021</a> is being held from September 30 &#8211; October 2, 2021! </li><li><a href=\"https://doaction.org/event/karnataka-2021/\">do_action Karnataka 2021</a> was held from August 7-15, 2021. Check out <a href=\"https://wordpressfoundation.org/2021/do_action-karnataka-2021-a-report/\">the recap</a>!</li><li>The Core Team organized a <a href=\"https://make.wordpress.org/core/2021/08/25/hallway-hangout-summary-compare-and-contrast-the-navigation-screens/\">hallway hangout</a> to compare the ‘experimental’ Gutenberg navigation feature with the built-in core feature. The team decided to wait until feature parity with core nav menus, to move the feature from experiments to the main plugin.</li><li>The Diverse Speakers Training group (<a href=\"https://make.wordpress.org/community/tag/wpdiversity/\">#WPDiversity</a>) of the Community Team held their first “<a href=\"https://make.wordpress.org/community/2021/09/02/report-diverse-speaker-workshops-august-2021/\">Allyship for WordPress Event Organizers</a>” workshop on August 19, 2021. The event had 13 attendees from six countries who reported a 52{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} increase in preparedness to help create inclusive WordPress events. <a href=\"https://make.wordpress.org/community/tag/wpdiversityworkshops/\">Stay tuned</a> for their next workshop in November!</li></ul>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li>Don’t miss this blog post on <a href=\"https://wordpress.org/news/2021/08/widgets-in-wordpress-5-8-and-beyond/\">Widgets in WordPress 5.8 and beyond</a>!</li><li>The Full Site Editing (FSE) Outreach program wrapped up its ninth challenge –– <a href=\"https://make.wordpress.org/test/2021/08/11/fse-program-testing-call-9-handling-highered-headers/\">Handling HigherEd Headers</a>, on September 1. Keep an eye out for <a href=\"https://make.wordpress.org/test/tag/fse-outreach-program/\">test results and future testing call announcements</a>!</li><li>The Test Team is <a href=\"https://make.wordpress.org/test/2021/08/19/test-team-chat-summary-17-august-2021/\">attempting to modernize PHPUnit tests</a> for WordPress.</li><li>The Accessibility Team is testing the <a href=\"https://make.wordpress.org/accessibility/2021/08/20/accessibility-team-meeting-notes-august-20-2021/\">navigation block</a> for accessibility feedback.</li><li>The Docs Team <a href=\"https://make.wordpress.org/docs/2021/08/31/summary-of-docs-team-meeting-aug-24-2021/\">launched a new repository</a> for tracking issues with WordPress documentation: <a href=\"https://github.com/WordPress/Documentation-Issue-Tracker\">https://github.com/WordPress/Documentation-Issue-Tracker</a></li><li>The Training Team <a href=\"https://make.wordpress.org/training/2021/08/17/proposal-brand-guidelines-for-learn-wordpress-content/#comment-3130\">finalized</a> brand <a href=\"https://make.wordpress.org/training/2021/08/17/proposal-brand-guidelines-for-learn-wordpress-content/\">guidelines</a> for <a href=\"https://learn.wordpress.org\">learn.wordpress.org</a>. The team is also working on setting up <a href=\"https://make.wordpress.org/training/2021/08/12/wordpress-101-microcourses-proposal/\">Micro courses for Learn</a>.</li><li>The Openverse Team is <a href=\"https://make.wordpress.org/openverse/2021/08/16/multi-stage-docker-builds-in-the-openverse-api/\">exploring Multistage docker builds</a> as a solution to better set up waveforms for audio search results in the Openverse tool.&nbsp;</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.&nbsp;</em></p>\n\n\n\n<p><em>The following folks contributed to August’s Month in WordPress:&nbsp; <a href=\'https://profiles.wordpress.org/evarlese/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>evarlese</a> <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a> <em><a href=\'https://profiles.wordpress.org/nao/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nao</a></em> <a href=\'https://profiles.wordpress.org/jillbinder/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jillbinder</a></em> <em><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:\"11176\";s: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: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:\"An Update on the Classic Editor 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wordpress.org/news/2021/08/an-update-on-the-classic-editor-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Aug 2021 16:51:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s: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=11149\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:333:\"Before the release of WordPress 5.0 in 2018, the Classic Editor plugin was published to help ease the transition to the new block editor. At the time, we promised to support the plugin through 2021 and adjust if needed as the deadline got closer. After discussing this with Matt, it&#8217;s clear that continuing to support [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1583:\"\n<p>Before the release of WordPress 5.0 in 2018, the <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor plugin</a> was published to help ease the transition to the new block editor. At the time, we promised to support the plugin through 2021 and adjust if needed as the deadline got closer. After discussing this with Matt, it&#8217;s clear that continuing to support the plugin through 2022 is the right call for the project as well as the community.</p>\n\n\n\n<p>Still, if you’ve been putting off using the block editor, this is an excellent time to give it another shot. Since it first appeared in 2018, hundreds of WordPress contributors have made a lot of updates based on user feedback. You will be pleasantly surprised at how far it’s come!</p>\n\n\n\n<p>Big thanks to everyone who has been working on WordPress, Gutenberg, and the Classic Editor plugin. And thank you to every WordPress user and tester who has provided the feedback we need to make the software even better.</p>\n\n\n\n<p>~ Josepha</p>\n\n\n\n<p><em>Returning to the block editor for the first time in a long time? You can give feedback early in the process by <a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/\">joining the outreach program</a>! Looking at it for the first time ever? <a href=\"https://learn.wordpress.org/workshops/?series=24&amp;topic=&amp;language=&amp;captions=\">Get your bearings with some workshops</a> or <a href=\"https://wordpress.org/support/article/wordpress-editor/#how-does-the-block-editor-work\">check out this demo</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:\"11149\";s: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:58:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WP Briefing: Episode 15: A Very WordPress Blooper\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/08/episode-15-a-very-wordpress-blooper/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 23 Aug 2021 22:14:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s: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=11146\";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:130:\"Ever wonder what it\'s like behind the scenes of WP Briefing? Listen in on this episode for a little levity and Josepha\'s bloopers.\";s: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:65:\"https://wordpress.org/news/files/2021/08/WP-Briefing-Bloopers.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:8885:\"\n<p>Ever wonder what it&#8217;s like behind the scenes of WP Briefing? Listen in on this episode for a little levity and Josepha&#8217;s bloopers.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<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>Transcript</h2>\n\n\n\n<span id=\"more-11146\"></span>\n\n\n\n<p>[contemporary intro music]</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:10</p>\n\n\n\n<p>Hello, everyone, and welcome to a bonus briefing. Normally I talk to you about WordPress and stuff, but I figured that we all need a little levity in our lives right now. So today&#8217;s episode is actually just a series of bloopers and mistakes that I&#8217;ve made while recording. When I was preparing for this podcast, no one mentioned the deep weirdness of standing alone in your closet talking to yourself, nor did they realize just how lost I can get in the surpassingly, lovely lyricism of a lilting line, and then just have no idea what I&#8217;m supposed to be reading in the script that I wrote for myself. So, my dear friends, I hope these bring you a little laugh. And if we&#8217;ve got any luck at all, you may also hear me singing to myself, my computer, or about how terrible my talking just was. Here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:12</p>\n\n\n\n<p>Hello, everyone, and welcome to a bonus briefing. I know I wasn&#8217;t going to sit boop, boop.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:21</p>\n\n\n\n<p>I messed up the thing where I&#8217;m talking about how I mess up, of course. I&#8217;m going to do it one more time, and you can choose whatever is a reasonable thing there.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:33</p>\n\n\n\n<p>Because we had such a lengthy WP Briefing, WordPress, I’m going to just start that over again. Sorry, everyone.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:42</p>\n\n\n\n<p>My friends. Oh, no. I don&#8217;t know how I end my own show. How do I end my own show? There we go. Sorry.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:52</p>\n\n\n\n<p>That was a weird way to say that. I&#8217;m going to start over again from the transition. And then we&#8217;re just going to go straight through to the end. Maybe.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:03</p>\n\n\n\n<p>The names that&#8230; I sound weird. I sound like I don&#8217;t know what my words are. And I said I wrote the words. I said I was all going to go in one go, and I&#8217;m a liar today. Okay, here we go. For realsies!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:16</p>\n\n\n\n<p>Final first last take. Here we go. Sorry, I made myself laugh.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:22</p>\n\n\n\n<p>Matt Mullenweg. And, and I, I&#8217;m also in that group. I don&#8217;t know why I said that like it was a surprise. I have me too. I&#8217;m also in there.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:33</p>\n\n\n\n<p>Ugh, I ran out of air. For reasons, it was a short sentence. I don&#8217;t know why I ran out of air.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:43</p>\n\n\n\n<p>Coming out on April 14. That&#8217;s not true. It&#8217;s April 13. Right?</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:50</p>\n\n\n\n<p>On the form below to share the. Pfft &#8211; what are the things!&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:58</p>\n\n\n\n<p>This is WP Briefing episode seven, no title because I don&#8217;t know what to call it because I gave it a title already. I gave it two titles, and then couldn&#8217;t remember why I gave it those titles. So I&#8217;ll come up with a title before we publish it. But I also have no idea what it is. I&#8217;m going to ask for help. </p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:17</p>\n\n\n\n<p>Testing project since I have too many commas, and I really believed in my comma when I said it. </p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:24</p>\n\n\n\n<p>Prior to Gutenberg&#8230; pfft. Open source software like WordPress. I was going to smash that sentence into half a sentence. I was going to say when you know what you&#8217;re workussing on you have a solution which is not my friends of thing. So, I am just going to say the sentence again. </p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:47</p>\n\n\n\n<p>I was sitting over here wringing my hands for some reason during that entire list. And so if you can hear me wringing my hands, which would be a whole new height of anxiety for anyone, you let me know, and I will rerecord that also.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:00</p>\n\n\n\n<p>Get a concept of. Nope, this is a lie. Get a concept of where to get your tickets is the silliest thing. I&#8217;m starting over from the small list of big things. Also, because I got too excited about how big my list is. I am going to get that excited again. But I will try not to shout about it.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:17</p>\n\n\n\n<p>&#8220;Humming intro song&#8221; Dun dun dun dun dun.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:23</p>\n\n\n\n<p>Sorry, I had to scroll up, and I try not to scroll up when I&#8217;m talking in case maybe my whole computer turns into a microphone. Sorry, I&#8217;m just going to keep going because this has been a fine take so far.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:34</p>\n\n\n\n<p>Mercy! I have words that I can say with my mouth. They aren&#8217;t these words today. It seems.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:45</p>\n\n\n\n<p>Build up to&#8230; Oh my goodness. My stomach grumbled, and this microphone, I know,&nbsp; picked it up. And so I&#8217;m going to redo bullet two so that we don&#8217;t just have a small monster under the bed in the middle of the podcast.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:03</p>\n\n\n\n<p>Also, like DEI, I feel s—Eh &#8211; maybe I should say, DEI, somewhere in there, so it&#8217;s clear for people cause I&#8217;m talking to people and not actually a screen. </p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:17</p>\n\n\n\n<p>Before I joined the WordPress project, the majority of my work with accessibility was in the context of the digital divide. Now, when talking about the digital divide, there are three concepts around quote-unquote, getting things to people. And those concepts are&#8230; I guess I could say the thing, hold on one second, I can do it. I feel like I&#8217;m chopping up my words like I&#8217;m not really breathing very well. So I apologize. But here we go again.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:58</p>\n\n\n\n<p>Don&#8217;t include that one. Sorry, I&#8217;m so nervous about this episode that, like, my mouth is getting dry, and I worry that you can hear it, and it drives me nuts every time I hear podcasters with a dry mouth, and you can just like hear it clicking and always stresses me out. I&#8217;m like, someone should give that poor thing a drink of water. And I just know I&#8217;m going to feel that way about myself later. And so I&#8217;m trying to stay hydrated, but it also means that I have to stop every two paragraphs and take a drink of water. I apologize for that interlude. I am about to start again, at my next section, which is like, halfway through.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:39</p>\n\n\n\n<p>Also, I learned that you can hear me swallowing my water with this microphone because it is a spectacular microphone. And so, I apologize for that as well. All right. Here I go. I&#8217;m going to do it all in one take. Watch me.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:56</p>\n\n\n\n<p>But I also have questions, especially about how to move everything forward. Mm-hmm. Whoops. I put especially in the wrong spot. But I also thought&#8230;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:10</p>\n\n\n\n<p> Ta da, we did it. Gosh, that&#8217;s a short one. </p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:16</p>\n\n\n\n<p>I did it. Where&#8217;s my where&#8217;s my turning offing button.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:22</p>\n\n\n\n<p>Tada! And scene and done.</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:\"11146\";s: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:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Widgets in WordPress 5.8 and Beyond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/08/widgets-in-wordpress-5-8-and-beyond/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 09 Aug 2021 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: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:1;a:5:{s:4:\"data\";s:9:\"Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11115\";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:367:\"Copy and Design by @critterverse WordPress 5.8 brings the power of Gutenberg blocks to widget areas — which means the highly customizable layout and styling options bring you closer to a&#160;WYSIWYG editing experience. I made a test site based on the oldie-but-goodie Twenty Sixteen theme, with three separate widget areas. In this post, I’ll highlight [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:3:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/08/classic-widgets.mov\";s:6:\"length\";s:7:\"6475399\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/08/block-widgets-1.mov\";s:6:\"length\";s:8:\"23931847\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:58:\"https://wordpress.org/news/files/2021/08/custom-html-1.mov\";s:6:\"length\";s:8:\"13767042\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:7682:\"\n<p><strong><em>Copy and Design by <a href=\'https://profiles.wordpress.org/critterverse/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>critterverse</a> </em></strong></p>\n\n\n\n<p>WordPress 5.8 brings the power of Gutenberg blocks to widget areas — which means the highly customizable layout and styling options bring you closer to a&nbsp;WYSIWYG editing experience. I made a test site based on the oldie-but-goodie <a href=\"https://wordpress.org/themes/twentysixteen/\">Twenty Sixteen theme</a>, with three separate widget areas. In this post, I’ll highlight a few cool things that are now possible to do with your widgets and where things may be heading next.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><a href=\"https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"1130\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?resize=632{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C1130&#038;ssl=1\" alt=\"A zoomed-out view of a single post with one sidebar widget area and two footer widget areas. The site content is about Marine Park Salt Marsh. A List View of blocks floating next to each widget area shows how the design is constructed.\" class=\"wp-image-11116\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?w=2183&amp;ssl=1 2183w, https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?resize=168{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C300&amp;ssl=1 168w, https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?resize=573{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C1024&amp;ssl=1 573w, https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?resize=768{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C1373&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?resize=859{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C1536&amp;ssl=1 859w, https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?resize=1145{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C2048&amp;ssl=1 1145w, https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a><figcaption><br><br><br><br></figcaption></figure></div>\n\n\n\n<h2>Create Interesting Visual Effects With Overlapping Layouts and Duotone Images</h2>\n\n\n\n<p>Appearance-wise, users have a lot more control over widget areas than ever before — especially through the use of blocks with customization options like the Cover and Image block. Here’s what I can create in the classic widgets editor (above) versus what I can create in the new block-based widget editor (below).</p>\n\n\n\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"https://wordpress.org/news/files/2021/08/classic-widgets.mov\"></video></figure>\n\n\n\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"https://wordpress.org/news/files/2021/08/block-widgets-1.mov\"></video></figure>\n\n\n\n<h2>Intersperse Widgets and Custom Code Throughout Your Visual Designs</h2>\n\n\n\n<p>Container blocks like Cover and Columns make it easy to weave dynamic or interactive elements into your designs. While this is a given for many widgets, the block versions of widgets can be easily wrapped and layered within container blocks to integrate them into your layout more fully.</p>\n\n\n\n<p>In the example below, I tried placing a Search block in front of a Cover block, which creates a nice layered effect. I also inserted Custom HTML blocks within a Columns block to display different messaging depending on the time of day. (<a href=\"https://stackoverflow.com/questions/31242051/show-content-based-on-time-of-day-timing-changes-on-different-days-of-the-week\">jQuery script</a>)</p>\n\n\n\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"https://wordpress.org/news/files/2021/08/custom-html-1.mov\"></video></figure>\n\n\n\n<h2>Use Traditional Widget Layouts (Or Not) With Lots of Flexibility Over Title and Structure</h2>\n\n\n\n<p>Classic widgets have always had a lockup that includes a widget title. One cool thing about having blocks in widget areas is that you have complete flexibility over how titles appear. For example, you might choose to have a title over every widget, you might only want one title at the top of each widget area, or your design might not need titles at all.</p>\n\n\n\n<p>Note: Some themes, like <a href=\"https://wordpress.org/themes/twentytwentyone/\">Twenty Twenty-One</a>, are designed to flow content horizontally within widget areas. If you’re having trouble with a theme splitting your layout into columns, you could try keeping the lockup together by containing it within a Group block.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><a href=\"https://i1.wp.com/wordpress.org/news/files/2021/08/grouped.jpg?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"381\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/08/grouped.jpg?resize=632{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C381&#038;ssl=1\" alt=\"Side-by-side comparison of List View of a Sidebar widget area with and without grouped/nested lockups.\" class=\"wp-image-11122\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/08/grouped.jpg?w=1760&amp;ssl=1 1760w, https://i1.wp.com/wordpress.org/news/files/2021/08/grouped.jpg?resize=300{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C181&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/08/grouped.jpg?resize=1024{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C618&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/08/grouped.jpg?resize=768{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C463&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/08/grouped.jpg?resize=1536{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C927&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/08/grouped.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure></div>\n\n\n\n<h2>Copy &amp; Paste Existing Layouts From the WordPress Pattern Directory</h2>\n\n\n\n<p>While patterns haven’t been fully integrated into the widget editors yet, one thing you <em>can</em> do is copy and paste patterns from the game-changing new <a href=\"https://wordpress.org/patterns/\">WordPress Pattern Directory</a> into your site’s widget areas. I used this <a href=\"https://wordpress.org/patterns/pattern/horizontal-call-to-action/\">horizontal call to action</a> pattern from the directory almost exactly as is, with minor color and copy adjustments:</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><a href=\"https://i1.wp.com/wordpress.org/news/files/2021/08/footer.jpg?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"389\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/08/footer.jpg?resize=632{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C389&#038;ssl=1\" alt=\"Footer widget area with a black box that reads, “Become a monthly patron” with paragraph text and a “Join now” button in a separate column. A painted image of waves hitting rocks is directly below with no space between them.\n\" class=\"wp-image-11123\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/08/footer.jpg?w=1656&amp;ssl=1 1656w, https://i1.wp.com/wordpress.org/news/files/2021/08/footer.jpg?resize=300{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C185&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/08/footer.jpg?resize=1024{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C630&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/08/footer.jpg?resize=768{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C473&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/08/footer.jpg?resize=1536{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C945&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/08/footer.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a><figcaption><br></figcaption></figure></div>\n\n\n\n<p>FYI: Patterns have not been curated for or integrated into widget areas yet, so you may run into some unexpected behavior — consider this feature to be a preview of what’s coming next for widget editing!</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:\"11115\";s: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:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: July 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2021/08/the-month-in-wordpress-july-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Aug 2021 13:53: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11107\";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:334:\"WordPress is global in reach and open source in nature. And you would assume that what allows the software to be used by anyone would also enable it to be built by anyone. After all, your location doesn’t matter, and who employs you also doesn’t matter. And your relative social standing certainly shouldn’t matter. As [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:15260:\"\n<blockquote class=\"wp-block-quote\"><p>WordPress is global in reach and open source in nature. And you would assume that what allows the software to be used by anyone would also enable it to be built by anyone. After all, your location doesn’t matter, and who employs you also doesn’t matter. And your relative social standing certainly shouldn’t matter. As long as you can communicate with the others contributing to the project, there should be no obstacle to your participation.</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">That was <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> on the “<a href=\"https://wordpress.org/news/2021/07/episode-13-cherishing-wordpress-diversity/\">Cherishing WordPress Diversity</a>” episode of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a>, speaking about the importance of diversity, equity, and inclusion within the fabric of the WordPress project. Her statement captures the spirit of the WordPress open source project, and we hope it resonates with you. Now, let&#8217;s dive in!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Say hello to WordPress 5.8</h2>\n\n\n\n<p>WordPress <a href=\"https://wordpress.org/news/2021/07/tatum/\" target=\"_blank\" rel=\"noreferrer noopener\">version 5.8</a>, “Tatum,” came out on July 20. Version 5.8 is a major release that offers features like block-based widgets, a host of new blocks and patterns, a template editor, a duotone feature to stylize images, theme.json, and support for webP images, to name a few. Read more in the <a href=\"https://wordpress.org/news/2021/07/tatum/\">release post</a>, the <a href=\"https://make.wordpress.org/core/2021/07/03/wordpress-5-8-field-guide/\">field guide</a>, and the <a href=\"https://make.wordpress.org/community/2021/06/18/meetup-group-resources-talking-points-for-wordpress-5-8/\">talking points post for meetup groups</a>. </p>\n\n\n\n<p>Want to contribute to WordPress core?&nbsp;</p>\n\n\n\n<ul><li>Join the&nbsp; <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel, follow the <a href=\"https://make.wordpress.org/core/\">Core Team blog</a>, and check out the <a href=\"https://make.wordpress.org/core/handbook/\">team handbook</a>. Don’t miss the Core Team chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&amp;min=00&amp;sec=0\">5 AM</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&amp;min=00&amp;sec=0\">8 PM</a> UTC.</li><li><a href=\"https://translate.wordpress.org/\">Translate WordPress</a> to your local language &#8211; here’s the <a href=\"https://make.wordpress.org/polyglots/2021/07/09/wordpress-5-8-translation-status-july-9-2020/\">latest translation status</a>.</li><li>Contact the Marketing Team in the <a href=\"https://wordpress.slack.com/archives/C0GKJ7TFA\">#marketing</a> slack channel, if you wish to support <a href=\"https://make.wordpress.org/marketing/2021/07/21/social-media-pack-for-5-8-ongoing-collaborations/\">social media engagement around WordPress 5.8</a>.</li></ul>\n\n\n\n<h2>Gutenberg Version 11.0 is released</h2>\n\n\n\n<p>Contributor teams released the <a href=\"https://make.wordpress.org/core/2021/07/09/whats-new-in-gutenberg-11-0-0-9-july/\">11th version</a> of Gutenberg on July 9. <a href=\"https://make.wordpress.org/core/2021/07/09/whats-new-in-gutenberg-11-0-0-9-july/\">Version 11.0</a>, which focuses heavily on backports and bug fixes, showcases some cool features such as an editing overlay for template parts and reusable blocks, and support for CSS shorthand properties in theme.json and block attributes. <a href=\"https://make.wordpress.org/core/2021/07/21/whats-new-in-gutenberg-11-1-0-21-july/\">Version 11.1</a> was also shipped this month, on July 21. The release adds custom block borders as block supports and adds “drag and drop” to the list view.&nbsp;</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core Team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a>. The “<a href=\"https://make.wordpress.org/core/2021/07/21/whats-next-in-gutenberg-site-editing-status-check-late-july-august-2021/\">What’s next in Gutenberg</a>” post offers more details on the latest updates.&nbsp;</p>\n\n\n\n<h2>Returning to in-person WordPress events</h2>\n\n\n\n<p>The Community Team kicked off work to bring back in-person WordPress events. The team <a href=\"https://make.wordpress.org/community/2021/07/01/in-person-meetup-events-for-vaccinated-community-members/#comment-29654\">recently announced</a> that in-person WordPress meetups can be organized in a region if the local public health authority allows in-person events and if the region passes the in-person<a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/2021-returning-to-in-person-meetups/in-person-meetup-decision-checklist/\"> safety checklist</a>. If the region does not meet guidelines on page one of the <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/2021-returning-to-in-person-meetups/in-person-meetup-decision-checklist/\">safety checklist</a>, organizers can plan events for fully vaccinated, recently tested (negative), or recently recovered community members. Subsequently, the team also <a href=\"https://make.wordpress.org/community/2021/07/27/proposal-how-to-return-to-safe-in-person-wordcamps/\">shared a proposal for the return to in-person WordCamps</a> in places that meet the <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/2021-returning-to-in-person-meetups/in-person-meetup-decision-checklist/\">safety guidelines and the vaccination/testing requirements</a>. Please share your feedback on the post if you have any thoughts. For more context, check out the “<a href=\"https://wordpress.org/news/2021/07/episode-12-wordpress-in-person/\">In Person!</a>” episode of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a>.&nbsp;</p>\n\n\n\n<p>Want to contribute to the Community Team? Follow the <a href=\"https://make.wordpress.org/community/\">Community Team</a> blog, or join them in the <a href=\"https://wordpress.slack.com/archives/C037W5S7X\">#community</a> channel in the Make WordPress Slack.&nbsp;</p>\n\n\n\n<h2>BuddyPress 9.0 is out</h2>\n\n\n\n<p>The BuddyPress team is busy! Within barely a month of their last major release (<a href=\"https://buddypress.org/2021/06/buddypress-8-0-0-alfano/\">version 8.0)</a>, the team shipped <a href=\"https://buddypress.org/2021/07/buddypress-9-0-0-mico/\">version 9.0</a> on July 19. Key features of the release include widget blocks and updates to the BP REST API.&nbsp; Download it from the <a href=\"https://wordpress.org/plugins/buddypress/\">WordPress.org plugin directory</a> or check it out from its <a href=\"https://buddypress.trac.wordpress.org/browser/branches/9.0\">subversion repository.</a> Want to help build BuddyPress? Follow their <a href=\"https://bpdevel.wordpress.com/\">developer relations blog</a>, check out their <a href=\"https://codex.buddypress.org/participate-and-contribute/contribute-with-code/\">handbook page</a>, or join them in the <a href=\"https://wordpress.slack.com/archives/C02RQBYUG\">#buddypress</a> channel in the Make WordPress Slack.</p>\n\n\n\n<h2>WordPress Event updates</h2>\n\n\n\n<ul><li>WordCamp US is coming back on October 1, 2021, <a href=\"https://us.wordcamp.org/2021/wordcamp-us-is-back/\">as a daylong online event</a>!</li><li>Free tickets for <a href=\"https://floripa.wordcamp.org/2021/inscricoes/\">WordCamp Florianopolis</a> (August 11-12) are now available.</li><li>The <a href=\"https://make.wordpress.org/community/tag/wpdiversity/\">Diverse Speaker Training group</a> of the Community Team announced <a href=\"https://make.wordpress.org/community/2021/07/26/announcement-and-call-for-volunteers-expanding-wpdiversity-to-three-programs/\">three new programs</a> for Meetup and WordCamp organizers. Sign up for the <a href=\"https://make.wordpress.org/community/2021/07/30/workshop-august-19-2021-allyship-for-wordpress-event-organizers-amer-emea/\">inaugural allyship program for event organizers</a> on August 19, 2021, at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210819T1700\">5:00</a> &#8211; <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210819T1900\">7:00 pm</a> UTC!</li><li>The Polyglots Team is planning a <a href=\"https://make.wordpress.org/polyglots/tag/wptranslationday/\">month-long translation day celebration in September 2021</a>, with two weeks of “core events” from September 17 to 30. The team will announce more details on the event shortly, and you <a href=\"https://make.wordpress.org/polyglots/tag/wptranslationday/\">can follow all the latest updates on their P2</a>.&nbsp;</li><li>Stay updated on <a href=\"https://make.wordpress.org/community/events/online/\">online WordPress meetups</a> around the world by following the Marketing Team’s <a href=\"https://www.linkedin.com/company/make-wordpress-marketing-team/\">WordPress Meetup roundup</a> every Monday.&nbsp;</li><li><a href=\"https://santaclarita.wordcamp.org/2021/\">WordCamp Santa Clarita 2021</a> was held online on July 17-18, 2021. The highlight of the event, which had 41 speakers, 19 sponsors, and 672 attendees, was a <a href=\"https://santaclarita.wordcamp.org/2021/schedule/\">dedicated track for WordPress accessibility</a>. Videos of the event will soon be posted on WordPress.tv.</li><li>The Hosting Team organized <a href=\"https://www.meetup.com/wphosting/events/278295555\">their first meetup</a> in June. Check out the <a href=\"https://www.youtube.com/watch?v=V4UCc1Bze5E&amp;t=702s\">event recording</a>.</li></ul>\n\n\n\n<h2>Feedback requests from WordPress contributor teams</h2>\n\n\n\n<p>Please help these WordPress contributor teams by answering their research requests:</p>\n\n\n\n<ul><li>The Core Team has published a <a href=\"https://make.wordpress.org/core/2021/07/28/wordpress-5-8-tatum-retrospective/\">WordPress 5.8 release retrospective</a>. Share your release feedback as <a href=\"https://make.wordpress.org/core/2021/07/28/wordpress-5-8-tatum-retrospective/#respond\">comments on the post</a> or by <a href=\"https://docs.google.com/forms/d/e/1FAIpQLSei8fSLjV0um4hk_1JKwgu-8E6mpNwwxF3j43mInW7lnVOTDw/viewform?usp=sf_link\">filling out this form</a> before August 15. The team is also <a href=\"https://make.wordpress.org/core/2021/07/21/request-for-feedback-updater-proof-of-concept/\">requesting feedback</a> on a “proof of concept” for the new WordPress updater.&nbsp;</li><li>The Training Team wishes to <a href=\"https://make.wordpress.org/training/2021/07/30/learn-wordpress-user-survey-focus-groups/\">find what learners and potential learners would like to see</a> in the <a href=\"https://learn.wordpress.org\">learn.wordpress.org</a> platform. To contribute, please <a href=\"https://www.surveymonkey.com/r/LearnWordPress\">fill out an anonymous survey</a> (by August 13) OR <a href=\"https://forms.gle/jdk2qkkvGyszx1SG6\">join a short video call</a> to share feedback (on the week of August 2-6).</li><li>The Polyglots Team <a href=\"https://make.wordpress.org/polyglots/2021/07/19/polyglots-training-ready-for-testing/\">announced</a> that “Polyglots Training” (a course to help WordPress translators and communities) is now available for testing. <a href=\"https://make.wordpress.org/polyglots/2021/07/19/polyglots-training-ready-for-testing/\">Sign up now</a>!</li><li>The Test Team wants to<a href=\"https://make.wordpress.org/test/2021/07/30/help-shape-the-future-of-theme-design/\"> hear from theme authors</a> on how they use theme.json in order to shape its future. Help them by <a href=\"https://wordpressdotorg.survey.fm/block-theme-author-feedback\">filling out this survey</a> on or before August 13.</li><li>The Marketing Team is doing research on building engagement around WordPress releases. Please help the team by filling out <a href=\"https://forms.gle/4QFhX8fcNxKAfK8y5\">this quick, two-question survey</a> on how you search for release information. If you have any favorite features from the latest release (WordPress 5.8) let the team know by completing this <a href=\"https://docs.google.com/forms/d/e/1FAIpQLSd_2llymf79-h5sgTiprz7Kw4Gr4cbDHh-AAdAQfiArXlHksg/viewform\">short form</a>.</li></ul>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further reading</h2>\n\n\n\n<ul><li>The Meta Team launched the new <a href=\"https://make.wordpress.org/meta/2021/07/20/the-wordpress-pattern-directory-is-live/\">WordPress Pattern Directory</a> alongside the 5.8 release. The Design Team also contributed to this project, working with contributors on <a href=\"https://make.wordpress.org/design/2021/07/29/initial-patterns-for-the-patterns-directory-launched/\">launching around 85 block patterns in the directory</a>.</li><li>Check out the following blog posts from the Design Team: <a href=\"https://make.wordpress.org/design/2021/07/13/a-walk-around-the-search-block/\">A Walk Around: The Search Block</a> and <a href=\"https://make.wordpress.org/design/2021/07/27/widgets-in-wordpress-5-8-and-beyond/\">Widgets on 5.8 and beyond</a>. Join their <a href=\"https://make.wordpress.org/design/?s=show+and+tell\">Show and Tell meetings</a> on the last Wednesday of each month to learn about updates on their latest projects and new ideas.</li><li>Check out <a href=\"https://wordpress.org/news/2021/07/configuring-theme-design-with-theme-json/\">this blog post</a> to learn how to configure theme design with theme.json.&nbsp;</li><li>The Test Team has put out a <a href=\"https://make.wordpress.org/test/2021/07/20/test-team-reps-call-for-nominations/\">call for team-rep nominations</a>.</li><li>The Themes Team is in the process of discussing <a href=\"https://make.wordpress.org/themes/2021/07/20/discussion-request-for-feedback-on-requirement-changes/\">updated theme directory guidelines</a>.</li><li>Version 17.9 of WordPress for <a href=\"https://make.wordpress.org/mobile/2021/07/27/call-for-testing-wordpress-for-android-17-9/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2021/07/28/call-for-testing-wordpress-for-ios-17-9/\">iOS</a> are now available for testing.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.&nbsp;</em></p>\n\n\n\n<p><em>The following folks contributed to July’s Month in WordPress:&nbsp; <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/jillbinder/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jillbinder</a> <a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a> <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</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:\"11107\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 22 Nov 2021 06:15:42 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Fri, 19 Nov 2021 00:11:01 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:\"20201016172007\";}', 'no'),
  (184, '_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1637604943', 'no'),
  (185, '_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1637561743', 'no'),
  (186, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1637604943', 'no'),
  (187, '_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:124:\"Gutenberg Times: Creating a Poll Block for Gutenberg, Skins Are Back in Style, WordPress 5.9 in 2022 – Weekend Edition 193\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=19604\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"https://gutenbergtimes.com/creating-a-poll-block-for-gutenberg-skins-are-back-in-style-wordpress-5-9-in-2022-weekend-edition-193/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20455:\"<p>Howdy!</p>\n\n\n\n<p>I am back from our trip to Chicago. It is a fun city even when it&#8217;s cold. I took it as a  training run for our Christmas travels to Canada in about four weeks. One afternoon, we walked Michigan Avenue, The Bean and the sculpture and botanical garden in Millennium Park. Another afternoon, we visited the Shedd Aquarium. It is definitely worth a visit should you ever get to Chicago. Their exhibition space is vast and wonderful.  My favorite section was the <a href=\"https://www.instagram.com/p/CWJxgUnAS7j/\">Caribbean Reef </a>with the most colorful corals, algae and fish. The greatest joy was however to spend some quality time with my coworkers at Automattic, Tara King and Ryan Welcher. Turns out we all like beer and scuba diving. </p>\n\n\n\n<p>Now back to Gutenberg News, WordPress release and State of the Word. I had fun catching up on all the good vibe from the community. </p>\n\n\n\n<p>Stay warm, stay calm, be brave and wait for the signs.<sup>1</sup></p>\n\n\n\n<p>Yours, 💕<br />Birgit</p>\n\n\n\n<p class=\"has-small-font-size\"><sup>1</sup> <em>Canadian Cree</em></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Monday, November 22nd, 2021 at 7pm ET / 00:00 UTC </strong> join us for WordPress Meetup organized by the group in Montclair, NJ. I will talk about <a href=\"https://www.meetup.com/WordPress-Montclair-Meetup/events/281915481/\"><strong>What is Full-Site Editing?</strong></a> and answer questions from participants. I am looking forward to seeing friends there and make new ones. </p>\n\n\n\n<a href=\"https://www.meetup.com/WordPress-Montclair-Meetup/events/281915481/\"><img /></a><a href=\"https://www.meetup.com/WordPress-Montclair-Meetup/events/281915481/\"><em>RSVP and get the Zoom Link</em></a>\n\n\n\n\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/#the-gutenberg-minute\">The Gutenberg Minute</a></li><li><a href=\"https://gutenbergtimes.com/feed/#gutenberg-team-and-core-wordpress-updates\">Gutenberg Team and Core WordPress updates</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#gutenberg-11-9-and-11-9-1-has-been-released\">Gutenberg 11.9 and 11.9.1 has been released. </a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#theme-builders-and-block-themes\">Theme Builders and Block Themes</a></li><li><a href=\"https://gutenbergtimes.com/feed/#developing-for-gutenberg-and-building-custom-blocks\">Developing for Gutenberg and Building Custom Blocks </a></li><li><a href=\"https://gutenbergtimes.com/feed/#gutenberg-for-site-builders-and-content-creators\">Gutenberg for Site Builders and Content Creators</a></li><li><a href=\"https://gutenbergtimes.com/feed/#wordpress-events\">WordPress Events</a></li></ul></div>\n\n\n\n\n<h2 id=\"the-gutenberg-minute\">The Gutenberg Minute</h2>\n\n\n\n<p>As part of the WP Minute podcast, we record a minute of Gutenberg updates to be added to the show. Here is this week&#8217;s content. </p>\n\n\n\nGutenberg Minute November 2021  for this week&#8217;s <a href=\"https://thewpminute.com/pagedaddy/\">WPMinute </a>episode\n\n\n\n<ul><li><a href=\"https://wordpress.org/themes/tags/full-site-editing/\">WordPress Theme Repository &#8211; List of Block Themes </a></li><li><a href=\"https://github.com/WordPress/gutenberg/pull/36332\">Update theme.json schema to refer to wp.org URL </a></li><li><a href=\"https://github.com/WordPress/gutenberg/pull/34843\">Add API to access global settings, styles and stylesheet </a></li><li><a href=\"https://make.wordpress.org/test/2021/11/08/fse-program-testing-call-11-site-editing-safari/\">Call for Testing: Site Editing Safari</a></li></ul>\n\n\n\n<p>Big Thank You to Matt Medeiros for including the segment every month. </p>\n\n\n\n<p><em>Updates: The Full-Site Editing will come to WordPress 5.9, however not on December 14th. There are now 28 block themes in the WordPress repository. </em></p>\n\n\n\n<h2 id=\"gutenberg-team-and-core-wordpress-updates\">Gutenberg Team and Core WordPress updates</h2>\n\n\n\n<p>The Beta 1 for WordPress 5.9 release has been moved to November 30th, 2021, due to not enough time to fix FSE interface issues for users. This also moves the date for the final release to January 2021. The new proposed schedule has January 25th, 2021 as release date. </p>\n\n\n\n<ul><li><strong>Tonya Mork</strong>, Core Tech Release lead posted <a href=\"https://make.wordpress.org/core/2021/11/17/wordpress-5-9-beta-1-delayed/\">more details on the Make Core blog.</a></li><li><strong>Robert Anderson</strong>, Editor Tech Release lead, posted <a href=\"https://github.com/WordPress/gutenberg/issues/36556\">the list of pending issues and blockers</a>. </li><li><strong>Sarah Gooding</strong> posted <a href=\"https://wptavern.com/wordpress-5-9-delayed-until-january-2022\"><strong>WordPress 5.9 Delayed Until January 2022</strong></a></li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>If you want to assist in testing Beta and release candidate versions, <strong><a href=\"https://twitter.com/courtneyr_dev\">Courtney Robertson</a></strong>, held a panel discussion  with Core Contributors George Mamadashvili, Andy Fragen and yours truly on the various options to test upcoming versions. The recording is available now <a href=\"https://www.godaddy.com/garage/gutenberg-how-to-test-the-latest-updates/\"><strong>Testing the latest features in WordPress</strong></a> with resources and links. </p>\n\n\n\n<p>After the Beta 1 release, you only need to install the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester plugin</a> and set it to c<em>hannel</em> <strong>Bleeding Edge</strong> and <em>stream </em><strong>Beta/RC Only</strong>. </p>\n\n\n\n<img />Setting <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester Plugin</a> for testing Beta and Release Candidates during the release cycle of an new WordPress version. \n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s main (trunk) branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total\" /></p>\n\n\n\n\n<h3 id=\"gutenberg-11-9-and-11-9-1-has-been-released\">Gutenberg 11.9 and 11.9.1 has been released. </h3>\n\n\n\n<p>Just before the <em>Feature Freeze</em> of the WordPress 5.9 release cycle, Gutenberg 11.9 was released. <a href=\"https://twitter.com/andrewserong\"><strong>Andrew Serong</strong></a> published the release notes in <strong><a href=\"https://make.wordpress.org/core/2021/11/12/whats-new-in-gutenberg-11-9-0-10-november/\">What’s new in Gutenberg 11.9.0 (10 November)</a></strong>.</p>\n\n\n\n<p><strong><a href=\"https://twitter.com/justintadlock\">Justin Tadlock</a></strong> posted the details as well: <a href=\"https://wptavern.com/gutenberg-11-9-focuses-on-navigation-menus-and-block-theming\"><strong>Gutenberg 11.9 Focuses on Navigation Menus and Block Theming</strong></a></p>\n\n\n\n<p>In&nbsp;<strong><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-55-gutenberg-11-9-wordpress-5-9-navigation-block/\">Gutenberg Changelog newest episode (#55)</a></strong>,&nbsp;<strong><a href=\"https://twitter.com/gziolo\">Grzegorz (Greg) Ziolkowski</a> </strong>and I discuss Gutenberg 11.9, WordPress 5.9 and Navigation Block. Surprise guest: <strong><a href=\"https://twitter.com/riadbenguella\">Riad Benguella.</a></strong> Listen in and <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><em><strong>write us a review.</strong></em></a></p>\n\n\n\n\n<p><strong>Subscribe to the&nbsp;<a href=\"https://gutenbergtimes.com/podcast/\">Gutenberg Changelog</a>&nbsp;podcast </strong><br />🎙️&nbsp;<a href=\"https://open.spotify.com/show/620NwVKQJGdTupy36zYxvg?mc_cid=4b6c9f88fe\">Spotify</a>&nbsp;|&nbsp;<a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9ndXRlbmJlcmd0aW1lcy5jb20vZmVlZC9wb2RjYXN0\">Google</a>&nbsp;|&nbsp;<a href=\"https://podcasts.apple.com/us/podcast/gutenberg-changelog/id1469294475\">iTunes</a>&nbsp;|&nbsp;<a href=\"https://pca.st/podcast/f8445ec0-7508-0137-f267-1d245fc5f9cf\">PocketCasts</a>&nbsp;|&nbsp;<a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a>&nbsp;|<br />🎙️&nbsp;<a href=\"https://www.podbean.com/podcast-detail/chi7j-9904a/Gutenberg-Changelog-Podcast\">Pod Bean</a>&nbsp;|&nbsp;<a href=\"https://castbox.fm/channel/Gutenberg-Changelog-id2173375\">CastBox</a>&nbsp;|&nbsp;<a href=\"https://www.podchaser.com/podcasts/gutenberg-changelog-878239/\">Podchaser</a>&nbsp;|&nbsp;<a href=\"https://gutenbergtimes.com/feed/podcast\">RSS Feed</a>&nbsp;</p>\n\n\n\n<img />\n\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2021&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  </p>\n\n\n\n\n<h2 id=\"theme-builders-and-block-themes\">Theme Builders and Block Themes</h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/ellenbauer\">Ellen Bauer</a> </strong>wrote an <strong><a href=\"https://www.elmastudio.de/en/theme-json-for-wordpress-block-themes-explained/\">Introduction to Theme.json</a></strong> and explained how the  configuration choices work together to manage a build a block theme, like Aino and can be used in Classic themes as well. Bauer also invites you to a Twitter Spaces conversation on November 21, 2021 at 2pm to the <strong><a href=\"https://twitter.com/i/spaces/1ZkJzbaDPVgJv?s=20\">WordPress FSE &amp; block theme chat</a></strong></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In his article <a href=\"https://wptavern.com/skins-are-back-in-style-proposal-for-themes-to-bundle-user-selectable-design-variations\"><strong>“Skins” Are Back in Style, Proposal for Themes To Bundle User-Selectable Design Variations</strong></a>, Justin Tadlock commented on a Proof of Concept by Riad Benguella, who explored &#8220;a way for extenders to offer multiple global styles variations and the user would be able to pick up one of the variation for its site.&#8221; (<a href=\"https://github.com/WordPress/gutenberg/pull/35619\"><em>on Github</em></a>). </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/critterverse\">Channing Ritter</a></strong> also experimented and explored the possibility of <a href=\"https://critterverse.blog/2021/11/10/a-global-styles-switcher/\">switching out different style settings within the Global Styles panel</a>. In the comments, Ritter mentioned that a feature like that could make it fairly quickly into the Gutenberg plugin for users to test. </p>\n\n\n\n<h2 id=\"developing-for-gutenberg-and-building-custom-blocks\">Developing for Gutenberg and Building Custom Blocks </h2>\n\n\n\n<p>The latest Decode Podcast episode is titled <strong><a href=\"https://developers.wpengine.com/podcast/9511712\">Gutenberg with Jason Bahl</a>.</strong>  <strong>Kellen Mace</strong> and <strong>Will Johnston</strong>, talked to <strong><a href=\"https://twitter.com/jasonbahl\">Jason Bahl</a></strong>, creator and maintainer of <a href=\"https://www.wpgraphql.com/\">WPGraphQL</a> plugin and ecosystem,  about the benefits of Gutenberg, what&#8217;s lacking in Gutenberg&#8217;s current implementation, and what implementations exist for rendering Gutenberg in headless WordPress.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/mattwatsoncodes\">Matt Watson</a></strong> shared his experience in <a href=\"https://wpowls.co/articles/creating-a-custom-block-for-wp-owls/\"><strong>Creating a Custom Block for WPOwl</strong></a>. The task was a Link block displaying and image a text blurb and a URL. Watson then described his implementation journey and covers these steps: </p>\n\n\n\n<ul><li>Building a Reusable Block, </li><li>Convert it to a Block Pattern</li><li>Why use a Block instead of a Pattern</li><li>Create a Block WordPress Script</li><li>Write the edit.js and save.js functions </li><li>Create Block Styles and Variations. </li></ul>\n\n\n\n<p>The final block is now used on the <a href=\"https://wpowls.co/wpowls-60/\"><em>WPOwls newsletter.</em></a> You can study the <a href=\"https://github.com/wholesomecode/wp-owls-owl-link\">code via the public GitHub repository</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Editor <strong><a href=\"https://twitter.com/palmiak_fp\">Maciek Palmowski</a></strong> announced the <a href=\"https://wpowls.co/the-owl-link-challenge/\"><strong>WPOwls Challenge </strong></a>for the WordPress community to build a similar block with different tools. Besides the version built as Block Patterns and Native Custom Blocks (ReactJS) they already have versions built with ACF Blocks, and via Block Builder plugin. There are other tools available, for instance you could us <a href=\"https://wordpress.org/plugins/genesis-custom-blocks/\">Genesis Custom Blocks</a> or <a href=\"https://wordpress.org/plugins/lazy-blocks/\">Lazy Blocks</a> or a <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/creating-dynamic-blocks/\">Dynamic Block</a>. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/ryanwelcher\">Ryan Welcher</a></strong> live-coded again this week. He walked us through the first part of <a href=\"https://www.youtube.com/watch?v=G6sxo9tpRvA\">Creating a Poll Block for Gutenberg</a> using <a href=\"https://react-google-charts.com/\"><em>React Google Charts</em></a> and the native <em><a href=\"https://developer.wordpress.org/block-editor/getting-started/create-block/\">WordPress Create Block</a></em> script. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/joe_hoyle\">Joe Hoyle</a></strong>, co-founder and CTO of HumanMade, published an experimental library to render custom Gutenberg blocks built in React (front-end) on the server (using PHP V8JS).  Hoyle wrote in the Readme file of the <a href=\"https://github.com/humanmade/block-editor-ssr\"><strong>repository Block Editor SSR</strong></a> &#8220;Building blocks that will render as a React-app on the front end has many possible architectures and solutions. Block Editor SSR expects blocks to be built in a&nbsp;<em>certain</em>&nbsp;way (the way that made most sense to me). Before detailing how Block Editor SSR will server-render and hydrate your custom React block, first let&#8217;s go over how building custom blocks in React (front end) is expected to go.&#8221;</p>\n\n\n\n<h2 id=\"gutenberg-for-site-builders-and-content-creators\">Gutenberg for Site Builders and Content Creators</h2>\n\n\n\n<p><a href=\"https://twitter.com/kathyzant\"><strong>Kathy Zant,</strong></a> new product marketing manager for KadenceWP, <a href=\"https://www.kadencewp.com/blog/introducing-kadence-conversions/\"><strong>introduced the new premium plugin, Kadence Conversation</strong></a>, as a no-code interface to create lightweight and performant popups, modals, slide-ins, and banners for your site. At the time of this post, the plugin is available via Black Friday sale at 40{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} off. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In his tutorial, <strong><a href=\"https://twitter.com/scruffian\">Ben Dwyer</a></strong> explains how to use the plugin <strong><a href=\"https://themeshaper.com/2021/11/17/create-a-blockbase-child-theme/\">Create A Blockbase Child&nbsp;Theme</a></strong>  and employ the existing tools to modify a Blockbase theme, and then export a bundle of templates and theme.json as a new child theme. <a href=\"https://wptavern.com/automattic-theme-team-releases-a-plugin-to-build-blockbase-child-themes\"><em>Justin Tadlock wrote about it, too.</em></a> </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><em>Block Theme No 28 </em>was added to the WordPress Theme repository. <strong><a href=\"https://twitter.com/justintadlock\">Justin Tadlock</a></strong> took it out for a spin and shared his findings: <a href=\"https://wptavern.com/wowmall-a-free-experimental-woocommerce-block-theme\"><strong>Wowmall: A Free Experimental WooCommerce Block Theme</strong></a>. Tadlock wrote: &#8220;For an eCommerce theme, it is much cleaner than others I have seen, and it leverages almost every piece of the block system. It ships over 30 block patterns.&#8221;</p>\n\n\n\n<h2 id=\"wordpress-events\">WordPress Events</h2>\n\n\n\n<p><strong>November 22, 2021 &#8211; 7pm ET / 22:00 UTC</strong><br /><strong><a href=\"https://www.meetup.com/WordPress-Montclair-Meetup/events/\" rel=\"nofollow\">Meetup Montclair, New Jersey</a></strong><br /><strong>What is Full-Site Editing?</strong> w/ Birgit Pauli-Haack</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>November 23, 2021 &#8211; 10:00 am EST / 15:00 UTC</strong><br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/282149151/\">WordPress Social Learning</a></strong><br /><strong>Discussion: Discovering theme.json for WordPress themes</strong> with Daisy Olson</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>November 27th, 2021</strong><br /><strong><a href=\"https://saopaulo.wordcamp.org/2021/\">WordCamp São Paulo</a></strong></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>December 11 + 12, 2021</strong><br /><a href=\"https://taiwan.wordcamp.org/2021/\"><strong>WordCamp Taiwan</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>December 14th, 2021 &#8211; 5:00 pm ET / 22:00 UTC</strong><br /><strong><a href=\"https://wordpress.org/news/2021/11/state-of-the-word-2021/\">WordPress News</a></strong><br /><strong>State of The Word w/ Matt Mullenweg</strong> + Q &amp; A</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>February 4+5, 2022<br /><a href=\"https://birmingham.wordcamp.org/2022/\">WordCamp Birmingham, AL</a></strong><br />Call for Sponsors and Speakers are open now. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>March 4th, 2022 all day<br /><a href=\"https://www.wordfest.live/2022/march/\">WordFest 2022</a></strong><br />a 24-hour festival of WordPress. <a href=\"https://www.wordfest.live/2022/march/call-for-speakers/\">Call for Speakers is open</a>. Deadline Dec 6th, 2021. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-drop-cap\">On the<a href=\"https://wpcalendar.io/online/\">&nbsp;<strong>Calendar for WordPress Online Events</strong>&nbsp;</a>site, you can browse a list of the upcoming WordPress Events, around the world, including WordCamps,  WooCommerce, Elementor, Divi Builder and Beaver Builder meetups.</p>\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\">Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n\n\n<p><a href=\"https://www.flickr.com/photos/13998657@N02/18526571462\" target=\"_blank\" rel=\"noreferrer noopener\"></a><a href=\"https://www.flickr.com/photos/51035555243@N01/38744499\" target=\"_blank\" rel=\"noreferrer noopener\"></a>Featured image: <a href=\"https://americanart.si.edu/artwork/baby-blocks-112064\">&#8220;Baby Blocks&#8221;&nbsp;by&nbsp;Bessie Ely&nbsp;is licensed under&nbsp;CC0 1.0</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 20 Nov 2021 06:42: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:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: Automattic Theme Team Releases a Plugin To Build Blockbase Child Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=125905\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:207:\"https://wptavern.com/automattic-theme-team-releases-a-plugin-to-build-blockbase-child-themes?utm_source=rss&utm_medium=rss&utm_campaign=automattic-theme-team-releases-a-plugin-to-build-blockbase-child-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4388:\"<p class=\"has-drop-cap\">On Wednesday, Ben Dwyer <a href=\"https://themeshaper.com/2021/11/17/create-a-blockbase-child-theme/\">announced a new block-based plugin</a> on the Theme Shaper blog. The Automattic Theme Team had built a <a href=\"https://github.com/Automattic/create-blockbase-theme\">child theme creator</a> for its Blockbase WordPress parent theme.</p>\n\n\n\n<p><a href=\"https://wordpress.org/themes/blockbase/\">Blockbase</a> has quickly started filling the role of Underscores, a starter that many developers used to create custom themes in the classic era. For block templating and global styles, something fresh was needed. It is both a launchpad and educational tool for theme authors who want to test the block theme waters.</p>\n\n\n\n<p>The approach is different now than in the past. Instead of using Blockbase as a customizable starting point, which is still a valid use case, the Automattic Theme Team is leaning far more heavily into child theming. It is a single parent to raise a legion of children, and the family has grown at a rapid pace. Since releasing Blockbase on WordPress.org, the team has already launched five child themes for it. Their <a href=\"https://github.com/Automattic/themes\">themes repo on GitHub</a> shows several others in progress.</p>\n\n\n\n<p>With the talent in the team&rsquo;s arsenal and the Create Blockbase Theme plugin at hand, they could spit out design after design after design. Of course, the child themes might begin to lose some of their flavor if the team moved too fast.</p>\n\n\n\n<p>Dwyer created a custom theme called Typewriter, which is downloadable via the announcement post. For my test, I did not go quite as far with customization and relied on one of the pre-existing color schemes from Blockbase.</p>\n\n\n\n<img />\n\n\n\n<p>I primarily wanted to get a feel for how the tool worked. After a bit of tinkering, I had something that still felt much like its parent with some simple changes.</p>\n\n\n\n<p>To use the plugin, users must install and activate the Blockbase theme. Until WordPress 5.9 is released, the Gutenberg plugin is necessary too. Currently, there are two places to make stylistic changes. The first is in the site editor. I made some adjustments to the header template part and index template. I also changed a few global styles.</p>\n\n\n\n<img />Customizing the index template and global styles.\n\n\n\n<p>The second place to modify the theme&rsquo;s design is via the customizer, which Blockbase enables (it is not accessible by default with block themes). The long-term goal should move all of these extra customizations to the site editor when it handles all the necessary use cases, such as a <a href=\"https://wptavern.com/proposed-web-fonts-api-not-coming-to-wordpress-5-9-possibly-landing-in-gutenberg-first\">web fonts API</a>.</p>\n\n\n\n<p>After switching the color scheme and selecting a couple of custom fonts, I had everything in place.</p>\n\n\n\n<img />Selecting a custom font.\n\n\n\n<p>After I had all the customizations I wanted, I headed over to Appearance &gt; Create Blockbase Theme in the admin. The page has a handful of fields to fill in &mdash; just basic theme info. Once I was finished, clicking the &ldquo;Create Blockbase Theme&rdquo; created a downloadable ZIP file.</p>\n\n\n\n<img />Generating a Blockbase child theme.\n\n\n\n<p>Everything worked. The only issue I ran into was with the theme folder slug when using a multi-word theme name. <code>Tavern Test</code> became <code>tavern_test.zip</code>. It is standard practice to hyphenate theme folders instead of using an underscore to separate multiple words.</p>\n\n\n\n<p>The plugin does add a blank <code>screenshot.png</code> file. Creators will want to change that if they intend to publicly release their custom child theme.</p>\n\n\n\n<p>This is the sort of future I have long imagined for the WordPress theme space, one that can empower anyone to create designs of their own. It is a future where an end-user, even a non-coder, can tinker around for a while, export whatever they have built, and share it with others.</p>\n\n\n\n<p>We are not at that point with WordPress itself. The site editor currently allows users to export their templates. However, I hope that this same functionality is extended to exporting a fully-installable parent or child theme in the future. The basis of democratizing design means that everyone can give it a go without learning to code.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 19 Nov 2021 23:42:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:50:\"WPTavern: WordPress 5.9 Delayed Until January 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=125857\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:145:\"https://wptavern.com/wordpress-5-9-delayed-until-january-2022?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-9-delayed-until-january-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:6511:\"<img />photo credit: <a href=\"https://flickr.com/photos/bionicteaching/5948497535/in/photolist-a4DB5k-ddR7m6-2hY62pS-2j1SNKo-2gVgBDF-2iQKbJz-2mpRzg5-o5uNv-2kZXTrc-2kaA4cG-2ipXyyx-2i1FMBL-2hczLX3-2gVikgB-2kHAzjL-2gNm6zQ-4FqcGi-7GRAo8-2gNkmv2-2gNkms1-2m7Fjzj-2hy98BL-2iABt8S-2jcVFsu-R46BYR-atjfJF-cJjJXb-2jNysNx-2kRrhRt-RaqGFB-2hzjuNi-2hxXktV-2hzoRjj-2hy7SMX-2hYCngf-2g5DqMg-2eq7vbd-Fi1aN3-Q9DhTa-2hzp4eS-2hxJzsN-j1RYuM-RNKgg5-2kNMrwW-TAdgqb-rPgJLf-2cw8mMR-2gNm6Dc-2j4c5D2-2hdmx5p\">Tom Woodward</a>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/11/17/wordpress-5-9-beta-1-delayed/\">WordPress 5.9 has been delayed</a> due to significant blockers that could not be resolved in time for Beta 1, which was previously <a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\">scheduled</a> to be released November 16. The 5.9 release team came to the decision after a lengthy deliberation on the impact a delay will have on users and contributors. </p>\n\n\n\n<p>Robert Anderson, Editor Tech Lead for 5.9, published <a href=\"https://github.com/WordPress/gutenberg/issues/36556\">a summary of the blockers</a> that were found while testing full-site editing in&nbsp;core&nbsp;this week. They are identified as either blockers for beta 1 or blockers for 5.9.</p>\n\n\n\n<p>&ldquo;Historically (and even in the linked post), &lsquo;<a href=\"https://make.wordpress.org/core/2010/04/20/deadlines-are-not-arbritrary-theyre-a/\">deadlines are not arbitrary</a>&lsquo; has referred to the ability to cut features that aren&rsquo;t quite ready yet, and include them in a future release,&rdquo; Gary Pendergast commented on the post announcing 5.9 beta 1 as delayed. &ldquo;Are there particular reasons for why this philosophy has been re-interpreted?&rdquo;</p>\n\n\n\n<p>Tonya Mork, Core Tech Lead for the 5.9 release, responded with an explanation that FSE is going to have to be a package deal. </p>\n\n\n\n<p>&ldquo;Removing those areas that need fixing were ruled out as they are too intertwined into FSE and would make it unstable,&rdquo; Mork said. &ldquo;Punting fixes was ruled out as these meant delivering a &lsquo;half-baked&rsquo; experience.</p>\n\n\n\n<p>&ldquo;The choice is between shipping these major features in 5.9 with a delay or moving these major features to 6.0 to ship in the spring.</p>\n\n\n\n<p>&ldquo;Impacts were assessed. Shipping these major features sooner than later were determined to be more beneficial with less impact.&rdquo;</p>\n\n\n\n<p>Others commenting on the post shared concerns about the features possibly being rushed after seeing the list of blockers.</p>\n\n\n\n<p>&ldquo;My initial reaction when reading the&nbsp;<a href=\"https://github.com/WordPress/gutenberg/issues/36556\">Overview of WP 5.9 pending issues and blockers</a>&nbsp;-issue on&nbsp;Gutenberg&nbsp;repository was &lsquo;holy smokes, there are so many open issues and blockers,\'&rdquo; Timi Wahalahti said.</p>\n\n\n\n<p>&ldquo;Nevertheless, from the viewpoint of a developer working in an agency and having 150+ client sites to look after, I do have similar concerns that Gary and Addison (in the Gutenberg repo issue) have already shared about rushing features out. After seeing the&nbsp;blocker&nbsp;list and reading how new major features are still under works, I&rsquo;d be very uncomfortable on updating to 5.9 after releasing it, knowing that some features were probably finished in a hurry.&rdquo;</p>\n\n\n\n<p>Contributors on GitHub cautioned that the new flows for FSE features have not been adequately tested and should not be shipped just days after landing major changes. </p>\n\n\n\n<p>&ldquo;I think there are some large red flags here that some things are not ready for 5.9,&rdquo; Gutenberg contributor Addison Stavlo said. &ldquo;Overall, it seems like right now we are rushing things in a dangerous way. We targeted 5.9 as the release for these items in core but too many things are just not ready, hence the rushing to change so many things at the last minute. Wouldn&rsquo;t it be better to miss the expected target date than to rush potentially regrettable decisions and brand new flows into core WP at the last minute?&rdquo;</p>\n\n\n\n<p>The new proposed schedule, which has not yet been officially confirmed, is as follows:</p>\n\n\n\n<ul><li>Nov 30 &ndash; Beta 1 (2 weeks from now)</li><li>Dec 7 &ndash; Beta 2</li><li>Dec 14 &ndash; Beta 3</li><li>Dec 21 &ndash; Beta 4 (optional)</li><li>Jan 4 &ndash; RC 1 (5 weeks from Beta)</li><li>Jan 11 &ndash; RC2</li><li>Jan 18 &ndash; RC 3</li><li>Jan 25 &ndash; Release date</li></ul>\n\n\n\n<p>At the time of publishing, all 18 contributors who weighed in on <a href=\"https://wordpress.slack.com/archives/C02JUSF02TT/p1637262875087500\">a poll in the 5.9 release leads slack channel</a> are in favor of the proposed new schedule. More blockers are being resolved and should continue throughout the weekend, but the delay to Beta 1 makes it inevitable that the stable release will be pushed back to January.</p>\n\n\n\n<p>The remaining consideration is whether or not FSE will be on track for inclusion in 5.9 or if it will need to be shipped in 6.0.</p>\n\n\n\n<p>&ldquo;If for some reason progress does not advance on track or something unknown / unexpected happens to cause further delays, then FSE features and TT2 theme are at risk to be punted to 6.0,&rdquo; Mork told the Tavern. The team is working to put safeguards in place to protect the release from further delays.</p>\n\n\n\n<p>&ldquo;FSE is a collection of features with some that are interconnected,&rdquo; WordPress 5.9 Testing Co-Lead Anne McCarthy said. &ldquo;This release includes a selection that are interconnected including Styles, Block theme flows, Navigation Block, etc. In order for them to really shine, it makes the most sense for them to be released together, making it hard to just delay shipping one. They need more time to be refined in order to be shipped&nbsp;<em>together</em>.&rdquo;</p>\n\n\n\n<p>The release team plans to publish an update on Monday with confirmation of the schedule moving forward. McCarthy noted that contributions have been lower this year, which has contributed to the delay.</p>\n\n\n\n<p>&ldquo;We need to recognize the very Human situation we&rsquo;re in right now both in terms of larger cultural moments coming up with various holidays/celebrations and the reality of still being in the midst of a pandemic,&rdquo; McCarthy said. &ldquo;Delaying provides sustainability to get this release right without potentially burning out the remaining contributor base.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 19 Nov 2021 23:07:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:86:\"WPTavern: BuddyPress 10.0.0 Beta 1 Delayed, Stable Release Rescheduled for December 24\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=125869\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:215:\"https://wptavern.com/buddypress-10-0-0-beta-1-delayed-stable-release-rescheduled-for-december-24?utm_source=rss&utm_medium=rss&utm_campaign=buddypress-10-0-0-beta-1-delayed-stable-release-rescheduled-for-december-24\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2662:\"<p>The upcoming BuddyPress 10.0.0 beta 1 release was scheduled for November 20, but contributors have decided to <a href=\"https://bpdevel.wordpress.com/2021/11/18/bp-dev-chat-summary-november-17-2021/\">postpone the beta</a> by two weeks, due to lack of time for adequately testing recent improvements to the planned features. The stable release has been rescheduled for December 24. This version will <a href=\"https://buddypress.trac.wordpress.org/ticket/8318\">require WordPress &gt;=&nbsp;5.4</a>. </p>\n\n\n\n<p>The delayed beta gives BuddyPress plugin developers more time to update the way they add custom tabs in admin screens, as version 10 will make changes to&nbsp;the layout of the Settings and Tools Administration screens. A short tutorial for <a href=\"https://bpdevel.wordpress.com/2021/11/17/buddypress-admin-tabs-will-look-different-in-10-0-0/\">how to update custom tabs</a> was published in a recent BP dev note.</p>\n\n\n\n<p>Version 10 will add a new <a href=\"https://buddypress.trac.wordpress.org/ticket/8582\">site membership requests</a> feature, which changes the registration process so that a site admin must manually approve requests. Approval sends an email to the user with a link to activate their account. Administrators can turn the feature on by disabling &ldquo;Anyone can register&rdquo; and enabling membership requests. Improvements to site membership requests are still under review and need more testing, which was one factor in the decision to postpone beta 1.</p>\n\n\n\n<p>Contributors are also still working on <a href=\"https://buddypress.trac.wordpress.org/ticket/8581\">extending no content activities with images and call of actions</a>, a feature that needs some refinement to the initial approach.</p>\n\n\n\n<p>Unrelated to the postponed beta schedule, BuddyPress contributors are now discussing a proposal regarding the core BP blocks.</p>\n\n\n\n<p>&ldquo;I was thinking we should probably stop adding blocks to BP Core and instead create standalone blocks into the WordPress plugins directory,&rdquo; BuddyPress core developer Mathieu Viet said during the most recent dev chat. </p>\n\n\n\n<p>One advantage of not packaging them with BuddyPress is that they can be updated independently of core updates, which happen less frequently. One contributor, Varun Dubey, noted that this will increase the number of active plugins on sites and suggested the team consider bundling them in a block collection plugin instead. Anyone with a strong opinion on the matter is encouraged to share it as a comment on the most recent <a href=\"https://bpdevel.wordpress.com/2021/11/18/bp-dev-chat-summary-november-17-2021/\">BP Dev Chat summary post</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 19 Nov 2021 05:03:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:35:\"Post Status: The Open Web Manifesto\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://poststatus.com/?post_type=mn_rocks_news&p=89816\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://cdn.poststatus.com/news/the-open-web-manifesto/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:693:\"<p>Accessibility, Creatibility, and Connectibility — these are the three things that define the Open Web in its ideal state. It can be accessed by everyone, anyone can freely create on it, and the communities that form there can sustain themselves and grow. WordPress is critical to the Open Web as an indicator of its health, an ecosystem for business growth, and a path for people to contribute to the health, growth, and future of the Open Web. We want to guide, connect, and elevate our members — WordPress businesses and professionals — as they grow. And we want to make sure we share, nurture, and replenish the common resource we have in the Open Web. <strong><br />\n</strong></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 19 Nov 2021 00:44:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jonathan Wold\";s: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:108:\"WPTavern: Donate to Big Orange Heart, Become a Self-Proclaimed Winner in the WP Builds WordPress Awards 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=125645\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:259:\"https://wptavern.com/donate-to-big-orange-heart-become-a-self-proclaimed-winner-in-the-wp-builds-wordpress-awards-2021?utm_source=rss&utm_medium=rss&utm_campaign=donate-to-big-orange-heart-become-a-self-proclaimed-winner-in-the-wp-builds-wordpress-awards-2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5730:\"<p class=\"has-drop-cap\">Flipping the usual <del>popularity contests</del> <em>WordPress-related award systems</em> on their heads, Nathan Wrigley has created something where we can all be a winner. What started as a joke to crown his WP Builds podcast as the best quickly took a positive turn that has seen several charitable donations in the past week or so.</p>\n\n\n\n<p>The awards &ldquo;contest&rdquo; is simple. Anyone can donate the minimum amount of $10 to <a href=\"https://www.bigorangeheart.org/\">Big Orange Heart</a> and show their receipt via the submission form.  They can then create a new award category for the <a href=\"https://wpbuilds.com/wp-builds-wordpress-awards-2021/\">WP Builds awards page</a> and claim themselves as the sole winner. There are 27 days remaining to enter.</p>\n\n\n\n<img />Awards page and submission form.\n\n\n\n<p>While I certainly want to be charitable, I saw this as an opportunity to crown myself as the Best WordPress Halo Player in 2021. I have already won, so no one can dispute it.</p>\n\n\n\n<p>In all seriousness, Big Orange Heart is a worthy cause in which to donate, regardless of whether you claim your award. The charity organization focuses on mental and physical health for remote workers. It offers coaching, mentoring, workshops, and other resources to over 14,500 members.</p>\n\n\n\n<p>&ldquo;So I really did not come up with this,&rdquo; said Wrigley. &ldquo;It was an accident. I saw a few posts about a variety of awards polls (both inside WordPress and outside too), and I thought that it would be funny to create an Awards poll of my own. It had only one question, which was &lsquo;Best Podcast called WP Builds&rsquo; and there was only one option to choose from, which was, <em>erm</em>&hellip;WP Builds. I thought that this was enormously funny because somewhat humorless dad jokes are the level that I&rsquo;m on.&rdquo;</p>\n\n\n\n<p>He then <a href=\"https://twitter.com/wpbuilds/status/1458387183283458056\">posted on Twitter</a> and got 30 votes for the joke award poll in which his podcast could be the only winner.</p>\n\n\n\n<p>&ldquo;A day later, I got a <a href=\"https://twitter.com/pootlepress/status/1458431706243997702\">tweet from Jamie Marsland</a> of PootlePress who said (jokingly, I expect) that he&rsquo;d give me &pound;10 if I would add a new question of &lsquo;Best WordPress Tennis Player&rsquo; and him as the only possible winner. Now, I know nothing about tennis (or WordPress, if the truth be known), and so I thought about this for a moment. I imagined all of the things that I would do with Jamie&rsquo;s &pound;10. The new Bond film at the cinema, some new tennis balls, a billionth of a Bitcoin&hellip;Then I remembered Big Orange Heart.&rdquo;</p>\n\n\n\n<p>Thus, a new fundraiser and faux awards contest had been born. Wrigley described Big Orange Heart as a charity that&rsquo;s really close to his heart. He told Marsland <a href=\"https://twitter.com/wpbuilds/status/1458432722955902977\">to donate to the organization</a> to earn his spot. A $25 contribution and a <a href=\"https://twitter.com/pootlepress/status/1458433464559091713\">screenshot of a receipt</a> later, and he had become the unofficial best WordPress tennis player.</p>\n\n\n\n<p>Not to be outdone, Nigel M Rodgers later won the &ldquo;Bestest Best WordPress Tennis Player&rdquo; award. It is all in good fun.</p>\n\n\n\n<p>&ldquo;So this silliness had taken a new turn,&rdquo; said Wrigley. &rdquo; A silly idea had generated $25 for Big Orange Heart. My heart was racing; this could be huge. I went to bed. In the morning, I woke up and sent out a new tweet.&rdquo;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">If you donate $10 to <a href=\"https://twitter.com/aBigOrangeHeart?ref_src=twsrc{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}5Etfw\">@aBigOrangeHeart</a> I will make you a 100{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} certain winner of a category of your choosing in \"The WP Builds WordPress Awards 2021\". It\'s money well spent. You\'ll feel like a winner! <a href=\"https://t.co/L8i8O4Ayog\">https://t.co/L8i8O4Ayog</a></p>&mdash; Nathan Wrigley (@wpbuilds) <a href=\"https://twitter.com/wpbuilds/status/1458433750027718658?ref_src=twsrc{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}5Etfw\">November 10, 2021</a></blockquote>\n</div>\n\n\n\n<p>&ldquo;I had set a new low for Awards,&rdquo; he said. &ldquo;I will allow you to donate/buy your way into winning whatever category you choose for yourself in exchange for a guarantee that you&rsquo;ll win!&rdquo;</p>\n\n\n\n<p>The WP Builds WordPress Awards 2021 is, without a doubt, unique. Now that we are just ahead of the holidays, it is always a welcome time to donate.</p>\n\n\n\n<p>Michelle Frechette &ldquo;is actually triplets masquerading as one person&rdquo; reads one award. Leanne Mitton is the &ldquo;Best Gnome Collector in the WordPress community.&rdquo; Isaac Coleman is &ldquo;The Most Awesome 13 Year Old in the World&rdquo; &mdash; <em>there could be a proud parent involved in that one</em>. And, there are many others to read through just for laughs.</p>\n\n\n\n<p>Wrigley does not yet know if he will run it in 2022. He is waiting to see how this one turns out. With enough support from the WordPress community, it could be fun to keep up with every year.</p>\n\n\n\n<p>For now, Big Orange Heart is the only accepted charitable organization. However, I asked if Wrigley would be open to others in our space in the future, assuming he keeps it up next year.</p>\n\n\n\n<p>&ldquo;I&rsquo;m sure that there would be ways to allow the person making the donation to choose alternative charities,&rdquo; he said. &ldquo;This seems like a great idea! I&rsquo;m open to suggestions about which charities we could include.&rdquo;</p>\n\n\n\n<p><strong>Note: </strong><em>Nathan Wrigley runs the WP Jukebox podcast for WP Tavern.</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:\"Thu, 18 Nov 2021 19:12: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:86:\"Post Status: Post Status Excerpt (No. 33) — The Next Chapter For In-Person WordCamps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=89029\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://poststatus.com/excerpt/33/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3940:\"<h2>&#8220;I expect the hallway track to be pretty busy during this event.&#8221; —Nathan Ingram</h2>\n\n\n\n<p class=\"has-drop-cap\">In this episode of Post Status Excerpt, David talks with special guests <strong>Nathan Ingram</strong> and <strong>Ryan Marks</strong> about <strong>WordCamp Birmingham 2022</strong> — one of the first in-person WordCamps after almost two years of no live events anywhere in the world. With 200+ people expected to attend, Nathan and Ryan talk about the safeguards that will be in place, how they are managing expectations, how their sponsorships are being handled, the role of hybrid events, and how WordCamp Birmingham\'s reboot is being received in the WordPress community.</p>\n\n\n\n<p><strong>Also don\'t forget: </strong>We\'re encouraging listeners to check out the &#8220;<a href=\"https://poststatus.com/make-wordpress/\">Week at WordPress.org</a>&#8221; — get the feed <a href=\"https://poststatus.com/make-wordpress/feed/\">here</a> — and <a href=\"https://poststatus.com/submit-2021-black-friday-cyber-monday-deals/\">submit your Black Friday / Cyber Monday deals</a> to us at Post Status for us to share.</p>\n\n\n\n\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 brief you on important WordPress news — in about 15 minutes or less! Learn what\'s new in WordPress in a flash. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/26a1.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/13.0.1/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h3 id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul><li><a href=\"https://birmingham.wordcamp.org/2022/\">WordCamp Birmingham / WP\'Yall</a></li><li><a href=\"https://twitter.com/dimensionmedia\" target=\"_blank\" rel=\"noreferrer noopener\">David Bisset (Twitter)</a></li><li><a href=\"http://twitter.com/nathaningram\">Nathan Ingram (Twitter)</a></li><li><a href=\"http://twitter.com/cdrmarks\">Ryan Marks (Twitter)</a></li><li><a href=\"https://twitter.com/post_status\" target=\"_blank\" rel=\"noreferrer noopener\">Post Status (Twitter)</a></li></ul>\n\n\n\n<h3><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/sandhills\" target=\"_blank\" rel=\"noreferrer noopener sponsored nofollow\">SpinupWP</a></h3>\n\n\n\n<p>Spin up your own extremely fast WordPress server in minutes with <strong>SpinupWP</strong>. Use any cloud hosting provider you want, and manage your servers remotely with a simple but powerful control panel. Get the security and performance of managed hosting without losing the independence of hosting your projects and your clients yourself.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Nov 2021 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:12:\"David Bisset\";s: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:121:\"WPTavern: New Core Web Vitals Technology Report Shows Overall Pass Rate for WordPress Sites Decreases with Newer Versions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=125594\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:287:\"https://wptavern.com/new-core-web-vitals-technology-report-shows-overall-pass-rate-for-wordpress-sites-decreases-with-newer-versions?utm_source=rss&utm_medium=rss&utm_campaign=new-core-web-vitals-technology-report-shows-overall-pass-rate-for-wordpress-sites-decreases-with-newer-versions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5696:\"<p>Some new data from a recent <a href=\"https://discuss.httparchive.org/t/new-dashboard-the-core-web-vitals-technology-report/2178\">Core Web Vitals (CWV) technology report</a> produced by the HTTP Archive shows WordPress sites running newer versions have lower CWV pass rates. </p>\n\n\n\n<p>The original report was published in July by Rick Viscomi, one of the maintainers of the HTTP Archive. The site provides a permanent repository of web performance information, giving researchers a common set of data for researching and understanding trends. Contributors&rsquo; efforts are sponsored by Google, Mozilla, New Relic, Etsy, and other companies.</p>\n\n\n\n<p>One of the most notable findings in Viscomi&rsquo;s report showed that just 22{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} of WordPress-powered origins pass the Core Web Vitals &ldquo;Good&rdquo; threshold.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>WordPress core committer Adam Silverstein wanted to dig a little deeper into this data set to see if he could extract more information about WordPress sites&rsquo; CWV performance that wasn&rsquo;t represented in the initial published graphs. He proposed an analysis that would <a href=\"https://discuss.httparchive.org/t/comparing-core-web-vital-performance-across-wordpress-versions/2256\">compare Core Web Vital performance across WordPress versions</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>How have CWV scores changed over WordPress versions? Are there measurable improvements in the wild after recent changes like adding native&nbsp;<a href=\"https://make.wordpress.org/core/2020/07/14/lazy-loading-images-in-5-5/\">image</a>&nbsp;(version 5.5) and&nbsp;<a href=\"https://make.wordpress.org/core/2021/02/19/lazy-loading-iframes-in-5-7/\">iframe</a>&nbsp;(version 5.7) lazy loading and&nbsp;<a href=\"https://make.wordpress.org/core/2021/06/07/wordpress-5-8-adds-webp-support/\">WebP image support</a>&nbsp;(version 5.8)?</p></blockquote>\n\n\n\n<p>Silverstein worked with Viscomi to create a query that would extract performance data grouped by WordPress version. He found that core additions like native image and iframe lazy loading, and WebP image support have had no measurable improvement on CWV scores in the wild. </p>\n\n\n\n<div class=\"wp-block-image\"><img /><a href=\"https://datastudio.google.com/u/0/reporting/ab251873-b787-4a8e-b4c8-efccf4b9a911/page/HUaeC?s=vvFHFeV3n_Q\">WordPress Versions Core Web Vitals report</a></div>\n\n\n\n<p>&ldquo;Lazy loading may be too aggressive as it is applied to all images,&rdquo; Silverstein said, noting that <a href=\"https://web.dev/lcp-lazy-loading/\">lazy loading can be detrimental</a> if over used. This should be remedied soon. Google-sponsored WordPress core committer Felix Arntz opened <a href=\"https://core.trac.wordpress.org/ticket/53675\">a ticket to improve lazy loading</a>, which will be included in WordPress 5.9. </p>\n\n\n\n<p>&ldquo;WebP adoption in WordPress has been growing since the 5.8 release, however users need to manually convert their images to WebP before uploading to take advantage of the format,&rdquo; Silverstein said. &ldquo;Landing WebP as the default format for sub-sized images which was started in&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/52867\">this ticket</a>&nbsp;will have a much bigger impact by automatically converting uploaded images to WebP.&#8203;&#8203;&rdquo;</p>\n\n\n\n<p>A few highlights of Silverstein&rsquo;s observations from the analysis include: </p>\n\n\n\n<ul><li>70{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} of origins are on the latest version of WordPress and 88{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} are on one of the last two versions, meaning changes we make to core reach the majority of sites relatively quickly.</li><li>The number of origins is quite low for older versions of WordPress, with fewer than 5k origins for most versions before 4.7</li><li>Overall CWV pass rates have generally decreased over WordPress versions. Although it might also be the case that &ldquo;leading-edge&rdquo; websites that update to the latest version are generally slower than those that linger on older versions.</li></ul>\n\n\n\n<p>Silverstein anticipates this analysis will provide the basis for tracking major improvements in the future. The Google-sponsored WordPress contributors on his team are active in certain core projects and are leading <a href=\"https://wptavern.com/yoast-and-google-sponsored-core-contributors-propose-new-wordpress-performance-team\">WordPress&rsquo; new performance team</a> with the goal of improving core performance as measured by&nbsp;<a href=\"https://web.dev/vitals/\">Google&rsquo;s Core Web Vitals</a>&nbsp;metrics.</p>\n\n\n\n<p>&ldquo;Basically I wanted to create a way to measure the impact of core WordPress improvements on WordPress sites (at scale),&rdquo; Silverstein told the Tavern. &ldquo;My team at Google is focused on helping improve the performance of the web at scale, and WordPress is a huge part of that! You may have noticed us working on features like lazy loaded images and iframes, WebP image support and now helping start the performance group. I wanted to find a way to see if our work is having a measurable impact &ndash; and not just on a vanilla WordPress site you might set up for testing, but in the wild, or real world websites that upgrade to the latest version of WordPress. That is the goal of the dashboard.&rdquo;</p>\n\n\n\n<p>The new <a href=\"https://datastudio.google.com/u/0/reporting/ab251873-b787-4a8e-b4c8-efccf4b9a911/page/HUaeC?s=vvFHFeV3n_Q\">dashboard</a>, which tracks WordPress CWV performance by version, is available to the performance team for monitoring their progress with each new WordPress release. Google-sponsored contributors are using it to measure the impact of their efforts across various performance initiatives.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Nov 2021 03:15:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:53:\"WPTavern: Rank Math SEO Launches a Content AI Feature\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=125464\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:151:\"https://wptavern.com/rank-math-seo-launches-a-content-ai-feature?utm_source=rss&utm_medium=rss&utm_campaign=rank-math-seo-launches-a-content-ai-feature\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8496:\"<p class=\"has-drop-cap\">Last week, the popular <a href=\"https://wordpress.org/plugins/seo-by-rank-math/\">Rank Math SEO</a> plugin received a major update that includes a new artificial intelligence system. The Content AI feature is a SaaS product that behaves like a personal writing assistant to boost search rankings.</p>\n\n\n\n<p>&ldquo;We built Rank Math&rsquo;s Content AI feature to revolutionize the content production and optimization process with proprietary AI that gives SEOs and content marketers a competitive edge,&rdquo; said Bhanu Ahluwalia, Rank Math&rsquo;s CMO.</p>\n\n\n\n<p>The system allows users to research what their content should look like based on a keyword. Each keyword analysis costs one credit. This data is stored on the user&rsquo;s server, so the same keyword used on multiple posts does not cost extra. Users get five free credits after signing up for a user account with Rank Math. However, they must upgrade to one of the three commercial plans, ranging from $59 to $499 per year, for more.</p>\n\n\n\n<p>Each of the <a href=\"https://rankmath.com/offer/\">commercial plans</a> comes with a specific number of credits. They are marketed as free extras, but they are not &ldquo;free&rdquo; for users who want to upgrade for credits alone. The team says they are working on a pricing solution to address this.</p>\n\n\n\n<p>Users should see a new Content AI module that they can enable from the plugin&rsquo;s Dashboard screen. Turning this on creates a new tab under the plugin&rsquo;s General Settings page for further configuration.</p>\n\n\n\n<img />Content AI general settings.\n\n\n\n<p>The Content AI feature works with the WordPress editor, the classic editor, Elementor, and Divi. However, the team plans to extend this support to other page builders in the future</p>\n\n\n\n<p>Users can then enter a focus keyword from the post-editing screen and click the Content AI button. From there, they can research their chosen keyword, and Rank Math pulls up suggestions from their system.</p>\n\n\n\n<img />Example post with Content AI score.\n\n\n\n<p>The scoring system is easy to understand. Above 80 (in the green) is considered &ldquo;good.&rdquo; Anything below might need some work based on the plugin&rsquo;s recommendations.</p>\n\n\n\n<p>The primary suggestions from the Content AI center on total words, links, headings, and media. When asked how the numbers were figured, Ahluwalia said, &ldquo;This is a computation performed based on the top-ranking content in search engine results pages (i.e., characteristics of content that ranks).&rdquo; It is a proprietary system, so maybe the team is not ready to give away the exact details.</p>\n\n\n\n<p>The feature also lets users copy related keywords to use in their posts, offers questions that the content should answer, and lists potential links to use.</p>\n\n\n\n<p>The following video explains how Content AI works:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<h2 id=\"are-content-scores-a-good-thing\">Are Content Scores a Good Thing?</h2>\n\n\n\n<p class=\"has-drop-cap\">I am admittedly skeptical of any claims from SEO tools. There is value in most of the plugins in the space, and Rank Math is no different. However, I also want end-users to take SEO or content scores with a grain of salt. Hitting a specific word, link, heading, or media count is not going to make or break you. These should be guidelines, not goalposts.</p>\n\n\n\n<p>When asked how the score was calculated, I was pointed to a <a href=\"https://rankmath.com/kb/seo-score-vs-content-ai-score/\">knowledgebase article</a> on the Rank Math website. Nothing in the Content AI section explicitly explains the &ldquo;math&rdquo; behind the score. Essentially, the documentation references how the AI analyzes search results for various factors and describes how the tool works. There is some generally solid advice throughout, but it does not answer how those scores are calculated.</p>\n\n\n\n<p>One particular area of concern was the recommended media count for each post. I had access to a full demo of the feature with a few dozen posts to check. Nearly all that I ran through the Content AI had a recommendation of using 18 media. The number felt off. While I cannot claim to be an SEO guru, I do not see why a typical 1,000 or 2,000-word post should need that many images or videos. Even with web-optimized media, that could bring page-loading speed to a crawl for many site visitors.</p>\n\n\n\n<p>&ldquo;That entirely depends on the focus keyword that you had set for your post,&rdquo; said Ahluwalia on how the recommended count is determined. &ldquo;Page speed is a ranking factor, but the media count and its associated guideline there is a super simple way to quickly see and consider whether that&rsquo;s something that you need to do to rank as well. If we&rsquo;re, for example, looking at the keyword &lsquo;SEO tools,&rsquo; the recommendation is as high as 26, which is unsurprising because the majority of ranking content hasn&rsquo;t just covered essential SEO tools, they&rsquo;ve covered the 15, 20, or even 109 &lsquo;best SEO tools.&rsquo;</p>\n\n\n\n<p>&ldquo;This concern with using media in content as it relates to page speed is surprisingly common, but the reality is that content without design doesn&rsquo;t typically perform particularly well (even if it ends up ranking, then not from a conversion/social sharing perspective because people leave with the impression of encountering a wall of text). A lot of the content on our site wouldn&rsquo;t be the same without the images in the posts to paint the full picture and distill what are complex SEO processes/ideas into something that&rsquo;s super simple for people to understand.&rdquo;</p>\n\n\n\n<p>I generally agree that sites should use media alongside text. Looking over one of the demo posts I had access to, the content did not seem to warrant the recommended count.</p>\n\n\n\n<p>This particular post had 1,199 words and 32 paragraphs. It also had six images, which presumably played a significant role in the 20/100 score. Content AI recommended 18 instances of media.</p>\n\n\n\n<img />\n\n\n\n<p>Had the post met the recommended media count, there would have been one image for at least every two paragraphs. Even with half that number, visitors would unlikely think they are just &ldquo;encountering a wall of text.&rdquo;</p>\n\n\n\n<p>Maybe the analysis is correct. Perhaps it will help sites rank. But, that much media mixed in with text strikes me as a sub-optimal reading experience.</p>\n\n\n\n<p>My primary concern with tools like Content AI &mdash; this applies to SEO plugins in general &mdash; is that site owners are trying to make sure they are <em>in the green</em>. Instead of writing for readers, they are writing to rank. The two things are not mutually exclusive, but when end-users take recommendations as gospel, it can lead to stunted prose.</p>\n\n\n\n<p>&ldquo;We completely agree, and while AI content has come a long way, we&rsquo;re very much also still fans of well-researched content that&rsquo;s put together by humans like you and I (as is all of the content on our own blog),&rdquo; said Ahluwalia. &ldquo;The goal with Rank Math&rsquo;s Content AI is assisted content production and optimization (streamlined by software).</p>\n\n\n\n<p>&ldquo;Broadly speaking, as you say, traffic-light style scores or numerical scores don&rsquo;t paint a full picture for most content. This was a very big motivation for the new content optimization suggestions that go beyond typical scoring (that is the same no matter what you&rsquo;re writing about). When writing something that isn&rsquo;t search-driven at all (i.e. targeting a keyword and search intent that has little demand and no competition with a thought leadership piece, for example) you&rsquo;re not writing for searchers, you&rsquo;re writing for a specific set of people you have in mind. This content is still incredibly valuable though.&rdquo;</p>\n\n\n\n<p>He went on to say that for what the Rank Math team calls &ldquo;search-driven&rdquo; content, there are specific elements that well-ranking competing content has in common.</p>\n\n\n\n<p>&ldquo;It goes without saying that when using content optimization tools the consideration for still writing good content that&rsquo;s helpful has to be there for the end result to be truly exceptional,&rdquo; he said. &ldquo;With the aim here being to aid the creation of content, ensuring it addresses search intent, and meets what search engines deem valuable and useful content.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Nov 2021 01:11: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:92:\"Gutenberg Times: Gutenberg Changelog #55 – Gutenberg 11.9, WordPress 5.9, Navigation Block\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=19591\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-55-gutenberg-11-9-wordpress-5-9-navigation-block/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:56225:\"<p>Birgit Pauli-Haack, Grzegorz Ziolkowski discuss Gutenberg 11.9, WordPress 5.9 and Navigation Block. Surprise Guest: Riad Benguella</p>\n\n\n\n<ul><li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li><li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li><li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li><li>Production:&nbsp;<a href=\"https://paulisystems.net/wordpress-consulting\">Pauli Systems</a></li></ul>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/changelog-54-gutenberg-11-8#shownotes\">Show Notes </a>/ <a href=\"https://gutenbergtimes.com/podcast/changelog-54-gutenberg-11-8#transcript\">Transcript</a></p>\n\n\n\n<span id=\"more-19591\"></span>\n\n\n\n<p><strong>Subscribe to the&nbsp;<a href=\"https://gutenbergtimes.com/podcast/\">Gutenberg Changelog</a>&nbsp;podcast via your favorite podcast apps!</strong><br />🎙️&nbsp;<a href=\"https://open.spotify.com/show/620NwVKQJGdTupy36zYxvg?mc_cid=4b6c9f88fe\">Spotify</a>&nbsp;|&nbsp;<a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9ndXRlbmJlcmd0aW1lcy5jb20vZmVlZC9wb2RjYXN0\">Google</a>&nbsp;|&nbsp;<a href=\"https://podcasts.apple.com/us/podcast/gutenberg-changelog/id1469294475\">iTunes</a>&nbsp;|&nbsp;<a href=\"https://pca.st/podcast/f8445ec0-7508-0137-f267-1d245fc5f9cf\">PocketCasts</a>&nbsp;|&nbsp;<a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a>&nbsp;|<br />🎙️&nbsp;<a href=\"https://www.podbean.com/podcast-detail/chi7j-9904a/Gutenberg-Changelog-Podcast\">Pod Bean</a>&nbsp;|&nbsp;<a href=\"https://castbox.fm/channel/Gutenberg-Changelog-id2173375\">CastBox</a>&nbsp;|&nbsp;<a href=\"https://www.podchaser.com/podcasts/gutenberg-changelog-878239/\">Podchaser</a>&nbsp;|&nbsp;<a href=\"https://gutenbergtimes.com/feed/podcast\">RSS Feed</a>&nbsp;</p>\n\n\n\n<p class=\"has-large-font-size\" id=\"shownotes\"><strong>Show Notes </strong></p>\n\n\n\n<h2 id=\"announcements\">Announcements</h2>\n\n\n\n<p id=\"jerseypress-what-is-full-site-editing\">Nov 22, 2021 7pm EST / 0:00 UTC <br /><a href=\"https://www.meetup.com/WordPress-Montclair-Meetup/events/281915481/\"><strong>JerseyPress: What is Full-Site Editing?</strong></a><br />WordPress Meetup in Montclair, New Jersey </p>\n\n\n\n<p><a href=\"https://wordpress.org/themes/tags/full-site-editing/\">𝗕𝗹𝗼𝗰𝗸 𝗕𝗮𝘀𝗲𝗱 (𝗙𝗦𝗘 𝗰𝗼𝗺𝗽𝗮𝘁𝗶𝗯𝗹𝗲) Theme in the WordPress Directory</a></p>\n\n\n\n<h2 id=\"what-s-released\">What&#8217;s released: </h2>\n\n\n\n<p><a href=\"https://wordpress.org/news/2021/11/wordpress-5-8-2-security-and-maintenance-release/\">WordPress 5.8.2</a></p>\n\n\n\n<h3 id=\"gutenberg-11-9\">Gutenberg 11.9</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/11/12/whats-new-in-gutenberg-11-9-0-10-november/\">What’s new in Gutenberg 11.9.0 (10 November)</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/gutenberg-11-9-focuses-on-navigation-menus-and-block-theming\">Gutenberg 11.9 Focuses on Navigation Menus and Block Theming</a></p>\n\n\n\n<p></p>\n\n\n\n<h2 id=\"what-s-in-active-development-or-discussed\">What&#8217;s in active development or discussed</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/test/2021/11/08/fse-program-testing-call-11-site-editing-safari/\">FSE Program Testing Call #11: Site Editing Safari</a></p>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-container-619a83e0f3b02 wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<ul><li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li><li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gziolo\">@gziolo </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li><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><li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li></ul>\n</div></div>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\">Transcription</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, hello and welcome to our 55th episode of the Gutenberg Changelog podcast, recording on November 15th, 2021. In today&#8217;s episode, we will talk about Gutenberg 11.9, WordPress 5.9 coming up to a WordPress instance near you and then about navigation area block on Full-Site Editing and all the good things that come to WordPress.</p>\n\n\n\n<p>I&#8217;m Birgit Pauli-Haack, curator of the Gutenberg Times and WordPress developer advocate. And today, I have two co-hosts. You all know Grzegorz Ziolkowski, JavaScript developer at Automattic and WordPress core contributor. And our surprise guest today is Riad Benguella, one of the lead developers on Gutenberg and also code wrangler at Automattic. I am delighted you are here with us Riad, thanks for joining us.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Hi, Birgit. Thanks for having me. It&#8217;s an honor for me to join you and Grzegorz on the show, and help spread the Gutenberg love to the community.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah. It&#8217;s good. Yeah. Well, your passion for it is really contagious when I saw you before at WordCamp US and so when we met, it&#8217;s always nice and yeah patiently explaining things to me. So are you both on a team retreat? Where are you right now in the world and how are you doing?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Hola, qué tal? That means greetings from Spain. So I&#8217;m so happy that Riad joins us today to discuss the latest 11.9 Gutenberg plugin release and the upcoming COR press 5.9 release.</p>\n\n\n\n<p><em>Riad Benguella</em>: Yeah. It&#8217;s so great to be able to meet colleagues again, we are kind of learning to travel again. Right?</p>\n\n\n\n<p>And yeah, I&#8217;m also, so looking forward to be able to join the community in upcoming word camps in-person events. We miss these a lot.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: The one is happening in Seville in December. That&#8217;s going to be fun.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You&#8217;re going to be there in December in Seville.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I&#8217;m not it&#8217;s the connection to Seville is bad for me, but I know that some of my colleagues from Spain, which will be there from Automattic.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p>Riad Benguella: Personally I&#8217;m so looking forward to word camp Europe in Porto in June, hopefully.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, me too. Me too. And I&#8217;m so excited. I was excited two years ago when it was supposed to happen and now I&#8217;m even more excited to come to Portugal and to see everybody from Europe again, it&#8217;s going to be such a great event. And I hope that all the people that are still hesitant about vaccinations, that they get their shots, also the booster shots so we can all be together. Because I found that in-person meetings are so much richer than even though an online meeting like this, it&#8217;s good to help out and kind of bridge the gap. But the in-person meeting, even with family, we visited the family for five weeks in August and September. And there was such a relief to finally be together in one room again, and just hang out and go out and eat and just sit and chat. Yeah. But back to here.</p>\n\n\n\n<h3 id=\"announcements-1\"><strong>Announcements</strong></h3>\n\n\n\n<p>So I just wanted to let you know that November 22 is a WordPress meetup in Montclair, New Jersey, which is a virtual meetup and anybody can join. And I will demo the concept of full-site editing. And I will also take questions, AMA style, ask me anything style and it will take place on 7:00 PM eastern 12:00 AM. I was just going to think, is this am or PM because, it&#8217;s 12:00 AM UTC. And if you go to meetup.com, look for WordPress Montclair in New Jersey to sign up for it. Well, of course we will have the link in the show notes but it would be great if you want to learn more about what&#8217;s coming to WordPress 5.9 and Full Site editing to join us there.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: And speaking of that, I would like to thank props to Munir Kamal for reminding us on Twitter about the new tag that is in the WordPress teams directory, which called Full-Site editing. And it allows you to see all the block teams that are already there and it looks that we have 27 teams that are marked with this tag.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>:&nbsp; Yeah. That&#8217;s great that, tweeting that out Munir. I&#8217;m also seeing that&#8217;s also a link that I will share in the show notes, of course, and also in the meeting at Montclair and some of the themes that are in there are actually universal themes. They work for a classic theme or a block theme. So it&#8217;s quite interesting to see how you can switch it over. But don&#8217;t use them on production caveat it&#8217;s still a beta kind of feature.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, it&#8217;s like in one month, everything could change.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right. Everything, the whole Internet&#8217;s going to change. But only if you want it. Yeah, we don&#8217;t want to scare anybody to upgrade to 5.9 because it&#8217;s all opt in. And it&#8217;s only when you have a block theme available, the Full-Site Editing is actually available to you.&nbsp;</p>\n\n\n\n<h3 id=\"what-s-released-wordpress-5-8-2-and-gutenberg-11-9\"><strong>What’s Released &#8211; WordPress 5.8.2 and Gutenberg 11.9&nbsp;</strong></h3>\n\n\n\n<p>So what&#8217;s released in last week, we had the WordPress 5.8.2 release, that&#8217;s a maintenance and security fix. And if you haven&#8217;t updated yet, you definitely should do so now. Most WordPress managed hostings automatically update to a point release, but not everybody is comfortable doing that, but update it. And the other release was of course the Gutenberg 11.9 plugin release with 223 PRs, yes I counted them and they made it into the release.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: The largest ever.</p>\n\n\n\n<p><em>Riad Benguella</em>: I also counted the PRs for WordPress 5.9, and it&#8217;s actually 600 feature PRs and like 400 bug fixes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Wow.</p>\n\n\n\n<p><em>Riad Benguella</em>: So it&#8217;s like 1000 PRs that are coming to WordPress 5.9.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Whoa.</p>\n\n\n\n<p><em>Riad Benguella</em>: In a couple of weeks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, that&#8217;s huge. Yeah. So the&#8230;</p>\n\n\n\n<p><em>Riad Benguella</em>: I don&#8217;t know how the community managed to do that, but yeah. It&#8217;s very impressive.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Wow. Yeah. Well, thank you for the data. So 600 features and 400 bug fixes. That&#8217;s a thousand, wow. Yeah and how many contributors, you don&#8217;t know, but we will know in December.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. That&#8217;s important. Someone will run the script that will calculate everything for us.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: So stay tuned.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Stay tuned. Right. Okay. So what&#8217;s in Gutenberg 11.9.&nbsp;</p>\n\n\n\n<h3 id=\"enhancements\"><strong>Enhancements</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> So first we start with new blocks, but they are not part of WordPress 5.9&#8217;s release. They are still experimental and they are related to comments block, we already have one that is going to be in 5.9, this which is called post comments and is basically everything you see when you go to the comments section under the post. And this one is something brand new. So we are doing it in a way that is more granular and similar to the way how the query loop block works. So the new blocks are comment replying, comment edit link, comment outer avatar, and the comments query loop. There is also comment templates. So the idea is you can combine everything, decide what you want to display and so on.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Riad Benguella</em>: I was going to mention the navigation block and the work that has been performed during this release, which is an important work that was actually answering some feedback from the user testing that happened on FSE. So users were finding it a bit hard to actually reuse navigation across teams and across templates for FSE teams. So an important work went into the navigation block during this release. So now the blocks are actually saved into their own custom post type. They work like template parts so you should be able to reuse navigation menus more easily across templates, and when you switch teams.</p>\n\n\n\n<p>Also the same features will allow classic themes to migrate more seamlessly into a block theme. So when you switch from a classic theme to a block theme, all your navigation should probably be retained. And yeah, these are some important change that are coming and actually was important before the beta of WordPress 5.9, which is I think coming tomorrow.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right. Yeah. It needed to be within the feature freeze. So it makes it in 5.9 and bug fixes will come probably with the next plugin release that will be back porting some of the issues.</p>\n\n\n\n<p>Yeah. Thank you for mentioning the navigation block I have, in the last few days before I went to Chicago, tested some of the navigation items, and I&#8217;m glad that some made it in there. One is the single placeholder for the block. Where you can actually select the menu when you already have one or add all the pages or start an empty navigation block. And that is really helpful for users to get it all set up. But I also like, and I don&#8217;t think it&#8217;s in the release note now, but what also helps is that you can add the site title to the navigation or a site logo to the navigation block.</p>\n\n\n\n<p>So it&#8217;s all kind of one unit that is on the header. That definitely spruces up the FSE, as Riad mentioned, FSE means Full-Site Editing and listeners will know, that referred to the Full Site Editing outreach program, that is run by Anne McCarthy. Do we have anything else? Oh, what I also like is the responsive navigation, there is a way to get the hamburger menu out of the box with a little feature there. And you can decide if you want the hamburger menu by default, also for your desktop site or just for the mobile site. And another tool is there that you can have the menu, have a navigation, an orientation horizontal or vertical. So you could if you wanted to put it in a column block on the left hand side, and it kind of goes down the left hand side, like one of the default themes, I think it was 15 that had a navigation block on the left hand side, yeah. All right and then we had these post comments, but it was interesting to hear that will not come into 5.9. Thanks for pointing that out.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: There, are two things it&#8217;s quite confusing because we had a post comments like plural, a post comment, but also post comment, singular block. So the, the one that has that got deprecated was the more or less what we are trying to replicate now with comment template block. But the old one, it was just very limited. And it worked more like a format you had to provide a comment ID, which was very hard to use for you. You don&#8217;t know the comment ID of your comments. So yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I don&#8217;t even know the post ID. Yeah. Okay.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Otherwise there was enhancement to the post comments blocks that will be included also in Twenty Twenty-Two default theme. And there was some features missing, there was some issues with the marking inside the block, and also in some cases is when the outer of the site decides to close the comments. So we should show proper messaging or you can also on your website decide that after a certain amount of time, you can no longer comment on posts anymore. So these cases are sorted it out and it should work pretty good in those situations.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And I also see that the post comment form that&#8217;s now available for block based theme on the post template, I would think. Yeah. Excellent. Excellent.&nbsp;</p>\n\n\n\n<p>Then there were some enhancements for accessibility with announcing the formatting change to screen readers also communicate to the screen reader the post title is a text area and some other smaller fixes or enhancements there, which is in all the little things that kind of make a user experience so much richer.</p>\n\n\n\n<p>On the block editor we have the enable rich previews in the link UI for the site editor. That is something that had been in the block editor for, I think two versions of the plugin and now it also comes to the site editor. That&#8217;s a feature that when you put a link text in a paragraph or in a navigation or wherever you need it and you save it and then come back to it, you come back to update the post or you just kind of continue editing it, and you hover over the link, you get a rich preview with a title, a description as well as if it&#8217;s available, a feature image. So, you know exactly if the link is still working or if you need to update it in your content.</p>\n\n\n\n<p><em>Riad Benguella</em>: Yeah. As we get closer to 5.9 the contributors worked more on parity between site editor and post editor. So they brought these features, the link preview, the save keyboard. Now you can press command S and it triggers the saving. And there were some discussions also about the menu item of site editor and where we place it exactly and where it makes most sense. So for the moment, this decision has been to use editor and move it in their appearance. And it&#8217;s now worked that way across WordPress trunk. And also the Gutenberg plugin.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Now the controversy is that under appearance, we have editor and a theme editor, so that&#8217;s a confusing thing that probably needs to be further discussed among the contributors.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I hear you there. There is a lot of editing going on. Yeah. And the theme editor it&#8217;s really hazard because it gets you to the files of your PHP theme. And if you change a code and leave a quote out or something like that, you can actually create fatal error messages on your site. And it&#8217;s very hard to get to them to fix it. So I would always suggest to take away the theme editor instead of the site editor, because the site editor is a much safer place to be for someone who is not particularly technical.</p>\n\n\n\n<p><em>Riad Benguella</em>: Makes me wonder if it&#8217;s basically the ancestor of the site editor. In classic themes, you cannot edit the theme directly, you have to edit the code. So you go to the theme editor, or you edit the files manually. So now that you have the site editor, maybe we could consider removing the theme editor&#8217;s UI entirely. I don&#8217;t know if it makes sense anymore to have it there. Maybe some people still would still need it from time to time, but is it something that the user should be exposed then by default? That&#8217;s I think a question that could be discussed.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah I think so. You&#8217;re right.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Could be left somewhere, but probably you need to know what to do and finding in one place or when you know the link. And the other things that maybe the only reason why we should keep that exposed is for the CSS code. Maybe at this time, when not everything is covert with global styles. There are some reasons for people to use that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. It&#8217;s a similar case with the customizer. Yeah. When you have a Full Site Editing theme, a block by theme, the customizer itself, link in the appearance menu disappears, but the customizer is still available through the theme card on the theme screen. So you could still use the customizer if there&#8217;s something in there that a plugin put in there that the theme doesn&#8217;t have a control yet for it. And that could be a similar way to do, okay a Full-Site Editing theme is a block theme, is active. Yeah. Let&#8217;s remove the theme editor for that part and see what happens and just let the functionality be in there, but not have it in the menu. I think that will be valid to have that discussion. Yes. All right.&nbsp;</p>\n\n\n\n<p>Yeah, and then the next one of Full-Site Editing Enhancement is the Search. Control Component that you can have inside the navigation menu. I really like that. It could use a few more controls to adjust the size of it a bit in relation to the other items in the navigation menu. But that is certainly fixable in a later version, but just having it there, it really helpful.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. This navigation block becomes so powerful, there are so many options. And I really like how it evolves over time also, how it becomes easier to use with every release. It came a really long way from the beginning.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Riad Benguella</em>: And the challenge always with these powerful features is to find the balance between the good user experience, and also continue adding features without deteriorating the simplicity of the block. So, yeah I think we will continue to iterate on these things until we find the right balance there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I think the other balance is also to strike, what do we want as feature parity to the previous version or the previous way of doing menus? Because there were quite a few extenders who extended the menu controls through plugins and themes and all that. I&#8217;m not sure that they all have been tested and kind of migrated over. I think there&#8217;s still some experience and some learning to be done, but is there a way to do it differently?</p>\n\n\n\n<p>Yeah. Well, and then we have duo tone component there was only one change in the description that the underlying image that is to which the duo tone is applied is not changed. I think that&#8217;s a very important distinction because people always fear that something changes that they don&#8217;t have any control over and there was something else in duo tone.</p>\n\n\n\n<p>Oh yeah. The duo tone now is using transparency as well. So you could have a background and a duo tone and transparency and have the background shine through. So it&#8217;s multiple layers of features that you can put on top of it, and I will share in the show notes, a video that Anne McCarthy did to kind of show you how this all works together. And she has some very neat representation of some of her photos now with the different duo tones there. Yeah, you have to see it to actually appreciate it really and not get confused about things, but I really love it. Duo tone. It&#8217;s almost like gradients and I love gradients. You could do now gradients in duo tone with transparency, background on cover. So yeah, what else can you need?</p>\n\n\n\n<p><em>Riad Benguella</em>: There&#8217;s so many customization control now available on the plugin and the contributors keep adding more and more. And I think it&#8217;s an infinite work. You can open your imagination and just make it happen.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Riad in 10 years we will still talk about gradients and where we can apply it. Yeah, no, absolutely. Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: And there is now also a change to the tools panel, which is related mostly to the setting sidebar. So the thing that change is the type of section. So in the past, you would have a list of controls displayed at once. Now, you have better control over what&#8217;s displayed by default and you can enable more controls or hide some of them when you stop using them. It&#8217;s very similar to the dimension panel. That&#8217;s already in the plugin for quite a while. And the direction is just to give the same capabilities to all sections. So they work the same way. Yeah.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: This change also use a, a little bit that you can actually have multiple columns in the theme, in the typography controls, when they&#8217;re just small controls, you get two next to each other, and that certainly saves you some real estate or some spool on up and down on that. And, and I like it. It has a more harmonious layout there. So like that. Yeah.&nbsp;</p>\n\n\n\n<p><em>Riad Benguella</em>: The idea with these tools panels is that we should unify how blocks show their different customization option on the sidebar. So typography uses the tools panel color U could use the tools panel. I think there is another one dimensions could use the tools panel. So that way, no matter the block you are using, you could SU similar things on the, on this side. And if you find it too overwhelming, you could show and hide the controls you want.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s awesome. Yeah. Yeah. It kind of goes a little bit towards what, what we have been discussing on the developer advocacy relations team that can we have some best practices on yeah. If somebody builds a custom block yeah. Best practices on how to distinguish between the side settings and the toolbar settings and all that. I think it&#8217;s, it&#8217;s time to kind of put some of those best practices in writing. So of people can look it up and I will going to work that&#8217;s part of our 2022 kind of plan to figure that out and work with the developers on that. So consistency goes a long way in not having to figure out this for every single block or for every single type of block. How is a car applied cred and applied and all that. Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: In this case, we are following what Riad did for the block toolbar. So he created groups like for block, for formatting controls and so on. And here we will have also those extension points for dimension colors, typographic easy. You know, it&#8217;s not still setting stone, how it&#8217;ll end up. So we don&#8217;t want to spoil the game and like introduce any hustle to the community. But once everything is ready, then we&#8217;ll definitely come up with some recommendations that we share with the community. Awesome.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So the template editor has as a template part focus mode. Now that means that you can separately change the header or the footer in your site editor. There&#8217;s also a post available on the make blog/core about those editor improvements and the template part focus mode that you now can use to, when you look in the site editor, you have always the full page, but if you just want to isolate the header and just look at that, you can switch over to the template part focus mode.</p>\n\n\n\n<p><em>Riad Benguella</em>: The next thing is, if you are building a theme, whether it&#8217;s classic or block theme and using theme JSON, there is a small change that you could apply to your theme JSON. So for consistency, we removed some custom prefixes from some settings like custom line height, custom margin and custom filing, I think. So you could move to theme JSON version two and remove these prefixes that way you&#8217;re on the last version.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: So to do that, you need in your team, JSON, at a new field called, version. Oh, it&#8217;s not in new field, but you need to set version to number two. And that basically enables this new updated APIs.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And I know that there were quite a few efforts around the development team to put actually a schema up on schema store and have also the link via.webpress.org. And are those schema already updated to the version two? Do we know?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Oh, thank you for reminding about that yet. It&#8217;s done. It&#8217;s ready for both block JSON and theme JSON it&#8217;s now in WordPress domain and the new member, the URL, we will show that later in the show notes. And yes, it&#8217;s already the old one that you could use will still work because the schema in the schema store it has a very interesting configuration. So it&#8217;s now referencing the new URL, so whatever use it will work anyway. And as we found out, someone pointed that out, I don&#8217;t remember but anyway, even if you don&#8217;t provide the dollar schema field, most of the editors will be able to recognize that based on the name of the file and they will show you hints anyway. So you only need probably to do that for visual studio code explicitly.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Mm. Yeah. That&#8217;s interesting to know there&#8217;s some learning to be on the editor. So, oh you use it once I know where that was. See here. Yeah, I excellent. Speaking of gradients, now you can show all the colors on the gradient origin in the different panels. So there&#8217;s a new panel when you do site editing and color configuration, and it has the core color palette, the themed color palette. And if a user creates their own color palette, it will show there too.</p>\n\n\n\n<p>It&#8217;s a little bit crowded and I know there&#8217;s also an issue posted to find a way to actually remove the core color palette because it has so many colors and when people use it some team developers or agencies definitely would want to remove that. But it&#8217;s a nicer interface, but it has the text color 1, 2, 3 core theme and user. And then it has the background color in core theme and user colors. And then it has the link colors as well. If it, theme JSON says, please use the link color scheme as well, and then it will go in there as well. And it&#8217;s interesting to see. So I&#8217;m looking forward to the user feedback that we are going to get there to adjust an next iteration now.</p>\n\n\n\n<p><em>Riad Benguella</em>: So one of the original reasons for this feature, why do we introduce these different pallets core theme and user is, if you think about patterns, we have now a directory for patterns and theme could provide patterns and we wanted to have some color in these patterns, right? And so how can we make sure that these patterns work across themes, if teams change their own palette, it becomes harder. So the idea is to allow themes to still rely on core palettes, and pattern to still rely on core palettes. So for example, when you build a palette, you should probably only use core colors that way it works across themes, if you want to publish it to the pattern directory. And yeah, in terms of UI, it&#8217;s kind of crowded right now, especially in the post editor.</p>\n\n\n\n<p>But I think the idea is that it should get closer and closer to how it looks in the global style bar, which is kind of nested navigation. So the idea is that it should look like the global styles view of colors. So you will see at the high level button to go to the link color, another one to go to the button background and another one to go to the text color. And they are not shown every time, all the colors at the same time. So that way it&#8217;s less crowded and it allows you to navigate more efficiently. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And I can and see, that&#8217;s a very good reason to have the block parents be consistent, not so much depending on the theme color scheme, but so it shows up as you see it in the preview. And I can also see to just switch off the core colors in the user interface, so the pattern comes over, but the user can only use the theme and their own color to modify it and not have the core colors as well. Because the core colors always show up on other places when it&#8217;s not a pattern from the repository and using those core colors on other things that might not be wanted by the site owner or the theme author. Yeah.</p>\n\n\n\n<p><em>Riad Benguella</em>: Yeah. Theme authors and agencies also want to control these things more strictly. So yeah there is, they is some work in progress to allow actually to remove the core powers entirely. And yeah it&#8217;s going to be sitting in team JSON and you just enable it and it&#8217;s gone.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>:&nbsp; Awesome. It&#8217;s all so well thought through. Excellent.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: And there is now also change for the typographic block support. So because we had this change, we discussed about the block tools feature. So now most of the typography controls were added to the existing text blocks, like heading, paragraph and so on. And there are also some default controls enabled for them. So you just go and check those blocks and see how many new options are there now.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. It&#8217;s a great variety there. Yes, indeed.&nbsp;</p>\n\n\n\n<p><em>Riad Benguella</em>: The next change is another change that is meant to be for WordPress 5.9. So now that global styles are actually the landing in WordPress 5.9, and even the UI, some plugin developers and then some team developers need some API to access these settings and access these styles. If they want to adapt their code. For example, to check whether there&#8217;s a global layout or to retrieve whether I don&#8217;t know, there&#8217;s a color palette or anything, basically any settings in or style in the global style. So a new idea has been introduced, it allows you to retrieve these settings pretty easily in just a function call. You don&#8217;t have to go check directly in the theme JSON file or the user settings or anything, you just get the current value. That&#8217;s pretty handy, another also global style related API that landed pretty recently is actually arrest API to retrieve modified global styles and also the base global styles for the active team. So this could be pretty handy for plug-in and team authors.</p>\n\n\n\n<h3 id=\"apis\"><strong>APIs</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: And regarding the API functions that were introduced, they are called get_global_settings, get global_styles and get global_style sheet. So pretty easy to remember and expect a dev note published in a few weeks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Yeah, I think that was the missing piece that we got quite a few questions about in the community. So having that public API available is now so much better. So believe it or not, we&#8217;re still talking about enhancements and new features.&nbsp;</p>\n\n\n\n<h3 id=\"bug-fixes\"><strong>Bug Fixes</strong></h3>\n\n\n\n<p>Now we, I think there were about 80 or so in them, 73 and we didn&#8217;t talk about all of them, but the bug fixes also are 73 bug fixes in this release. And some of them are very granular and in the back end of it. But the one that stood out for me was that for the blocks, it fixes the relative URLs for the inline styles. So if you had a style sheet with a background color or a background image and the URL if it wasn&#8217;t an absolute URL but only relative like ../ it wouldn&#8217;t find that anymore, and that has been fixed. So quite a few developers will say finally!</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: They should still exist in WordPress 5.8. And yeah, this is something we missed because it only happens for the custom blocks and only when you opt in for the option to use those in line styles.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Good. So wasn&#8217;t all that big. Okay. So are there any other bug fixes that you wanted to mention here, Grzegorz or Riad?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> No, it&#8217;s like bugs you wanted to forget about them. You don&#8217;t want to speak.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, sometimes I find it interesting to, oh yeah that&#8217;s a bug from 2018, we finally fixed it. But I haven&#8217;t seen any of those here. So yeah, do you want to go to the next section and talk about performance Riad?</p>\n\n\n\n<h3 id=\"performance\"><strong>Performance</strong></h3>\n\n\n\n<p><em>Riad Benguella</em>: Let&#8217;s speak about performance actually. Pretty interesting subject and I enjoy working on performance a lot. So on the editor theme, we have this metrics we keep track of over time, the loading time, the typing time and we keep adding new metrics every time. And the interesting one that was worked on during this release was the list view. We added a new metric to measure how the editor performs while the list view is open. And the list view is pretty powerful to navigate the editor, but since it shows a long list of blocks, it can create some performance issues sometimes. So a new technique has been used during this release. It&#8217;s called windowing techniques for the technical folks listening to us. Basically it means the list that is currently visible is rendered, but all the remaining items on the list are actually hidden and not rendered at all. Unless you scroll the list and show them. Historically we&#8217;ve been avoiding this kind of solutions because they could have some accessibility issues and also it is very hard to get right. But thanks to the work of contributors, I think Carrie worked this a lot, we now have a solution that we think works pretty well and doesn&#8217;t introduce any accessibility problems. So now they invite you to test this and if there are any issues, please let us know.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So well, thank you. And yes, indeed. The list view is one of the most powerful tools that would come revamped WordPress 5.9, but going back to performance, I know that you all also had this check and we talked about it on the show before, where you had, 30,000 blocks in a post to kind of see the performance of it and measure it from between the different versions. How many blocks do you have in the list view to test this?</p>\n\n\n\n<p><em>Riad Benguella</em>: Oh, we use the exact same post, which I think it&#8217;s a thousand blocks or something like that. It&#8217;s a very long post. You can find it on the Gutenberg repository. You can search for large post @HTML. And it&#8217;s actually executed automatically in the CI. And every time we check the numbers. And on each release post, you can go to the bottom of the post and you see there&#8217;s a table that is there that compares the current release with the previous release and also the current release with the previous WordPress release, so that&#8217;s how we keep track of these things. We also have a separate website, which I think at the moment is not working, but I promise I&#8217;ll fix it very soon where you see the evolution of the different metrics over time for each actual comment. So that way we can pretty easily find the exact comments, the introduced performance regressions.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, I saw yesterday that was going back in time and checking the performance for WordPress 5.6 and other major releases, and maybe do you have those results? Because I was pretty excited hearing how it changes.</p>\n\n\n\n<p><em>Riad Benguella</em>: Yeah I do have results. I think loading time improved quite a bit from WordPress 5.7 And to WordPress 5.8, and in WordPress 5.9, it improved a little bit as well, 200 milliseconds or 300 milliseconds out of 3.5 seconds. The typing time also improved, by 20{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} or something from WordPress 5.8 and WordPress 5.9.</p>\n\n\n\n<p>The other metric that improved a lot between these two versions is inserter opening. We did a lot of work there. And now when you opened the inserter, it is actually quite snappy compared to how it was in the previous version. There is also another one, so the only metric that I think we need to work on a little bit more for this release is block selection. We lost 10{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} time on it, but I think we can improve this one and do better there. And for the inserter it&#8217;s actually quite impressive because at some point in the inserter, we had collapsible panels. So we didn&#8217;t show a lot of things at the same time when you open the inserter and there&#8217;s collapsible panels, it should open quick, right? And now we show everything at once. So there&#8217;s a lot of things, but we still manage to make it fast. So I&#8217;m pretty proud of about it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s impressive. Yes. Yeah, because now we have the inserter we don&#8217;t only have the core blocks, but we also have the theme blocks in there. And then also block patterns, a tab and then another reusable block tab. Yeah. Your website, Riad, I think you shared the link at one point maybe two or three months ago. And you also did performance testing with plugins. Is that a different project or is that pretty much the same kind of performance?</p>\n\n\n\n<p><em>Riad Benguella</em>: Yeah. So what I did is I was curious to check actually if I enable plugin or not, how it impacts the editor&#8217;s performance. So I actually use the exact same metrics. We have these coded up in the plugin, so I can just run the test, enable the plugin, change the plugin and run the test again, right? And then compare the numbers.</p>\n\n\n\n<p>Actually, I also spend some time with some plugin authors, because in the initial run I had some issues there and I saw some plugins impacted a lot, and I was very happy to see that they were all pretty receptive and we did some work together. And in the end, I will say the major plugins right now are doing good enough. I think that we can always do better, but we are doing good enough. And I actually encourage plugin authors to check the post if they didn&#8217;t see it, because there are their instructions to check their own plugins, to see how their own plugin impacts the editor performance. Because sometimes we get reports that the editor is very slow and I cannot choose the editor or whatever when I type it&#8217;s very slow. And sometimes we cannot do anything about it. So we have to check all the possible reasons that could cause this and plug ins can be a reason. So it&#8217;s important for both plug in authors and users to be aware of it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Wow. That&#8217;s good to know. I think I will come back to you and kind of talk about this, or at least get all the information for the show notes, but also maybe have a block post about it. That&#8217;s a little bit more prominent, because now more and more people are going to use or come on board with adopting Gutenberg and having that resource available is really, really helpful. All right. Well, thank you, Riad, for that little excursion into performance.</p>\n\n\n\n<p><em>Riad Benguella</em>: Thanks I&#8217;m always happy to dive there. It&#8217;s my personal favorite feature or favorite topic.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Aspect, yeah.</p>\n\n\n\n<p><em>Riad Benguella</em>: &#8230;Topic, I would say favorite topic.</p>\n\n\n\n<h3 id=\"documentation\"><strong>Documentation</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So now we are at the documentation section of the changelog and there were two things that stood out amongst typo changes and improving landing pages and all that one was the block schema and documentation has changed or not has changed particularly, but it&#8217;s better documented in terms of the block JSON. And that&#8217;s the follows the same process as the theme JSON does. Right. Is that what I&#8217;m saying, Grzegorz?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. So the view is a new API option in block, JSON, that will allow authors to provide Java script code. That&#8217;s going to be executed only in the front and only when the block is rendered there, so it&#8217;s pretty handy thing. And the other change is, because we are preparing to WordPress 5.9. So both features are for the upcoming major WordPress release is that there will be possibility to define more than one style sheet. And the reason for that is twofold. First, sometimes there are some styles that block author would like to apply to more than one block. So this is a way to share them through using style handle. And the other reason is that plugging out, they also want to add their own styles in a batch mode. So instead of doing their own magic, they can just use the existing APIs and inject that to all the blocks they want.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I like that instead your own magic, use core magic. Yeah, excellent. Well, thanks for letting us know. So there are some features, of course, the theme JSON documentation has been updated with missing settings and styles that is also in preparation of 5.9 and the version change there.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I think that there was link added for ways to keep up with Gutenberg and Full-Site Editing. I suspect that the link is to your resources that you keep up to date.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Keeping up with Gutenberg, yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yes. So that&#8217;s great to see it finally happening because it&#8217;s the best page to look at.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And if you are listening to the show and don&#8217;t know what Grzegorz is talking about, in the handbook on core on the make block on the references, there is a page called Keeping up with Gutenberg and it&#8217;s an index page with all the block posts from the teams that work on Gutenberg in chronological order. So it starts from the newest to the oldest, but it&#8217;s per year. So we started that 2020 in June.</p>\n\n\n\n<p>So the last half of 2020 is in the 2020 page. And this year, November, we are coming up to the end of the year, so we have all the editor meetings, what the theme team does, the design team also, publishers, the tests and the summary of the tests from the FSE program and all the other related posts. I started that because the core make block, within a day or two, you have to scroll to the third or fourth page to find something that was published yesterday. And it was really interesting to do that. So keeping up with Gutenberg index, you can actually Google that now, keeping up with Gutenberg and it comes up first. All right, so is there anything else in the changelog? Oh yeah, we have on the tool sections, we have some FSE backboard and core.</p>\n\n\n\n<h3 id=\"tools\"><strong>Tools</strong></h3>\n\n\n\n<p><em>Riad Benguella</em>: Yeah. That another kind of magic. Basically on each WordPress release, we need to backboard all the changes that are on the Gutenberg plugin and include them into core. Maybe a lot of people don&#8217;t know that&#8217;s a lot of work and that&#8217;s a lot of invisible work. We do that in two separate ways. Basically the JavaScript changes are more automatic. So we do a package NP and package release, and then we include them in core, but we also need to check all the PHP changes that happened in the work Gutenberg plugin and move them into core. And sometimes when we do that, some problems happen. For example, a function that exists in the Gutenberg plugin can exist at the same time on core. So at, on this small period of time, we need to make some adaptation, both code based, to ensure they work together. So a lot of changes on this Gutenberg release are related to that. Yeah I want to send kudos to Robert, the editor tech lead for this release. He did an awesome job to make sure everyone is on the same page and works to make sure all the changes are on WordPress trunk at the right moment.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Yeah. All right. So I think unless…</p>\n\n\n\n<h3 id=\"code-quality\"><strong>Code Quality</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Something, yeah. I have something in the code quality section, it has 25 items. So that&#8217;s great that we still remember about that aspect of work in the lights of the upcoming release and all the work caused by that. So there is new API endpoint it looks like is going to be included in the WordPress core, is it right? So this one is called the WP block V1 URL/details. This one is for the link previews. So this one is getting stable, also plugin authors will be able use to do whatever they need with that.</p>\n\n\n\n<p><em>Riad Benguella</em>: Indeed, that could be useful to show previews or get more information about URLs and exploit that in very different ways for plugin authors.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. That feature is such a small feature when you think about it, but it has so much power that it could definitely be explored quite a bit for plugin authors and even do a list of all this week&#8217;s links and then collect them all, might be a good use case.&nbsp;</p>\n\n\n\n<h3 id=\"what-s-in-active-development-or-discussed-1\"><strong>What’s in Active Development or Discussed</strong></h3>\n\n\n\n<p>All right yeah, so that&#8217;s pretty much it with our Gutenberg changelog this week. Thank you Riad and Grzegorz who get us through it. I think I have only one thing&#8230; So where is WordPress 5.9 now headed? What are the next steps?</p>\n\n\n\n<p><em>Riad Benguella</em>: I think as we mentioned to tomorrow is November 16. So it&#8217;s the release of WordPress 5.9 beta 1. I think that&#8217;s the best time for people to test. So I&#8217;m asking everyone just code, download WordPress 5.9. It is the start of a new with Full Site Editing and block teams and all global styles and all navigation on all these features. So go grab your coffee and start a block team and just try things and try to break it and just tell us what goes wrong. And we have a number of weeks to fix all the bug fixes, and we&#8217;re looking forward to your feedback on that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Yeah. I just also want to point out there is a WordPress beta test plugin in the repository, so you don&#8217;t have to install all that. So you just make it a normal WordPress install and then install the plugin for WordPress beta tester plugin, and the stream would be the point release instead of the daily trunk. But if you are brave, you could also do the daily trunk. There are core committers who actually have run trunk on their personal blogs. They&#8217;re quite brave in doing that. So yeah, beta 1 is tomorrow, November 16th, and then a week later, supposedly beta 2, the first release candidate is scheduled. And of course, that all depends on what the test was bringing all back to us or to the team.</p>\n\n\n\n<p>Release candidate, we know sometimes there&#8217;s beta 3 and beta 4, depending on how that all works, but then there&#8217;s a release candidate. One is scheduled for November 30th, and that&#8217;s also the date where the field guide with the dev notes come out and where the about page is done, and also the release post is draft and there&#8217;s a hard string freeze, means there is no bug fixing anymore. And there&#8217;s not a whole lot that can go in there in a release candidate after release candidate is available. And then there will be a dry run for the releasing workers, 5.9 in the 24 hour code freeze December 13th. But if you want to be part of the release party, that&#8217;s going to happen December 14th in the slack channel of core.</p>\n\n\n\n<p><em>Riad Benguella</em>: And it&#8217;s something else I wanted to mention about WordPress 5.9 Is the dev notes. So after beta one, you can expect a list of dev notes on the make core and if you are a plugin author or an agency or WordPress developer app, update your code accordingly, if there are changes and also use the new APIs.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Wonderful, thank you for a reminder of that.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: You can also subscribe to the Gutenberg changelog newsletter and get the list with all the links directly from Birgit.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Thank you for making a pitch on the Gutenberg Times again. That&#8217;s awesome. And if you need instructions on how to test Full-Site Editing, so Anne McCarthy published a test call for the Full-Site Editing outreach program. That&#8217;s for the non-techy people who are using site builder or page builders to build sites for others. And it&#8217;s called the site editing safari, and you get different scenarios that you can follow along with instructions on how to test this because&#8230;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Also with zebras, giraffes and elephants.</p>\n\n\n\n<p><em>Riad Benguella</em>: What about Chrome and Firefox? Is this just a safari?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Good point? No, safari is like the African safari with the giraffes and the rhinos and everything. So one scenario is personalize your homepage and setting your styles. Add some button patterns and use some of the layout controls for that, one set of instructions also is how to add a dual filter and the single post template. Those test instructions are actually also quite nicely to use for exploring the new interface on a more scripted schedule. So you don&#8217;t have to come up with ideas on how to test it. So you just use those and it really helps if you would comment on that post on the test block by November 30th. And then what normally happens is after a week or so, the feedback comes in and then Anne writes a summary for the developers working on it so they can see what else then to be changed, or she also puts issues together for the GitHub repository of a box coming out.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I also want to mention one more thing. So the release date, December 14, it reminded me that it&#8217;s also the day when the state of the word 2021 will be by the WordPress projects co-founder Matt Mullenweg.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Yes, yes. And that is scheduled for, I think it&#8217;s noon Eastern, which is dinner time in central Europe.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. So it&#8217;s 10:00 AM between 10:00 AM and 2:12 PM Eastern time and 5:00 PM UTC, which means at my place, it would be 6:00 PM Central European Time.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. I&#8217;m glad we got it all in. Yes. And so on the webpress.org/news, there is actually a call for of questions because the state of the word is normally about 45 minutes when Matt Mullenweg walks us through the last year and what&#8217;s coming up in the next year and then the next 30 minutes or so will be answering questions from the community. And there is some instructions on the webpress.org/newspost instructions, you can send them via a video and how to get them to the people who help prepare for the state of the word.</p>\n\n\n\n<p>All right, with that, that&#8217;s a very good time to end it. If you like our shows, help us spreading the word by adding a review to your favorite podcast directory. If you have news or suggestions or questions sent them to <a href=\"mailto:changelog@Gutenbergtimes.com\">changelog@Gutenbergtimes.com</a> via email <a href=\"mailto:changelog@Gutenbergtimes.com\">changelog@Gutenbergtimes.com</a> and you can always also reach us via Twitter. So my Twitter handle is at B-P-H. Grzegorz is G-Z-I-O-L-O. And then Riad&#8217;s Twitter handle is Riad Benguella. And we will of course share that all in the show notes. So it was wonderful to have you both here. Thank you, Riad for joining us. How do you feel about it?</p>\n\n\n\n<p><em>Riad Benguella</em>: Thank you. I really enjoyed the show and thank you for having me and please do continue to spread the Gutenberg word.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. Will do. Will Do.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: That was fun. Yeah, to have fun to have Riad on the shows like.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Probably that was the best I show ever. We had so much fun together.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, we did. All right. Okay. Well, let&#8217;s just get out of here for more fun. Thank you all for listening. Thank you for joining us. And I say goodbye until the next 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:\"Wed, 17 Nov 2021 13:47: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:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"HeroPress: Finding My Global Family – Samun iyali na duniya\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=4265\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:122:\"https://heropress.com/essays/finding-my-global-family/#utm_source=rss&utm_medium=rss&utm_campaign=finding-my-global-family\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17563:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2021/11/111621-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I get to make an impact for good.\" /><p><a href=\"https://heropress.com/feed/#hausa\">Wannan makala akwai shi a cikin harshen Hausa.</a></p>\n<h2>Introduction</h2>\n<p>As I sit down typing this, I’m wondering what the heck do I write about (am I allowed to say that?)!</p>\n<p>Topher says I can.</p>\n<p>So back in May this year, I got a DM from this guy called Topher.</p>\n<blockquote><p>Hello there! Could I convince you to do a HeroPress essay?</p></blockquote>\n<p>It is now October and I&#8217;m finally writing this essay. Thank you for being so patient with me and giving me a topic to write about.</p>\n<h2>How I got into the WordPress</h2>\n<p>It&#8217;s 2017 and I&#8217;m bored with work. I&#8217;d been working in project management for over 15 years and I was no longer excited about the projects I was working on. My repeat clients could tell this, I did not challenge them on certain processes. Some might say I&#8217;d become wiser in picking my battles, but I just no longer wanted to invest my energy. When that happens, you know you need to do something. You don&#8217;t want your action, or in my case inaction, to be to the detriment of the client. I knew I still loved working with and in tech but I needed to do something different.</p>\n<p>On 29 December 2017, I enrolled on a course covering web development. After covering HTML, CSS, and a bit of JavaScript, I decided to try one of the course options: WordPress. My course instructor encouraged me to go to a WordCamp. She found one was scheduled for the following weekend in Brighton. So I booked my ticket and found an Airbnb. Worst case scenario I get to spend some time on the beach (even if it was a bit chilly). But I couldn&#8217;t go to a WordCamp with no knowledge of WordPress &#8211; I thought I&#8217;d look like an idiot. So I spent that week going through the introductory course, now I was ready. Don&#8217;t ask me how much I managed to take in, just know that at least I now knew what WordPress was.</p>\n<p>I attended my first WordCamp, a 2-hour drive, in October 2018. WordCamp Brighton (WCBTN) will always hold a special place in my heart. All the people I met (sponsors, attendees, organising team, and volunteers) were amazing. I walked in there all by my lonesome and they were friendly, took time to talk to me, explain things, and Jenny Wong encouraged me to join my local Meetup. I&#8217;m not sure if it&#8217;s being in a room with like-minded people or being able to geek out (or not for some) on tech but I was excited and had a lot of fun. When I got back to London, I joined my local (well what I like to call London local) Meetup.</p>\n<p>At the time that I joined, the team was starting to look for organisers for WordCamp London (WCLDN) 2019. I&#8217;m very much a believer in learning by doing and project management involves a lot of organisation. I spoke to Gary Jones told him I was a newbie and offered to help. I was in charge of Sponsors, eek! How the hell do I do that? Don&#8217;t be afraid to ask a lot of questions. We were a fairly new team so big thanks to Dan Maby and Barbara Saul for being patient with us and our endless questions. Big thanks to the outgoing team who were available to offer advice when asked. I learnt a lot about the community whilst working on the WCLDN and I had a great time doing it.</p>\n<p>Abha Thakor encouraged me to volunteer for WordCamp Europe (WCEU) 2019 and once again it was an amazing experience. I got to visit Berlin, contribute to the Marketing team desk and met even more people. I also got to rock my big yellow exclamation mark fluorescent earrings that scream the 80s at an 80s after party. It was during WCEU Contributor day that I was introduced to Jesse Owens and the Training team. When you contribute, you get to learn more about all the different teams that make up WordPress the project and WordPress itself. It&#8217;s a great way to learn and I would encourage you to join one of the<a href=\"https://make.wordpress.org/\"> Make teams</a> (you don&#8217;t need to be a developer) there are teams like Training, Accessibility, Documentation, Marketing, and Polyglots. If you want to test the waters before joining, find a virtual Contributor day (some companies are running them) or join one at a WordCamp when we are able to meet in person. I joined the Marketing and Training team at WCEU and I&#8217;m still there today.</p>\n<p>In November 2019 Josepha Haden Chomphosy sent out a call for an all-women release squad. I wanted to know more about accessibility so I was assigned to be the 5.8 Accessibility team cohort. The support our release squad got was amazing. The beauty of the WordPress community is that though we are all at different levels on our journey, someone is always quick to help you navigate that journey. Thank you to everyone who takes the time to make us feel welcome, explain things, are patient with us, and offer cake and chocolate when we need it. I’m still part of the Accessibility team and I’m still learning, it’s a big topic. We are a small team so if you’re an expert in that area and have time to spare, you want to teach others or want to learn, I encourage you to come and join us.</p>\n<p>Summer of 2020 was the soft launch of <a href=\"http://learn.wordpress.org\">Learn.WordPress.org</a>. Shortly afterwards, Courtney Robertson asked for help in preparing for the official launch of Learn. Learn WordPress is a learning resource for anyone who wants to learn how to use, build for and contribute to WordPress. It is an open-source platform that offers a range of materials and opportunities for you to use at your own pace and at a time that works for you. Once again, I put my hand up. Do you see a pattern here? When people have ideas that are of great value to those around them, I can’t help but say yes. Someone always has a great idea and I would love to say yes to everyone but I don’t know how to clone myself yet. Mind you, Michelle Frechette tells me cloning isn’t what I think it is, I need to do more research.</p>\n<h2>The life it now gives me and why I stay</h2>\n<p>Since discovering WordPress, I’ve been a part of a lot of different projects within Make and in the community.</p>\n<p>I am one of the Training Team Reps. I get to work with folks that I like and be involved in shaping Learn. As Courtney Robertson, my good friend and fellow Training Team Rep, puts it:</p>\n<blockquote><p>We want to democratise Learning and make Learn WordPress the primary open-source resource for anyone who wants to get started or level up their skills in WordPress.</p></blockquote>\n<p>I am proud to be involved in a project that is a cross-team initiative, props to marketing, community, meta, polyglots, accessibility, design, training, and<a href=\"http://wordpress.tv\"> WordPress.tv</a> who help shape Learn. Individuals can learn alongside other community members, connecting with the global network of WordPress users, developers and contributors. Check out<a href=\"https://make.wordpress.org/training/2021/08/08/who-can-learn-help/\"> this post on who learn can help</a>, by Courtney Robertson. If you&#8217;re a training provider, business owner, or hiring manager, have a look at<a href=\"https://make.wordpress.org/training/2021/05/03/high-level-roadmap-to-learning-wordpress-development/\"> our high-level roadmap to learning WordPress development</a>. Join us in:</p>\n<ul>\n<li>Educating about WordPress</li>\n<li>Appreciating the power of WordPress and how it is made</li>\n<li>Celebrating everything that people are doing with WordPress</li>\n</ul>\n<p>Come take a seat at the table.</p>\n<p>I am a volunteer and Board member at the charity <a href=\"https://www.bigorangeheart.org/\">Big Orange Heart (BOH)</a>. I get to be a part of<a href=\"https://www.wordfest.live/\"> WordFest</a>, a unique 24-hour global online event that is a celebration of WordPress. BOH’s mission:</p>\n<blockquote><p>To support and promote positive well-being and mental health within remote working communities.</p></blockquote>\n<p>I get to talk to people from all walks of life, support and help build a community that cares for each other. I get to make an impact for good. If we don&#8217;t look out for each other, who will?</p>\n<p>I get to enjoy having a global family, learning, meeting new people, developing lifelong friendships and connections, and the extra bonus is that it doesn&#8217;t feel like work. I get to stay in the background churning the wheels and come out when needed. I get to have fun doing it!</p>\n<p>Photo by <a href=\"https://www.flickr.com/photos/globallandscapesforum/43847733385\" target=\"_blank\" rel=\"noopener\">Hamza Shaibu</a></p>\n<h1 id=\"hausa\">Samun iyali na duniya</h1>\n<h2>Gabatarwa</h2>\n<p>A yayin da nake zaune ina wannan rubutun, ina nazari akan wai shin akan wani batu zan ma yi rubutun (amma yarda in fadi hakan ma tukuna?)</p>\n<p>Topher yace zan iya fadin hakan.</p>\n<p>Toh akwanakin baya a watan Mayu na wannan shekarar, na samu wata sako daga wurin wani dan taliki da ake kira Topher.</p>\n<blockquote><p>&#8220;Barka kadai! Zan iya jan ra&#8217;ayin ka ka yi rubutu akan HeroPress, wato rubuce-rubuce akan mutane da suka yi rawar gani a fannin wallafa labarai ta hanyar yanar gizo-gizo?”</p></blockquote>\n<p>Yanzu dai muna watar Oktoba kuma har na kai ga yin wannan rubutu. Ina gode maka saboda hakuri da kayi da ni da kuma bani batu da zanyi rubutu akai.</p>\n<h2>Yadda na samu kaina a cikin WordPress</h2>\n<p>Ana shekarar alib dubu biyu da goma sha bakwai, 2017 kuma ba na marmarin aiki. A wannan lokacin na riga na samu shekaru goma-sha-biyar ina aiki a fannin project management. Ko masu kasuwanchi da ne sun ga chanji a hali na. Wasu za su ce na zama mai hikima kuma na kara wayo a hali. Idan abubuwa haka suka fara faruwa a rayuwar ka, toh dole ka tashi sa’ye kayi wani abu a kai kafin ya kashe ma kasuwa. Ba ni da damuwa wajen yin aiki am’ma ina so in yi wani abu daban.</p>\n<p>A ranan ashirin da tara a watan Disamba ta shekaran alib dubu biyu da goma sha bakwai na fara wata sabuwar ilimi na web development. Bayan na kalmala Shashi na HTML, CSS da JavaScript, da na za’bi in gwada daya daga chikin shashin ilimin wato WordPress. Malami na ya bani shawara in shiga WordCamp. Ta sami labari akwai daya da za’a yi a sati mai zuwa a Brighton. Sai na siya tikati nawa kuma na biya wajen kwana. Saboda kada in ba kaina kunya, sai na shiga binciken da karatu a kan ma’anar Kalmar WordPress. A wannan lokachi ina iya bogun kirji na cewa a shirye na ke.</p>\n<p>Na shiga shashin WordPress na farko a watan Oktoba na alin dubu biyu da goma sha takwas, na yi tukin mota zuwa kusan awa biyu. WordPress a Brighton (WCBTN) za ta dade a chikin zuchiya ta da abobin ban sha’awa. Duk mutanen da na sadu da su (abokan fatan alheri, dalubai da masu bada umarni) sun bani farin chiki. Na shiga gurin ni kadai amma na hadu da jamma’a da suka yi mun maraba da zuwa, suka yi mun magana, suka bayyana mun abubuwa daban daban sannan wata mata Jenny Wong ta bani shawara in shiga wata kungiyar unguwa na haduwa. Da na koma London sai na shiga kungiyar da tafi kusa da ni.</p>\n<p>A lokachin da na shiga kungiyar, suna neman wakilai da zasu taimaka wajen tsara WordCamp London (WCLDN) 2019. Ni na yadda da kara samin ilimi ta wajen hanyar yin project management, domin tana bukatan tsari sosai wajen ambata komai. Na yi magana da wani mutum da ake kira Gary Jones na bayyana mishi cewa ni sabowar zuwa ce kuma ina so in taimaka. Sai na tambayi kaina da yaya zan iya kalmala wannan aikin? Ta wajen tambayoyi. Mun kasance sabuwar ƙungiya mai girma don haka godiya ga Dan Maby da Barbara Saul don haƙuri tare da mu da tambayoyin mu marasa iyaka. Babban godiya ga tawagar masu fita da suka samu ba da shawara idan aka tambaye shi. Na koyi abubuwa da yawa game da al&#8217;umma yayin aiki akan WCLDN kuma na yi farin ciki da yin shi.</p>\n<p>Abha Thakor ya ƙarfafa ni in yi aikin sa kai don WordCamp Europe (WCEU) 2019 kuma sau ɗaya sake abu ne mai ban mamaki. Na ziyarci Berlin, na ba da gudummawa ga ƙungiyar Talla tebur kuma sun sadu da ƙarin mutane. Na kuma yi jijjiga babban alamar motsin raina &#8216;yan kunne masu kyalli waɗanda ke kururuwa na 80s a cikin 80s bayan biki. Ya kasance a lokacin WCEU ranar mai ba da gudummawa da aka gabatar da ni ga Jesse Owens da ƙungiyar horo. Lokacin da kuke ba da gudummawa, kuna samun ƙarin koyo game da duk ƙungiyoyi daban-daban waɗanda suka haɗa WordPress ɗin aikin da WordPress kanta. Hanya ce mai kyau don koyo kuma zan ƙarfafa ku ku shiga ɗaya na <a href=\"https://make.wordpress.org/\">Ƙungiyoyin Yi</a> (ba kwa buƙatar zama mai haɓakawa) akwai ƙungiyoyi kamar Horarwa, Samun dama, Takaddun bayanai, Talla, da Polyglots. Idan kuna son gwada ruwa a baya shiga, nemo ranar mai ba da gudummawa ta kama-da-wane (wasu kamfanoni suna gudanar da su) ko shiga ɗaya a a WordCamp lokacin da muka sami damar saduwa da mutum. Na shiga kungiyar Tallace-tallace da Horarwa a WCEU kuma ina nan har yau.</p>\n<p>A watan Nuwamba 2019 Josepha Haden Chomphosy ya aika kiran a saki mata duka tawagar. Ina son ƙarin sani game da samun dama don haka aka sanya ni zama 5.8 Ƙungiyar haɗin kai. Taimakon da tawagarmu ta saki ya kasance mai ban mamaki. Kyawun al&#8217;ummar WordPress shine duk da cewa duk muna a matakai daban-daban akan tafiyarmu, wani yana gaggawar taimaka muku wajen tafiyar da wannan tafiya. Godiya ga duk wanda yana ɗaukar lokaci don sa mu ji maraba, bayyana abubuwa, haƙuri da mu, da ba da kek da cakulan lokacin da muke bukata. Har yanzu ina cikin tawagar Accessibility kuma har yanzu ina koyo, babban batu ne. Mu ƙananan ƙungiya ne don haka idan kun kasance gwani a wannan yanki kuma kuna da lokaci don spare, kana so ka koya wa wasu ko kuma kana son koyo, ina ƙarfafa ka ka zo mu shiga.</p>\n<p>Lokacin bazara na 2020 shine ƙaddamar da laushi na <a href=\"https://learn.wordpress.org/\">Learn.WordPress.org</a>. Jim kadan bayan haka, Courtney Robertson ya nemi taimako a shirya don ƙaddamar da Koyi a hukumance. Koyi WordPress hanya ce ta koyo ga duk wanda ke son koyon yadda ake amfani da shi, ginawa da kuma ba da gudummawa ga WordPress. Yana da dandamali mai buɗewa wanda ke ba da kewayon kayan aiki da damar da za ku yi amfani da su a cikin saurin ku kuma a lokacin da ke aiki a gare ku. Har yanzu, sanya hannuna sama. Kuna ganin tsari a nan? Lokacin da mutane suna da ra&#8217;ayoyin da suke da daraja sosai ga wadanda ke kusa da su, ba zan iya ba sai dai in ce eh. Wani ko da yaushe yana da babban ra&#8217;ayi kuma ni zan so in ce eh ga kowa amma ban san yadda zan clone kaina ba tukuna. Ka kula, Michelle Frechette ta gaya mani cloning ba shine abin da nake tsammani ba, ina buƙatar yin ƙarin bincike.</p>\n<h2>Rayuwar da take bani yanzu da dalilin da yasa na zauna</h2>\n<p>Tun da gano WordPress, na kasance wani ɓangare na mai yawa daban-daban ayyuka a cikin Make da cikin al&#8217;umma.</p>\n<p>Ni ɗaya ne daga cikin Wakilan Ƙungiyar horo. Ina samun aiki tare da mutanen da nake so da kuma shiga ciki tsara Koyi. A matsayina na Courtney Robertson, abokina na kwarai kuma ƙwanƙwaran horo Rep, yana cewa:</p>\n<blockquote><p>Muna so mu inganta Ilimi kuma mu sanya Koyi WordPress ya zama na farko tushen tushen albarkatu ga duk wanda ke son farawa ko haɓaka ƙwarewarsa a cikin WordPress.</p></blockquote>\n<p>Ina alfaharin shiga cikin wani aiki wanda ke da yunƙurin ƙugiya, mai tallata tallace-tallace, al&#8217;umma, meta, polyglots, samun dama, ƙira, horo, da <a href=\"https://wordpress.tv/\">WordPress.tv</a> waɗanda ke taimakawa siffa Koyi. Mutane na iya koyo tare da sauran membobin al&#8217;umma, dangane da duniya hanyar sadarwa na masu amfani da WordPress, masu haɓakawa da masu ba da gudummawa. Duba wannan <a href=\"https://make.wordpress.org/training/2021/08/08/who-can-learn-help/\">post akan wanda ya koya zai iya taimakawa</a>, ta Courtney Robertson. Idan kai mai bada horo ne, mai kasuwanci, ko ɗaukar aiki manaja, dubi <a href=\"https://make.wordpress.org/training/2021/05/03/high-level-roadmap-to-learning-wordpress-development/\">babban taswirar hanyarmu don koyon ci gaban WordPress</a>. Shiga mu cikin:</p>\n<ul>\n<li>Ilimi game da WordPress</li>\n<li>Godiya ga ikon WordPress da yadda ake yin shi</li>\n<li>Bikin duk abin da mutane ke yi tare da WordPress</li>\n</ul>\n<p>Zo ku zauna a teburin.</p>\n<p>Ni mai sa kai ne kuma memba na hukumar a kungiyar agaji ta <a href=\"https://www.bigorangeheart.org/\">Big Orange Heart</a> (BOH). Zan iya zama bangare na <a href=\"https://www.wordfest.live\">WordFest</a>, wani taron kan layi na sa&#8217;o&#8217;i 24 na musamman na duniya wanda shine bikin WordPress. BOH ta manufa:</p>\n<blockquote><p>Don tallafawa da haɓaka ingantaccen jin daɗin rayuwa da lafiyar hankali a cikin nesa al&#8217;ummomin aiki.</p></blockquote>\n<p>Ina yin magana da mutane daga kowane fanni na rayuwa, tallafi da kuma taimaka wa al&#8217;ummar da ta damu juna. San iya yin tasiri sosai. Idan ba mu lura da juna ba, wa zai yi?</p>\n<p>Ina jin daɗin samun iyali na duniya, koyo, saduwa da sababbin mutane, haɓaka abokantaka dahadi na rayuwa kuma karin kari shine cewa baya jin kaman aiki. Ina samun zama a bango ina karkata da kafafun kuma in fito lokacin da ake bukata na. Ina jin daɗin wanan aiki.</p>\n<p>Photo by <a href=\"https://www.flickr.com/photos/globallandscapesforum/43847733385\" target=\"_blank\" rel=\"noopener\">Hamza Shaibu</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, 17 Nov 2021 08:00: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:14:\"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:\"\";}}}}}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:62:\"WPTavern: Wowmall: A Free Experimental WooCommerce Block Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=125449\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:167:\"https://wptavern.com/wowmall-a-free-experimental-woocommerce-block-theme?utm_source=rss&utm_medium=rss&utm_campaign=wowmall-a-free-experimental-woocommerce-block-theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4922:\"<img />\n\n\n\n<p class=\"has-drop-cap\">The Wowmall theme was <a href=\"https://wordpress.org/themes/wowmall/\">released to the public today</a>. It is the second 100{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} block theme that integrates with WooCommerce to land in the WordPress directory. <a href=\"https://wordpress.org/themes/responsive-fse/\">Responsive FSE</a> was the first.</p>\n\n\n\n<p>Two weeks ago, a reader sent in a question for the Ask the Bartender column. He wanted to know <a href=\"https://wptavern.com/ask-the-bartender-where-are-the-woocommerce-block-themes\">where the WooCommerce block themes were</a>. Literally one day after publishing that post, Wowmall was submitted to the WordPress theme review system. Maybe it was fate or just luck, but I had no choice but to give it a test run.</p>\n\n\n\n<p>The theme adds an admin-side welcome and notice page. The author makes it clear that the project is not currently intended for use on production sites. It is in an experimental state at the moment.  It is unclear who is actually behind the Wowmall project. The associated Twitter account has been suspended, and its other social profiles are devoid of information. And, the <a href=\"https://wowmall.store/\">Wowmall website</a> currently offers scant details.</p>\n\n\n\n<p>I will not pretend that Wowmall is one of my favorite themes. The design is far too busy for my tastes. I prefer something scaled back that focuses on content, but I do not fit into this theme&rsquo;s primary audience.</p>\n\n\n\n<p>For an eCommerce theme, it is much cleaner than others I have seen, and it leverages almost every piece of the block system. It ships over 30 block patterns. Six of those are headers, and another three are footers. However, the rest are for general use in the content, including call-to-action layouts and hero sections.</p>\n\n\n\n<img />A call-to-action pattern.\n\n\n\n<p>It also ships several custom block styles. Some of them offer design variations that make up for things like missing border controls for some blocks. Others, such as the Social Icon&rsquo;s &ldquo;Dark&rdquo; style, would be better left to the existing color options.</p>\n\n\n\n<p>The question most people likely want to be answered is how well it works with WooCommerce. From what I have seen, it works like any other run-of-the-mill WooCommerce theme. You know the look, the default design as seen by 90{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} of the themes built for the eCommerce plugin. Maybe there is a custom color palette or simple stylistic changes. However, at the end of the day, you know it is a WooCommerce shop.</p>\n\n\n\n<img />Wowmall <a href=\"https://wowmall.store/demo/shop/\">shop page</a>.\n\n\n\n<p>If it works, do not mess with the formula. The most egregious issue I saw with the WooCommerce part of the theme was the output of a comments section on the main Shop page and product category archives. I did not see specific block templates for these pages, so I am taking a wild stab and assuming everything is falling back to a single product or page template that would normally output comments.</p>\n\n\n\n<p>Wowmall does not work well as a pure blogging theme. It handles the basics well enough, but it has far too many characters per line for comfortably reading long-form content. A strict 18px font size, a variable-width content area (989px at full-width on my laptop), and a medium-gray text color make it hard to read anything other than short blurbs.</p>\n\n\n\n<p>However, this theme is not touted as a blogging theme. It is hyper-focused on presenting an online shop.</p>\n\n\n\n<p>Where the theme flexes the most is its selection of block patterns. They are designed primarily for building out a unique storefront. Users can get a lot of mileage out of them.</p>\n\n\n\n<p>The breadcrumb trail in the theme is not really a breadcrumb trail at all. It just masquerades as one. Under the hood, it is a Navigation block with a homepage link followed by the current post/page title. At no point does it show the crumbs (e.g., parent pages) that lead back to the site root. Themes have notoriously offered sub-par breadcrumb navigation in the classic era. Perhaps, developers will leave this to plugin authors in their block themes.</p>\n\n\n\n<p>As far as I know, there are no breadcrumb navigation plugins on WordPress.org to integrate with. However, there is a <a href=\"https://github.com/WordPress/gutenberg/issues/21943\">proposal to add a block</a> for it in core. And, for transparency, I have such a plugin under development and intend to release it on .ORG.</p>\n\n\n\n<p>Wowmall is not claiming this is a finished, production-ready WordPress theme. It is an ongoing project that is expected to improve over time. Plus, we are still waiting for WooCommerce to expand its support of the block system.</p>\n\n\n\n<p>What I like more than anything is seeing theme shops push the envelope with blocks. What I see from Wowmall and recent block themes is that many of the limitations of the past year or so are simply no longer there.</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, 16 Nov 2021 23:35: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:89:\"WPTavern: State of the Word 2021 Will Be Broadcast Live from New York City on December 14\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=125723\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:223:\"https://wptavern.com/state-of-the-word-2021-will-be-broadcast-live-from-new-york-city-on-december-14?utm_source=rss&utm_medium=rss&utm_campaign=state-of-the-word-2021-will-be-broadcast-live-from-new-york-city-on-december-14\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4517:\"<p>WordPress executive director Josepha Haden Chomphosy <a href=\"https://wordpress.org/news/2021/11/state-of-the-word-2021/\">announced</a> today that the 2021 State of the Word will be held on December 14, <a href=\"https://calendar.google.com/calendar/u/0/r/eventedit/copy/XzY0czNjZGhuNjhyNDJiYTE4NTMzMmI5azZ0MmsyYmEyNjBwNGFiYTE2c3IzZ2NhMjhvbzQ0Z3BrNm8gdHVhOWpudTg4ZHRiZnIzNGpzZGI5a3U1bGNAZw\">between 10 am and 12 pm ET/3 pm and 5 pm UTC</a>. For those who are new to the WordPress community, this event is where Matt Mullenweg reviews the milestones and progress of the past year and shares his vision for the open source WordPress project.</p>\n\n\n\n<p>Ordinarily, the State of the Word is delivered as the capstone to WordCamp US in the latter part of the year, with a live Q&amp;A session following the address. This year, <a href=\"https://wptavern.com/wordcamp-us-2021-kicks-off-online-in-48-hours\">WordCamp US was held online</a> in early October and concluded with Haden Chomphosy discussing trends she observed in 2020 and growth opportunities she sees for the WordPress community. In her most recent <a href=\"https://wordpress.org/news/2021/11/episode-20-wordpressblogging/\">podcast</a>, Haden Chomphosy confirmed that the State of the Word 2021 will be an in-person event.</p>\n\n\n\n<p>&ldquo;It&rsquo;s going to join the growing list of in-person events that are on the calendar,&rdquo; she said. &ldquo;It will be in New York City but will also be live-streamed across the world as usual.&rdquo;</p>\n\n\n\n<p>When asked about live event, Haden Chomphosy further clarified that it will be more like a mid-sized meetup. Mullenweg will be delivering the State of the Word at Automattic&rsquo;s New York office with approximately 30 people in-person, which is the capacity for the space.</p>\n\n\n\n<p>&ldquo;We&rsquo;ll start with NYC community folks, but will try to keep the invitation process as open as possible,&rdquo; she said. &ldquo;Vaccinations will be required and more information will be available about that later this week.&rdquo;</p>\n\n\n\n<p>Today&rsquo;s announcement said that attendees and viewers can expect to hear about WordPress 5.9, Openverse (WordPress&rsquo; search engine project for openly-licensed media), and Web3 and non-fungible tokens (NFTs). The last topic drew some early responses on Twitter from those who are keenly interested in Web3 and NFTs, as well as those who don&rsquo;t see any value in the WordPress project promoting or participating in these technologies. As WordPress is <a href=\"https://w3techs.com/technologies/details/cm-wordpress\">closing in on 43{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} of the web</a>, it will be interesting to see what Mullenweg has to say about what the project&rsquo;s role is in this potentially polarizing issue.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">\'Expect to hear about a range of topics, from WordPress 5.9 and Openverse to Web3 and non-fungible tokens (NFTs).\'<br /><br />All I want to hear about Web3 and NFTs is \'The WP project itself will do nothing to encourage these questionable technologies.\' <a href=\"https://t.co/T3LnU21HuZ\">https://t.co/T3LnU21HuZ</a></p>&mdash; Simon Dickson (@simond) <a href=\"https://twitter.com/simond/status/1459430909325807617?ref_src=twsrc{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}5Etfw\">November 13, 2021</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Annual State of the Word 2021 &ndash; an event to reflect on the WordPress project&rsquo;s progress and the future of open source. Expect to hear about a range of topics including <a href=\"https://twitter.com/hashtag/Web3?src=hash&ref_src=twsrc{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}5Etfw\">#Web3</a> and non-fungible tokens (<a href=\"https://twitter.com/hashtag/NFTs?src=hash&ref_src=twsrc{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}5Etfw\">#NFTs</a>). <br /><br />Software powering 42{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}+ of the entire internet + NFTs. Probably nothing. <a href=\"https://t.co/KfB9UtIBao\">https://t.co/KfB9UtIBao</a></p>&mdash; Brad Williams (@williamsba) <a href=\"https://twitter.com/williamsba/status/1460277517093425152?ref_src=twsrc{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}5Etfw\">November 15, 2021</a></blockquote>\n</div>\n\n\n\n<p>Viewers will be able participate in the Question &amp; Answer session following the State of the Word by emailing&nbsp;<a href=\"mailto:ask-matt@wordcamp.org\">ask-matt@wordcamp.org</a>, or asking during the event in the livestream chat on YouTube. Add the event to your calendar and watch for the livestream to be embedded on <a href=\"http://wordpress.org/news\">wordpress.org/news</a> on December 14.</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, 16 Nov 2021 00:49:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:104:\"WPTavern: “Skins” Are Back in Style, Proposal for Themes To Bundle User-Selectable Design Variations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=125725\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:239:\"https://wptavern.com/skins-are-back-in-style-proposal-for-themes-to-bundle-user-selectable-design-variations?utm_source=rss&utm_medium=rss&utm_campaign=skins-are-back-in-style-proposal-for-themes-to-bundle-user-selectable-design-variations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4774:\"<img />Twenty Twenty-Two color and font variations.\n\n\n\n<p class=\"has-drop-cap\">A current proposal could spell the death of at least one form of child theming. The feature would allow themes to <a href=\"https://github.com/WordPress/gutenberg/pull/35619\">ship multiple <code>theme.json</code> files</a>, housing variations on a site&rsquo;s default styles. Essentially, it is the old-school concept of &ldquo;skins.&rdquo;</p>\n\n\n\n<p>How the feature would work is not yet defined. However, theme authors would presumably be allowed to bundle separate JSON files that create user-selectable &ldquo;global style variations&rdquo; or &ldquo;active styles&rdquo; via the site editor.</p>\n\n\n\n<p>It is almost as if we have come full circle. The original implementation of child themes allowed developers to create custom <code>style.css</code> files. The goal was to design skins that changed a site&rsquo;s look and feel without changing its markup. Child themes have become much more flexible since then and can overwrite anything from their parents.</p>\n\n\n\n<p>Many themers still build on top of that original concept. Their child themes are nothing more than a custom stylesheet with design modifications. The ability to bundle multiple style variations from a single theme could change how they approach design, perhaps even offering a better user experience.</p>\n\n\n\n<p>Kjell Reigstad first teased this feature last month when <a href=\"https://make.wordpress.org/core/2021/10/06/introducing-twenty-twenty-two/\">announcing the upcoming new default theme</a>. &ldquo;Twenty Twenty-Two will ship with a range of alternate color schemes so that folks can drastically change the appearance of their site,&rdquo; he wrote in the post.  The following is a video of what this concept might look like:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>The UI in the video appears to be a mockup for the site editor. In the right sidebar panel, users can switch between alternate styles and find something that works well for them.</p>\n\n\n\n<p>The proposal would allow for more than color palette variations. Theme authors would be able to adjust typography, layout, and anything else controllable via <code>theme.json</code> &mdash; essentially, the entire theme design.</p>\n\n\n\n<p>Because the feature is not yet in the Gutenberg plugin or in the development version of WordPress, the only way to explore multiple <code>theme.json</code> files is through child theming. Yes, child themes are being used to test the very concept that could make them, at least partially, obsolete. Reigstad has an <a href=\"https://github.com/WordPress/theme-experiments/pull/292\">open pull request</a> in the Theme Experiments repository to flesh out the idea.</p>\n\n\n\n<p>Channing Ritter, an Automattic-sponsored WordPress contributor, <a href=\"https://critterverse.blog/2021/11/10/a-global-styles-switcher/\">shared three variations</a> of what the user experience may look like on her blog. My preferred option is the first. It is a drill-down panel that shows &ldquo;active styles&rdquo; that users can switch between.</p>\n\n\n\n<img />Selecting active theme style from sidebar panel.\n\n\n\n<p>Building an active-style switcher into the global styles interface could offer that ideal user experience that child themes have never achieved. Users had to first understand how they worked, know if any existed for their active theme, install one, and activate it. Under this proposal, they could see all the styles available upfront and simply select one.</p>\n\n\n\n<p>It also gives end-users who are not as design-savvy some variety without forcing them to hand-pick an entire color palette.</p>\n\n\n\n<p>For a while now, I have been imagining a future where theme shops narrow their focus to one, two, or just a handful of core themes. They would then upsell access to support and a library of block patterns. Now, I envision a future where global style variations could play a part in the commercial market, offering value-adds on top of that core product.</p>\n\n\n\n<p>There is also a second ticket that calls for themes to <a href=\"https://github.com/WordPress/gutenberg/issues/36304\">provide alternate color palettes</a>. This would likely be much easier to implement as a separate feature because it is much more scaled back. With only a month to get WordPress 5.9 and Twenty Twenty-Two out of the door with user-selectable color schemes, this may be the more reasonable of the two routes.</p>\n\n\n\n<p>Whatever the case may be, I keep finding new pet features I want to see land in WordPress. Yesterday, it was block patterns. Today, it is &ldquo;active styles,&rdquo; or whatever it gets called. Tomorrow, who knows? New ideas around the block system continue to keep me impatiently awaiting what comes next.</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, 16 Nov 2021 00:04:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:64:\"WordPress.org blog: WP Briefing: Episode 20: WordPress=Blogging+\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=11556\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/11/episode-20-wordpressblogging/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10273:\"<p>In this episode, WordPress&#8217;s Executive Director, Josepha Haden Chomphosy, answers two recently asked questions. Tune in to hear what those questions were and her response, in addition to this week&#8217;s small list of big things.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<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 id=\"references\">References </h2>\n\n\n\n<ul><li><a href=\"https://w3techs.com/technologies/details/cm-wordpress\">W3Techs WordPress Usage Statistics </a></li><li><a href=\"https://make.wordpress.org/core/5-9/\">WordPress 5.9 Development Cycle </a></li><li><a href=\"https://make.wordpress.org/updates/2021/10/22/team-rep-nominations/\">Call for Team Rep Nomination</a></li></ul>\n\n\n\n<h2 id=\"transcript\">Transcript</h2>\n\n\n\n<span id=\"more-11556\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>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 the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:40</p>\n\n\n\n<p>So I was in a meeting recently, which I realize isn&#8217;t saying much for me since I spend a quarter of my time in meetings. But in this particular meeting, I was asked a couple of questions that I absolutely loved. The first question was, “if there were one thing you could change in people&#8217;s minds about WordPress, what would it be?” And my answer, predictable though it may be, was that I want to change the idea that WordPress is just a blogging platform.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:06</p>\n\n\n\n<p>WordPress has grown into a lot more than that. But the idea of a content management system, even now, sometimes gets a mental shorthand where content is a stand-in for the word writing or words. If you&#8217;re using WordPress today in an enterprise context, or as part of a governmental agency, or if you use it in a classroom setting, you know that your content cannot be confined that way. And if you&#8217;re supporting or building anything to hand off to clients, you know that timely, easy-to-ship changes on a site are considered a vital part of any overarching brand and marketing strategy. And when was the last time that any marketing strategy was literally only about the words?&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:51</p>\n\n\n\n<p>So that was the first question. And also my first answer. There is also this kind of annual, not fear, necessarily, but this annual question that is sort of related that is raised to me and has been asked of me recently, that I&#8217;m just going to give you a small answer to. One annual worry that I get every year around November and December is, &#8220;What are we going to do about the fact that the term blog and blogging are declining in search popularity?&#8221; And I was gonna say it&#8217;s been a while since I answered that in any sort of public format. But I think maybe I&#8217;ve never answered it in a public format at all. And so I&#8217;m just going to answer it here. Because I think maybe a lot of people have that same question.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:36</p>\n\n\n\n<p>So number one, I think that the way that people search now is different. There&#8217;s a lot more semantic cognition. This is not the way to answer this &#8212;  search engines are smarter now. So like, it used to be the case with early search engines that yeah, there was a lot of just like, individual search terms that were looked for. But now, people are asking full questions; they have, essentially, an entire sentence that they are searching for. And then, search engines are able to parse that information better and get more high-quality answers and information for them. So like, that&#8217;s one thing that I&#8217;m already not worried about. If people are searching for individual words anymore, it&#8217;s so that they can get a definition of that word. So I&#8217;m not specifically worried about a decline in search volume for the word blog or blogging for that reason. But the answer to my first question, if there is probably the real reason that I&#8217;m not actually super worried about any decline in search volume for the word blog, or blogging, is that WordPress has really moved beyond that. And since we have moved beyond that, then it doesn&#8217;t necessarily make sense for WordPress as an entity for WordPress as a project to get overly hung up on the idea that the term blog has gone out of fashion.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:52</p>\n\n\n\n<p>Okay, now that I did my first question, and the answer, and then an additional question that only ever gets asked in private and is being answered by me for the first time in public, I will tell you now, the second question that I loved, someone asking of me, and that question is this: &#8220;What is one thing you&#8217;d like people to see or experience, right when they first land on wordpress.org?&#8221; Now, I often don&#8217;t get asked questions about the wordpress.org website, like administrative tasks, things that we need to update, move around where they should go. Sure. But like, “Josepha, what&#8217;s the point and purpose of this site?” Never. I&#8217;ve never been asked that, and so I was really excited that someone asked me, and I&#8217;m going to give you a heads up. I think some of you might disagree with my answer.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:40</p>\n\n\n\n<p>So the primary thing that I want people to see or experience when they first get to wordpress.org, the website is the depth of WordPress. Not which audience segment they should belong to or that we believe they should belong to or raw data about the CMS or even how much we care about the freedoms of open source. Now the first thing I want people to see on that site is that WordPress has not only 18 years of learned knowledge that every single new user benefits from, but that it also has 1,000s of really smart people making sure it works and gets better every day, now.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:19</p>\n\n\n\n<p>WordPress is a Goliath in its field. I know that we cite this bit of context. Frequently, we say that we are 42{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} of the web. And that is true that is the percentage by usage. But in its field, which is websites that are using a content management system, we actually have a 65{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} market share. This is very easy to find. It&#8217;s on the W3Techs website: I can put a link in the show notes, but you could find it just by searching for it.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:46</p>\n\n\n\n<p>So WordPress is a Goliath in its field of websites that are run using a CMS. Because we have always brought our learnings forward with us with the understanding that knowledge, when shared grows rather than diminishes. But open source, the heart of what defines this project, open source is not a Goliath; it&#8217;s barely even David somedays. Even though the web is built on scads of open source software, there&#8217;s a pervasive public perception that it is built by and for hobbyists or that it is inherently risky, and that if there were if it were worth something, then people would pay something. And I just know that if the first impression of WordPress, we&#8217;re, &#8220;we&#8217;ve got 18 years of experience and learning that brought us to today,&#8221; the rest of the sale to adopt software that protects other people&#8217;s freedoms would take care of itself. And I guess, to quote John Oliver, at this point, &#8220;And now this.&#8221;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:59</p>\n\n\n\n<p>Alright, that brings us now to our small list of big things. There are actually quite a few big things on this small list today. So number one, we have reached the beta phase for the year&#8217;s final release, which means that WordPress 5.9 beta one is happening tomorrow, Tuesday, November 16. And then seven days later, I believe on the 23rd, if I recall correctly, comes beta two.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:24</p>\n\n\n\n<p>The second thing on my list is that team rep nominations are happening all over the project right now. I&#8217;ve got a post that I will share in the notes below that I believe all the team reps have put their team&#8217;s nomination posts on. So if you have had an interest in learning more about that and what it means to help keep teams kind of running in the WordPress project, then this is a great opportunity to check those out.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:49</p>\n\n\n\n<p>And the third thing, this last thing actually isn&#8217;t in the next two weeks, but it is very important, nonetheless. Matt&#8217;s annual State of the Word is coming up on December 14. So basically a month from today. It&#8217;s going to join the growing list of in-person events that are on the calendar. It will be in New York City but will also be live-streamed across the world as usual. Keep an eye out for additional updates about that for anyone who, like me, really looks forward to this particular presentation from our project co-founder every year.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:25</p>\n\n\n\n<p>And that is your small list of big things. Thank you for tuning in today for the WordPress briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Nov 2021 17:15:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:70:\"WPTavern: Gutenberg 11.9 Focuses on Navigation Menus and Block Theming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=125689\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:185:\"https://wptavern.com/gutenberg-11-9-focuses-on-navigation-menus-and-block-theming?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-11-9-focuses-on-navigation-menus-and-block-theming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9521:\"<p class=\"has-drop-cap\">Gutenberg 11.9 <a href=\"https://make.wordpress.org/core/2021/11/12/whats-new-in-gutenberg-11-9-0-10-november/\">landed on Wednesday</a>, and it is packed with dozens of enhancements. Contributors are speeding forward, getting in some of the final features before the release of WordPress 5.9, expected on December 14.</p>\n\n\n\n<p>Version 11.9 is the last plugin release to include new features for the upcoming WordPress update. Bug fixes will continue to be ported over in the coming weeks.</p>\n\n\n\n<p>Site editing and theme-related blocks take up most of the spotlight. WordPress 5.9 will ship with its first default block theme, <a href=\"https://wptavern.com/first-look-at-wordpress-upcoming-twenty-twenty-two-default-theme-the-most-flexible-default-theme-ever-created-for-wordpress\">Twenty Twenty-Two</a>. For many users, this will be their first experience with template editing and global styles.</p>\n\n\n\n<p>The Navigation block received a lot of attention, and rightly so. Developers solved some vital data portability issues and created a more well-rounded user experience.</p>\n\n\n\n<p>There is still a lot of room for improvement on the whole, but Gutenberg has come a long way in the past few months. I am excited about what the new features will look like once they land in the general WordPress release.</p>\n\n\n\n<h2 id=\"site-editor-scaled-back-its-menu-moved-and-renamed\">Site Editor Scaled Back, Its Menu Moved and Renamed</h2>\n\n\n\n<img />Site editor with Twenty Twenty-Two active.\n\n\n\n<p class=\"has-drop-cap\">The site editor has been scaled back to the point where it is no longer the feature that Gutenberg plugin users have grown accustomed to in these last few months. It is essentially a pathway to the global styles feature.</p>\n\n\n\n<p>When it comes to templates, only the site&rsquo;s homepage is accessible through the interface. Clicking the &ldquo;W&rdquo; icon in the top left of the editor <a href=\"https://github.com/WordPress/gutenberg/pull/36194\">no longer opens the familiar templates panel</a>, which formerly allowed users to navigate, select, and customize individual templates.</p>\n\n\n\n<p>Clicking the &ldquo;Browse All Templates&rdquo; button carts users away from the site editor to a templates screen. It looks like a posts list and includes no instructions on how to, for example, overwrite an author archive or other theme templates. I know the system well enough to understand what is happening, but I can only imagine this would be shocking for the average user.</p>\n\n\n\n<p>Users can jump to the Header and Footer areas in the site editor by clicking those in the dropdown. The editor simply focuses on those template parts without switching screens.</p>\n\n\n\n<p>However, I see no way of editing specific templates from within the site editor.  The result is a watered-down index template editor with global styles, the one redeeming feature.</p>\n\n\n\n<p>The site editor menu item has also now been <a href=\"https://github.com/WordPress/gutenberg/issues/29630\">moved beneath the Appearance menu</a> in the WordPress admin. It is now simply named &ldquo;Editor.&rdquo; Of course, the &ldquo;Theme Editor&rdquo; submenu is still there.</p>\n\n\n\n<img />Two types of Appearance editors.\n\n\n\n<p><em>I do not expect this to be confusing to users at all&hellip;</em></p>\n\n\n\n<p>Sarcasm aside, this is the appropriate place for the new site editor, which will only appear if a user has a block theme active. However, the two submenu names clearly conflict. Could there be a better place to move the Theme Editor? One proposal would see it <a href=\"https://github.com/WordPress/gutenberg/issues/36354\">dropped under Tools</a> in the admin menu.</p>\n\n\n\n<p>One must wonder how much use there will be for directly editing theme files in a block world. Templates can be overwritten via the UI. <code>theme.json</code> settings are handled through the global styles interface. That mostly just leaves <code>functions.php</code> as the lone holdout. It might just be time to disable file editing by default in WordPress, at least for block themes.</p>\n\n\n\n<h2 id=\"pattern-explorer\">Pattern Explorer</h2>\n\n\n\n<img />Block pattern explorer.\n\n\n\n<p class=\"has-drop-cap\">Users on desktops and tablets can now enjoy a <a href=\"https://github.com/WordPress/gutenberg/pull/35773\">full-screen pattern overlay</a>. Instead of endlessly scrolling through dozens or even hundreds of patterns in the narrow inserter, they can click a new &ldquo;Explore&rdquo; button to <em>explore</em> patterns in an interface with a bit more breathing room.</p>\n\n\n\n<p>I covered this new feature in a full <a href=\"https://wptavern.com/block-pattern-modal-explorer-coming-to-wordpress-5-9\">review earlier this week</a>. There are still a few kinks to work out with the design, but it works well thus far. It also lays the groundwork for a more extensive set of features down the line.</p>\n\n\n\n<h2 id=\"navigation-data-saving-and-navigation-area-block\">Navigation Data Saving and Navigation Area Block</h2>\n\n\n\n<p class=\"has-drop-cap\">Navigation block <a href=\"https://github.com/WordPress/gutenberg/pull/35746\">data is now stored</a> in a dedicated <code>wp_navigation</code> post type. By saving it separately, contributors have now corrected one of the longstanding issues with block-based nav menus: portability.</p>\n\n\n\n<p>In previous iterations of the block, users lost their carefully-crafted menus whenever they switched to a new block theme. They would have to recreate content that typically does not change often.</p>\n\n\n\n<p>Alongside this improvement is a new <a href=\"https://github.com/WordPress/gutenberg/pull/36178\">Navigation Area block</a>, which serves as a wrapper for Navigation. Theme authors will be able to define custom areas in their block theme templates with the following code:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!-- wp:navigation-area {\"area\":\"primary\"} --&gt;\n&lt;!-- wp:navigation /--&gt;\n&lt;!-- /wp:navigation-area --&gt;</code></pre>\n\n\n\n<p>The nested Navigation block is associated with a <code>wp_navigation</code> <em>post</em>. This will be the preferred format for theme authors going forward.</p>\n\n\n\n<p>When a user switches themes and the &ldquo;area&rdquo; name matches their previous theme, the menu simply carries over and automatically appears. If they do not match, the user can assign a saved menu. The menu/area relationship is stored in the database.</p>\n\n\n\n<p>One of the issues with the Navigation Area block is that it has no alignment controls. Technically, it does not output any HTML itself. However, its existence in the editor prohibits a user from selecting wide or full alignment for its inner Navigation block.</p>\n\n\n\n<h2 id=\"duotone-filter-transparency\">Duotone Filter Transparency</h2>\n\n\n\n<p class=\"has-drop-cap\">Duotone filters on blocks such as Image and Cover <a href=\"https://github.com/WordPress/gutenberg/pull/34130\">now support transparency</a>. Users will now see a slider control beneath the color picker when adjusting either shadows or highlights.</p>\n\n\n\n<p>The feature opens the door for a double exposure effect or image mask by layering an Image block over a Cover. Alex Lende showed a few examples of how this could work in the ticket.</p>\n\n\n\n<img />Image with transparent duotone layered over Cover block.\n\n\n\n<p>Developers also noted possibilities for a tritone option and <a href=\"https://github.com/WordPress/gutenberg/pull/35359\">other filter types</a>.</p>\n\n\n\n<h2 id=\"api-for-accessing-global-styles\">API For Accessing Global Styles</h2>\n\n\n\n<p class=\"has-drop-cap\">Theme and plugin authors should have fun with this new <a href=\"https://github.com/WordPress/gutenberg/pull/34843\">API for interacting</a> with the global styles system. Previously, developers had to use the <code>WP_Theme_JSON_Resolver</code> class to pull data that they needed on the server side. Now, they have three new functions:</p>\n\n\n\n<ul><li><code>gutenberg_get_global_settings()</code> &ndash; Returns settings.</li><li><code>gutenberg_get_global_styles()</code> &ndash; Returns style settings.</li><li><code>gutenberg_get_global_stylesheet()</code> &ndash; Returns the global stylesheet.</li></ul>\n\n\n\n<p>Presumably, these functions will be renamed before landing in WordPress 5.9 and not have the <code>gutenberg_</code> prefix. Theme authors should wrap any usage of these in <code>function_exist()</code> checks to be on the safe side.</p>\n\n\n\n<h2 id=\"new-comment-blocks\">New Comment Blocks</h2>\n\n\n\n<p class=\"has-drop-cap\">Several new comment blocks have landed in the latest plugin update. The <a href=\"https://github.com/WordPress/gutenberg/pull/35231\">Comments Query Loop and Comment Template</a> blocks work similarly to their post counterparts. However, the current result is a bare-bones feature that is not ready for production use. Nested comments are not shown, and there are not many options for customizing the output.</p>\n\n\n\n<p>It is a step toward block theme authors and users (via the site editor) controlling post comments output. Gutenberg 11.9 also includes new comment helper blocks that will be necessary for templating:</p>\n\n\n\n<ul><li><a href=\"https://github.com/WordPress/gutenberg/pull/35774\">Comment Reply Link</a></li><li><a href=\"https://github.com/WordPress/gutenberg/pull/35965\">Comment Link</a></li><li><a href=\"https://github.com/WordPress/gutenberg/pull/35396\">Comment Avatar</a></li></ul>\n\n\n\n<p>For a while, comments have felt like an afterthought. Any movement toward rounding out these missing theme-related blocks is welcome.</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, 13 Nov 2021 01:34:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:42:\"WordPress.org blog: State of the Word 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11567\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/news/2021/11/state-of-the-word-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4640:\"<div class=\"wp-block-image\"><img width=\"632\" height=\"430\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/11/SOTW-Post-e1636763589410-1024x696.png?resize=632{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C430&ssl=1\" alt=\"State of the Word 2021\" class=\"wp-image-11568\" />State of the Word 2021 is happening on Dec 14!</div>\n\n\n\n<p>Howdy, World!&nbsp;</p>\n\n\n\n<p><a href=\"https://calendar.google.com/calendar/render?action=TEMPLATE&text=State{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Word{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}202021{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20livestream&dates=20211214T150000Z{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F20211214T170000Z&details=State{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Word{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20is{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20annual{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20keynote{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20address{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20delivered{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20by{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20WordPress{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20project{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}27s{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20co-founder{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Matt{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Mullenweg.{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}0AJoin{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Matt{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20as{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20he{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20provides{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20a{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20retrospective{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}202021{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20celebrates{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20community{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}27s{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20amazing{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20wins{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20discusses{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20latest{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20trends{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20he{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}27s{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20seeing{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20and{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20explores{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20future{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20open{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20source.{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}0AState{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Word{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20will{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20be{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20live{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20streamed{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20from{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20New{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20York{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20City{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20and{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20is{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20free{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20for{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20all{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20to{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20watch.{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}0Ahttps{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}3A{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2Fwordpress.org{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2Fnews{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F2021{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F11{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2Fstate-of-the-word-2021{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F\">Mark your calendars</a>; it’s almost time for State of the Word 2021!</p>\n\n\n\n<p>State of the Word is the annual keynote address delivered by the WordPress project’s co-founder, Matt Mullenweg. Every year, the event allows us to reflect on the project’s progress and the future of open source. This year will include that and more.</p>\n\n\n\n<p>Due to the pandemic, we moved the State of the World online for the first time ever in 2020. This year, the event will be livestreamed from New York City. That will enable us to take as many folks as possible along for the ride!</p>\n\n\n\n<p>Join Matt as he provides a retrospective of 2021, discusses the latest trends he’s seeing, celebrates the community’s amazing wins, and explores the future. Expect to hear about a range of topics, from WordPress 5.9 and Openverse to Web3 and non-fungible tokens (NFTs).</p>\n\n\n\n<p><strong>What:</strong> State of the Word 2021</p>\n\n\n\n<p><strong>When:</strong> <a href=\"https://calendar.google.com/calendar/render?action=TEMPLATE&text=State{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Word{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}202021{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20livestream&dates=20211214T150000Z{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F20211214T170000Z&details=State{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Word{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20is{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20annual{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20keynote{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20address{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20delivered{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20by{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20WordPress{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20project{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}27s{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20co-founder{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Matt{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Mullenweg.{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}0AJoin{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Matt{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20as{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20he{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20provides{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20a{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20retrospective{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}202021{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20celebrates{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20community{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}27s{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20amazing{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20wins{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20discusses{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20latest{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20trends{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20he{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}27s{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20seeing{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20and{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20explores{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20future{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20open{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20source.{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}0AState{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20of{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20the{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20Word{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20will{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20be{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20live{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20streamed{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20from{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20New{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20York{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20City{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20and{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20is{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20free{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20for{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20all{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20to{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}20watch.{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}0Ahttps{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}3A{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2Fwordpress.org{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2Fnews{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F2021{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F11{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2Fstate-of-the-word-2021{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2F\">December 14, 2021, between 5 and 7 pm ET/10 &#8211; 12 am (December 15) UTC</a></p>\n\n\n\n<p><strong>How:</strong> If you’re watching from the comfort of your home or local watch party, the livestream will be embedded on wordpress.org/news.</p>\n\n\n\n<p><strong>Have a question for Matt?</strong></p>\n\n\n\n<p>State of the Word will be followed by a Question &amp; Answer session. If you want to participate, you can either send your question ahead of time to <a href=\"mailto:ask-matt@wordcamp.org\">ask-matt@wordcamp.org</a>, or ask during the event in the livestream chat on YouTube.</p>\n\n\n\n<p>If you’re new to State of the Word, the previous years’ recordings (below) will help you get a sense of what the event is about. Check them out:</p>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2020/12/state-of-the-word-2020/\">State of the Word 2020 (online)</a></li><li><a href=\"https://wordpress.tv/2019/11/03/2019-state-of-the-word/\">State of the Word 2019 – WordCamp US, St. Louis</a></li><li><a href=\"https://wordpress.tv/2018/12/27/state-of-the-word-2018/\">State of the Word 2018 – WordCamp US, Nashville</a></li><li><a href=\"https://wordpress.tv/tag/state-of-the-word/\">All recordings</a></li></ul>\n\n\n\n<p>We hope to see you online on December 14th!</p>\n\n\n\n<p><em>Thanks to <a href=\"https://profiles.wordpress.org/anjanavasan/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>anjanavasan</a> <a href=\"https://profiles.wordpress.org/eidolonnight/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>eidolonnight</a> <a href=\"https://profiles.wordpress.org/rmartinezduque/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rmartinezduque</a> for their work on this post. The featured image was created by <a href=\"https://profiles.wordpress.org/beafialho/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>beafialho</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:\"Sat, 13 Nov 2021 00:38: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:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:72:\"WPTavern: GoDaddy Acquires Pagely to Deploy New WooCommerce SaaS Product\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=125660\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:189:\"https://wptavern.com/godaddy-acquires-pagely-to-deploy-new-woocommerce-saas-product?utm_source=rss&utm_medium=rss&utm_campaign=godaddy-acquires-pagely-to-deploy-new-woocommerce-saas-product\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3259:\"<p>GoDaddy has <a href=\"https://aboutus.godaddy.net/newsroom/press-releases/press-release-details/2021/Pagely-joins-GoDaddy/default.aspx\">acquired</a> managed WordPress hosting company Pagely to expand the company&rsquo;s expertise in hosting WooCommerce stores. Pagely, co-founded by Joshua and Sally Strebel, has been in business for 18 years, offering hosting for businesses and enterprises at the higher end of the managed hosting market.</p>\n\n\n\n<p>&ldquo;We will be working closely with the amazing team of WooCommerce experts from SkyVerge (previous GoDaddy acquisition) on the GoDaddy commerce team to deploy a world-class WooCommerce SaaS aimed at powersellers,&rdquo; Pagely co-founder and CEO Joshua Strebel said in a post titled &ldquo;<a href=\"https://pagely.com/blog/we-did-it/\">We Did It</a>.&rdquo;</p>\n\n\n\n<p>Strebel said Pagely received more than a dozen offers to buy the company over the years and was given the &ldquo;choice of every suitor in the space.&rdquo; This particular offer was the third from GoDaddy.</p>\n\n\n\n<p>&ldquo;We poured our heart and soul into Pagely, and PressNomics, and the market responded,&rdquo; Strebel said. &ldquo;First, shown by our own success and then that of all the followers that came along after.&nbsp;We built a company with industry-leading&nbsp;<em>everything &ndash;&nbsp;</em>that our employees and customers love and respect, and despite our diminutive size in comparison to the VC fueled giants, those same entities could not ignore us. And that pushed the entire channel to improve and do better, benefiting every WordPress user on the planet.&rdquo;</p>\n\n\n\n<p>The companies did not disclose the terms of the deal. I spoke with both Pagely and GoDaddy representatives who would not elaborate on how the new WooCommerce Saas will be different from GoDaddy&rsquo;s current WordPress e-commerce hosting offering. WooCommerce stores at GoDaddy start at $15.99/month and include 75 extensions and daily back-ups, among other features. </p>\n\n\n\n<p>During an <a href=\"https://www.youtube.com/watch?v=2uE2s3Of_AU\">interview</a> with Post Status last night, GoDaddy product manager Beka Rice said Pagely will be involved in deploying the new WooCommerce product, which she described as a &ldquo;curated experience&rdquo; for merchants. GoDaddy will be relying on Pagely&rsquo;s infrastructure expertise to improve the company&rsquo;s ability to keep WooCommerce stores running smoothly. </p>\n\n\n\n<p>When asked about a potential launch date for the new WooCommerce SaaS product, Rice said the project is still in the the planning stages. They have identified the teams and are interested in learning more about scaling WooCommerce from Pagely&rsquo;s enterprise customers.</p>\n\n\n\n<p>Pagely co-founder and COO Sally Strebel confirmed that the company will continue sponsoring and hosting its annual Pressnomics conference, which has held six events since it began.</p>\n\n\n\n<p>&ldquo;Our beloved conference,&nbsp;<a rel=\"noreferrer noopener\" href=\"https://pressnomics.com/\" target=\"_blank\">Pressnomics</a>, may look a little different going forward, and will remain a Pagely hosted event with the same mission as always: to elevate and connect business owners in the WordPress ecosystem,&rdquo; Strebel said.</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, 12 Nov 2021 19:29:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:97:\"WPTavern: Proposed Web Fonts API Not Coming to WordPress 5.9, Possibly Landing in Gutenberg First\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=125634\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:237:\"https://wptavern.com/proposed-web-fonts-api-not-coming-to-wordpress-5-9-possibly-landing-in-gutenberg-first?utm_source=rss&utm_medium=rss&utm_campaign=proposed-web-fonts-api-not-coming-to-wordpress-5-9-possibly-landing-in-gutenberg-first\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6763:\"<p class=\"has-drop-cap\">After what seemed like a shoo-in for WordPress 5.9, a <a href=\"https://wptavern.com/a-web-font-api-possibly-coming-to-wordpress\">proposed web font API</a> was put on hold. The feature would standardize how theme and plugin developers load fonts and lay the groundwork for future user-facing features.</p>\n\n\n\n<p>Jono Alderson <a href=\"https://core.trac.wordpress.org/ticket/46370\">opened a ticket</a> for the feature in February 2019. In recent months, the proposal picked up speed. The <a href=\"https://github.com/WordPress/wordpress-develop/pull/1736\">pull request</a> had over 200 in-ticket messages, 93 commits, and code approval from two core committers. The API seemed ready. However, it hit a standstill in the past few days.</p>\n\n\n\n<p>Andrew Ozz, a lead WordPress developer, essentially <a href=\"https://github.com/WordPress/wordpress-develop/pull/1736#issuecomment-963589490\">halted the possibility of the new API</a> landing in 5.9. He stated that he did not think the proposal was ready for WordPress.</p>\n\n\n\n<p>&ldquo;Purely as code it looks good,&rdquo; he wrote in the ticket. &ldquo;It is really well documented (thanks [Tonya Mark]!). However I still cannot see how this would make WordPress better in the short and long run. We were chatting with [Andrei Draganescu] and he suggested that ideally this should have been a feature plugin, and I agree. Then it would have been possible to really test it in production, verify (or reject) the assumptions that were made while creating it, and make it into a really worthy addition to WordPress. Unfortunately it&rsquo;s too late for this now for 5.9.&rdquo;</p>\n\n\n\n<p>One of the issues with testing feature plugins for APIs is that they are not often adopted, as others noted in the ticket. Developers would not rely on them in production in most cases. And, the average end-user would not install something specific to developers.</p>\n\n\n\n<p>&ldquo;Suggesting this be done as a feature plugin is an elegant way to delay something for a few years,&rdquo; <a href=\"https://github.com/WordPress/wordpress-develop/pull/1736#issuecomment-963893355\">said Ari Stathopoulos</a>, one of the developers behind the API. However, he pointed out the REST API being one exception that performed well enough to get ported into WordPress.</p>\n\n\n\n<p>The core WordPress proposal will likely be <a href=\"https://core.trac.wordpress.org/ticket/46370#comment:111\">pushed into the Gutenberg plugin</a> for further exploration. This would be a sort of compromise between launching as a separate feature plugin and going into WordPress 5.9.</p>\n\n\n\n<p>The web fonts API is not directly related to the block system. Both traditional and block themes, as well as plugins, could make use of the feature today. However, several Gutenberg proposals rely on the existence of the API, such as allowing theme authors to define web fonts via their <code>theme.json</code> files.</p>\n\n\n\n<p>Ozz listed several questions around the proposal, and several developers replied to each. However, his primary argument hinged on the practicality of why everything in the API was necessary, stating that prior replies had been &ldquo;in principle&rdquo; and seemed to be based on assumptions.</p>\n\n\n\n<p>On the most basic level, the web fonts API would allow developers to register and load locally-hosted fonts or those from Google Fonts. Developers could also add custom providers outside of the two defaults. The first iteration of the proposed API was more about setting down a foundation to build upon in future WordPress releases.</p>\n\n\n\n<p>The appeal of the feature is not simply loading fonts. Technically, theme authors could do that with a single line of code if they wanted to. Four lines of code if they wanted to follow current core WordPress standards, at least on the front end.</p>\n\n\n\n<p>Stathopoulos rattled off a list of improvements such an API would bring to WordPress and its extensions.</p>\n\n\n\n<ul><li>Themes could define fonts via their <code>theme.json</code> files.</li><li>Font previews in the font-family selector in the editor.</li><li>Showing valid font-weights and styles for a font-family.</li><li>Improved front-end performance.</li><li>Server-side localization for better performance and privacy.</li></ul>\n\n\n\n<p>This was a small sampling of the arguments in favor of including the API in core WordPress.</p>\n\n\n\n<p>&ldquo;There are many improvements in Gutenberg that are in limbo, waiting for a web fonts API,&rdquo; wrote Stathopolous in the ticket. &ldquo;Not having a web fonts API is a blocker at this point. It&rsquo;s not a good-to-have item in our wishlist, it is a requirement in order to move forward.&rdquo;</p>\n\n\n\n<p>Currently, no standard specifically relates to web fonts in WordPress. Theme authors piggyback off existing functions for enqueueing a third-party stylesheet or a custom one with <code>@font-face</code> rules. That has generally been an accepted practice in the theme author community over the years.</p>\n\n\n\n<p>However, many have accepted it grudgingly. Several have created custom scripts to ease pain points. Many others just copy whatever method the latest default WordPress theme happens to be using.</p>\n\n\n\n<p>One of the goals is to make it so that developers do not have to worry about doing all of the extra work involved with loading web fonts. There really should be no need for a theme to figure out how to load them in both the editor and the front end, handle preloading, or account for localization. As themes age and third-party APIs like Google Fonts change, there would be no need for themes to update if WordPress takes care of it under the hood.</p>\n\n\n\n<p>The problem of how best to load web fonts multiplies when you throw plugins into the mix. Generally, themes do all the heavy lifting when it comes to design. However, some plugins leap into that side of the WordPress world to add extra style options. There is no way to solve conflicts when loading multiple copies of the same font. Nor are there any surefire ways to disable a theme&rsquo;s fonts and replace them via the plugin.</p>\n\n\n\n<p>One such plugin author emailed me to let me know the news I had already known. The web fonts API appeared to no longer be landing in WordPress 5.9. The developer was gearing up to launch a new website and service on top of the new feature. They even had a mascot. As of now, it might just have to wait.</p>\n\n\n\n<p>The feature freeze deadline was two days ago. Therefore, it is unlikely the web fonts API gets added back to the WordPress 5.9 milestone. Maybe developers will see it when 6.0 lands. Maybe pushing it to the Gutenberg plugin breathes some more life into it, allowing contributors to move forward with new features that rely on it.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Nov 2021 01: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WordPress.org blog: Take the 2021 WordPress Annual Survey (and view the 2020 results)!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11551\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wordpress.org/news/2021/11/take-the-2021-wordpress-annual-survey-and-view-the-2020-results/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4805:\"<p>Each year, members of the WordPress community (users, site builders, extenders, and contributors) provide their valuable feedback through an annual survey. Key takeaways and trends that emerge from this survey often find their way into the annual <a href=\"https://wordpress.tv/tag/state-of-the-word/\"><em>State of the Word</em></a> address, are shared in the public project blogs, and can influence the direction and strategy for the WordPress Project.</p>\n\n\n\n<p>Simply put: this survey helps those who build WordPress understand more about how the software is used, and by whom. The survey also helps leaders in the WordPress open source project learn more about our contributors’ experiences.&nbsp;&nbsp;</p>\n\n\n\n<p>To ensure that <strong><em>your</em></strong> WordPress experience is represented in the 2021 survey results, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2021-survey-english\" target=\"_blank\" rel=\"noreferrer noopener\">take the 2021 annual survey now.</a></p>\n\n\n\n<div class=\"wp-container-6196ec3a5ef01 wp-block-buttons\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://wordpressdotorg.survey.fm/wordpress-2021-survey-english\" target=\"_blank\" rel=\"noreferrer noopener\">Take the Annual Survey! (English)</a></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>You may also take the survey in <a href=\"https://wordpressdotorg.survey.fm/wordpress-2021-survey-french\" target=\"_blank\" rel=\"noreferrer noopener\">French</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2021-survey-german\" target=\"_blank\" rel=\"noreferrer noopener\">German</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2021-survey-japanese\" target=\"_blank\" rel=\"noreferrer noopener\">Japanese</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2021-survey-russian\" target=\"_blank\" rel=\"noreferrer noopener\">Russian</a>, or <a href=\"https://wordpressdotorg.survey.fm/wordpress-2021-survey-spanish\" target=\"_blank\" rel=\"noreferrer noopener\">Spanish</a>. These are the top five languages (other than English) based on the number of WordPress locale downloads. For 2022, additional languages may be considered for translation.</p>\n\n\n\n<p>The survey will be open through the end of 2021, and the results will be published in a future post on this blog for anyone to view. Next year, there will be a new format for this survey, including which segments and questions are included, so that your valuable time spent responding results in equally valuable information.</p>\n\n\n\n<h2 id=\"2020-survey-results\">2020 Survey Results</h2>\n\n\n\n<p>For the 2020 survey, more than 17,000 responses were collected, representing the highest submission volume in four years, up three times from the prior year. In the inaugural year of the survey (2015), over 50,000 responses were collected. Given the reach and adoption of WordPress, there is a significant number we have not reached. As you take the 2021 survey, consider sharing the link on social media and with other colleagues who use WordPress. Gathering feedback from more folks who benefit from WordPress will strengthen our project.</p>\n\n\n\n<div class=\"wp-container-6196ec3a5f584 wp-block-buttons\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/news/files/2021/11/WordPress.org-2020-Annual-Survey.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">View the 2020 Survey Results (PDF)</a></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>The 2020 survey results show that the pandemic has had a major impact on how we operate as a community. With few in-person events, many community members continue to find it challenging to balance community contributions with their own personal and professional obligations.&nbsp;</p>\n\n\n\n<h2 id=\"footnotes\">Footnotes:</h2>\n\n\n\n<p>Data security and privacy are paramount to the WordPress project and community. With this in mind, all data will be anonymized: no email addresses nor IP addresses will be associated with published results. To learn more about WordPress.org’s privacy practices, view the <a href=\"https://wordpress.org/about/privacy/\">privacy policy</a>.</p>\n\n\n\n<p>Like last year, the 2021 survey will be promoted via a banner on WordPress.org, and throughout the make blogs. However, taking a moment to amplify these posts through your own social media and Slack accounts will ensure broader participation. Each of the translated surveys will be promoted through banners on their associated localized-language WordPress.org sites.</p>\n\n\n\n<p><em>Thanks to <a href=\"https://profiles.wordpress.org/dansoschin/\">@dansoschin</a> for the initial draft of this post, and to <a href=\"https://profiles.wordpress.org/annezazu/\">@annezazu</a> &amp; <a href=\"https://profiles.wordpress.org/zackkrida/\">@zackkrida</a> for review!</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:\"Thu, 11 Nov 2021 23:52:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:49:\"WPTavern: Lemon Squeezy Launches WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=125589\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:143:\"https://wptavern.com/lemon-squeezy-launches-wordpress-plugin?utm_source=rss&utm_medium=rss&utm_campaign=lemon-squeezy-launches-wordpress-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4350:\"<p><a href=\"https://www.lemonsqueezy.com/\">Lemon Squeezy</a>, a hosted e-commerce platform for selling digital products, subscriptions, and software licenses, <a href=\"https://www.lemonsqueezy.com/lemon-drop-05/\">launched a WordPress plugin</a>. The plugin allows the platform&rsquo;s customers to sell their products directly on WordPress sites. </p>\n\n\n\n<p>Merchants sign up, create products, and manage customers and subscribers using the Lemon Squeezy platform. Then they use the plugin to connect via OAuth and display products within WordPress content areas. The first version of the plugin lets users add &ldquo;buy buttons&rdquo; for products using a block.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>For checkout, merchants can link directly to a secure hosted checkout page or show a checkout pop-up modal on their WordPress sites.</p>\n\n\n\n<p>Lemon Squeezy is also aimed at WordPress product creators as the platform includes the ability to ship auto-updates for commercial themes and plugins.</p>\n\n\n\n<p>Merchants pay a monthly fee to use the service based on features, plus 3.5{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} + 30c per transaction. These fees cover access to the hosted platform, which handles merchant accounts, payment gateways, taxes, VAT, and other administrative details as the merchant of record. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Lemon Squeezy was created by veterans of the WordPress community who are looking to position the platform as a competitor to WooCommerce and Easy Digital Downloads. In promoting the new plugin, Lemon Squeezy team member Mike McAlister, founder of Array Themes and creator of Atomic Blocks, explained why he doesn&rsquo;t see WordPress as the right tool for selling products anymore.</p>\n\n\n\n<p>&ldquo;These days, I can&rsquo;t imagine running a business inside wp-admin,&rdquo; McAlister said. &ldquo;It&rsquo;s just not built for it, in my opinion. Having sensitive customer records in the same database as site content and data stored by plugins with varying security practices just screams trouble.&rdquo;</p>\n\n\n\n<p>Lemon Squeezy was met with a cautious reception from the WordPress developer community. There was some discussion on it in the Post Status Club Slack instance where members noted that the plugin launched with no migration options. This means it&rsquo;s currently only available to new store owners or those with a few products they can easily recreate. Without a straightforward migration tool, the service will have a difficult time siphoning users off of existing WordPress-based solutions. </p>\n\n\n\n<p>Since the plugin is still in its early days, it seems best-suited to simple stores that don&rsquo;t require more than just being embedded on a WordPress site. In that case, there are many &ldquo;buy button&rdquo; style of e-commerce plugins with lower fees that Lemon Squeezy will be competing against as it enters the market.</p>\n\n\n\n<p>Maintaining products on one platform and a store on a different platform may not be advantageous for some users, especially those who don&rsquo;t want to have to learn both to start selling. Lemon Squeezy&rsquo;s creators are marketing it as &ldquo;the easy-peasy way to sell digital products online,&rdquo; as the hosted service provides an attractive storefront and  takes care of all the extraneous financial details of running a store.</p>\n\n\n\n<p>Although the plugin&rsquo;s name is Lemon Squeezy, its title on WordPress.org is &ldquo;<em>Easy Peasy Digital Downloads &mdash; Sell Digital Products, Subscriptions, and Licenses with Lemon Squeezy</em>.&rdquo; This seems tailored to ride on the coattails of Easy Digital Downloads&rsquo; well-established search placement as WordPress&rsquo; market leader for selling digital products. WordPress users looking to create a digital store likely would not be searching for this plugin by name unless they already knew about it from elsewhere. </p>\n\n\n\n<p>Next on the current roadmap for the <a href=\"https://wordpress.org/plugins/lemon-squeezy/\">Lemon Squeezy WordPress plugin</a> is the ability to restrict content by using more features built into the Lemon Squeezy platform. The plugin is still under development and users are welcome to send feedback to the team <a href=\"https://twitter.com/lmsqueezy\">via Twitter</a> or <a href=\"https://wptavern.com/hello@lemonqueezy.com\">email</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, 11 Nov 2021 18:43: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: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:91:\"Post Status: Post Status Excerpt (No. 32) — Diversity in Speaking, Organizing, and Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=89240\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://poststatus.com/excerpt/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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5046:\"<h2>&#8220;Focus on the skills people bring, what projects they\'ve done that have been really great.&#8221; — Jill Binder</h2>\n\n\n\n<p class=\"has-drop-cap\">In this episode of Post Status Excerpt, David talks with special guest Jill Binder about diversity and inclusion — how can people in underrepresented groups leverage resources in the WordPress community to increase their confidence, exposure, and potential hiring value? Learn how organizers can make their events feel more open and how they can encourage those in under-represented groups to participate. If we see a speaker who doesn\'t look like us at a conference and simply appreciate their contribution as a speaker as a normal feature of our conferences, that is an achievable win.</p>\n\n\n\n<p><strong>Don\'t forget! </strong>We\'re encouraging listeners to check out the &#8220;<a href=\"https://poststatus.com/make-wordpress/\">Week at WordPress.org</a>&#8221; — get the feed <a href=\"https://poststatus.com/make-wordpress/feed/\">here</a> — and <a href=\"https://poststatus.com/submit-2021-black-friday-cyber-monday-deals/\">submit your Black Friday / Cyber Monday deals</a> to us at Post Status for us to share.</p>\n\n\n\n\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 brief you on important WordPress news — in about 15 minutes or less! Learn what\'s new in WordPress in a flash. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/26a1.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/13.0.1/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h3 id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul><li><a href=\"https://bit.ly/WPDiversity17Nov2021\">Allyship for WordPress event organizers </a>(AMER/EMEA (November 17, 2021 @ 6pm-8pm UTC)</li><li><a href=\"https://bit.ly/WPDiversity27Nov2021\">How to Own Your Expertise & Start Speaking at WordPress Events Southeast to Southern Asia </a>(November 27, 2021 @ 7am-8:30am UTC)</li><li><a href=\"https://make.wordpress.org/community/tag/wpdiversityworkshops/\">How to Own Your Expertise & Start Speaking at WordPress Events AMER/EMEA</a> &#8211; Held during first two weeks of December.</li><li><a href=\"https://make.wordpress.org/community/tag/wpdiversityworkshops/\" target=\"_blank\" rel=\"noreferrer noopener\">WPDiversity on Make.WordPress.Org</a></li><li><a href=\"https://diversein.tech/\" target=\"_blank\" rel=\"noreferrer noopener\">diversein.tech</a></li><li>Creating a Welcoming and Diverse Space (Part <a href=\"https://learn.wordpress.org/workshop/creating-a-welcoming-and-diverse-space-part-1/\">1</a> and <a href=\"https://learn.wordpress.org/workshop/creating-a-welcoming-and-diverse-space-part-2/\">2</a>)</li><li><a href=\"https://twitter.com/jillbinder\" target=\"_blank\" rel=\"noreferrer noopener\">Jill Binder (Twitter)</a></li><li><a href=\"https://linkedin.com/in/jillbinder/\" target=\"_blank\" rel=\"noreferrer noopener\">Jill Binder (LinkedIn)</a></li><li><a href=\"https://twitter.com/dimensionmedia\" target=\"_blank\" rel=\"noreferrer noopener\">David Bisset (Twitter)</a></li><li><a href=\"https://twitter.com/post_status\" target=\"_blank\" rel=\"noreferrer noopener\">Post Status (Twitter)</a></li></ul>\n\n\n\n<h3><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/sandhills\" target=\"_blank\" rel=\"noreferrer noopener sponsored nofollow\">GoDaddyPro</a></h3>\n\n\n\n<p>Manage your clients, websites, and tasks from a single dashboard with <strong>GoDaddy Pro</strong>. Perform security scans, backups, and remote updates to many sites on any host. Check up on site performance, monitor uptime and analytics, and then send reports to your clients. <strong>GoDaddy Pro</strong> is free — and designed to make your life better.</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, 11 Nov 2021 05:45: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:12:\"David Bisset\";s: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:99:\"WPTavern: Ask the Bartender: Is There Still a Space for Building With HTML, CSS, and Template Tags?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=125591\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:235:\"https://wptavern.com/ask-the-bartender-is-there-still-a-space-for-building-with-html-css-and-template-tags?utm_source=rss&utm_medium=rss&utm_campaign=ask-the-bartender-is-there-still-a-space-for-building-with-html-css-and-template-tags\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5500:\"<blockquote class=\"wp-block-quote\"><p>I&rsquo;m still wondering about the best method to approach a new project.</p><p>As a background, besides the traditional way, I&rsquo;ve worked with Divi, love Bricks, and am loving Blocks. But I still feel that there is nothing like building a website from the root, with raw material: HTML, dynamic PHP, and CSS &mdash; even more now with the importance of performance and the new server-side of things.</p><p>Plus, the ability to play with dynamic data (and the database) with template tags is so smooth and efficient that it really feels like superpowers.</p><p>So, it feels a bit strange, but I&rsquo;m wondering if template tags are going to end too?</p><cite>Ricardo</cite></blockquote>\n\n\n\n<p class=\"has-drop-cap\">You are asking a guy who was so nostalgic for the &ldquo;simpler&rdquo; days that he built his own custom blogging system over a weekend. And, I actually still use that same code, albeit updated and refined, for my personal blog today. When I began that project, I laid the foundation with modern PHP and build tools. However, at the heart of it, I just wanted to get back to those foundational elements of the web: HTML and CSS. I feel where you are coming from.</p>\n\n\n\n<p>That project was fun to build for my own edification and enjoyment, but it essentially has a user base of one. Designing the front end for it feels very much like WordPress of 10 &ndash; 15 years ago.</p>\n\n\n\n<p>When you said using template tags was like accessing &ldquo;superpowers,&rdquo; it brought on a wave of nostalgia of those days and weeks when I first started using them. It was such an elegant system. Anyone could grab some dynamic data by copying a code snippet and pasting it between some HTML elements.</p>\n\n\n\n<p>For those with the skills or enough DIY grit, they can do anything with a little bit of code, trial-and-error, and time. However, if we are going to empower more people, developers need newer and more powerful technologies to make that possible. For WordPress development, that means embracing the block system, which seems like something you are doing.</p>\n\n\n\n<p>Template tags are not going away. They are just PHP functions for getting some type of data. They will be around for a long time, likely as long as WordPress itself is still kicking.</p>\n\n\n\n<p>Many blocks actually rely on these template tags for outputting dynamic data on the front end. For example, the Archives block is literally a wrapper around <code>wp_get_archives()</code>.</p>\n\n\n\n<p>If you prefer working from a code editor, you could look at blocks as modern-day template tags for WordPress. They are merely snippets of HTML code with a bit of JSON mixed in as an HTML comment. Many also display dynamic data.</p>\n\n\n\n<p>There is really no difference between the following template tag:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php wp_get_archives() ?&gt;</code></pre>\n\n\n\n<p>And its block equivalent:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!-- wp:archives /--&gt;</code></pre>\n\n\n\n<p>Both spit out dynamic data. The difference is the syntax.</p>\n\n\n\n<p>Granted, that is one of the simplest examples. Sometimes the block code is more complex. Other times, not so much.</p>\n\n\n\n<p>What makes blocks more flexible is that they are built on a standardized system that empowers users to interact with them on the admin side.</p>\n\n\n\n<p>Web development is an industry where you must continually adapt, learning new syntaxes, programming languages, libraries, technologies, and more. Just when you think you have mastered one thing, something else comes along to toss your world upside down. It can be both frustrating and fun.  Over time, you just learn to roll with it.</p>\n\n\n\n<p>While template tags are not going away, how front-end developers build will change in the coming years. For most projects, they will work with blocks. However, block theming is in its infancy, so it is not something anyone must rush into.</p>\n\n\n\n<p>With that said, the beauty of WordPress is that there is no one way of using it. If you want to build with just the <em>raw materials</em>, you can always do that. It may even make some projects easier, particularly if you have a simplified scope.</p>\n\n\n\n<p>As far as performance goes, WordPress is pretty fast out of the box. Plugins and the active theme can improve its speed or make it a lot worse. Thanks to some <a href=\"https://make.wordpress.org/core/2021/07/01/block-styles-loading-enhancements-in-wordpress-5-8/\">improvements in 5.8</a>, block styles are far more efficient.</p>\n\n\n\n<p>It sounds to me that we are kindred spirits. We appreciate the simplicity &mdash; at least what we personally view as simple &mdash; of just diving into the building blocks of the web. And, there is nothing wrong with that.</p>\n\n\n\n<p>However, as a professional, you are building themes for customers or performing a service for a client. The technology or the tools you use do not really matter as long as they allow you to cater to your users.</p>\n\n\n\n<p>Maybe that tool is a third-party page builder on a client site. Perhaps you are building a block theme for public release on top of WordPress. Or, it could be a personal project, an itch you have been wanting to scratch. You load your code editor and begin tapping the keys. After a weekend of caffeine and junk food, you realize you have built something new and exciting from the ground up.</p>\n\n\n\n<p>Whatever your new project is, approach it based on what the project itself needs.</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, 11 Nov 2021 01:52:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:68:\"WordPress.org blog: WordPress 5.8.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11546\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2021/11/wordpress-5-8-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2948:\"<p><strong>WordPress 5.8.2&nbsp;</strong>is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?id=54129{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C54323{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C54207&milestone=5.8.2&group=component&col=id&col=summary&col=owner&col=type&col=status&col=priority&col=milestone&order=priority\">2 bug</a> fixes in addition to <a href=\"https://core.trac.wordpress.org/ticket/54207\">1 security</a> fix. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 5.2 have also been updated.</p>\n\n\n\n<p>WordPress 5.8.2 is a small focus security and maintenance release. The next major release will be version&nbsp;<a href=\"https://make.wordpress.org/core/5-9/\">5.9</a>.</p>\n\n\n\n<p>You can download WordPress 5.8.2 by downloading from WordPress.org, or visit your Dashboard → Updates and click Update Now. If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?id=54129{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C54323{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C54207&milestone=5.8.2&group=component&col=id&col=summary&col=owner&col=type&col=status&col=priority&col=milestone&order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-8-2/\">version 5.8.2 HelpHub documentation page</a>.</p>\n\n\n\n<h2 id=\"thanks-and-props\">Thanks and props!</h2>\n\n\n\n<p>The 5.8.2 release was led by&nbsp;<a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>&nbsp;and&nbsp;<a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>.</p>\n\n\n\n<p>In addition to the release squad members mentioned above, thank you to everyone who helped make WordPress 5.8.2 happen:</p>\n\n\n\n<a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/bradleyt/\">Bradley Taylor</a>, <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shimon246/\">shimon246</a>, and <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>.\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Props </em><a href=\"https://profiles.wordpress.org/circlecube/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>circlecube</a><em> and </em><a href=\"https://profiles.wordpress.org/pbiron/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>pbiron</a> <em>for peer review.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Nov 2021 18:20:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Jonathan Desrosiers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:120:\"HeroPress: Contributing To WordPress Without Being A Developer – Contribuire a WordPress senza essere uno sviluppatore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=4242\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:176:\"https://heropress.com/essays/contributing-to-wordpress-without-being-a-developer/#utm_source=rss&utm_medium=rss&utm_campaign=contributing-to-wordpress-without-being-a-developer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20094:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2021/11/110921-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The WordPress community is inclusive so you\'ll always feel welcome.\" /><p><a href=\"https://heropress.com/essays/how-wordpress-made-space-for-me-as-a-kid-who-grew-up-with-ms/#italian\">Questo saggio è disponibile anche in italiano.</a></p>\n<h3>The beginnings trying various CMS</h3>\n<p>I&#8217;ve always been fascinated by the internet, I remember in the 90s going with friends to pubs where we could use a computer and understand how websites like the FBI&#8217;s were structured, or learning how to use the ancestors of today&#8217;s chats like, for example, mIRC.</p>\n<p>I started creating websites in 1998 for fun, and my first paid job was for the shop where I bought comics.</p>\n<p>Little by little I approached CMS to speed up the creation of sites: I tried Joomla and Drupal and they never fully satisfied me because of the scarcity of guides. Later, in a magazine, I read about a CMS for creating blogs that was beginning to be used to create incredible sites and which, moreover, had an international community that had created a very large documentation. Little by little, thanks to that documentation and the first sites in Italian, I started to use WordPress.</p>\n<h3>The turning point that changed my life, personally and professionally</h3>\n<p>Being an introvert by nature, I didn&#8217;t mind working from home, but I did have difficulty finding new clients and, at the same time, improving the quality of the work I was doing using WordPress, which had become the only CMS I was using to create sites.</p>\n<p>The discovery was to look at the dashboard and notice a label where it was written Events and news on WordPress, inside which were reported events among which one immediately caught my attention: the WordPress meetup in Rome.</p>\n<blockquote><p>The turning point was in November 2017 when I went, with great curiosity, to the first meeting of the WordPress Meetup in Rome.</p></blockquote>\n<p>I must admit that the impact was not at all easy since the first talk I listened to then, was about WP-CLI, a <a href=\"https://make.wordpress.org/cli/handbook/guides/installing/\">command line interface for WordPress</a>, and, for someone like me, who had done simple jobs and certainly not as a developer, it was a real trauma: I wondered if I was really suitable for this environment. Then, at the end of the meeting, someone mentioned WordCamp Rome 2017.</p>\n<h3>My first WordCamp</h3>\n<p>I tried to find out about this event and I found it difficult to understand how it worked: it was two days but, while I had read for the second day that it was going to be a day of talks, I had no idea what was going on during the first day. So I decided to write an email for information. The person who wrote back explained that it was a contributor day, a day called Contributor Day, and</p>\n<blockquote><p>in the end I chose not to participate because I thought to myself, &#8220;What can I do? I don&#8217;t know anything about WordPress&#8221;&#8230; a big mistake, which I later reflected on and understood.</p></blockquote>\n<p>The WordCamp was a great discovery: talks at all levels, from basic (suitable for me) to those for developers, even advanced or very advanced. I was immediately struck by the enthusiasm of the volunteers and the environment where I felt very comfortable, so much so that I asked myself how I could participate in some WordCamps. Asking around I was immediately informed about the possibility of applying as a volunteer.</p>\n<p>During the WordCamp I heard about Slack; I didn&#8217;t understand much about it, even if everyone encouraged me to sign up to join the WordPress community, but the doubt I had was always the same: what could my contribution be?</p>\n<h3>Slack and the choice to join the Polyglots</h3>\n<p>Once on Slack, the choice of where to go was simple: not being a developer, I opted for the Polyglots (the volunteers who <a href=\"https://make.wordpress.org/polyglots/\">translate the whole WordPress ecosystem into the various languages</a>) starting with the translation of a theme I was using for my work at the time. Little by little I got interested in the plugin activities, attending all the meetings and offering myself as a translator for themes and plugins: now I&#8217;m a GTE (General Translation Editor) and I also take care of the WordPress Core translations.</p>\n<p>Participating in Slack has helped me enormously: I&#8217;ve met a lot of people who I now call friends. Moreover, by translating, I learned a lot about how themes and plugins work.</p>\n<p>As my work with Polyglots has grown, it has led me to join other teams, the latest of which is the group of translators for Helphub, the new official WordPress documentation system.</p>\n<h3>WordCamps</h3>\n<p>After WordCamp Rome 2017, I started volunteering starting with WordCamp Rome 2018; there I participated in the first Contributor Day where I could actively contribute as a translator. Since that WordCamp, given my passion for photography, I volunteered as a photographer for many other events in Italy organized by the WordPress community, and I must say that this commitment to the community also allows me to have fun: being a photographer means having the opportunity to walk around the halls and capture moments of the life of a WordCamp.</p>\n<blockquote><p>Participating in WordCamps has made me so passionate about it that I must admit I have been in crisis due to the lack of events during the pandemic.</p></blockquote>\n<p>A friend of mine, a WordCamp fanatic like me, once said to me: &#8220;Stefano, there&#8217;s nothing to do, we have to admit that we are WordCamp addicts: the more you attend, the more you want to go to other WordCamps&#8221;.</p>\n<h3>The WordPress Meetup in Rome and the pandemic</h3>\n<p>In October 2019 I was asked to become the organizer of the WordPress meetup in Rome; at the beginning there was the difficulty of finding the place to organize the meetings since the agreement with the coworking that was previously available was broken, but COVID made sure that the event didn&#8217;t take place at all. The new challenge was therefore the organisation of online events, and, to be honest, I had fun as I had the pleasure of contacting many friends of the community who willingly offered to be speakers for the meetup in Rome with always interesting talks.</p>\n<h3>The WordCamp Italy</h3>\n<p>COVID led to the deleting of Meetups and WordCamps. Fortunately, the Italian WordPress community didn&#8217;t give up and organised the WordCamp Italia online, which brought together the organisers of previous meetups and WordCamps, as well as new people like me with no experience of organising events. I took part in both editions as a member of the social &amp; communication team, where I took care of the social channels and website content together with the other two organisers who were part of the team, and the experience made me grow professionally because I worked with the best that could be among the members of the community.</p>\n<h3>Working together with community members</h3>\n<p>The best thing I got out of joining the WordPress community was the chance to collaborate with some people on a working basis and, I have to say, that was incredible. Being with many of them you have an incredible opportunity to grow in knowledge, you just have to be ready to learn&#8230; and with WordPress you never stop learning, there is always something new that is suggested to you by those who have more experience than you.</p>\n<h3>What did WordPress bring me?</h3>\n<ol>\n<li>Discovering the community: WordPress introduced me to the world of its community, both Italian and international; the WordPress community connects WordPress enthusiasts through monthly Meetups, annual WordCamps, virtual collaborations such as contributions to the WordPress project, and much more.</li>\n<li>Professional growth: the chance to work, but also the chance to learn more and more about its ecosystem</li>\n<li>Personal growth: WordPress and the community have helped my confidence and self-esteem; I still have the &#8220;impostor syndrome&#8221; and I fear it will never go away, as I always question all my choices (and often prefer to avoid exposing myself), but being in the community has helped me overcome many fears and fears, such as feeling eligible to apply for some position in WordPress companies, which I would NEVER have thought of doing before.</li>\n<li>Friends: Being in the community has made me discover that there are people like me who share the same thoughts about work and who are always nice to talk to, and I must admit that we could talk for hours because we always find topics to talk about. In the community I have discovered friends with whom I have formed an incredible bond, people who are always ready to stimulate and support, and give help when you are in difficulty &#8230; and this is a common feature of many communities that gravitate around the world of WordPress!!!</li>\n</ol>\n<h3>What can I recommend?</h3>\n<p>Join your local meetup or think about organising one, it will introduce you to an amazing world. Don&#8217;t be afraid to meet people at WordCamps and Contributor Days, because you will learn more there than in dozens of courses. Talk to people at those events and don&#8217;t worry, they&#8217;re people like you doing the same job as you and remember, the WordPress community is inclusive so you&#8217;ll always feel welcome, and you&#8217;ll see enthusiasm like you&#8217;ve never seen at other IT events.</p>\n<p>One last recommendation: sign up for Slack and join the local WordPress community.</p>\n<h1 id=\"italian\">Contribuire a WordPress senza essere uno sviluppatore</h1>\n<h3>Gli inizi provando vari CMS</h3>\n<p>Sono sempre stato affascinato da internet, mi ricordo quando negli anni ‘90 andavo con gli amici in pub dove potevamo utilizzare un computer e capire come erano strutturati i siti web come quello dell’FBI, oppure apprendendo l’utilizzo degli antenati delle attuali chat come, ad esempio, mIRC.</p>\n<p>Ho iniziato a creare siti internet nel 1998 per gioco, e il mio primo lavoro pagato è stato per il negozio presso il quale acquistavo i fumetti..</p>\n<p>Poco alla volta mi sono avvicinato ai CMS per velocizzare la creazione dei siti: ho provato Joomla e Drupal e non mi hanno mai soddisfatto appieno a causa della scarsità di guide. Successivamente, su una rivista, lessi di un CMS per la creazione di blog che iniziava a essere utilizzato per realizzare siti incredibili e che, inoltre, aveva una community internazionale che aveva creato una documentazione molto vasta. Poco alla volta, grazie a quella documentazione e ai primi siti in italiano, ho iniziato a utilizzare WordPress.</p>\n<h3>La svolta che ha cambiato la mia vita, personale e professionale</h3>\n<p>Essendo un introverso di natura, non mi dispiaceva lavorare da casa, andando incontro, però, alla difficoltà di trovare nuovi clienti e, al contempo, migliorare la qualità del lavoro che veniva da me svolta utilizzando WordPress, che era diventato, nel frattempo, l’unico CMS che utilizzavo per realizzare siti.</p>\n<p>La scoperta fu quella di osservare la bacheca e notare una etichetta dove era scritto <strong>Eventi e notizie su WordPress</strong>, al cui interno erano segnalati degli eventi tra i quali uno colpì immediatamente la mia attenzione: il meetup WordPress di Roma.</p>\n<blockquote><p>La svolta fu a novembre del 2017 quando mi sono recato, con molta curiosità, al primo incontro del Meetup WordPress di Roma.</p></blockquote>\n<p>Devo ammettere che l’impatto non fu affatto facile visto che il primo talk che ascoltai allora, parlava di WP-CLI, <a href=\"https://make.wordpress.org/cli/handbook/guides/installing/\">una interfaccia da linea di comando per WordPress</a>, e, per uno come me, che aveva svolto lavori semplici e non certamente come sviluppatore, fu un vero e proprio trauma: mi domandavo se fossi davvero adatto a questo ambiente. Poi, a chiusura dell’incontro, qualcuno accennò al WordCamp Roma 2017.</p>\n<h3>Il mio primo WordCamp</h3>\n<p>Cercai di informarmi su questo evento e mi risultava difficile capire come funzionasse: erano due giorni ma, mentre per il secondo giorno avevo letto che sarebbe stata una giornata dedicata ai talk, non avevo la minima idea di cosa si facesse durante il primo giorno. Così decisi e scrissi una email per avere informazioni. Chi mi rispose mi spiegò che si trattava di una giornata dedicata alla contribuzione, una giornata chiamata “Contributor Day” e,</p>\n<blockquote><p>alla fine, scelsi di non partecipare perché, tra me e me, pensavo: dicevo “Ma io che posso fare? Non so niente di WordPress”&#8230; un grave errore, sul quale ho poi riflettuto e compreso.</p></blockquote>\n<p>Il WordCamp è stata una grandissima una scoperta: talk di tutti i livelli, da quelli base (adatti a me) a quelli per sviluppatori, anche avanzati o avanzatissimi. Mi ha colpito da subito l’entusiasmo dei volontari e l’ambiente dove mi trovavo benissimo, tanto da chiedermi come fare per partecipare a qualche WordCamp. Chiedendo informazioni in giro fui subito informato della possibilità di candidarsi come volontario.</p>\n<p>Durante il WordCamp sentivo parlare di Slack; capivo poco di cosa si trattasse anche se tutti mi incoraggiavano ad iscriversi per unirsi alla community di WordPress, ma il dubbio che mi attanagliava era sempre lo stesso: quale poteva essere il mio contributo?</p>\n<h3>Slack e la scelta di unirmi ai Polyglots</h3>\n<p>Arrivato su Slack, la scelta su dove andare è stata semplice: non essendo uno sviluppatore, ho optato per i Polyglots (i volontari che si occupano di <a href=\"https://it.wordpress.org/traduzioni/\">tradurre tutto l’ecosistema WordPress</a> nelle varie lingue) partendo dalla traduzione di un tema che utilizzavo per il mio lavoro in quel periodo. Poco alla volta mi sono appassionato alle attività dei plugin partecipando a tutte le riunioni ed offrendomi come traduttore per temi e plugin: adesso sono un GTE (General Translation Editor) e mi occupo anche delle traduzioni in italiano del Core di WordPress.</p>\n<p>La partecipazione a Slack mi ha aiutato enormemente: ho conosciuto tantissime persone che ormai definisco amici. Inoltre, traducendo, ho imparato tantissimo su come funzionano temi e plugin.</p>\n<p>La mia attività con i Polyglots, man mano che è cresciuto il mio impegno, mi ha portato ad unirmi ad altri team, ultimo dei quali è il gruppo dei traduttori di Helphub, il nuovo sistema ufficiale per la documentazione di WordPress.</p>\n<h3>I WordCamp</h3>\n<p>Dopo il WordCamp Roma 2017, ho iniziato a fare il volontario partendo dal WordCamp Roma 2018; lì ho partecipato al primo Contributor Day dove ho potuto contribuire attivamente come traduttore. A partire da quel WordCamp, vista la mia passione per la fotografia, mi sono offerto come volontario fotografo per molti altri eventi in Italia organizzati dalla community di WordPress e devo dire che questo impegno per la community, mi permette anche di divertirmi: essere fotografo vuol dire avere la possibilità di girare per le sale ed immortalare attimi della vita di un WordCamp.</p>\n<blockquote><p>Partecipare ai WordCamp mi ha appassionato tantissimo, tanto che devo ammettere di essere andato in crisi per mancanza di eventi durante la pandemia.</p></blockquote>\n<p>Un amico, fanatico di WordCamp come me, mi ha detto una volta: “Stefano, non c’è niente da fare, dobbiamo ammettere di essere dei drogati di WordCamp: più partecipi, più ti viene voglia di frequentarne altri”.</p>\n<h3>Il Meetup WordPress di Roma e la pandemia</h3>\n<p>Nell’ottobre del 2019 mi è stato chiesto di diventare organizzatore del meetup WordPress di Roma; all’inizio c’era la difficoltà di trovare il posto dove organizzare gli incontri visto che era saltato l’accordo con il coworking che dava in precedenza la disponibilità, ma il COVID ha fatto in modo che l’evento non si svolgesse del tutto. La nuova sfida è stata perciò l’organizzazione di eventi online, e, a dirla tutta, mi sono divertito avendo avuto il piacere di contattare tanti amici della community che si sono offerti volentieri di essere speaker per il meetup di Roma con talk sempre interessanti.</p>\n<h3>Il WordCamp Italia</h3>\n<p>Il COVID ha portato all’annullamento degli incontri dei Meetup e dei WordCamp. Fortunatamente la community italiana di WordPress non si è arresa ed ha organizzato il WordCamp Italia online, che ha messo assieme gli organizzatori di meetup e WordCamp precedenti, oltre a gente nuova come me a digiuno completo di esperienza di organizzazione di eventi. Ho partecipato a entrambe le edizioni come componente del team social &amp; comunicazione, dove mi sono occupato dei canali social e dei contenuti del sito insieme con gli altri due organizzatori che facevano parte del team, e l’esperienza mi ha fatto crescere dal punto di vista professionale perché ho lavorato con il meglio che ci poteva essere tra i membri della community.</p>\n<h3>Il lavoro insieme ai membri della community</h3>\n<p>Il risultato migliore che ho ottenuto entrando nella community di WordPress è stata la possibilità di collaborare con alcune persone anche lavorativamente e, devo dire, che è stato incredibile. Stando con molti di loro si ha una incredibile possibilità di crescita nelle conoscenze, basta essere sempre pronti a imparare… e con WordPress non si finisce mai di imparare, c’è sempre qualcosa di nuovo che ti viene suggerito da chi ha più esperienza di te</p>\n<h3>Che cosa mi ha portato WordPress?</h3>\n<ol>\n<li>Scoprire la community: WordPress mi ha introdotto al mondo della sua comunità, sia italiana che internazionale; la community di WordPress collega gli appassionati di WordPress tramite Meetup mensili, WordCamp annuali, collaborazioni virtuali come i contributi al progetto WordPress, e molto altro ancora.</li>\n<li>Crescita professionale: la possibilità di lavorare, ma anche la possibilità di conoscere sempre più aspetti del suo ecosistema</li>\n<li>Crescita personale: WordPress e la community mi hanno aiutato nella sicurezza e nell’autostima; ancora adesso c’è in me la “sindrome dell’impostore” e temo che non se ne andrà mai via, dato che metto sempre in dubbio tutte le mie scelte (e spesso preferisco evitare di espormi), ma frequentare la community mi ha fatto vincere molte paure e timori, come sentirmi idoneo a candidarmi per una qualche posizione in aziende nell’ambito WordPress, cosa che, precedentemente, MAI avrei pensato di fare.</li>\n<li>Gli amici e le amiche: frequentare la community mi ha fatto scoprire che ci sono persone come me che condividono i miei stessi pensieri sul lavoro e con i quali è sempre piacevole poter parlare, e devo ammettere che potremmo discutere per ore perché troviamo sempre argomenti di cui parlare. Nella community ho scoperto amici e amiche con i quali si è creato un legame incredibile, persone che sono sempre pronte a stimolare e supportare, e dare un aiuto quando si è in difficoltà… e questa è una caratteristica comune a molte community che gravitano attorno al mondo di WordPress!!!</li>\n</ol>\n<h3>Cosa consigliare?</h3>\n<p>Partecipate al meetup della vostra città o pensate organizzarne uno, vi farà entrare in un mondo incredibile. Non abbiate paura di incontrare le persone ai WordCamp e partecipare ai Contributor Day, perché imparerete più lì che in decine di corsi. Parlate con chi partecipa a quegli eventi e non preoccupatevi, sono persone come voi che fanno il vostro stesso lavoro e ricordatevi, la community di WordPress è inclusiva per cui vi sentirete sempre ben accetti, e vedrete un entusiasmo come non avete mai visto in altri eventi di informatica.</p>\n<p>Una ultima raccomandazione: iscrivetevi a <a href=\"https://it.wordpress.org/slack/\">Slack</a> ed unitevi alla community locale di WordPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Nov 2021 07:00: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:15:\"Stefano Cassone\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:76:\"WPTavern: Radio Station PRO Launches, Offers New Tools for Live Broadcasters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=125089\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:195:\"https://wptavern.com/radio-station-pro-launches-offers-new-tools-for-live-broadcasters?utm_source=rss&utm_medium=rss&utm_campaign=radio-station-pro-launches-offers-new-tools-for-live-broadcasters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8174:\"<p class=\"has-drop-cap\">In June, netmix&reg; CEO Tony Zeoli <a href=\"https://radiostation.pro/radio-station-pro-is-just-around-the-corner/\">began touting</a> the release of the company&rsquo;s Radio Station PRO plugin. It would offer an upgraded experience over the <a href=\"https://wordpress.org/plugins/radio-station\">free version</a> his team had maintained since 2019. At the end of last month, the company officially <a href=\"https://radiostation.pro/radio-station-pro-press-release-oct-21-2021/\">launched its commercial offering</a>, a plan that had been in the works since the beginning.</p>\n\n\n\n<p>The commercial plugin was built for live audio broadcasters with a rolling show schedule. Its audience ranges from radio stations to live streamers to Clubhouse moderators. It allows listeners to browse generated show and team pages, playlists, and related information uninterrupted during a live stream. The goal is to create a more efficient scheduling and streaming system, saving broadcasters time and resources.</p>\n\n\n\n<p>Nikki Blight created the original Radio Station plugin but had stopped working on it in 2015. Zeoli adopted it in 2019 and picked up <a href=\"https://profiles.wordpress.org/majick/\">Tony Hayes</a> to handle its development.</p>\n\n\n\n<p>&ldquo;When I first stumbled onto Radio Station at WPVM, I saw the potential for broadcasters wrapped up in one free plugin that had been orphaned,&rdquo; said Zeoli. &ldquo;It just needed someone who could re-commit to it and bring it back to life. And it would surely help if they had an interest in streaming radio and broadcasting, which the other Tony and I both do. I don&rsquo;t think just anyone could have taken it over. It had to be someone with a passion and interest in the space.&rdquo;</p>\n\n\n\n<p>The two did not launch with a free product. However, Zeoli said he realized the potential for a commercial version quickly after taking over the plugin.</p>\n\n\n\n<h2 id=\"pro-plugin-upgrades\">PRO Plugin Upgrades</h2>\n\n\n\n<img />Table view of schedule and player from <a href=\"https://demo.radiostation.pro/\">Radio Station PRO demo</a>.\n\n\n\n<p class=\"has-drop-cap\">The team had several features they had wanted to improve over the free version. The first order of business was improving the scheduling experience. For the free plugin, the team created a conflict catcher. However, they built a front-end visual schedule editor for the commercial version.</p>\n\n\n\n<p>&ldquo;Another issue we needed to resolve was the audio player experience,&rdquo; said Zeoli. &ldquo;Radio Station free has a simple audio player widget that we created earlier this year. What really sets the PRO version apart here is the addition of a persistent (or &lsquo;sticky&rsquo;) header or footer player, so when the listener navigates the website while the stream is activated, playback is not interrupted.&rdquo;</p>\n\n\n\n<p>Hayes created a second plugin called <a href=\"https://wordpress.org/plugins/teleporter/\">Teleporter</a> to handle the persistent player. The free, WordPress.org-hosted extension is baked into Radio Station PRO, but it is open for other developers in their applications.</p>\n\n\n\n<p>The team also tried to tackle time zone issues in the global broadcasting world. PRO adds a switcher to help visitors set the schedule to their preferred time zone instead of performing &ldquo;brain gymnastics,&rdquo; as Zeoli joked.</p>\n\n\n\n<p>The plugin&rsquo;s widgets automatically refresh and dynamically display data, such as the next song in a playlist or a show title change. The hope is to bring this technology to the block world, but it must wait until next year. Zeoli said there is not a rush because most of their users are not there yet.</p>\n\n\n\n<p>The team has added a new episodes post type alongside the plugin&rsquo;s original shows and playlists. Eventually, they plan to allow broadcasters to further break that down into segments. Radio Station PRO tacks on host and producer profile pages. It also has a built-in role manager, extended scheduling period, and additional layout views.</p>\n\n\n\n<p>Some of the toughest competition in the space is against the commercial theme market. There are several live-broadcasting themes, but Zeoli says these can be both cost-prohibitive in the long term and lock users into a design that users may not want in the future.</p>\n\n\n\n<p>&ldquo;With so much data going into the Post Types, you really don&rsquo;t want to leave that in a theme if you want to switch for some reason,&rdquo; he said. &ldquo;Unlike SEO plugins, there are no conversion plugins for radio station themes or plugins, so it could pose a problem by being locked into a theme as opposed to having the flexibility of a theme-agnostic plugin.&rdquo;</p>\n\n\n\n<div class=\"wp-block-cover alignfull has-parallax\"><span class=\"has-gray-900-background-color has-background-dim-70 wp-block-cover__gradient-background has-background-dim bg-gray-900\"></span><div class=\"wp-block-cover__inner-container\">\n<h2 class=\"has-text-align-center has-titanic-font-size text-5xl text-center\" id=\"from-boston-to-asheville-a-lifetime-of-radio\">From Boston to Asheville: A Lifetime of Radio</h2>\n</div></div>\n\n\n\n<p>&ldquo;I&rsquo;m originally from Boston, where my interest in radio evolved at an early age into a career as a nightclub and mix show DJ,&rdquo; said Zeoli. &ldquo;I listened to the radio all the time; news, talk, sports, and music, I was into it all. As I got older, I tuned in to college radio, and, as a senior in high school, I got the chance to intern at a local AM station and did guest mix sets on the largest commercial station, KISS 108.&rdquo;</p>\n\n\n\n<p>He completed a two-year degree in Radio and Television broadcasting at a small school outside New York City. Then, returned home to Boston with a focus on DJing while working at record stores. He later moved on to work at a record label and DJ remix service.</p>\n\n\n\n<p>&ldquo;It was the early days of the World Wide Web,&rdquo; said Zeoli. &ldquo;And I saw the opportunity to marry my passion for DJing with streaming media and launched my first startup, netmix.com, which was the earliest effort to stream DJ sets from popular electronic music and hip-hop DJs.&rdquo;</p>\n\n\n\n<p>He moved netmix&reg; to New York City, and the company was acquired by Polyverse, Inc in 2000. The company ceased operations during the dot-com crash, but Zeoli retained the domain name for 19 years.</p>\n\n\n\n<p>After bouncing between various corporations and startups, he dove deeper into WordPress. He had stumbled upon it while working on a project for the Associated Press in 2003.</p>\n\n\n\n<p>&ldquo;That led to launching Digital Strategy Works, a WordPress and digital strategy agency (which I still run today), founding the WordPress Westchester Meetup, and presenting at early WordCamps in NYC and Raleigh, NC.&rdquo;</p>\n\n\n\n<p>A chance encounter in Raleigh landed him a WordPress-specific job at the University of North Carolina at Chapel Hill. Some work at a large corporation followed, and he finally migrated to Asheville, NC.</p>\n\n\n\n<p>&ldquo;I got back into radio to re-engage in and merge my love of broadcasting with DJing with a new mix show, the Asheville House Music Society,&rdquo; said Zeoli. &ldquo;I was certainly getting back in the groove of broadcasting and streaming.&rdquo;</p>\n\n\n\n<p>In the spring of 2019, he had been helping with the <a href=\"https://wpvmfm.org/\">WPVM</a> website, which was using the original Radio Station plugin. He contacted Blight, the owner, after finding a theme conflict. He soon adopted the project, found a partner in Hayes, and had a new use for his decades-old domain.</p>\n\n\n\n<p>&ldquo;I just thought it was a very useful plugin and could see the groundbreaking potential for radio stations that really needed a comprehensive set of WordPress tools to help them publish search engine optimized content on their WordPress websites, but in a way that fit the station schedule formatting,&rdquo; said Zeoli. &ldquo;I figured, given my decades-long interest in and experience with streaming and broadcasting when combined with my agile product development experience, I could find a way to keep it going.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Nov 2021 22:43:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WPTavern: New Block Plugin Displays Post Formats\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=125453\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:141:\"https://wptavern.com/new-block-plugin-displays-post-formats?utm_source=rss&utm_medium=rss&utm_campaign=new-block-plugin-displays-post-formats\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3024:\"<p>Are you using post formats? Now there&rsquo;s a block for that! WordPress&rsquo; <a href=\"https://wordpress.org/support/article/post-formats/\">post formats</a> feature was introduced in version 3.1 as a way for themes to customize presentation of a post. It allows users to choose the way a post looks by selecting a post format from a dropdown list. WordPress has a fixed list of post formats available but not all themes support them.</p>\n\n\n\n<p>Post formats have maintained a smaller cult following. While I don&rsquo;t see them making a major comeback, many users who committed to using them long ago would like to continue. </p>\n\n\n\n<p>WordPress Core Committer Aaron Jorbin has created a plugin called <a href=\"https://wordpress.org/plugins/post-format-block/\">Post Format Block</a> that will display a post format in a block-based theme. His <a href=\"https://aaron.jorb.in/introducing-post-format-block/\">writeup</a> dives deeper into the technical details of how he created the plugin. The block allows users to change the color, font size and weight of the displayed post format. </p>\n\n\n\n<div class=\"wp-block-image\"><img />Post Format Block plugin</div>\n\n\n\n<p>Jorbin said he built the plugin to display post formats on his personal site and wanted to help others do the same.</p>\n\n\n\n<p>&ldquo;As someone that benefits greatly from Open Source, I view it as my responsibility to give back and it wasn&rsquo;t much effort to build it in a way that it could be open from the start,&rdquo; Jorbin said. &ldquo;Plus it gave me a chance to play with codespaces and explore some parts of Gutenberg I wasn&rsquo;t as familiar with.&rdquo;</p>\n\n\n\n<p>Are post formats relevant in the new frontier of blocks, where users have more control over the presentation of posts than ever before? They may not have a strong future in WordPress moving forward, but thanks to the plugin system, people can keep using them while using a block-based theme.</p>\n\n\n\n<p>&ldquo;I think Post Formats are in a weird position since looking back with hind sight, I don&rsquo;t think they should have been a part of core,&rdquo; Jorbin said. &ldquo;But for now, they remain in core and they are useful for me in this instance. I like them since for my personal site, they make sense. But I don&rsquo;t think they make sense on a lot of sites.&rdquo;</p>\n\n\n\n<p>If you are using post formats and you want to be able to keep using them with a block-based theme, this plugin will give you that continuity. You will want to search for it using the name of it in quotes. (Otherwise you will be scrolling a long time to try to find it.) <a href=\"https://wordpress.org/plugins/post-format-block/\">Post Format Block</a> is available for free in the WordPress plugin directory but it requires some code that isn&rsquo;t in WordPress 5.8 to work. You will have to use the nightly build until 5.9 is released. The plugin is also <a href=\"https://github.com/aaronjorbin/post-format-block\">available on GitHub</a> for contribution or testing with Codespaces.</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, 09 Nov 2021 22:24: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: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:66:\"WPTavern: WordPress Polyglots Team Launches New Monthly Newsletter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=125458\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:177:\"https://wptavern.com/wordpress-polyglots-team-launches-new-monthly-newsletter?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-polyglots-team-launches-new-monthly-newsletter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2177:\"<p>WordPress&rsquo; Polyglots team has published the <a href=\"https://make.wordpress.org/polyglots/2021/10/15/polyglots-monthly-newsletter-october-2021/\">first edition</a> of a new monthly newsletter aimed at helping contributors stay informed and engaged with the team&rsquo;s activities.</p>\n\n\n\n<p>WordPress has been <a href=\"https://make.wordpress.org/polyglots/handbook/about/history-of-the-team/\">translated by volunteers for more than 15 years</a> since version 1.2, with the earliest contributions from the Hindi, French, Japanese, and Norwegian communities. Since that time the Polyglots team has grown to include the work of 55,427&nbsp;translation contributors. They have also  adopted more efficient tools like P2 and Slack to stay connected, but some translators find it difficult to follow the constant stream of posts and meetings. </p>\n\n\n\n<p>The monthly newsletter was launched to provide a short-format digest of all the significant happenings and discussions in the translation community. It will include news related to upcoming releases and Polyglots tools, condensed so contributors don&rsquo;t have to keep a close eye on the team&rsquo;s P2 blog, Slack channels, or RSS feed.</p>\n\n\n\n<p>The first edition features a brief summary of the month-long WordPress Translation Day 2021 event, which brought in 697 new translation contributors. Altogether the contributor teams submitted 518,710 approved translation strings during 22 local and six livestream events.</p>\n\n\n\n<p>The majority of people using WordPress are using it with a translation. As of October 2021, 55.36{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} of WordPress sites are running a translated site. That figure is slowly inching upward as WordPress adoption grows in the non-English speaking world.</p>\n\n\n\n<div class=\"wp-block-image\"><img /><a href=\"https://wordpress.org/about/stats/\">WordPress Locales</a></div>\n\n\n\n<p>Even if you&rsquo;re not a member of the Polyglots team, this newsletter is a good way to stay up-to-date with the exciting frontier of WordPress translations. Subscribers can <a href=\"https://make.wordpress.org/polyglots/get-polyglots-news/\">sign up</a> to receive monthly Polyglots updates directly via email. </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, 09 Nov 2021 04:40:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:62:\"WPTavern: Block Pattern Modal Explorer Coming to WordPress 5.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=125447\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:169:\"https://wptavern.com/block-pattern-modal-explorer-coming-to-wordpress-5-9?utm_source=rss&utm_medium=rss&utm_campaign=block-pattern-modal-explorer-coming-to-wordpress-5-9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4485:\"<p class=\"has-drop-cap\">It has been a long year since Paal Joachim Romdahl&rsquo;s proposed an <a href=\"https://wptavern.com/proposal-to-create-an-expanded-view-or-overlay-for-the-block-patterns-inserter\">alternative block pattern experience</a>. In November 2020, he <a href=\"https://github.com/WordPress/gutenberg/issues/26905\">opened a ticket</a> on the Gutenberg GitHub repository to explore an overlay-based approach to viewing, searching, and inserting patterns into the content canvas. Late last week, a pull request for the long-awaited feature <a href=\"https://github.com/WordPress/gutenberg/pull/35773\">landed in the Gutenberg plugin</a>.</p>\n\n\n\n<p>A year ago, patterns were a new concept for the average WordPress user. WordPress 5.5 introduced them to the world, and we were only a month out from the next major release. I had hoped we could plug the new overlay in as soon as possible, but sometimes an idea needs time or the right people working on it to give it that necessary push.</p>\n\n\n\n<p>The first iteration of the pattern explorer will likely be a baseline experience that can be built upon in the future. Currently, users can search via the modal or filter by category (includes featured patterns in the list).</p>\n\n\n\n<img />Pattern explorer modal.\n\n\n\n<p>In the long term, the explorer should offer more features. An <a href=\"https://github.com/WordPress/gutenberg/pull/35006#issuecomment-929605688\">earlier mockup</a> of it showed user favorites by connecting with a WordPress.org account. This sat alongside featured and newest-pattern lists. The mockup also had a separate section for template part patterns, such as header, footer, and sidebar. With the WordPress 5.9 feature freeze coming on November 9, those extras will likely need to wait until a future release.</p>\n\n\n\n<p>To access the explorer overlay, users will need to click the &ldquo;Explore&rdquo; button when viewing patterns in the inserter. It then pops up a full-screen overlay for navigating them.</p>\n\n\n\n<img />&ldquo;Explore&rdquo; button next to the pattern category dropdown.\n\n\n\n<p>This type of pattern navigation experience has already become a necessity. The narrow inserter has not held up well against themes that ship a lot of patterns, such as the <a href=\"https://wptavern.com/tove-a-block-based-wordpress-theme-by-anders-noren\">40+ bundled with Tove</a>. The problem will only grow exponentially worse as the pattern directory is opened to more submissions and other themes inevitably add dozens upon dozens of their own.</p>\n\n\n\n<p>The experience is much nicer now. However, it still has a few wrinkles that need to be ironed out. Several patterns have scrollbars of their own within the explorer. As Anne McCarthy <a href=\"https://github.com/WordPress/gutenberg/pull/35773#issuecomment-948737083\">noted in the ticket</a>, it makes the &ldquo;experience very janky.&rdquo;</p>\n\n\n\n<img />Patterns with scrollbars.\n\n\n\n<p>In my tests, the patterns butted against the explorer sidebar on the left. Fixing this should not take much work.</p>\n\n\n\n<p>More than once, I also ran into the dreaded &ldquo;Aw, Snap!&rdquo; browser error message after viewing the explorer&rsquo;s patterns. The error code: <em>out of memory.</em>  This happened when running a clean install alongside the Twenty Twenty-Two WordPress theme. I can only hope it is a non-issue when WordPress 5.9 rolls around and is live on production sites.</p>\n\n\n\n<p>Eventually, I want to see a quicker method for accessing this pattern modal. I am leaning toward a dedicated button in the toolbar for pulling up the overlay. Right now, it takes three mouse clicks to open it. First, users must click the &ldquo;+&rdquo; inserter button. Then, they must switch to the Patterns tab before hitting the Explore button. That is a lot of work for something that should be a first-class feature.</p>\n\n\n\n<p>A keyboard shortcut would also be a welcome access point. I could live with that compromise if the development team is not yet ready to stick another item at the top level of the UI.</p>\n\n\n\n<p>Overall, I am happy with this upcoming feature. I may even try my hand at building some new ones. Those I had been tinkering with in my custom theme had become so unwieldy that testing them was a headache. This will open things up and should make it a lot more enjoyable to use.</p>\n\n\n\n<p>Gutenberg plugin users should see this land in version 11.9 later this week. It is also currently available in the trunk branch of WordPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Nov 2021 00:38:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:94:\"Gutenberg Times: Life-improving development tools and Theme Revolution – Weekend Edition 192\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=19522\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://gutenbergtimes.com/life-improving-development-tools-and-theme-revolution-weekend-edition-192/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:22219:\"<p>Howdy, </p>\n\n\n\n<p>In the US, November is the month of gratitude and a time of reflection and to  counts one&#8217;s blessings. I am grateful to be part of a diverse WordPress community, where I have made wonderful friends, even when we sometimes disagree. I learned to argue from a place of love. I am also grateful for you reading these roundup posts very week. Thank you for all the feedback you shared with me over the last year! I learned so much from you and the community. </p>\n\n\n\n<p>Next week, I will join my fellow developer advocates for an in-person meetup and Friday is my travel day home again. I won&#8217;t be able to compile a newsletter, though. The next edition with drop in to your inbox on November 20th.  Don&#8217;t use up all the links this week, so you still have some for next week. 🤣</p>\n\n\n\n<p>Yours, 💕<br />Birgit</p>\n\n\n\n<p>PS: Here is a shout-out to the team at Post Status with an event you might be interested in. </p>\n\n\n\n<p class=\"has-light-background-background-color has-background\">Join us in&nbsp;<strong>Twitter Spaces</strong>&nbsp;on&nbsp;<strong>November 19 @ 12PM EST</strong>&nbsp;for the<br />&nbsp;<a href=\"https://poststatus.us6.list-manage.com/track/click?u=ff3456b27ebe0be0155087894&id=b8390ecb23&e=76a77eae7e\" target=\"_blank\" rel=\"noreferrer noopener\">First Annual State of WordPress News</a>&nbsp;event hosted by <strong>Post Status. </strong><br />We&#8217;ll be joined by&nbsp;<strong>Matt Medeiros</strong>&nbsp;(Matt Report Media),&nbsp;<strong>Jeff Chandler</strong>&nbsp;(WP Mainline),&nbsp;<strong>Joe Howard</strong>&nbsp;(WPMRR),&nbsp;<strong>Birgit Pauli-Haack</strong>&nbsp;(Gutenberg Times), and&nbsp;<strong>Sarah Gooding</strong>&nbsp;(WP Tavern). Hosted by&nbsp;<strong>David Bisset</strong>&nbsp;and&nbsp;<strong>Dan Knauss</strong>&nbsp;(Post Status). </p>\n\n\n\n\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/#tips-and-tricks-for-content-creators\">Tips and Tricks  for Content Creators</a></li><li><a href=\"https://gutenbergtimes.com/feed/#developing-gutenberg\">Developing Gutenberg </a></li><li><a href=\"https://gutenbergtimes.com/feed/#developing-blocks-and-themes-for-gutenberg\">Developing Blocks and Themes for Gutenberg</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#tooltips-and-validation-for-json-files\">Tooltips and Validation for JSON Files</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#full-site-editing\">Full-Site Editing</a></li><li><a href=\"https://gutenbergtimes.com/feed/#wordpress-events\">WordPress Events</a></li></ul></div>\n\n\n\n\n<h2 id=\"tips-and-tricks-for-content-creators\">Tips and Tricks  for Content Creators</h2>\n\n\n\n<p>If you wondered what the difference is between Block Patterns, Reusable Blocks and Template part, <strong>Courtney Robinson</strong>, has the answer for you: <a href=\"https://www.godaddy.com/garage/wordpress-block-pattern-reusable-block-or-template-part/\"><strong>WordPress Block Pattern, Reusable Block, or Template Part</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> posted another short video on a cool feature of WordPress block editor:  <a href=\"https://www.youtube.com/watch?v=0o37jZN6KFM\"><strong>Connecting The Dots: Transparency (settings) for the win</strong></a>. She wrote: &#8220;This video touches on duotone, gradients, cover blocks, dimension controls, and more showing how an improvement in one area unlocks the ability&#8221;. Enjoy! </p>\n\n\n\n<a href=\"https://www.youtube.com/watch?v=0o37jZN6KFM\"><img /></a>\n\n\n\n<h2 id=\"developing-gutenberg\">Developing Gutenberg </h2>\n\n\n\n<p>The Gutenberg team worked hard to get the last features into the <strong>Gutenberg 11.9 RC,</strong> so they make it into the next WordPress release. If you want to test the release candidate you&#8217;ll can download the <a href=\"https://github.com/WordPress/gutenberg/releases/download/v11.9.0-rc.1/gutenberg.zip\">plugin.zip from GitHub</a>, with the <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v11.9.0-rc.1\">release notes</a>  on <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v11.9.0-rc.1\">this page</a>. This version will sport new blocks theme builders and template editors for the comment section, the post template blocks receive spacing controls and the new Gallery block finally comes out of experimental state and is ready to merge with core. More detailed information will reach you via the Gutenberg Changelog podcast and the usual sources of WordPress news. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In her post, <strong>Anne McCarthy</strong> <a href=\"https://make.wordpress.org/core/2021/11/02/core-editor-improvement-introducing-template-part-focus-mode/\"><strong>introduced the template part focus mode</strong></a> of the block editor. In this screen, WordPress users are empowered to modify template parts, like the site wide header or footer, and style them to their liking. The focus mode ensures distraction-free modifications.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Channing Ritter</strong> and <strong>Javier Arce</strong> of the design team share on their Make blog exploration around image cropping and <a href=\"https://make.wordpress.org/design/2021/11/02/background-editor-improvements/\"><strong>improving the background handling for the Cover block.</strong></a> They presented a few variations and also identified breaks in the workflow. And they have a proposal for WordPress users to chime in and share their opinion. It&#8217;s not work that will go into WordPress 5.9. It seems that&#8217;s already work for the WordPress 6.0 version. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Beatriz Fialho</strong> and <strong>Kelly Hoffman</strong> shared with the WordPress community their <a href=\"https://make.wordpress.org/design/2021/10/29/redesign-of-the-gutenberg-page/\"><strong>prototypes for the redesign of the Gutenberg Demo Page</strong></a>. Check it out and let them know what you think! </p>\n\n\n\n<img src=\"https://i2.wp.com/make.wordpress.org/design/files/2021/10/gutenberg_page_1-scaled.jpg\" alt=\"\" /><a href=\"https://make.wordpress.org/design/2021/10/29/redesign-of-the-gutenberg-page/\">Prototype of the new design for the Gutenberg Demo Page</a>\n\n\n\n<p><strong>Sarah Gooding</strong> also shared more details in <a href=\"https://wptavern.com/wordpress-gutenberg-demo-page-is-getting-a-redesign#comments\"><strong>WordPress’ Gutenberg Demo Page Is Getting a Redesign</strong></a>. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Maggie Cabrera</strong>&nbsp;publish the&nbsp;<strong><a href=\"https://make.wordpress.org/themes/2021/11/05/gutenberg-themes-week-of-november-1st-2021/\">71st Gutenberg + Themes Round-up</a></strong>&nbsp;post  with a list of ongoing discussions on Full-Site Editing, Global Styles, and Design Tools. She lists quite a few GitHub issues that could use more input from other theme authors and users. You can, for instance, learn about the Webfonts API implementation for  theme.json. (<a href=\"https://github.com/WordPress/gutenberg/issues/35591\">#35591</a>), or the discussion on i18n: Localizing blocks in FSE themes&nbsp;(<a href=\"https://github.com/WordPress/gutenberg/issues/36061\">#36061</a>). </p>\n\n\n\n<p>You can also consult the overview issue to gauge progress on major features. </p>\n\n\n\n<ul><li>Default Theme (Twenty Twenty Two): Overview of Gutenberg issues:&nbsp;<a href=\"https://github.com/WordPress/twentytwentytwo/issues/75\">#75</a></li><li>The Global Styles Interface&nbsp;<a href=\"https://github.com/WordPress/gutenberg/issues/34574\">#34574</a>&nbsp;&nbsp;</li><li>Post Comments&nbsp;Loop&nbsp;Block: Tracking issue&nbsp;<a href=\"https://github.com/WordPress/gutenberg/issues/34994\">#34994</a>&nbsp;</li><li>Site Editing block placeholders&nbsp;<a href=\"https://github.com/WordPress/gutenberg/issues/35501\">#35501</a></li><li>Typography Tools: Tracking defaults for blocks&nbsp;<a href=\"https://github.com/WordPress/gutenberg/issues/35604\">#35604</a></li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In&nbsp;<strong><a href=\"https://gutenbergtimes.com/podcast/changelog-54-gutenberg-11-8/\">Gutenberg Changelog newest episode (#54)</a></strong>,&nbsp;<strong>Grzegorz (Greg) Ziolkowski </strong>and I talk about Gutenberg 11.8 release, the Navigation Block, Full-site Editing and the Plugin Machine. Listen in and <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><em><strong>write us a review. </strong></em></a></p>\n\n\n\n\n<p><strong>Subscribe to the&nbsp;<a href=\"https://gutenbergtimes.com/podcast/\">Gutenberg Changelog</a>&nbsp;podcast </strong><br />🎙️&nbsp;<a href=\"https://open.spotify.com/show/620NwVKQJGdTupy36zYxvg?mc_cid=4b6c9f88fe\">Spotify</a>&nbsp;|&nbsp;<a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9ndXRlbmJlcmd0aW1lcy5jb20vZmVlZC9wb2RjYXN0\">Google</a>&nbsp;|&nbsp;<a href=\"https://podcasts.apple.com/us/podcast/gutenberg-changelog/id1469294475\">iTunes</a>&nbsp;|&nbsp;<a href=\"https://pca.st/podcast/f8445ec0-7508-0137-f267-1d245fc5f9cf\">PocketCasts</a>&nbsp;|&nbsp;<a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a>&nbsp;|<br />🎙️&nbsp;<a href=\"https://www.podbean.com/podcast-detail/chi7j-9904a/Gutenberg-Changelog-Podcast\">Pod Bean</a>&nbsp;|&nbsp;<a href=\"https://castbox.fm/channel/Gutenberg-Changelog-id2173375\">CastBox</a>&nbsp;|&nbsp;<a href=\"https://www.podchaser.com/podcasts/gutenberg-changelog-878239/\">Podchaser</a>&nbsp;|&nbsp;<a href=\"https://gutenbergtimes.com/feed/podcast\">RSS Feed</a>&nbsp;</p>\n\n\n\n<img />\n\n\n\n\n<h2 id=\"developing-blocks-and-themes-for-gutenberg\">Developing Blocks and Themes for Gutenberg</h2>\n\n\n\n<p><strong>Aaron Jorbin</strong> created the Post Format block for Full-Site Editing theme and the block editor using Block Variations and wrote about it in <a href=\"https://aaron.jorb.in/introducing-post-format-block\"><strong>Introducing Post Format Block</strong></a>. In a follow-up post, he also discussed <strong><a href=\"https://aaron.jorb.in/three-life-improving-tools-for-wordpress-plugin-development/\" rel=\"sponsored nofollow\">Three life-improving tools for WordPress Plugin Development</a></strong>. Jorbin describes his experience with <a href=\"https://docs.github.com/en/codespaces\">Codespaces by GitHub</a>, declared <code><a href=\"https://developer.wordpress.org/block-editor/reference-guides/packages/packages-scripts/\">wp-scripts</a></code> the secret weapon of WordPress development, and explored <a href=\"https://github.com/features/actions\">GitHub Actions</a>. All very educational for aspiring WordPress developers. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p id=\"a-master-in-both-piano-and-wordpress\"><a href=\"https://github.com/readme/podcast/helen-hou-sandi\"><strong>A master in both piano and WordPress &#8211; How Helen found herself at the inspiring intersection of music and open-source software,</strong></a> is the title of a recent ReadMe podcast episode by the GitHub team with <strong>Helen Hou-Sandí,</strong> a Lead WordPress Developer and Director of Open-Source Initiatives at 10up.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Dave Smith,</strong> developer on the Gutenberg team, posted a <a href=\"https://www.youtube.com/watch?v=C6S5hmAmVdU\"><strong>video tutorial on how to get registered images sizes in Gutenberg</strong></a>. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>This week, <strong>Ryan Welche</strong>r live-streamed on how to add end-2-end test with Puppeteer to test blocks during development. He shared a recap and resources on his blog: <a href=\"https://ryanwelcher.com/2021/11/live-stream-recap-adding-e2e-tests-to-custom-a-gutenberg-block/\"><strong>Live Stream Recap: Adding e2e tests to custom a Gutenberg block</strong></a></p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2021&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  </p>\n\n\n\n\n<h3 id=\"tooltips-and-validation-for-json-files\">Tooltips and Validation for JSON Files</h3>\n\n\n\n<p>Speaking of life-improving tools&#8230; <strong>David Gwyer</strong> published an outstanding tutorial on how to get &#8220;<a href=\"https://innerblocks.com/automatic-tooltips-validation-for-theme-json-block-json-files/\"><strong>Automatic Tooltips &amp; Validation for theme.json &amp; block.json Files!&#8221;</strong></a> via the schemas sent to SchemaStore. Gwyer shows you how to add the schema URL into the top of the file and then how your IDE shows you description and syntax for each property to be configured. </p>\n\n\n\n<img src=\"https://lh5.googleusercontent.com/m85D0K_J3ETVlRfFuhr6N3uPDv0a8TMKnhvX3-vtqOxbNkDt7T0_icsQtQnULOezAASw62wUnRt1iSe5H46oSphEJ3W1YbxJa_N7qkpJI_R1UAWSxXm4sBoz33OXtAucrLcwd4xg\" alt=\"\" /><a href=\"https://innerblocks.com/automatic-tooltips-validation-for-theme-json-block-json-files/\">Picture courtesy of David Gwyer.</a>\n\n\n\n<p><strong>Marcus Kazmierczak</strong> integrated the <a href=\"https://github.com/WordPress/gutenberg/pull/35998\">schemas into the Gutenberg repository</a>, so they are version controlled, can also be used for testing and updating during development and, subsequently, also update documentation when more properties and features are added in future versions of the schemas. <br /><br />Current URLs are:</p>\n\n\n\n<ul class=\"has-normal-font-size\"><li><strong>Block.json:</strong> <a href=\"https://raw.githubusercontent.com/WordPress/gutenberg/trunk/packages/schemas/json/block.json\">https://raw.githubusercontent.com/WordPress/gutenberg/trunk/packages/schemas/json/block.json</a></li><li><strong>Theme.json: </strong><a href=\"https://raw.githubusercontent.com/WordPress/gutenberg/trunk/packages/schemas/json/block.json\">https://raw.githubusercontent.com/WordPress/gutenberg/trunk/packages/schemas/json/theme.json</a></li></ul>\n\n\n\n<p>The ideal URL will be something like <a href=\"https://wp.org/schemas/block.json\">https://wp.org/schemas/block.json</a>, but that is still in the works. </p>\n\n\n\n<p><strong>André Maneiro</strong> has been preparing the theme.json implementation for the upgrade from v1 to v2 &#8211; You can follow along on this GitHub issue (<a href=\"https://github.com/WordPress/gutenberg/pull/36154\">#36154</a> <a href=\"https://github.com/WordPress/gutenberg/pull/36154\">Update&nbsp;<code>theme.json</code>&nbsp;schema migrations</a>)</p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s main (trunk) branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total\" /></p>\n\n\n\n\n<h2 id=\"full-site-editing\">Full-Site Editing</h2>\n\n\n\n<p><a href=\"https://wptavern.com/ona-by-deothemes-just-raised-the-bar-for-wordpress-block-theme-design\"><strong>Ona by DeoThemes Just Raised the Bar for WordPress Block Theme Design</strong></a> headlined Justin Tadlock. He wrote: &#8220;We are now at a point where the block system can nearly match traditional theming in features. There are still some kinks to work out and a few missing pieces, but Ona embraces block templating and global styles like few have before. It is modern, almost minimalist, yet packed with potential for a site owner who wants to share their content in style.&#8221; <a href=\"https://wordpress.org/themes/ona/\">The theme Ona is now available in the WordPress repository </a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Earlier this week, I presented for the <strong><a href=\"https://training.ithemes.com/webinar/what-is-full-site-editing-in-wordpress/\">iThemes webinar &#8220;What is Full-Site Editing&#8221;</a>. </strong>After a quick run down of the new terms (probably a bit fast) I did a demo of the new Appearance &gt; Editor (beta) screen, and the query loop block. During Q &amp; A, I also showed the new Gallery block. On <strong>November 22nd, 2021 at 7pm</strong>, I will give a similar presentation at the <a href=\"https://www.meetup.com/WordPress-Montclair-Meetup/events/\">Meetup group in Montclair</a> with plenty of Q &amp; A afterwards. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><a href=\"https://wptavern.com/the-wordpress-block-theme-revolution-is-quietly-picking-up-momentum\"><strong>The WordPress Block Theme Revolution Is Quietly Picking Up Momentum</strong></a> to find Justin Tadlock, and in his article he gives a great overview of the current scene of themes built for Full-Site Editing in mind. From the Blockbase parent theme and its child themes by Automattic, built as universal themes that care to site with or with our full-site editing available, to the new default theme of Twenty-Twenty-Two that is still in development. &#8220;Having one of its most well-known theme authors build on top of the new system shows that maybe this whole block-based theme system&nbsp;<em>might</em>&nbsp;actually be worth exploring.&#8221; he wrote, after he mentioned Anders Norén&#8217;s block theme called Tove. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Aaron Jorbin</strong> share his <a href=\"https://aaron.jorb.in/full-site-editing-initial-thoughts/\">Initial Thoughts on Full Site Editing</a> in this blog post. He had just returned to WordPress as the foundation of his site, after a venture into Headless WordPress. While working with the Twenty-Twenty-Two theme, Jorbin notices a few missing features, like how to set the favicon for the site without the Customizer, and he felt it to be a step backwards to &#8220;Save and Surprise&#8221; where a faithful preview is not available, also missing fallback option for a missing featured image. </p>\n\n\n\n<h2 id=\"wordpress-events\">WordPress Events</h2>\n\n\n\n<p><strong>November 16th, 2021</strong> &#8211; 11am EST / 16:00 UTC<br /><strong><a href=\"https://events.godaddy.com/events/details/godaddy-events-godaddy-pro-online-presents-testing-the-latest-features-in-gutenberg/\">Testing the latest features in Gutenberg</a></strong><br />GoDaddy Pro Online w/  Andy Fragen, Birgit Pauli-Haack, George Mamadashvili</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>November 19th, 2021,  12pm ET / 16:00 UTC </strong><br /><strong>Twitter Spaces: <a href=\"https://poststatus.us6.list-manage.com/track/click?u=ff3456b27ebe0be0155087894&id=b8390ecb23&e=76a77eae7e\" target=\"_blank\" rel=\"noreferrer noopener\">State of WordPress News</a>&nbsp; </strong><br />With&nbsp;Matt Medeiros&nbsp;(Matt Report Media),&nbsp;Jeff Chandler&nbsp;(WP Mainline),&nbsp;Joe Howard&nbsp;(WPMRR),&nbsp;Birgit Pauli-Haack&nbsp;(Gutenberg Times), and&nbsp;Sarah Gooding&nbsp;(WP Tavern). Hosted by&nbsp;David Bisset&nbsp;and&nbsp;Dan Knauss&nbsp;(Post Status).<br /><strong>Hosted by Post Status</strong></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>November 22, 2021 &#8211; 7pm ET / 23:00 UTC<br /><strong><a href=\"https://www.meetup.com/WordPress-Montclair-Meetup/events/\" rel=\"nofollow\">Meetup Montclair, New Jersey</a></strong><br />What is Full-Site Editing? w/ Birgit Pauli-Haack</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>February 4+5, 2022<br /><a href=\"https://birmingham.wordcamp.org/2022/\">WordCamp Birmingham, AL</a></strong><br />Call for Sponsors and Speakers are open now. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>March 4th, 2022 all day<br /><a href=\"https://www.wordfest.live/2022/march/\">WordFest 2022</a></strong><br />a 24-hour festival of WordPress</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-drop-cap\">On the<a href=\"https://wpcalendar.io/online/\">&nbsp;<strong>Calendar for WordPress Online Events</strong>&nbsp;</a>site, you can browse a list of the upcoming WordPress Events, around the world, including WordCamps,  WooCommerce, Elementor, Divi Builder and Beaver Builder meetups.</p>\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\">Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n\n\n<p><a href=\"https://www.flickr.com/photos/13998657@N02/18526571462\" target=\"_blank\" rel=\"noreferrer noopener\"></a><a href=\"https://www.flickr.com/photos/51035555243@N01/38744499\" target=\"_blank\" rel=\"noreferrer noopener\"></a>Featured image: <a href=\"https://www.flickr.com/photos/22098730@N05/3431570690\" target=\"_blank\" rel=\"noreferrer noopener\">Photo by&nbsp;</a><a href=\"https://unsplash.com/@kimsondoan?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText\">Kimson Doan</a>&nbsp;on&nbsp;<a href=\"https://unsplash.com/collections/987038/block?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText\">Unsplash</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 06 Nov 2021 07:13:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:83:\"WPTavern: AMP Has Irreparably Damaged Publishers’ Trust in Google-led Initiatives\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=125191\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:205:\"https://wptavern.com/amp-has-irreparably-damaged-publishers-trust-in-google-led-initiatives?utm_source=rss&utm_medium=rss&utm_campaign=amp-has-irreparably-damaged-publishers-trust-in-google-led-initiatives\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14007:\"<p>The Chrome Dev Summit concluded earlier this week. Announcements and discussions on hot topics impacting the greater web community at the event included Google&rsquo;s Privacy Sandbox initiative, improvements to Core Web Vitals and performance tools, and new APIs for&nbsp;<a href=\"https://web.dev/progressive-web-apps/\">Progressive Web Apps</a>&nbsp;(PWAs). &nbsp;</p>\n\n\n\n<p>Paul Kinlan, Lead for Chrome Developer Relations, <a href=\"https://blog.chromium.org/2021/11/chrome-dev-summit-2021-moving-toward.html?m=1\">highlighted</a> the latest product updates on the Chromium blog, what he identified as Google&rsquo;s &ldquo;vision for the web&rsquo;s future and examples of best-in-class web experiences.&rdquo;</p>\n\n\n\n<p>During an (AMA) live Q&amp;A session with Chrome Leadership, <a href=\"https://wptavern.com/jeremy-keith-resigns-from-amp-advisory-committee-it-has-become-clear-to-me-that-amp-remains-a-google-product\">ex-AMP Advisory Board member</a> Jeremy Keith <a href=\"https://adactio.com/notes/18584\">asked a question</a> that echoes the sentiments of developers and publishers all over the world who are viewing Google&rsquo;s leadership and initiatives with more skepticism:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Given the court proceedings against AMP, why should anyone trust FLOC or any other Google initiatives ostensibly focused on privacy?</p></blockquote>\n\n\n\n<p>The question drew a tepid <a href=\"https://www.youtube.com/watch?v=lNecNY6vDek&t=4261s\">response from Chrome leadership</a> who avoided giving a straight answer. Ben Galbraith fielded the question, saying he could not comment on the AMP-related legal proceedings but focused on the Privacy Sandbox: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I think it&rsquo;s important to note that we&rsquo;re not asking for blind trust with the Sandbox effort. Instead, we&rsquo;re working in the open, which means that we&rsquo;re sharing our ideas while they are in an early phase. We&rsquo;re sharing specific API proposals, and then we&rsquo;re sharing our code out in the open and running experiments in the open. In this process we&rsquo;re also working really closely with industry regulators. You may have seen the agreement that we announced earlier this year jointly with the UK&rsquo;s CMA, and we have a bunch of industry collaborators with us. We&rsquo;ll continue to be very transparent moving forward, both in terms of how the Sandbox works and its resulting privacy properties. We expect the effort will be judged on that basis.</p></blockquote>\n\n\n\n<p>FLoC continues to be a controversial initiative, <a href=\"https://wptavern.com/google-concludes-floc-origin-trial-does-not-intend-to-share-feedback-from-participants\">opposed by many major tech organizations</a>. A group of like-minded WordPress contributors <a href=\"https://wptavern.com/wordpress-contributors-propose-blocking-floc-in-core\">proposed blocking Google&rsquo;s initiative</a> earlier this year. Privacy advocates do not believe FLoC to be a compelling alternative to the surveillance business model currently used by the advertising industry. Instead, they see it as an invitation to cede more control of ad tech to Google.</p>\n\n\n\n<p>Galbraith&rsquo;s statement conflicts with the company&rsquo;s actions earlier this year when <a href=\"https://wptavern.com/google-concludes-floc-origin-trial-does-not-intend-to-share-feedback-from-participants\">Google said the team does not intend to disclose any of the private feedback</a>&nbsp;received during FLoC&rsquo;s origin trial, which was criticized as a lack of transparency.</p>\n\n\n\n<p>Despite the developer community&rsquo;s waning trust in the company, Google continues to aggressively advocate for a number of controversial initiatives, even after some of them have landed the company in legal trouble. Google employees are not permitted to talk about the antitrust lawsuit and seem eager to distance themselves from the proceedings. </p>\n\n\n\n<p>Jeremy Keith&rsquo;s question referencing the AMP allegations in the <a href=\"https://wptavern.com/unredacted-antitrust-complaint-unsealed-google-internal-documents-show-amp-pages-brought-40-less-revenue-to-publishers\">recently unredacted antitrust complaint against Google</a> was extremely unlikely to receive an adequate response from the Chrome Leadership team, but the mere act of asking is a public reminder of the trust Google has willfully eroded in pushing AMP on publishers.</p>\n\n\n\n<p>When <a href=\"https://www.washingtonpost.com/technology/2019/09/06/google-receives-demand-documents-doj-acknowledging-federal-antitrust-scrutiny/\">Google received a demand for a trove of documents</a> from the Department of Justice as part of the pre-trial process, the company was reluctant to hand them over. These documents reveal how Google identified header bidding as an &ldquo;existential threat&rdquo; and detail how AMP was used as a tool to impede header bidding. </p>\n\n\n\n<p>The complaint alleges that <em>&ldquo;Google ad server employees met with AMP employees to strategize about using AMP to impede header bidding, addressing in particular how much pressure publishers and advertisers would tolerate.&rdquo;</em> </p>\n\n\n\n<p>In summary, it claims that Google falsely told publishers that adopting AMP would enhance load times, even though the company&rsquo;s employees knew that it only improved the &ldquo;median of performance&rdquo; and actually loaded slower than some speed optimization techniques publishers had been using. It alleges that AMP pages brought 40{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} less revenue to publishers. The complaint states that AMP&rsquo;s speed benefits &ldquo;were also at least partly a result of Google&rsquo;s throttling.&nbsp;<strong>Google throttles the load time of non-AMP ads by giving them artificial one-second delays in order to give Google AMP a &lsquo;nice comparative boost.</strong>&lsquo;&rdquo; </p>\n\n\n\n<p>Although the internal documents were not published alongside the <a href=\"https://storage.courtlistener.com/recap/gov.uscourts.nysd.564903/gov.uscourts.nysd.564903.152.0_1.pdf\">unredacted complaint</a>, these are heavy claims for the Department of Justice to float against Google if the documents didn&rsquo;t fully substantiate them. </p>\n\n\n\n<p>The AMP-related allegations are egregious and demand a truly transparent answer. We all watched as Google used its weight to force publishers both small and large to adopt its framework or forego mobile traffic and placement in the Top Stories carousel. This came at an enormous cost to publishers who were unwilling to adopt AMP.</p>\n\n\n\n<p>Barry Adams, one of the most vocal <a href=\"https://www.polemicdigital.com/google-amp-go-to-hell/\">critics of the AMP project</a>, demonstrated this cost to publishers in a graph that shows the percentage of articles in Google&rsquo;s mobile Top Stories carousel in the US that are&nbsp;<strong>not</strong>&nbsp;AMP articles. When Google stopped requiring AMP for the mobile Top Stories in July 2021, there was a sharp spike in non-AMP URLs being included.</p>\n\n\n\n<img />\n\n\n\n<p>Once AMP was no longer required and publishers could use any technology to rank in Top Stories, the percentage of non-AMP pages increased significantly to double digits, <a href=\"https://www.newzdash.com/guide/amp-tracker\">where it remains today</a>. Adams&rsquo; <a href=\"https://www.seoforgooglenews.com/p/lets-talk-about-amp\">article</a> calls on the web community to recognize the damage Google did in giving AMP pages preferential treatment:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&ldquo;But I&rsquo;m angry. Because it means that for more than&nbsp;<strong>five long years</strong>, when AMP was a mobile Top Stories requirement, Google <strong>penalised</strong>&nbsp;these publishers for not using AMP.</p><p>There was&nbsp;<strong>no other reason</strong>&nbsp;for Google to stop ranking these publishers in their mobile Top Stories carousel. As is evident from the surge of non-AMP articles, there are likely hundreds &ndash; if not thousands &ndash; of publishers who&nbsp;<strong>ticked every single ranking box</strong>&nbsp;that Google demanded; quality news content, easily crawlable and indexable technology stack, good editorial authority signals, and so on.</p><p>But they didn&rsquo;t use AMP. So Google didn&rsquo;t rank them. Think for a moment about the cost of that.&rdquo;</p></blockquote>\n\n\n\n<p>Even the publishers who adopted AMP struggled to get ad views. In 2017, Digiday reported on how many publishers have experienced&nbsp;<a rel=\"noreferrer noopener\" href=\"https://digiday.com/media/publishers-find-google-amp-loads-fast-ad-views/\" target=\"_blank\">decreased revenues associated with ads loading much slower than the actual content</a>. I don&rsquo;t think anyone at the time imagined that Google was throttling the non-AMP ads.</p>\n\n\n\n<p>&ldquo;The aim of AMP is to load content first and ads second,&rdquo; a Google spokesperson told Digiday. &ldquo;But we are working on making ads faster. It takes quite a bit of the ecosystem to get on board with the notion that speed is important for ads, just as it is for content.&rdquo;</p>\n\n\n\n<p>This is why Google is rapidly losing publishers&rsquo; trust. For years the company encumbered already struggling news organizations with the requirement of AMP. The DOJ&rsquo;s detailed description of how AMP was used as a vehicle for anticompetitive practices simply rubs salt in the wound after what publishers have been through in expending resources to support AMP versions of their websites.</p>\n\n\n\n<h2 id=\"automattic-denies-prior-knowledge-of-google-throttling-non-amp-ads\">Automattic Denies Prior Knowledge of Google Throttling Non-Amp Ads</h2>\n\n\n\n<p>In 2016, Automattic, one of the most influential companies in the WordPress ecosystem, partnered with Google to promote AMP as an early adopter. WordPress.com added AMP support and Automattic built the first versions of the AMP plugin for self-hosted WordPress sites. The company has played a significant role in driving AMP adoption forward, giving it an entrance into the WordPress ecosystem. </p>\n\n\n\n<p>How much did Automattic know when it partnered with Google in the initial AMP rollout? I asked the company what the precise nature of its relationship with Google is regarding AMP at this time.</p>\n\n\n\n<p>&ldquo;As part of our mission to make the web a better place, we are always testing new technologies including AMP,&rdquo; an official spokesperson for Automattic said.</p>\n\n\n\n<p>This may be true but Automattic has done more than simply test the new technology. In partnering with Google, it has been instrumental in making AMP easier for WordPress users to adopt. </p>\n\n\n\n<p>&ldquo;We received no funds from Google for the project,&rdquo; a spokesperson for Automattic said when asked if the company was compensated as a partner in this effort.</p>\n\n\n\n<p>What did Google promise Automattic to convince the company to become an early partner in the AMP rollout? I asked if the company has an official response to the allegations that Google was throttling the load time of non-AMP ads by giving them artificial one-second delays in order to give Google AMP &ldquo;a nice comparative boost.&rdquo; The spokesperson would not respond to the specific claims but indicated the company did not have prior knowledge of any actions that might not be above board:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>We chose to partner with Google because we believed that we had a shared vision of advancing the open web. Additionally, we wanted to offer the benefit of the latest technology to WordPress users and publishers including AMP.</p><p>While we aren&rsquo;t able to comment on legal matters in progress, we can say that over the course of our partnership, we were not aware of any actions that did not align with our company&rsquo;s mission to support the open web and make it a better place.</p></blockquote>\n\n\n\n<p><br />The antitrust complaint also details a Project NERA, which was designed to &ldquo;successfully mimic a walled garden across the open web.&rdquo; When asked about this, Automattic reiterated its commitment to supporting the open web and gave the same response: &ldquo;We were not aware of any actions that did not align with our company&rsquo;s mission.&rdquo; </p>\n\n\n\n<p>In examining the weight of the DOJ&rsquo;s allegations, it&rsquo;s important to consider how this impacts WordPress as a CMS that is used by 42{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} of the web.&nbsp;<a href=\"https://wptavern.com/yoast-and-google-sponsored-core-contributors-propose-new-wordpress-performance-team\">A new performance team for WordPress core</a> is being spearheaded by Yoast and Google-sponsored employees. The initial proposal is to improve core performance as measured by&nbsp;<a href=\"https://web.dev/vitals/\">Google&rsquo;s Core Web Vitals</a>&nbsp;metrics. These metrics are a set of specific factors that Google deems important for user experience.</p>\n\n\n\n<p>Without questioning the personal integrity of the contributors on that team, I think it&rsquo;s important that Google leadership acknowledge how AMP has damaged publishers&rsquo; trust in light of recent events. Many of these contributors are heavily involved in building AMP-related resources for the WordPress ecosystem. Are their contributions purely aimed at making WordPress core more performant or is there a long game that serves Google&rsquo;s interests being woven into this initiative? Would these employees even be aware of it if there were?</p>\n\n\n\n<p>These are important considerations if Google defines the performance metrics WordPress is measuring against. The company&rsquo;s alleged misdeeds seem to be buried high up in the command chain. Those tasked with peddling AMP may have had no knowledge of the alleged anticompetitive practices identified by the DOJ in Google&rsquo;s internal documents. The WordPress community should continue to be vigilant on behalf of publishers who depend on WordPress to remain an unadulterated advocate for the open web.</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, 06 Nov 2021 03:40:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:104:\"WPTavern: Patchstack Releases Free Security Plugin, Its Red Team Found 1,182 Vulnerabilities Since March\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=125147\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:259:\"https://wptavern.com/patchstack-releases-free-security-plugin-its-red-team-found-over-1182-vulnerabilities-since-march?utm_source=rss&utm_medium=rss&utm_campaign=patchstack-releases-free-security-plugin-its-red-team-found-over-1182-vulnerabilities-since-march\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5249:\"<p class=\"has-drop-cap\">In September, Patchstack released its <a href=\"https://patchstack.com/patchstack-red-team-report-1067-vulnerabilities-7700-in-rewards/\">six-month report</a> on the vulnerabilities found with WordPress and its extensions. At the time, it listed over 1,000 issues &mdash; the company has shared the updated numbers with WP Tavern. It soon followed that up with a free vulnerability-reporting plugin.</p>\n\n\n\n<p>Under the banner of WebARX, the company launched the first version of its security platform in 2018. After growing beyond its original SaaS offering with services like its PlugBounty and acquisition of ThreatPress, the company <a href=\"https://wptavern.com/webarx-rebrands-to-patchstack-combines-services-to-focus-on-wordpress-plugin-and-theme-security\">rebranded to Patchstack</a> in March this year.</p>\n\n\n\n<p>In its <a href=\"https://wptavern.com/patchstack-whitepaper-582-wordpress-security-issues-found-in-2020-over-96-from-third-party-extensions\">2020 whitepaper</a>, the security company found 582 vulnerabilities for the year. This report covers issues from both Patchstack and third-party vendors.</p>\n\n\n\n<p>However, issues found in 2021 have multiplied from the previous year. <a href=\"https://patchstack.com/red-team/\">Patchstack Red Team</a>, a community bug-hunting program that pays out monthly bounties, has reported 1,182 vulnerabilities from March through October. Bounty payouts have reached $9,150 thus far.</p>\n\n\n\n<p>These are merely the problems found through Patchstack Red Team. When combined with security issues reported through other vendors that the company tracks, the vulnerability count jumps to over 2,000.</p>\n\n\n\n<p>&ldquo;I don&rsquo;t think we need to be worried,&rdquo; said Oliver Sild, Patchstack founder and CEO, when asked how much of a problem these numbers are. &ldquo;I think we should be grateful and glad that we have ethical hackers and researchers who have been investing more of their time helping plugin developers to improve their code. From one angle, you could see a record year in terms of new vulnerabilities found, but what we see is a record year of security issues fixed in the WordPress ecosystem. The majority of these issues have been sitting there for years.&rdquo;</p>\n\n\n\n<p>Several security plugin vendors and hosting companies, including Pagely and Cloudways, are supporting the Patchstack initiative. In return, they have access to the <a href=\"https://patchstack.com/solutions/#feed\">Threat Intelligence Feed</a>, an API to warn their customers of newfound vulnerabilities.</p>\n\n\n\n<p>&ldquo;Patchstack is ultra-focused on plugin vulnerabilities,&rdquo; said Sild. &ldquo;That&rsquo;s what we focus on and thrive to do best. Our competitive advantage is the fact that we have less features, which means less bloat and no impact on the site&rsquo;s performance. Meanwhile, we solve probably the #1 security issue in the WordPress ecosystem.&rdquo;</p>\n\n\n\n<p>He is referring to third-party plugins and themes as being the primary security issue. Over 96{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} of the vulnerabilities in the company&rsquo;s 2020 whitepaper were from WordPress extensions.</p>\n\n\n\n<p>In October, Patchstack <a href=\"https://patchstack.com/robert-joining-patchstack-security-advocate/\">brought in Robert Rowley</a>, a former head of security at DreamHost and Pagely, in a new &ldquo;security advocate&rdquo; role. Sild said that his knowledge would bring a lot of experience to the table.</p>\n\n\n\n<p>&ldquo;He will help us make Patchstack better for both hosting companies and to plugin developers,&rdquo; the CEO said. &ldquo;At the same time, he&rsquo;ll be helping us to narrow the gap between plugin devs and ethical hackers by spreading awareness and helping both sides understand each other (and challenges) better.&rdquo;</p>\n\n\n\n<p>In the past week, the company released its <a href=\"https://wordpress.org/plugins/patchstack/\">Patchstack plugin</a> to the WordPress directory. The free version is essentially a warning system for site owners of security issues.</p>\n\n\n\n<p>&ldquo;You can think about the Community (Free) version as an option for anyone in the WordPress ecosystem to be alerted about new vulnerabilities found in plugins, themes, and WordPress core,&rdquo; said Sild. &ldquo;It comes with a central dashboard where you can add up to 99 websites for free, so you&rsquo;ll have all the analytics and alerts about security issues on all your sites in a single place.&rdquo;</p>\n\n\n\n<p>The free version does not include hotfixes or patches. Its goal is to detect issues and provide alerts. Patchstack has upgraded features in its <a href=\"https://patchstack.com/pricing/\">Pro and Business plans</a>.</p>\n\n\n\n<p>&ldquo;Pro comes with automatic virtual patching for those vulnerabilities which provide active protection against the vulnerabilities that are being discovered,&rdquo; said Sild. &ldquo;Business plan is great for agencies who have more than 100 sites and want to have full protection against plugin vulnerabilities on all of their websites.&rdquo;</p>\n\n\n\n<p>Sild also teased &ldquo;something very cool&rdquo; for developers and ethical hackers in the pipeline to create a more secure plugin ecosystem. However, he refrained from providing any details.</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, 06 Nov 2021 01:27: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Post Status: Business Names, DBAs, and Trademarks with Nellie Akalp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=88924\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/business-names-dbas-and-trademarks-with-nellie-akalp/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5399:\"<p class=\"has-medium-font-size\">Learn about Trademarks and Doing Business As names (DBAs) for your freelancing or small business.</p>\n\n\n\n<p class=\"has-drop-cap\"><strong>Nellie Akalp</strong> joined <strong>Cory Miller</strong> to discuss trademarks and DBAs for small businesses. Nellie has dedicated her career to helping other entrepreneurs and business professionals succeed at business ownership. Nellie previously discussed <strong><a href=\"https://poststatus.com/expand-your-business-to-another-state-nellie-akalp/\">expanding your business to another state</a></strong>. Business owners and freelancers will benefit from these live presentations and discussions where audience participation is encouraged.</p>\n\n\n\n<p>Nellie is a business expert, professional speaker, published author, and mother to four amazing kids. As CEO and Co-Founder of CorpNet.com, she has helped more than half a million small businesses and licensed professionals get their businesses and clients off the ground.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n\n\n\n\n<h2 id=\"h-about-nellie-akalp\">About Nellie Akalp</h2>\n\n\n\n<div class=\"wp-block-image is-style-rounded\"><img width=\"200\" height=\"200\" src=\"https://cdn.poststatus.com/wp-content/uploads/2021/08/author-nellie-akalp.jpg\" alt=\"Nelie Akalp\" class=\"wp-image-85688\" /></div>\n\n\n\n<p>Nellie has dedicated her career to helping other entrepreneurs and business professionals succeed at business ownership. She is a business expert, professional speaker, published author, and mother to four amazing kids. As CEO and Co-Founder of <a href=\"https://www.corpnet.com/\" target=\"_blank\" rel=\"noreferrer noopener\">CorpNet.com</a>, she has helped more than half a million small businesses and licensed professionals get their businesses and clients off the ground. CorpNet.com is an online legal document filing service and recognized Inc. 5000 company. At CorpNet, Nellie assists entrepreneurs across all 50 states to start a business, incorporate, form an LLC, and apply for trademarks. She also offers free business compliance tools for any entrepreneur to utilize. </p>\n\n\n\n<p>Nellie has a strong following within the small business community and has been honored as a Small Business Influencer Champion. She was named the 2016 Woman Business Owner of the Year by the National Association of Women Business Owners\' Ventura County chapter.</p>\n\n\n\n<ul><li>Connect with Nellie on <a href=\"https://www.linkedin.com/in/nellieakalp\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">LinkedIn</a> and <a href=\"https://twitter.com/corpnetnellie\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Twitter</a>.</li><li>Nellie\'s <a href=\"https://www.corpnet.com/about/nellie-akalp/\" target=\"_blank\" rel=\"noreferrer noopener\">Small Business Corner</a> at CorpNet.com.</li></ul>\n\n\n\n<p class=\"has-background\">Every week <strong><a href=\"https://poststatus.com/podcast/the-excerpt/\">Post Status Live</a></strong> will brief you on important WordPress news — in about 15 minutes or less! Learn what\'s new in WordPress in a flash. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/26a1.png\" alt=\"⚡\" class=\"wp-smiley\" /><br /><br />You can listen to <a href=\"https://poststatus.com/podcast/the-excerpt/\">past episodes</a> of <strong>Post Status Live</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/13.0.1/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h3 id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul><li><a href=\"https://poststatus.com/planet/feed/PostStatus.com\">PostStatus.com</a></li><li><a href=\"https://poststatus.com/planet/feed/corpnet.com\">corpnet.com</a></li><li><a href=\"https://twitter.com/CorpNetNellie\">Nellie Akalp</a></li><li><a href=\"https://corymiller.com\">Cory Miller</a> (<a href=\"https://twitter.com/corymiller303\">Twitter</a>)</li></ul>\n\n\n\n<h3 id=\"h-sponsor-gravity-forms\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststatus.com/partner/gravity-forms/\">Gravity Forms</a></h3>\n\n\n\n<p>Gravity Forms is the easiest and most trusted advanced forms solution for your WordPress website. Packed with time-saving tools and features, Gravity Forms is the only WordPress form management plugin you will ever need. Stop losing valuable leads and grow your business with Gravity.</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, 05 Nov 2021 04:19:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Olivia Bisset\";s: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:79:\"Post Status: Post Status Excerpt (No. 31) — State of the WordPress Job Market\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=88930\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://poststatus.com/excerpt/31/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3779:\"<h2>&#8220;My best advice is to get to know as many people as you can — network.&#8221;</h2>\n\n\n\n<p class=\"has-drop-cap\">In this episode of Post Status Excerpt, David talks with special guest Michelle Frechette about the current landscape of the WordPress job market. What trends should a WordPress professional pay attention to right now? What should newcomers to the WordPress ecosystem do to stand out and be trusted by companies, especially for remote work? Michelle also shares a few tips for anyone trying to navigate their way to the right role and employer.</p>\n\n\n\n<p><strong>Also don\'t forget: </strong>We\'re encouraging listeners to check out the &#8220;<a href=\"https://poststatus.com/make-wordpress/\">Week at WordPress.org</a>&#8221; — get the feed <a href=\"https://poststatus.com/make-wordpress/feed/\">here</a> — and <a href=\"https://poststatus.com/submit-2021-black-friday-cyber-monday-deals/\">submit your Black Friday / Cyber Monday deals</a> to us at Post Status for us to share.</p>\n\n\n\n\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 brief you on important WordPress news — in about 15 minutes or less! Learn what\'s new in WordPress in a flash. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/26a1.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/13.0.1/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h3 id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul><li><a href=\"https://casabona.org/2021/10/wordpress-writing-app/\">StellarWP</a></li><li><a href=\"https://wpcareerpages.com/\">WordPress Jobs</a></li><li><a href=\"https://twitter.com/dimensionmedia\" target=\"_blank\" rel=\"noreferrer noopener\">David Bisset (Twitter)</a></li><li><a href=\"https://twitter.com/michelleames\" target=\"_blank\" rel=\"noreferrer noopener\">Michelle Frechette (Twitter)</a></li><li><a href=\"https://twitter.com/post_status\" target=\"_blank\" rel=\"noreferrer noopener\">Post Status (Twitter)</a></li></ul>\n\n\n\n<h3><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/sandhills\" target=\"_blank\" rel=\"noreferrer noopener sponsored nofollow\">Gravity Forms</a></h3>\n\n\n\n<p>Gravity Forms is the easiest and most trusted advanced forms solution for your WordPress website. Packed with time-saving tools and features, Gravity Forms is the only WordPress form management plugin you will ever need. Stop losing valuable leads and grow your business with Gravity.</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, 05 Nov 2021 04:02:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s: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:56:\"WordPress.org blog: The Month in WordPress: October 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11501\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/11/the-month-in-wordpress-october-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21866:\"<p>October 2021 brought a lot of new things to WordPress, from release updates to new versions of Gutenberg. More notably, in the <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/news/2021/10/episode-18-the-economics-of-wordpress/\" target=\"_blank\">latest episode</a> of <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/news/podcast/\" target=\"_blank\">WP Briefing</a>, Executive Director <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/chanthaboune/\" target=\"_blank\">Josepha Haden</a> reminded us about the importance of freedom in open source platforms like WordPress.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Free speech has with it a lot of responsibility, just like being a part of a community. Governments or communities, or in our case, <strong>this software is built by the people who show up. </strong><br /><br />For WordPress, at 42{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} of the web, every small choice we make can cause huge changes in the way that people experience the web today and tomorrow.</p><cite>Josepha Haden, Executive Director of the WordPress project</cite></blockquote>\n\n\n\n<p>Last month was yet another chapter in this journey. So keep reading to learn what&#8217;s new. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.9: All proposed updates will likely be included</h2>\n\n\n\n<ul><li>We announced the<strong> </strong><a href=\"https://make.wordpress.org/core/2021/10/15/wordpress-5-9-feature-go-no-go-october-14-2021/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>go/no-go for WordPress 5.9 features</strong></a><strong> </strong>in mid-October. The release will probably include all the proposed features—though not all of them are ready yet, they should be by the <a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\" target=\"_blank\" rel=\"noreferrer noopener\">proposed release date</a> (December 14, 2021).</li><li><strong>WordPress 5.9 will include a new default theme called </strong><a href=\"https://make.wordpress.org/core/2021/10/06/introducing-twenty-twenty-two/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Twenty Twenty-Two</strong></a><strong>! </strong><span>The theme&#8217;s foundation will be strong, and the unpredictable yet reliable behavior of birds inspired the intentionally subtle design. </span></li></ul>\n\n\n\n<div class=\"wp-block-image\"><img width=\"632\" height=\"433\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/11/WordPress-Twenty-TwentyTwo-Theme.jpg?resize=632{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C433&ssl=1\" alt=\"WordPress Default Theme Twenty Twenty-Two released with WordPress Version 5.9\" class=\"wp-image-11509\" /></div>\n\n\n\n<ul><li>5.9 bug scrub sessions began in September and will continue each week until the release on December 14, 2021. <strong>View the full </strong><a href=\"https://make.wordpress.org/core/2021/10/18/bug-scrub-schedule-for-5-9/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>bug scrub schedule</strong></a><strong>. </strong></li><li>Many of you requested a few <a href=\"https://make.wordpress.org/core/2021/10/25/wordpress-5-9-editor-update-26-october/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;must have&#8221; enhancements</a> for the 5.9 release—follow the <a href=\"https://github.com/WordPress/gutenberg/projects/62\" target=\"_blank\" rel=\"noreferrer noopener\">5.9 Must-Haves project board</a> to track their status.</li><li>The Test Team <a href=\"https://make.wordpress.org/test/2021/10/27/overview-of-the-5-9-test-leads-approach/\" target=\"_blank\" rel=\"noreferrer noopener\">shared an overview</a> of the team’s approach to testing WordPress 5.9.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center is-style-default\"><p><strong>Interested in contributing to WordPress core?</strong> Join the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\" target=\"_blank\" rel=\"noreferrer noopener\">#core</a> channel, follow the <a href=\"https://make.wordpress.org/core/\" target=\"_blank\" rel=\"noreferrer noopener\">Core Team blog</a>, and check out the <a href=\"https://make.wordpress.org/core/handbook/\" target=\"_blank\" rel=\"noreferrer noopener\">team handbook</a>. Also, don&#8217;t miss the Core Team’s weekly developer chat on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&min=00&sec=0\" target=\"_blank\" rel=\"noreferrer noopener\">8 PM</a> UTC.</p></blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Gutenberg releases: 11.6, 11.7, and 11.8 are here</h2>\n\n\n\n<p>We released three new versions of the Gutenberg block editor between the end of September and October:</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2021/10/01/whats-new-in-gutenberg-11-6-29-september/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Version 11.6</strong></a><strong> </strong>brings site logo cropping and rotation, block-level locking, improvements to Query Pagination block, support for child themes and <a href=\"https://make.wordpress.org/core/2021/10/29/thunks-in-gutenberg/\" target=\"_blank\" rel=\"noreferrer noopener\">thunks</a>, template focus mode, and enhancements to the writing flow.</li><li><a href=\"https://make.wordpress.org/core/2021/10/14/whats-new-in-gutenberg-11-7-october-13th/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Gutenberg version 11.7</strong></a><strong> </strong>includes bug fixes and polishes to the navigation block and editor, global styles and full site editing (including a handy back button that lets you quickly return to the site editor), and columns block support, among other improvements.</li><li>Finally, <a href=\"https://make.wordpress.org/core/2021/10/28/whats-new-in-gutenberg-11-8-0-27-october/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Gutenberg 11.8</strong></a> is the second to last version to make it into the <a href=\"https://make.wordpress.org/core/5-9/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress 5.9</a> release, and it comes with plenty of developments to the editing experience: featured Block Patterns, new animations for a few elements (like Dropzone and Insertion Point), spacing tools for heading blocks, and a lot more.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><strong>Want to get involved in developing Gutenberg? </strong>Follow <a href=\"https://make.wordpress.org/core/\" target=\"_blank\" rel=\"noreferrer noopener\">the Core Team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\" target=\"_blank\" rel=\"noreferrer noopener\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\" target=\"_blank\" rel=\"noreferrer noopener\">#core-editor</a> channel in the <a href=\"https://make.wordpress.org/chat/\" target=\"_blank\" rel=\"noreferrer noopener\">Make WordPress Slack</a>. For details on the latest updates, follow the &#8220;<a href=\"https://make.wordpress.org/core/2021/09/17/whats-next-in-gutenberg-mid-september-2021/\" target=\"_blank\" rel=\"noreferrer noopener\">What&#8217;s next in Gutenberg</a>&#8221; post.</p></blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>WordCamp US returned virtually this year with more than 3,600 attendees</h2>\n\n\n\n<p><a href=\"https://us.wordcamp.org/\" target=\"_blank\" rel=\"noreferrer noopener\">WordCamp US</a> 2021 was on October 1, and it was online for the first time. The event drew more than 3,600 attendees, 27 sponsors, and 18 remarkable speakers on topics ranging from accessibility and sustainability to e-commerce, to name a few. </p>\n\n\n\n<p>Matt Mullenweg&#8217;s “State of the Word” is expected to be held as a separate event later this year, rather than being part of WordCamp US.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p>If you missed the live event, <strong>you can still watch the <a href=\"https://www.youtube.com/watch?v=0Vkq4BFZbhI\" target=\"_blank\" rel=\"noreferrer noopener\">Yukon Track</a> and the <a href=\"https://www.youtube.com/watch?v=_6-yAZRXY8k\" target=\"_blank\" rel=\"noreferrer noopener\">Columbia Track</a> of WordCamp US 2021.</strong></p></blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Team Updates: Polyglots monthly newsletter, a new Performance team, and more</h2>\n\n\n\n<ul><li>The <a href=\"https://make.wordpress.org/polyglots/2021/10/15/polyglots-monthly-newsletter-october-2021/\" target=\"_blank\" rel=\"noreferrer noopener\">first edition</a> of the <a href=\"https://make.wordpress.org/polyglots/2021/09/27/sign-up-for-the-new-polyglots-monthly-newsletter/\" target=\"_blank\" rel=\"noreferrer noopener\">Polyglots monthly newsletter</a> went out on October 15, 2021.</li><li>The following teams opened up their call for team representatives last month, and more are coming soon: <a href=\"https://make.wordpress.org/core/2021/10/26/nominations-for-core-team-reps-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">Core</a>, <a href=\"https://make.wordpress.org/community/2021/10/11/community-team-rep-nominations-for-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">Community</a>, <a href=\"https://make.wordpress.org/themes/2021/10/27/nominations-call-for-the-themes-team-representatives/\" target=\"_blank\" rel=\"noreferrer noopener\">Themes</a>, <a href=\"https://make.wordpress.org/accessibility/2021/10/30/call-for-team-rep-nominations-3/\" target=\"_blank\" rel=\"noreferrer noopener\">Accessibility</a>, <a href=\"https://make.wordpress.org/support/2021/10/team-representative-nominations/\" target=\"_blank\" rel=\"noreferrer noopener\">Support</a>, <a href=\"https://make.wordpress.org/training/2021/11/02/nominations-for-training-team-reps-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">Training</a>, and <a href=\"https://make.wordpress.org/hosting/2021/10/30/nominations-for-hosting-team-reps-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">Hosting</a>.</li><li>A draft of the <a href=\"https://make.wordpress.org/community/2021/10/08/proposal-2022-global-community-sponsorship-program/\" target=\"_blank\" rel=\"noreferrer noopener\">2022 Global Community Sponsorship program proposal</a> was released on October 8, 2021. </li><li>The October 2021 edition of <a href=\"https://wordpress.org/news/2021/10/people-of-wordpress-ecommerce-ronald-gijsel/\" target=\"_blank\" rel=\"noreferrer noopener\">People of WordPress</a>, featuring WordPress e-commerce specialist Ronald Gijsel, went live.</li><li>Following excellent responses to the <a href=\"https://make.wordpress.org/core/2021/10/12/proposal-for-a-performance-team/\" target=\"_blank\" rel=\"noreferrer noopener\">initial proposal</a>, members of the Core Team announced the next steps in <a href=\"https://make.wordpress.org/core/2021/10/28/wordpress-performance-team-kick-off/\" target=\"_blank\" rel=\"noreferrer noopener\">launching a performance team</a> that aims to increase the performance (speed) of WordPress.</li><li>The Polyglots Team kicked-off <a href=\"https://make.wordpress.org/polyglots/2021/10/12/new-glotpress-meetings/\" target=\"_blank\" rel=\"noreferrer noopener\">bi-weekly Glotpress meetings</a> aimed at improving the functionality of the plugin that powers <a href=\"https://translate.wordpress.org/\" target=\"_blank\" rel=\"noreferrer noopener\">translate.wordpress.org</a>.</li><li>A <a href=\"https://make.wordpress.org/training/2021/10/27/documentation-sprint/\" target=\"_blank\" rel=\"noreferrer noopener\">sprint</a> is planned on November 10-12 to explore a <a href=\"https://make.wordpress.org/training/2021/10/04/a-dedicated-volunteer-program-for-the-training-team/\" target=\"_blank\" rel=\"noreferrer noopener\">dedicated volunteer program</a> for the Training Team, similar to the Deputy program in the Community Team.</li><li>WordPress.org profiles now display <a href=\"https://make.wordpress.org/meta/2021/10/11/wordpress-org-profiles-now-show-github-activity/\" target=\"_blank\" rel=\"noreferrer noopener\">activity from the WordPress GitHub organization</a>.</li><li>The Test Team <a href=\"https://make.wordpress.org/test/2021/10/21/fse-program-pattern-party-summary/\" target=\"_blank\" rel=\"noreferrer noopener\">shared results</a> of the tenth Full Site Editing (FSE) Outreach Program: Pattern Party. </li><li>Answers from the <a href=\"https://make.wordpress.org/core/2021/10/28/fse-program-answers-from-round-three-of-questions/\" target=\"_blank\" rel=\"noreferrer noopener\">third round of questions</a> from the FSE Outreach Program are now out!</li><li>The Docs Team is<a href=\"https://make.wordpress.org/docs/\" target=\"_blank\" rel=\"noreferrer noopener\"> consulting with independent legal experts</a> to explore whether there are issues with having Gutenberg (which is dual-licensed GPL + MPL) coexist with other contents in WordPress (our documentation has a CC0 license and the code is GPL). </li><li>The Themes Team shared a recap of work happening on <a href=\"https://make.wordpress.org/themes/2021/10/14/theme-tools-and-requirements-recap/\" target=\"_blank\" rel=\"noreferrer noopener\">automation and improvement processes</a> for the WordPress Themes directory. The Team also shared a p2 post highlighting the performance impact of<a href=\"https://make.wordpress.org/themes/2021/10/04/the-performance-impact-of-using-jquery-in-wordpress-themes/\" target=\"_blank\" rel=\"noreferrer noopener\"> jQuery on WordPress themes</a>.</li><li>The Marketing Team participated in a <a href=\"https://make.wordpress.org/marketing/2021/10/21/make-marketing-workshop-contributor-ladder/\" target=\"_blank\" rel=\"noreferrer noopener\">contributor ladder workshop</a> to help plan their future activities.</li><li>The feature<a href=\"https://wptranslationday.org/blog/celebrating-wordpress-translation-day-2021/\" target=\"_blank\" rel=\"noreferrer noopener\"> recap of the WordPress Translation Day 2021</a> is out from the Polyglots and Marketing teams, with the results of the <a href=\"https://wptranslationday.org/wptd-2021/polyglots-appreciation-nominees/\" target=\"_blank\" rel=\"noreferrer noopener\">Polyglots appreciation nominations 2021</a>.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong><a href=\"https://wordpressfoundation.us17.list-manage.com/subscribe?u=0f93eb6000a019fcbd53d10be&id=04c6fa5c90\" target=\"_blank\" rel=\"noreferrer noopener\">Sign up </a>for the Polyglots monthly newsletter</strong>, if you haven’t already.</p></blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Feedback/Testing requests: Deadline for redesigned Gutenberg landing page is November 5, 2021</h2>\n\n\n\n<img width=\"632\" height=\"396\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/11/WordPress_Gutenberg_Page.jpg?resize=632{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C396&ssl=1\" alt=\"WordPress.Org redesigned Gutenberg page\" class=\"wp-image-11519\" />\n\n\n\n<ul><li><strong>The Design Team is </strong><a href=\"https://make.wordpress.org/design/2021/10/29/redesign-of-the-gutenberg-page/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>working on redesigning</strong></a><strong> the </strong><a href=\"https://wordpress.org/gutenberg/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>wordpress.org/gutenberg</strong></a><strong> landing page, and has already shared a </strong><a href=\"https://www.figma.com/proto/Gl653sYvO3RBhVtWSFwMcD/Gutenberg-Page?page-id=1865{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}3A12926&node-id=1919{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}3A14707&viewport=241{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C48{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C0.15&scaling=min-zoom&starting-point-node-id=1919{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}3A14707\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>prototype</strong></a><strong>. </strong></li><li>The team has also shared a few other concepts where they have requested feedback from contributors:<ul><li>Site Editing iA Concepts: <a href=\"https://make.wordpress.org/design/2021/10/15/site-editing-ia-concepts-how-to-surface-and-access-new-features/\" target=\"_blank\" rel=\"noreferrer noopener\">Part1</a> and <a href=\"https://make.wordpress.org/design/2021/10/22/site-editing-ia-concepts-part-2/\" target=\"_blank\" rel=\"noreferrer noopener\">Part 2</a></li><li><a href=\"https://make.wordpress.org/design/2021/10/08/adventures-in-block-theme-switching/\" target=\"_blank\" rel=\"noreferrer noopener\">Block theme switching</a> concepts</li></ul></li><li>Version 18.5 of WordPress for <a href=\"https://make.wordpress.org/mobile/2021/10/18/call-for-testing-wordpress-for-ios-18-5/\" target=\"_blank\" rel=\"noreferrer noopener\">iOS</a> and <a href=\"https://make.wordpress.org/mobile/2021/10/19/call-for-testing-wordpress-for-android-18-5/\" target=\"_blank\" rel=\"noreferrer noopener\">Android</a> are now available for testing!</li><li>The Accessibility Team is <a href=\"https://make.wordpress.org/accessibility/2021/10/30/accessibility-team-meeting-notes-october-22-2021-2/\" target=\"_blank\" rel=\"noreferrer noopener\">requesting feedback</a> on a new Gutenberg Pull request that <a href=\"https://github.com/WordPress/gutenberg/pull/35896\" target=\"_blank\" rel=\"noreferrer noopener\">announces formatting changes or screen readers</a>.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Share your feedback on the new Gutenberg landing page design in </strong><a href=\"https://meta.trac.wordpress.org/ticket/5600\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Trac</strong></a><strong> or by </strong><a href=\"https://make.wordpress.org/design/2021/10/29/redesign-of-the-gutenberg-page/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>commenting on the blog post</strong></a><strong> by November 5, 2021.</strong></p></blockquote>\n\n\n\n<h2>Keep an eye out for WordCamp Spain, Sâo Paulo, and Taiwan 2021</h2>\n\n\n\n<p>We had several WordPress events in October, and several more to look forward to the rest of the year:</p>\n\n\n\n<ul><li>We’re seeking a new host city for <a href=\"https://us.wordcamp.org/2021/wordcamp-us-update-city-search-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">WordCamp US 2022</a>.</li><li>WordCamp Europe 2022 has extended its <a href=\"https://europe.wordcamp.org/2022/porto-is-calling/\" target=\"_blank\" rel=\"noreferrer noopener\">call for organizers</a>.</li><li><a href=\"https://italia.wordcamp.org/2021/\" target=\"_blank\" rel=\"noreferrer noopener\">WordCamp Italia 2021</a> was held online on October 22-23, 2021. The event had 23 speakers, 17 sponsors, and more than 1,000 registrants. Check out its <a href=\"https://www.youtube.com/channel/UCGdoJtlsv9BhODCQ71cOFnQ\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube channel</a> to watch the event replay.</li><li>Another highlight of the month was <a href=\"https://nicaragua.wordcamp.org/2021/\" target=\"_blank\" rel=\"noreferrer noopener\">WordCamp Nicaragua 2021</a> which was held on October 8-9, 2021.</li><li>The <a href=\"https://make.wordpress.org/community/tag/wpdiversity/\" target=\"_blank\" rel=\"noreferrer noopener\">#WPDiversity</a> working group of the Community Team organized an <a href=\"https://make.wordpress.org/community/2021/10/15/workshops-from-wpdiversity-october-and-november-2021/\" target=\"_blank\" rel=\"noreferrer noopener\">Allyship workshop for event organizers</a> on October 28. <a href=\"https://make.wordpress.org/community/2021/10/15/workshops-from-wpdiversity-october-and-november-2021/\" target=\"_blank\" rel=\"noreferrer noopener\">Sign up now</a> for the diversity events planned by the team for November! </li><li>A <a href=\"https://make.wordpress.org/training/2021/10/29/contribute2wp-learn-training-contributor-day/\" target=\"_blank\" rel=\"noreferrer noopener\">two-day contributor event</a> focused on <a href=\"https://learn.wordpress.org/\" target=\"_blank\" rel=\"noreferrer noopener\">Learn WordPress</a>, took place on October 29 and 31, 2021. There was also another <a href=\"https://yoast.com/about-us/events/yoast-contributor-day/\" target=\"_blank\" rel=\"noreferrer noopener\">contributor day</a> on October 8, 2021, which involved working groups across the board, from accessibility to user testing.</li><li>The Test Team organized the following Hallway Hangouts this week—check out their recaps:<ul><li><a href=\"https://make.wordpress.org/test/2021/10/06/hallway-hangout-pattern-party-testing-walkthrough-6-october/\" target=\"_blank\" rel=\"noreferrer noopener\">Pattern Party Testing Walkthrough </a></li><li><a href=\"https://make.wordpress.org/test/2021/10/20/hallway-hangout-5-9-go-no-go-site-editor-ia-and-more/\" target=\"_blank\" rel=\"noreferrer noopener\">5.9 Go/No go, Site Editor Internal Audit, and more</a></li></ul></li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Don’t miss the following upcoming online WordCamps: </strong><a href=\"https://spain.wordcamp.org/2021/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>WordCamp Spain 2021</strong></a><strong>, </strong><a href=\"https://saopaulo.wordcamp.org/2021/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>WordCamp Sâo Paulo 2021</strong></a><strong>, and </strong><a href=\"https://taiwan.wordcamp.org/2021/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>WordCamp Taiwan 2021</strong></a><strong>!</strong></p></blockquote>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><strong><em>Have a story that we could include in the next ‘Month in WordPress’ post? Let us know by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><em>this form</em></strong></a><strong><em>.</em></strong></p>\n\n\n\n<p><em>The following folks contributed to October 2021’s Month in WordPress: </em><a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/anjanavasan/\" target=\"_blank\"><em>@anjanavasan</em></a><em>, </em><a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/harishanker/\" target=\"_blank\"><em>@harishanker</em></a><em>, </em><a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/rmartinezduque/\" target=\"_blank\"><em>@rmartinezduque</em></a><em>, <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/callye/\" target=\"_blank\">@callye</a></em>, <em><a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/webcommsat/\" target=\"_blank\">@webcommsat</a></em>, and <em><a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/chaion07/\" target=\"_blank\">chaion07</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:\"Thu, 04 Nov 2021 23:35:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Anjana Vasan\";s: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:68:\"WPTavern: Ask the Bartender: Where Are the WooCommerce Block Themes?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=125083\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:177:\"https://wptavern.com/ask-the-bartender-where-are-the-woocommerce-block-themes?utm_source=rss&utm_medium=rss&utm_campaign=ask-the-bartender-where-are-the-woocommerce-block-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8805:\"<blockquote class=\"wp-block-quote\"><p>At what point are FSE theme developers going to start integrating and considering WooCommerce for their themes? WooCommerce has almost always seemed to lag behind all other considerations. It&rsquo;s a bit like it&rsquo;s an afterthought to simply scramble in the elements of a solid WooCommerce store. Where is a persistent cart header? Where are the templates for <code>/single-product</code>? There&rsquo;s all kinds of elements which <em>can</em> be developed right along side of other teams working on FSE, but it seems to (again, <em>consistently</em>) not happen.</p><p>I&rsquo;ve taken Blockbase and all the other FSE themes for a spin on LocalWP, and none of them have any WooCommerce elements in them. Again, one should not expect perfection at a &ldquo;developmental&rdquo; stage. However there does seem to be a behavioral pattern of WooCommerce elements being a bit of an &ldquo;afterthought&rdquo; that simply brings up the rear about a year or year-and-six-months afterwards.</p><p>Why not get everyone on the same page immediately? That way theme authors can address putting the cart elements in the header template. (Yes, WC can be run, but w/out a cart header, shoppers don&rsquo;t know where to click after an item is in their cart). And, if theme authors and WP core developers always, Always, ALWAYS started simultaneously <strong>with</strong> one or two WooCommerce folks on board, it would absolutely shorten the time needed for store owners to receive the benefits of FSE (and remove some of their pagebuilders!) and for WordPress to get more Shopify business over to WooCommerce. But that seemingly never happens because WooCommerce always seems to be the &ldquo;afterthought.&rdquo;</p><cite>Brad</cite></blockquote>\n\n\n\n<p class=\"has-drop-cap\">First, I want to make sure all of our readers are on the same page. <a href=\"https://wordpress.org/plugins/woocommerce/\">WooCommerce</a> is a third-party plugin. It is unrelated to the core WordPress and Gutenberg projects. Granted, WooCommerce is owned by Automattic, one of the largest contributors of resources and people. So, there is likely some crossover among developers.</p>\n\n\n\n<p>It is still crucial that we make a distinction between the two. When looking at some of the recent block themes that other developers have released, I have yet to see any integrate with the WooCommerce plugin. I cannot say whether any of their authors have plans to do so in the future. I imagine that some will and others will not. Like with any third-party plugin that outputs something on the front-end (e.g., bbPress, Easy Digital Downloads, etc.), it is the theme author&rsquo;s choice of whether they want to take on the burden of supporting integrations with projects that are not their own. It can be a maintenance nightmare at times, particularly when it comes to free themes. However, I have no doubt that we will see more block theme authors catering to WooCommerce users as we move forward.</p>\n\n\n\n<p>All of this is a long-winded way of saying the responsibility of WooCommerce working in a block world is on WooCommerce itself. When it gets to that stage, theme authors will follow.</p>\n\n\n\n<p>One of the things I love about the block system is that it creates a standard for all themes and plugins to build from. The long-term goal of plugins like WooCommerce should be to work without theme support.  If a user wants a cart item in their nav menu, it should be as simple as adding a block via the site editor. The same should be said for any other element of creating an online shop.</p>\n\n\n\n<p>I reached out to Darren Ethier, an engineering team lead within Automattic who works on the intersection between WooCommerce and Gutenberg. He agreed that the block system could make it easier for things to simply work without specialized theme support.</p>\n\n\n\n<p>&ldquo;That&rsquo;s definitely the target we&rsquo;re shooting for,&rdquo; he said. &ldquo;Whether or not we will land it in the first iteration is still unknown.&rdquo;</p>\n\n\n\n<p>However, the answer is more complex than that. WooCommerce is a heavy plugin with a history entrenched in the pre-block era of WordPress and has an ecosystem of third-party add-ons it must be careful not to break. The team is making progress and has a few things shooting through the pipeline. It will take some time, but you will not see block themes showcasing WooCommerce shops without the plugin first laying the groundwork.</p>\n\n\n\n<p>Block templates are a high priority. Top-level templates like <code>single-product.html</code>, <code>archive-product.html</code>, <code>taxonomy-product-cat.html</code>, and <code>taxonomy-product-tag.html</code> will be available to any block-enabled theme soon.</p>\n\n\n\n<p>&ldquo;This <em>initial</em> iteration will be a straight port of the existing PHP templates and have a placeholder for the rendering of the template in the editor,&rdquo; said Ethier. &ldquo;We&rsquo;re essentially wrapping the rendered PHP template in a dynamic block. This is definitely <em>not</em> the end goal. It just is the initial step of moving towards our vision of &lsquo;Store Editing&rsquo; where merchants are able to completely customize the layout of their stores using all the opportunities available through the block and site editors.&rdquo;</p>\n\n\n\n<p>This is more of a stopgap measure than full-blown support. However, it is a step in that direction.</p>\n\n\n\n<p>&ldquo;We decided to take this approach because it more quickly helps bridge the gap between the current PHP-based templates and block themes so that folks can start to see the potential (and still add blocks around the PHP-rendered content),&rdquo; he said. &ldquo;We also know it&rsquo;s going to be a complex job to more fully implement the vision of Store editing with block themes while supporting (and inspiring) the rich existing ecosystem of WooCommerce extensions. So, this allows us to incrementally improve things over time.&rdquo;</p>\n\n\n\n<p>This may not be the news all block theme authors want to hear, but the changes will be enough for them to start exploring tighter integration with the plugin.</p>\n\n\n\n<p>The team is currently aiming to add block template support in the next release of the <a href=\"https://wordpress.org/plugins/woo-gutenberg-products-block/\">WooCommerce Blocks</a> plugin. If all goes well, the feature will be ported to WooCommerce 6.0, which should be in time for the WordPress 5.9 release.</p>\n\n\n\n<p>&ldquo;It&rsquo;s important to set expectations, though (which is why I&rsquo;m mentioning this again),&rdquo; said Ethier. &ldquo;This initial iteration definitely will <em>not</em> be the final iteration of Woo Block templates.&rdquo;</p>\n\n\n\n<p>He also highlighted several things from the roadmap:</p>\n\n\n\n<ul><li>&ldquo;Product Element Blocks&rdquo; &ndash; which are the Woo equivalents to the WP template blocks. So, things like &ldquo;Product Title,&rdquo; &ldquo;Product Description,&rdquo; &ldquo;Add to Cart Button,&rdquo; etc.</li><li>Integrating with the WP Query Loop Block (for products).</li><li>&ldquo;Mini-Cart Block&rdquo; &ndash; which should allow for insertion into header/footer template parts.</li><li>Commerce Patterns.</li></ul>\n\n\n\n<p>&ldquo;All these things (and more) will help us with iterating on the various components of a store that are visually represented via templates, template parts (i.e., think of things like reviews on the single product page, etc.),&rdquo; said Ethier.</p>\n\n\n\n<p>For a deeper look at what is ahead, read <a href=\"https://developer.woocommerce.com/2021/08/31/peek-into-the-woocommerce-blocks-roadmap/\">Peek into the WooCommerce Blocks Roadmap</a>. Warning: it is dense and geared toward developers, but it must be. The solutions for a project the size and scope of WooCommerce are not simple.</p>\n\n\n\n<p>&ldquo;One key strategy we&rsquo;re trying here is to provide default WooCommerce store editing templates and functionality out of the box with Woo Core that should in theory &lsquo;just work&rsquo; with any block theme,&rdquo; said Ethier. &ldquo;There&rsquo;s so much that <code>theme.json</code> and global styles unlock to make this possible. Themes will still be able to override the default WooCommerce templates and template parts if they want, but they won&rsquo;t <em>need</em> to.&rdquo;</p>\n\n\n\n<p>While it may feel like block-based storefronts are lightyears away, we must remember that block themes are in their infancy. There are only about a couple dozen in the directory, and most of those are experimental.</p>\n\n\n\n<p>I am as excited as anyone about what this could mean for projects like WooCommerce. At the same time, I also know that the road might be longer than what we have in mind, but the WooCommerce team is already traveling down it.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Nov 2021 23:13:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:78:\"WPTavern: Automattic Acquires WPScan, May Be Rolled Into Jetpack in the Future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=125252\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:199:\"https://wptavern.com/automattic-acquires-wpscan-may-be-rolled-into-jetpack-in-the-future?utm_source=rss&utm_medium=rss&utm_campaign=automattic-acquires-wpscan-may-be-rolled-into-jetpack-in-the-future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3055:\"<p>Automattic has <a href=\"https://jetpack.com/2021/11/04/jetpack-acquires-wordpress-vulnerability-database-wpscan/\">acquired WPScan</a>, a ten-year-old service that provides a database for WordPress core, plugin, and theme vulnerabilities. The company has sponsored WPScan for a number of years and has already been white labeling its use in Jetpack Scan.</p>\n\n\n\n<p>Pricing for <a href=\"https://wpscan.com/\">WPScan</a> is based on API requests per day, with a free version limited to 25. Monthly pricing is tiered based on requests and additional features. The pricing matrix estimates that WordPress websites have 22 plugins installed, on average, and each one makes an API request, as well as one each for the core version and themes. </p>\n\n\n\n<p>&ldquo;Our goal for this acquisition is to make malware data and APIs more open source,&rdquo; Jetpack marketing representative Rob Pugh said. &ldquo;We want to ensure that WPScan continues to be a high-quality security resource for the entire WordPress community. To that effect, we&rsquo;ll be exploring ways to make the API completely free for non-commercial sites.&rdquo; </p>\n\n\n\n<p>Some users may be wondering whether the WPScan plugin offers more than what is built into Jetpack Scan. The two provide complementary features and can be used at the same time.</p>\n\n\n\n<p>&ldquo;[WPScan] does do some different checks that Jetpack Scan doesn&rsquo;t do such as&nbsp;<a rel=\"noreferrer noopener\" href=\"https://wordpress.org/plugins/wpscan/\" target=\"_blank\">weak passwords and https</a>,&rdquo; Pugh confirmed. &ldquo;Conversely, Jetpack Scan does some things that WPScan doesn&rsquo;t, such as a library of signatures checking for malicious code.&rdquo;</p>\n\n\n\n<p>Automattic has not ruled out requiring WPScan users to have Jetpack installed in order to use the plugin in the future. When asked if Automattic is considering the possibility of requiring Jetpack&nbsp;in order to access WPScan, Pugh said, &ldquo;We still need to evaluate what makes the most sense for Jetpack and WPScan long-term.&rdquo; </p>\n\n\n\n<p>Since the product was announced on the Jetpack blog as a Jetpack acquisition, it seems likely that Automattic will merge the branding under Jetpack Scan, rather than leave them separate. There is too much confusion regarding which security product offers which set of features and customers are more likely to respond to a streamlined, simple security package. It&rsquo;s also possible the product could be combined and offered as a standalone plugin, <a href=\"https://wptavern.com/jetpack-launches-commercial-backup-feature-as-a-standalone-plugin\">like Jetpack Backup</a>, Jetpack CRM, and Jetpack Boost. This may or may not require the core Jetpack plugin.</p>\n\n\n\n<p>For now, there are no changes planned for the service. WPScsan founders Ryan Dewhurst and Erwan Le Rousseau will continue their work on the product at Automattic.</p>\n\n\n\n<p> &ldquo;WPScan will continue to operate independently in the near term and may be integrated into Jetpack Scan in the future,&rdquo; Pugh said. </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, 04 Nov 2021 21:51: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: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:73:\"WPTavern: Birmingham to Host First In-Person WordCamp, February 4-5, 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=125186\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:187:\"https://wptavern.com/birmingham-to-host-first-in-person-wordcamp-february-4-5-2022?utm_source=rss&utm_medium=rss&utm_campaign=birmingham-to-host-first-in-person-wordcamp-february-4-5-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:3131:\"<p><a href=\"https://birmingham.wordcamp.org/2022/\">WordCamp Birmingham</a> is the first in-person WordCamp on the schedule for 2022. The event will be held at the Sidewalk Film Center and Cinema in downtown Birmingham on February 4-5. It is one of the first cracks in WordPress&rsquo; iced over event landscape after the pandemic brought in-person gatherings to a halt.</p>\n\n\n\n<p>&ldquo;WordCamp Birmingham was one of 40 or more WordCamps that needed to cancel or postpone in 2020,&rdquo; lead organizer Ryan Marks said.&nbsp;&ldquo;We had intentions of just postponing until 2021.&nbsp;During WordFest 2021 in July, Matt Mullenweg said, &lsquo;I encourage people to start planning.&nbsp;As soon as you feel safe to do so, do so.&rsquo;&nbsp;The proposal to return to in-person WordCamps was announced within a week of that interview.&nbsp;The local team met in August and targeted early February for our event. When the announcement updating the guidelines for in-person WordCamps was posted in September, it gave us a green light to keep moving forward.&rdquo;&nbsp;</p>\n\n\n\n<p>The updated guidelines for in-person WordCamps require that attendees be fully vaccinated, recently tested negative, or recently recovered in the last three months. Marks said the organizing team has not made a decision about whether to require masks but will be monitoring local health guidelines and communicate any expectations with attendees in January.&nbsp;&nbsp;</p>\n\n\n\n<p>WordCamp Birmingham secured a flexible arrangement with the venue in case they need to cancel. </p>\n\n\n\n<p>&ldquo;The contract with Sidewalk Film Center + Cinema gives us the flexibility to cancel without any loss of deposit as long as we give notice more than 7 days before the event,&rdquo; Marks said. &ldquo;This was sufficient for our local organizing team and WordPress Community Support.&rdquo;</p>\n\n\n\n<p>Marks reported that the process of getting the WordCamp approved was &ldquo;quite smooth&rdquo; thanks to assistance from their mentor, Kevin Cristiano, who worked with them on budget review.</p>\n\n\n\n<p>Although the maximum capacity of the venue is 300, the organizers have capped attendee numbers at 200 as a precaution.</p>\n\n\n\n<p><a href=\"https://birmingham.wordcamp.org/2022/tickets/\">Tickets</a> are on sale and the calls for speakers, sponsors, and volunteers is open. Organizers expect that it will sell out quickly since it&rsquo;s the first in-person WordCamp since all the pandemic cancellations. </p>\n\n\n\n<p>&ldquo;The best thing about WordPress isn&rsquo;t the software, it&rsquo;s the community,&rdquo; WordCamp Birmingham speaker wrangler Nathan Ingram said. &ldquo;And WordCamps are where the community meets, shares, and learns together. Virtual WordCamps have been necessary, but just aren&rsquo;t the same as being together face to face.</p>\n\n\n\n<p>&ldquo;WordCamp Birmingham is the oldest WordCamp in the Southeast &ndash; our first WordCamp was in 2008. I hope that this year&rsquo;s WordCamp Birmingham is a family reunion &ndash; a place where friends and colleagues can gather and enjoy the community that makes WordPress so great.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Nov 2021 04:15:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:65:\"WPTavern: WordPress Has Never Offered an Ideal Writing Experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=125207\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:175:\"https://wptavern.com/wordpress-has-never-offered-an-ideal-writing-experience?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-has-never-offered-an-ideal-writing-experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6757:\"<p class=\"has-drop-cap\">It needed to be said. I know some of you loved writing in the classic editor. I know some of you enjoy the current block editor. Some of you may have even been thrilled with the platform&rsquo;s earlier attempt at a distraction-free writing mode.</p>\n\n\n\n<p>But, for actual writing, WordPress has always been kind of, <em>sort of</em>, OK &mdash; maybe even <em>good</em> &mdash; but not great.</p>\n\n\n\n<p>Coupled with a content-focused theme with great typography and a registered editor stylesheet, both the classic and block editors could be equals. They would offer an interface and experience of editing the content as seen on the front end. However, having the back and front ends meet does not necessarily mean you have an ideal <em>writing</em> experience. It can be a top-tier platform for layout and design. However, for typing words on a screen, there are better tools.</p>\n\n\n\n<p>When I talk about writing, I am generally referring to mid or long-form content. If you are penning 200-word posts, dropping in photos, or designing a landing page, WordPress is as good as it comes. For publishing software, it is a powerhouse that few systems can rival.</p>\n\n\n\n<p>However, publishing and writing are two different things.</p>\n\n\n\n<p>There was a time that I wrote pages upon pages of essays, fiction, and everything else by hand. With a pen and pad, I spent hours drafting papers for my college classes. Even in my final two years, as I took four or five English and journalism courses at a time, I clung to what I knew best. The feel of the pen in my hand was a source of comfort. It glided atop the page in legible-but-imperfect cursive.</p>\n\n\n\n<p>It was not until an ethnography class that I had to put down the pen and move on to the technological upgrade of the computer. Don&rsquo;t get me wrong. I was a speedy typist at the time and was well on my way to becoming a WordPress developer. I did not come of age with computers, but I picked up the skills I needed quickly. I was even writing blog posts in the OG classic editor back then.</p>\n\n\n\n<p>However, writing was such a personal act for me, and the keyboard and screen felt impersonal. A 30-page ethnographic paper on modern literacy changed my view on the matter.  Since then, I have not looked back.</p>\n\n\n\n<p>If you are concerned that I will say that you are stuck in the past, that is not the case. The tools we use can be a great comfort to us. I would not tell a pianist not to compose their next piece on the old church piano they have played since childhood. That may be one source of their inspiration, likewise, for someone&rsquo;s favorite writing software.</p>\n\n\n\n<p>What I have learned is to try out new things once in a while. I am very much the type of person who gets stuck using the tools that I am comfortable with, so I remind myself to mix it up from time to time.</p>\n\n\n\n<p>The classic WordPress editor and I never clicked. Eventually, I learned to write in Markdown and port those posts to the WordPress editor. Mark Jaquith&rsquo;s <a href=\"https://wordpress.org/plugins/markdown-on-save/\">Markdown on Save</a> plugin was a godsend for many years. Eventually, I switched to Jetpack&rsquo;s Markdown module. Today, the block editor converts my preferred writing format to blocks automatically as I paste it in.</p>\n\n\n\n<p>As much as I love the block editor, I rarely use it during the drafting process. I am literally writing this post in Atom.</p>\n\n\n\n<img />My writing workspace (Atom).\n\n\n\n<p>Atom is known more for being a code editor, but its packages come in handy for Markdown enthusiasts. I also like using something with quick folder access for traversing through various ongoing stories and projects. I use a simple &ldquo;bucket&rdquo; system for working, published, and trashed posts to organize everything. Once I finish drafting and running the first edit, I copy and paste the text directly into the WordPress editor. Then, I dive into the final editing rounds. This is where WordPress becomes far more beneficial to my flow. I can make adjustments that I did not see in plainer text format, and dropping in media is simple.</p>\n\n\n\n<p>I am sure many people would dislike my choice of writing tools or my workflow. Some people enjoy writing in Microsoft Word &mdash; <em>really, I have heard such people exist.</em> Others publish via email, apps, or other computer programs.</p>\n\n\n\n<p>Currently, I am giving Dabble a try during National Novel Writing Month (NaNoWriMo). I wrote via Atom the last time I participated in the writing challenge. However, the tool I enjoy most for writing blog posts offers a sub-par experience for something as complex as a 50,000-word manuscript.</p>\n\n\n\n<img />Writing a novel manuscript in Dabble.\n\n\n\n<p>Dabble is a platform specifically built for writing books. I wish it was open-source, but it is hard to come by equivalent software without restrictive licensing. Nevertheless, it does its job and sticks in its lane. It also does not hurt that it updates word counts through the NaNoWriMo API.</p>\n\n\n\n<p>Thus far, I am loving the Dabble experience. It is also imperative that those who work on the WordPress platform step outside our bubbles and try related software. We should learn and grow from it. Then, bring those experiences back into the WordPress fold.</p>\n\n\n\n<p>I cannot imagine writing a novel in WordPress without first creating a plugin that added the extra bits, such as scene and character cards, and cut away almost everything else. The editing canvas might be acceptable with the right style adjustments. <em>Note: if anyone wants to build this, I would be happy to offer direct feedback.</em></p>\n\n\n\n<p>WordPress may never be the ideal writing experience for all people. However, it should always offer a pathway toward publishing, regardless of what tools its users prefer.</p>\n\n\n\n<p>It should also continue striving to create a more well-rounded writing experience. Besides a few oddities, the block editor seems to be on this path. Every now and again, I write a post in it. It is part of my promise to step outside my comfort zone. Each time, the experience is better. It continues to be in that &ldquo;sort of good&rdquo; zone, and I am OK with that. WordPress is making progress.</p>\n\n\n\n<p>Continue the conversation. This post builds on the following articles:</p>\n\n\n\n<ul><li>Justin Ferriman &ndash; <a href=\"https://justinferriman.com/matts-page-builder\">Matt&rsquo;s Page Builder</a></li><li>Jose Casabona &ndash; <a href=\"https://casabona.org/2021/10/wordpress-writing-app/\">Should You Really Write in the WordPress Editor?</a></li><li>WP Mainline &ndash; <a href=\"https://wpmainline.com/2021/10/25/i-hope-this-is-all-worth-it/\">I Hope This Is All Worth It</a></li></ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Nov 2021 22:37: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: #9 – Tara King on Encouraging Developers Towards a Gutenberg Future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=125126\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:201:\"https://wptavern.com/podcast/9-tara-king-on-encouraging-developers-towards-a-gutenberg-future?utm_source=rss&utm_medium=rss&utm_campaign=9-tara-king-on-encouraging-developers-towards-a-gutenberg-future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:61675:\"<h2 id=\"about-this-episode\">About this episode.</h2>\n\n\n\n<p>On the podcast today we have <a href=\"https://profiles.wordpress.org/sparklingrobots/\">Tara King</a>.</p>\n\n\n\n<p>Tara has recently begun working for Automattic in the developer relations role. Tara will lead a newly formed team who will get out and about; trying to understand the pain points which people are having with the new Block Editor and Full Site Editing. They will then report their findings back to the developer and contributor teams, and hopefully establish a feedback loop to make the editor better.</p>\n\n\n\n<p>They are also creating blogs, podcasts, courses and many other types of content to help people get up to speed with the Block Editor.</p>\n\n\n\n<p>It&rsquo;s no secret that whilst there are many people who love the Block Editor, there are many who remain unconvinced. Unconvinced might not be a strong enough word, but you get the idea. I wanted to hear about the purpose of this new team and how it&rsquo;s going to be working. Will it have a real impact upon the future of the Block Editor? What will they be offering? How can they be reached? Who is deciding what&rsquo;s included and what&rsquo;s left out? What motivations are behind all these decisions?</p>\n\n\n\n<p>We also get into a chat about the fact that WordPress is changing; moving away from a legacy of easy-to-understand PHP code and moving towards a JavaScript and React based future. Is the pain of learning these new skills going to be worth it, and is there going to be any support to help people get there?</p>\n\n\n\n<p>It&rsquo;s a wide-ranging discussion at an important moment in WordPress&rsquo; history.</p>\n\n\n\n<p>Time will tell if Tara&rsquo;s team can win the hearts and minds of unconvinced developers.</p>\n\n\n\n<p>Have a listen to the podcast and leave a comment below.</p>\n\n\n\n<h2 id=\"useful-links\">Useful links.</h2>\n\n\n\n<p>Tara&rsquo;s email address: tara.king [at] automattic [dot] com</p>\n\n\n\n<p><a href=\"https://www.thedigitalnomad.io/job/automattic-developer-relations-wordpress/\">Automattic: Developer Relations Job Description</a></p>\n\n\nTranscript<div><div class=\"chat-transcript\"><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:00:00]</div> <div class=\"chat-text\"><p>Welcome to the ninth edition of the Jukebox podcast from WP Tavern. My name is Nathan Wrigley. Jukebox is a podcast which is dedicated to all things WordPress, the people, events, plugins, themes, blocks, and in this case developers and Gutenberg. Each month we&rsquo;re bringing you someone from that community to discuss a topic of current interest.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>If you liked the podcast, please share it with your friends. You might also like to think about subscribing so that you&rsquo;ll get all of the episodes in your podcast player automatically, and you can do that by searching for WP Tavern in your podcast player, or by going to WP Tavern dot com forward slash feed forward slash podcast.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>You can also play the podcast episodes on the WP Tavern website if you prefer that. If you have any thoughts about the podcast, perhaps a suggestion of a guest or an interesting subject, then please head over to WP Tavern dot com forward slash contact forward slash jukebox, and use the contact form there. We would certainly welcome your input.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>Okay, so on the podcast today we have Tara King. Tara has recently begun working for Automattic, in developer relations, and it&rsquo;s an important role within the WordPress community. Tara will be leading a newly formed team who will be getting out and about, trying to understand the pain points which people are having with the new block editor and with full site editing. They will then report this back to the developer and contributor teams and hopefully establish a feedback loop to make the editor better. They are also creating blogs, podcasts, courses, and all sorts of other content to help people get up to speed, and perhaps begin using, or better understanding, the block editor.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>It&rsquo;s no secret that whilst there are many people who love the block editor, there are many who remain unconvinced. Unconvinced might not be a strong enough word, but you get the idea.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>I wanted to hear about the purpose of this new team and how it&rsquo;s going to be working. Will it have a real impact upon the future of the block editor? What will they be offering? How can they be reached and who is making the decisions about what&rsquo;s included and what&rsquo;s left out? And what motivations are behind all of these decisions?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>We also get into a chat about the fact that WordPress is changing. It&rsquo;s moving away from a legacy of easy to understand PHP code and moving towards a JavaScript and React based future. Is the pain of learning these new skills going to be worth it? And is there going to be any support to help people get there?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>It&rsquo;s a wide ranging discussion at an important moment in WordPress&rsquo;s history. Time will tell if Tara&rsquo;s team are able to win the hearts and minds of unconvinced developers.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>If any of the points raised in this podcast, resonate with you, be sure to head over and find the post at WP Tavern dot com forward slash podcast, and leave a comment there. And so without further delay, I bring you Tara King.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>I am joined today on the podcast by Tara King. Hello, Tara.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-taraking vcard\"><cite class=\"fn\">Tara King</cite> [00:03:54]</div> <div class=\"chat-text\"><p>Hello. Thanks for having me.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:03:55]</div> <div class=\"chat-text\"><p>You are very welcome. It is an absolute pleasure. We&rsquo;ve spent the last couple of minutes just getting to know one another. We haven&rsquo;t ever spoken before, so this&rsquo;ll be a really interesting chat. We&rsquo;ve got a lot of ground to cover. And first of all, I&rsquo;d like to congratulate you on your brand new, shiny new job over at Automattic. I wonder if you might spend the first couple of minutes telling us what your new job is and what your title is and what you do.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-taraking vcard\"><cite class=\"fn\">Tara King</cite> [00:04:22]</div> <div class=\"chat-text\"><p>Yeah. So I&rsquo;ll give you the short version first, which is that my job is to lead a team that is basically going out into the community to hear where people are struggling with Gutenberg, struggling with full site editing. Bring that context back into the development teams and the contributor teams that are building the product and then make it better. And in addition to that feedback cycle part of things, we&rsquo;re also creating content, courses, blogs, podcasts, all kinds of things to help people get up to speed with where Gutenberg is right now, where it&rsquo;s going to go next and how to make the leap over from the Classic Editor.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:05:04]</div> <div class=\"chat-text\"><p>That&rsquo;s really interesting. I did actually read the job description that was posted on the website. I don&rsquo;t know obviously what the final job description entails, but I was really fascinated to see that it was very much bolted on to the Gutenberg project as opposed to something a bit wider. And that is fascinating. It does feel at this moment in time, we&rsquo;re recording it towards the latter end of 2021. And it does feel at this time that there&rsquo;s quite a lot of, disagreement shall we say about how the WordPress project is being taken forward? And a lot of that disagreement is centering around Gutenberg and it seems that a few new roles, not just your role, but some others have been created particularly to handle the way that the community interact and the way that they feel and the way that they&rsquo;re receiving knowledge about it. Have I got that right? Are Automattic putting jobs out there for people to do exactly that.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-taraking vcard\"><cite class=\"fn\">Tara King</cite> [00:06:06]</div> <div class=\"chat-text\"><p>Yeah, I think my team especially it came out of the 5.0 retrospective. So when Gutenberg came out and it was pushed out into the community, I think anybody who was around at that time of the WordPress community was aware of the pushback and the unhappiness in the community, around some of the things that happened.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And looking at that, I was not part of the project in a serious way, at that point, I was actually doing support, so I was hearing all of the people who are unhappy tell us how can I change away from Gutenberg? How can I fix this? So that was my role in it at the time was just living through person by person with the impact of it.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>What I&rsquo;ve heard is basically they looked at the 5.0 release and said we need to communicate better, first of all right, but it&rsquo;s not just pushing information out, it&rsquo;s also, we need to listen better. We need to be aware of what people are feeling earlier so that when we&rsquo;re trying to make this work, it&rsquo;s not only perceived as, but I think experienced as a one-way street kind of thing, because I don&rsquo;t think that&rsquo;s ever been the spirit of the WordPress project, and I don&rsquo;t think Gutenberg actually was meant to change that feeling, if that makes sense. But it did so for some people it really did. And so my team especially is really about listening and trying to engage more people, bring more people into the room to be part of those discussions, to be part of those decisions, because I don&rsquo;t think anybody wants Gutenberg to succeed just for Gutenberg&rsquo;s sake.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I think it&rsquo;s a really good tool. And so we&rsquo;re trying to make sure that everyone can be involved. So that&rsquo;s my team in particular, but I think in general, there is a sense that Gutenberg is still struggling to be understood. It&rsquo;s a really big change for the community on a technical level. And so we just need to be putting more energy and more attention to helping people bridge the gap between where they are now and where they need to be for Gutenberg.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:07:55]</div> <div class=\"chat-text\"><p>Just dwelling on the team for a moment you may be allowed, you may not be allowed I don&rsquo;t know, to describe how big that team is and what the specifics are about how it&rsquo;s going to be implementing that. I&rsquo;m just wondering if you can give us some insight, because it would be interesting, certainly from my part, it would be interesting to know how many people are on the ground now, doing that kind of work specifically in your team.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-taraking vcard\"><cite class=\"fn\">Tara King</cite> [00:08:16]</div> <div class=\"chat-text\"><p>Yeah, there are four people aside from myself, so five people in total. We have people doing specific programs. Anne McCarthy has been doing amazing work around the full site editing outreach program. So that&rsquo;s been part of this team before I started, they were doing that work. And then we have other folks doing courses and meet up presentations. Daisy Olson has been doing those also for a while. We have two new teammates, so Birgit from Gutenberg Times, which is a very amazing connection to have, is going to keep doing that. We&rsquo;re basically supporting Birgit to do more and more Gutenberg Times as much as she&rsquo;s willing to do. And then we have Ryan Welcher, a new hire from TenUp, who is helping on the sort of more technical side.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So we have four people which means each person is responsible for, I think, 10 and a half percent of the internet. So it&rsquo;s quite a big job, I would say.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:09:09]</div> <div class=\"chat-text\"><p>That&rsquo;s a fascinating way of actually thinking about it. Forgive me, I&rsquo;m going to quote from the Automattic job description that came to you. This is the thing that you applied for. And again, please forgive me if this has now morphed in some way, but it basically says &ldquo;We&rsquo;re looking for someone to join our Automattic team dedicated to aiding the WordPress open source systems effort, specifically around developer relations. Your focus will be communicating with community developers about WordPress, Gutenberg and the surrounding ecosystem to build a positive and sustainable relationship with WordPress developers and reduce barriers to Gutenberg adoption&rdquo;. And then there&rsquo;s a bullet point list of what the ideal candidate will have, which presumably you met admirably. Congratulations. The thing that jumps out for me, there is the word developer is used multiple times. And is that where your efforts are going to lie? You&rsquo;re reaching out to developers as opposed say to end users or perhaps people that are new in the community who are unfamiliar with how Gutenberg and WordPress works.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-taraking vcard\"><cite class=\"fn\">Tara King</cite> [00:10:10]</div> <div class=\"chat-text\"><p>Yeah. So we are one month in. So we&rsquo;re still working out the details, but very much focused on developers. I think I&rsquo;ll say for myself, I am actually from the Drupal project, I&rsquo;ve been in WordPress for a long time, but I have a much deeper kind of contributor history in Drupal actually. And in the Drupal project, it&rsquo;s always like developers first. Basically it&rsquo;s not official, but it&rsquo;s very focused on the developer experience and, coming to WordPress, I was always looking around&hellip; who&rsquo;s talking about developers and WordPress, where are they meeting? Where are they talking? So it&rsquo;s a very natural thing to focus on developers for me. But I do think it&rsquo;s a little bit new in the WordPress project. Certainly not developer first. I think the user is still always, maybe even the visitor is always going to be first, but the user of WordPress is always going to be the primary audience. But I think Gutenberg is really a product, a tool for the user, but in order to get it out there, I think developers really need to adopt it. Especially anybody who&rsquo;s extending WordPress. We need them to understand how to make Gutenberg work with that. Because that really does, I am blown away every time I use Gutenberg, and I know that&rsquo;s my job to say that, but it&rsquo;s actually also true. It&rsquo;s part of why I took the job. I think it&rsquo;s such a fantastic tool when you&rsquo;re giving somebody a site and they&rsquo;re going to be managing it. Without any code, they can do really advanced things in terms of layout and display.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>We need all the developers in the community to get on board and make it available via their various extensions. So we really are focused on developers and that goes everywhere from, so there&rsquo;s the theory of care in the WordPress community? I don&rsquo;t know if you&rsquo;re familiar. It&rsquo;s there&rsquo;s the leadership. There&rsquo;s the contributors. There&rsquo;s the extenders. Users and visitors, I&rsquo;m kind of sticking with that model. There&rsquo;s developers all the way down to the user level. People who are not writing a lot of new code necessarily, but maybe a little bit here and there. So we&rsquo;re talking to those folks. We&rsquo;re talking definitely to the extender group. So people who are writing plugins and themes, people who are running hosting companies or agencies, large universities, anybody kind of working with WordPress at a larger scale. And then of course the contributors who are literally developing the project. So it doesn&rsquo;t sound very focused when I say it like that, because that&rsquo;s a lot of people, but it&rsquo;s everybody who&rsquo;s writing code to support WordPress, whether that&rsquo;s for one site or for all of WordPress.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:12:33]</div> <div class=\"chat-text\"><p>I am really interested by the fact that this role in this team now exists. As far as I&rsquo;m aware it&rsquo;s the first time that your role has existed. That&rsquo;s right, isn&rsquo;t it? You are the first person to.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-taraking vcard\"><cite class=\"fn\">Tara King</cite> [00:12:46]</div> <div class=\"chat-text\"><p>That is correct.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:12:47]</div> <div class=\"chat-text\"><p>Okay. So that speaks to me that the team over at Automattic, as you said, they&rsquo;ve listened and they&rsquo;ve realized that this team needs to exist. WordPress is growing and fortunately Automattic have the capability to put this together. I suppose later on in the podcast, we&rsquo;ll get into the problems that people are experiencing and some of the things that presumably you&rsquo;re going to be addressing, but I am also keen to understand how people will be interacting with you.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>So in the future, how are they going to be getting their concerns in front of you and your team. Is it all about outreach from you or is it doors open, you can email me. How are people going to make contact with you and your team and express what it is that they need to express?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-taraking vcard\"><cite class=\"fn\">Tara King</cite> [00:13:32]</div> <div class=\"chat-text\"><p>Yeah, that&rsquo;s a great question. Going back to the 10.5{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} of the internet per person. It&rsquo;s a really hard problem to solve. We can&rsquo;t be everywhere at once. As much as I would like to have someone who&rsquo;s on every WordPress related Stack Overflow or Stack Exchange, Reddit, Facebook, Twitter, I could keep going with where we might go to listen to the community.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>We&rsquo;re still working that out in terms of the details. We&rsquo;re in Make Slack all the time, but I know Make Slack isn&rsquo;t always terribly welcoming. It&rsquo;s welcoming, nobody&rsquo;s mean, but it&rsquo;s a bit confusing, I think when you&rsquo;re new to the community or new to that space, there&rsquo;s always meetings happening. I know I personally have had the experience of, I don&rsquo;t know when I&rsquo;m supposed to talk with, if I&rsquo;m interrupting a meeting.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>You know, there are places that we definitely are. I think my email is going to, I assume it&rsquo;ll be in the podcast notes, it&rsquo;s tara dot king at automattic dot com. I am happy to hear from folks. I may regret saying that I don&rsquo;t know how many emails I&rsquo;ll get, but I think for me right now, especially because I am transitioning from having one foot in both Drupal and WordPress into being more WordPress focused, I&rsquo;m really looking to meet people and genuinely hear what folks are struggling with because it&rsquo;s wide. So my mandate is Gutenberg focused, but, that&rsquo;s not the only thing that causes problems. You might be also struggling with some particular part of Core that isn&rsquo;t Gutenberg. Like it&rsquo;s a very tangled knot in terms of when you&rsquo;re having issues with WordPress. So I like to hear about it because maybe right now the radar is focused on Gutenberg, but we&rsquo;re not going to be focused on Gutenberg forever. We can expand out from that narrow focus.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So long story long, I wish I had a super simple answer other than to email myself personally. We are listening as much as we can or going to events, camps, and meetups and things. We are listening on Twitter. We&rsquo;re listening on Post Status. We are trying to be in all the major places, but feel free to reach out to myself or anyone else on the team that you feel comfortable with.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>There&rsquo;s a lot of people out there for a very small team, but we are trying to listen. One other thing I&rsquo;ll say before I finish on this topic, is there are very specific calls for testing that we&rsquo;re doing. So if you want to be more involved in the full site editing development before it happens, right? So a lot of people have a very reactive approach, which is, it comes out and they&rsquo;re unhappy, but actually there are pathways to be involved sooner. And this was one of the easiest ones. You can go to the Make Slack, there&rsquo;s a channel called F S E dash outreach. And if you join that channel, you will be presented with calls for testing that are, in my opinion, I hope that other people find this to be true as well, fairly clearly outlined. You know, step-by-step how to do the test in question. And then where to give your feedback. This is helping with everything from how a navigation block works from how widgets work. There&rsquo;s been some open-ended ones around what themers, theme builders needs. So that&rsquo;s one way to get a very specific kind of feedback, right? It&rsquo;s not general, but it&rsquo;s very effective to get specific feedback.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:16:29]</div> <div class=\"chat-text\"><p>I sometimes feel that despite the fact that those channels are publicly available and anybody can hop in, I do sometimes wonder if things like the Make Slack and Github and so on, I do wonder if there&rsquo;s room for improvement there. And I don&rsquo;t mean throw the baby out with the bath water, but they can be quite intimidating. It is difficult to backtrack and figure out where the conversation began that&rsquo;s currently going on. The interface for Slack is excellent if you&rsquo;re a part of a team and your daily grind is to be in a particular Slack channel, and you&rsquo;re constantly checking in and you see where the conversation has flowed from and where the conversation is right now. But I feel it&rsquo;s difficult for people who are just hopping in to make almost any sense of those conversations at all. And so of course, the easy thing to do is to glance in open the door at a tiny bit, stare through the crack and then just run away in fear and continue to feel annoyed.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-taraking vcard\"><cite class=\"fn\">Tara King</cite> [00:17:25]</div> <div class=\"chat-text\"><p>Yeah, I totally agree. I think, here I am barging in kinda new to the community. It was lots of opinions. I&rsquo;ve been feeling very much like the Make Slack and the Make blogs are more welcoming to people who are contributing because they&rsquo;re in it every day. It&rsquo;s easy for them to understand what&rsquo;s happening. Whereas I don&rsquo;t actually feel like we have a great location for developers at large. We have documentation. We have the Github for Gutenberg, but again, they&rsquo;re very contributor focused. There are people who just need to know how to build a plugin. How to build a block pattern on WordPress in general. And I don&rsquo;t feel like we have a great place for those discussions to happen right now. I don&rsquo;t know what we&rsquo;re going to land on, but that&rsquo;s one thing that this team is working on, trying to figure out what would be the right way to consolidate conversations for that community. Because right now it does feel like if you&rsquo;re a developer who has a WordPress problem, you shout into the void and you hope somebody hears. That might happen on Twitter. It might happen at a WordCamp. There are ways to be heard, but they&rsquo;re hard to find. I think we need much better pathways. To have those conversations.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:18:28]</div> <div class=\"chat-text\"><p>I am not committing you to any particular platform or any particular piece of software, but it&rsquo;s just, it is nice to hear though, that you have that, on the radar, you&rsquo;re thinking about that because I think that&rsquo;s really important. Many of us are used to different platforms, probably more social in nature that seem to work in inverted commas, better, but that&rsquo;s fascinating, thank you.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>Okay. Let&rsquo;s get stuck into the side of Gutenberg where people are concerned. Feeling disgruntled. Now I do want to definitively spell out at this point that you are not responsible for the way that Gutenburg is right now. I really want to make that very clear. So anybody listening to the podcast, it is not your fault, but people have concerns.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>I think right now we seem to be seeing more concern than ever before. I&rsquo;ve been using WordPress for about, I&rsquo;m going to go for nine years, that feels more or less, right. Prior to that I was using a piece of software, which you just mentioned, Drupal. And I was extremely happy with Drupal. Drupal did everything that I wanted to do. It really was fabulous. In fact, if you could rewind the clock, I was telling my clients that Drupal was probably going to overtake WordPress in its use. How wrong could I have been? But there came a moment in time where that community became something that I no longer was part of. And it was because of the fact that Drupal deals with point releases, so from five to six to seven. There is a real line drawn in the sand. Drupal five doesn&rsquo;t sit well with Drupal six and six doesn&rsquo;t sit well with seven and so on. And I left at the point where there was one of these moments. It was from Drupal seven to Drupal eight, and I couldn&rsquo;t cope with the fact that I was going to have to do an enormous amount of work, just to keep things that had already built, up and running. Now the parallels that are there are fairly major I think, WordPress has done an unbelievably good job of being backwards compatible, but now we have what feels like, I&rsquo;m going to call it a Drupal moment. Where we are at an inflection point, something radical has changed in WordPress, and it really is bifurcating the path. Some users extremely happy, giving it a go, getting involved, loving it, other people, disliking it, not wanting to be a part of it and ultimately, just stopping being part of the community and not using WordPress at all. So I hope my analogy there with Drupal sits and you understand what I&rsquo;m saying?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-taraking vcard\"><cite class=\"fn\">Tara King</cite> [00:20:53]</div> <div class=\"chat-text\"><p>Yeah, it does. Yep. I was in the community of the Drupal community when that happened as well. It is very interesting. I think for a long time, I&rsquo;ve talked to people in both communities, I&rsquo;ve talked to people using both software. And one of the differences, when people ask what&rsquo;s the difference is that WordPress is backwards compatible and Drupal&rsquo;s not. And the seven to eight was Drupal becoming object oriented, was the main change. And so people were used to writing procedural PHP, and now they had to write object oriented and they weren&rsquo;t used to it. And, not only were they not used to it, it was just unbelievable amount of work to update all of the extensions and make everything work. And then there&rsquo;s no migration path that&rsquo;s very clean between seven to eight in Drupal. Having lived through that, the Drupal project forked at that point, there&rsquo;s now a separate fork of the project called Backdrop. It was a very painful time. It was honestly a very painful time for me personally. I&rsquo;m sure it was painful for other people as well, but it was painful for me because I had gotten into Drupal in Drupal six and I was essentially a solo shop. I was building sites by myself, occasionally getting in a contractor and I could make sites pretty cheaply and pretty easily for lots and lots of people on Drupal. And like you said, loved, I just loved the software. I loved it so much. And the switch to Drupal eight felt very personal, like we don&rsquo;t care about people like you Tara. Obviously, no one&rsquo;s said that to me, but that&rsquo;s what it felt like. It felt like I don&rsquo;t have the resources to make this kind of a change for my clients. And I think ultimately it led me to stop freelancing and start working for agencies because they did have the resources. So it actually did change my career trajectory. So it&rsquo;s very serious for people. These kinds of changes in a software project, it seems kind technical or niche, but it&rsquo;s not, it&rsquo;s people&rsquo;s livelihoods and it&rsquo;s people&rsquo;s entire way of being in the world. Like you&rsquo;re changing how someone is working, you&rsquo;re changing, what kind of work they&rsquo;re able to do.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So I think it&rsquo;s a really relevant parallel to draw to Gutenberg because I think a lot of people are feeling that same way now, and it&rsquo;s no surprise that they&rsquo;re going to have very strong reactions when their livelihood is threatened. I don&rsquo;t play a single person for having that struggle. The reason I took when I was talking about the job and interviewing and things like that, it definitely feels like we&rsquo;re starting a little bit behind because the community is already upset. It would have been nice if we could&rsquo;ve started before we Gutenberg came out and built those relationships earlier, but hindsight&rsquo;s 2020.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And I thought to myself, there&rsquo;s so many people doing so many cool things with WordPress right now. I think Gutenberg is a really powerful tool. And if we can help people make that bridge. Not have to build the bridge to becoming a Gutenberg developer themselves, but have one provided. If we can help people feel heard and welcomed and important again. Cause I think that&rsquo;s why we come to these communities as we feel that way, we feel like we&rsquo;re important and we have somewhere to matter. So anyway, for me, long story short, it&rsquo;s very emotional and I really want to honor and respect people and meet them where they&rsquo;re at because I&rsquo;ve been there in the Drupal project.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:23:53]</div> <div class=\"chat-text\"><p>A couple of quotes. I should say that I reached out to a few of my friends. I am going to name no names. They didn&rsquo;t ask me to not to name names, but I won&rsquo;t. Just a few little things just to give you an indication of where people are at. So this is from somebody who creates WordPress websites for a living. I don&rsquo;t think they would describe themselves as a developer, but they say, &ldquo;Push and you get push back. If Gutenberg had been developed as an add-on plugin, for example, which was optional, where folks could opt in, then it would have become something that they could choose. And that for me is what made WordPress so successful&rdquo;.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>So that was from one person, and then from another person who is involved in themes shall we say, &ldquo;To every new feature or whatnot, which is added to Gutenberg, there&rsquo;s a but to go with it. And those things are never addressed. All in all, that is why I&rsquo;m losing passion for WordPress&rdquo;.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>It&rsquo;s those kinds of feelings I think, I could probably have put in some stronger ones, and certainly there were some ones which were less strong than that, but it gives you an indication. This is really, like I said, bifurcating the community and it really isn&rsquo;t a case of people just tutting a bit and being a little bit annoyed and then just shrugging it off and getting over it. This is genuinely people who&rsquo;ve been doing things for a long time, are dedicated to WordPress, commit to WordPress, use it every day, promote it. And they&rsquo;re thinking of walking away are, like I did with Drupal.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-taraking vcard\"><cite class=\"fn\">Tara King</cite> [00:25:14]</div> <div class=\"chat-text\"><p>Yeah. Yeah. It&rsquo;s really hard to hear quotes like that, but it&rsquo;s also just so important. Honestly, I find that the WordPress community has been very patient. Gutenberg came out now, I think three years ago. And obviously some people were not patient, some people took off. But I do feel like people have been pretty patient. And whereas in Drupal before Drupal eight even came out, people were like, I made a fork. I&rsquo;m leaving. Here&rsquo;s my talk at DrupalCon about how Drupal&rsquo;s terrible. I really hope, I&rsquo;m not here to try to save people.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Everybody has to make their own decisions about what software project is the right for them. I think in general, this is about people&rsquo;s passions, whatever that might be, it&rsquo;s not necessarily about WordPress. They want to be able to do what they need to do. I&rsquo;m not trying to save every last person, but I do think it&rsquo;s important to hear when people are having these reactions and to really hear it right, to let it sink in.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I hope if my team can&rsquo;t counteract some of these feelings about the software being pushed onto people about development, ignoring the feedback that&rsquo;s coming in, I think we will have failed. I am very optimistic at this time, one month in, to say that I think we have some really good people who are really passionate and very deep in the community who know what people need. They&rsquo;re on the other side too, they&rsquo;re also developers. We&rsquo;re not hiring marketing people, no offense to marketing people, but that&rsquo;s not what this team is. We sit inside the product team. We&rsquo;re talking to the developers of the product. We&rsquo;re talking to developers in the community. And like I said, there&rsquo;s four of us, 42{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} of the web. Can&rsquo;t really hear everyone, but I&rsquo;m hopeful that as we listen. One person who stands up and says, I&rsquo;m losing passion for WordPress because of this, represents a hundred people who didn&rsquo;t or a thousand people who didn&rsquo;t, I don&rsquo;t know what the numbers actually are, but if we can address these people, one-to-one with personal caring, with strong, clear feedback to the product teams that are working on WordPress. I am hopeful that we can make this feel more like a collaboration, more like you&rsquo;re opting in, and it&rsquo;s your choice to use this cool tool instead of, oh, I have to. So that&rsquo;s the goal for the team.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:27:23]</div> <div class=\"chat-text\"><p>The two things that keep coming up in the conversations that I have on this side of the fence are that it was pushed into Core without the sort of necessary time for it to be examined and the entire community to have their say on it.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>And the other one seems to revolve around the fact that it&rsquo;s now been going on for such a long time, and it feels like almost like a public beta that&rsquo;s been going on for two, nearly three years where we are asked to use a piece of software, which is still very much in development. And so concerns around those. And I&rsquo;m interested, you may know, you may not know what the decision-making processes were in the past for how that happened. You may be able to talk about that again, you may not, but I&rsquo;m wondering if you have any thoughts on whether the decision-making process for how things are going to be implemented, are going to change. Is there going to be more openness about what&rsquo;s coming up? Are we able to communicate directly with the people who are making these changes? I think the feeling is it&rsquo;s top down. That a few people who make very big decisions and they make them, and the rest of us have to go along with that. And I think people would like to understand whether that governance model is up for debate. That&rsquo;s my question really.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-taraking vcard\"><cite class=\"fn\">Tara King</cite> [00:28:37]</div> <div class=\"chat-text\"><p>I don&rsquo;t know if it&rsquo;s up for debate, to be honest, in terms of the very highest levels of the project. I don&rsquo;t think it is. I think that we have Matt, we have Josepha and they&rsquo;re the leaders. And I think almost every major open source project has one or two people, typically one person in that position.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And I&rsquo;m not in the room for those discussions. I should say there&rsquo;s anything that&rsquo;s it is going to change there. I don&rsquo;t know about it. That said, I think it&rsquo;s very clear to me, I actually have not yet spoken with Matt, but I spoken with Josepha who&rsquo;s in dot org. Like we work together very pretty closely. And I can tell that Joseph is really listening. It&rsquo;s obviously hard for someone who&rsquo;s not seeing her regularly to know that. I fully understand why people think that it&rsquo;s very top-down, but that is part of this team is to go out and to try to listen and to help people understand how their feedback can come in.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>That&rsquo;s why I feel kind terrible that I can&rsquo;t say to you, this is exactly how you can give us your feedback, but that&rsquo;s absolutely the top list of priorities. Hopefully by the end of this year, we can have something clearer. There&rsquo;s the obvious ways of you can go in and contribute. But it&rsquo;s a pretty high barrier to entry.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And I think what most people actually want is just to be able to give a little feedback. They don&rsquo;t want to write new code to fix something, they want to be able to say, oh, this didn&rsquo;t work for me because X, so that&rsquo;s what my team is going to be doing. And maybe it&rsquo;s not fair to call it a beta, I don&rsquo;t think, but it is ongoing development in public because that&rsquo;s the open-source way. But it&rsquo;s very challenging, having come from the Drupal community where people are making these big changes all the time, it feels, yeah, that&rsquo;s what we do. But I know in WordPress that hasn&rsquo;t been the case. What we are trying to do very specifically with my team is, get ahead of the release. So 5.9 is coming out in December. We are working right now on documenting exactly what is and is not going in. Is there any kind of breaking change? Those are pretty rare still, but if there is anything like that, we want to get ahead of that. We want to know, is there education that needs to happen around a certain technology to make this a success.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And we&rsquo;re trying to push that out, to, I think right now we&rsquo;re going to try to push it out to things like large agencies, universities, big groups that can then disseminate it internally just for purposes of scaling. Not because we don&rsquo;t care about individuals, it&rsquo;s just hard to reach them. So we&rsquo;re trying to work that process, get that smoothed out. While that is getting refined, also building ways for individual developers of any kind to opt into that kind of information. So it is very much an experimental piece of software at this point. It&rsquo;s production ready to, it&rsquo;s both. It&rsquo;s very interesting to be in this middle, the middle of it all. And I know it feels like it&rsquo;s been going on for a long time and I know it feels like it&rsquo;s never going to end, but it actually is going to end.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And as somebody whose mandate is to work on it, there&rsquo;s even almost a little bit of not dread, but existential sort of conundrum when Gutenberg ends. What do I do then? So as much as it feels like it&rsquo;s never going to end it. It is, it will be done, it will finish.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:31:46]</div> <div class=\"chat-text\"><p>Moving the debate ever so slightly, but more or less the same wheelhouse really, there seems to be this under current, and in a sense, it feels a little bit, I&rsquo;m going to say conspiratorial. Seems to be a lot of people who are equating the Gutenberg project with, so the dot org side of things with the dot com side of things, almost as if the people on the dot org side are the Guinea pigs, for want of a better word that, is probably entirely the wrong word, but you get the idea, for the project and that the dot com side obviously has a financial model, which the dot org side doesn&rsquo;t. And I just wondered if you had any thoughts on that, whether those concerns could be assuaged as well, whether there is in fact a problem there or not.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-taraking vcard\"><cite class=\"fn\">Tara King</cite> [00:32:30]</div> <div class=\"chat-text\"><p>You know, I don&rsquo;t see. I have only been there a month, I don&rsquo;t have this sort of deep WordPress roots that other folks do. So I&rsquo;m like new, I guess I&rsquo;m an outsider still a little bit. And so I was concerned, I&rsquo;m not going to, when I took the job, I was a little concerned about that because when I&rsquo;m not working, before I worked at Automattic, I was constantly, oh, it&rsquo;s so annoying that there&rsquo;s a dot org and a dot com. It&rsquo;s so confusing. It&rsquo;s so annoying. So coming from the outside of the company and from like a fairly commercial place, honestly, from my interactions with WordPress, I don&rsquo;t see it. I have not met anybody from the dot com side. And I mean that literally like the entire non.org side I&rsquo;ve met one person because she lives in my hometown. We had coffee, that&rsquo;s it? So, no one has told me anything from the dot com side needs to be implemented on our side. If anything, I almost feel like it&rsquo;s inverted, which is that, I would guess if you talk to folks who work on dot com, they are just maybe not just as frustrated, but close to as frustrated as folks outside the company, as they&rsquo;re waiting to ingest information from dot org, I&rsquo;ve heard that from folks like we need training, we need to be able to, to train dot com customers. So there&rsquo;s frustrations there too. So I hear the conspiracy. I see where that comes from and why it exists. My experience has been completely not that way.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:33:51]</div> <div class=\"chat-text\"><p>Okay. It&rsquo;s definitely something which gets raised from time to time. So I thought it was worth bringing up. But again, the caveats that we mentioned at the top of the podcast, that you&rsquo;ve just begun in your line of work and so.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-taraking vcard\"><cite class=\"fn\">Tara King</cite> [00:34:01]</div> <div class=\"chat-text\"><p>Exactly, I&rsquo;m very new. And the thing about conspiracy theories is you can&rsquo;t really prove them wrong. Most of the time, they&rsquo;re unable to be proven wrong. So I can&rsquo;t prove it. I just don&rsquo;t see it.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:34:11]</div> <div class=\"chat-text\"><p>One of the things that I guess you are going to have repeatedly over the next year or so is the chatter about the move into new technologies in WordPress?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>So React, increased reliance on JavaScript and the move away from PHP. And this also speaks to the debate about people moving away and getting alarmed that their websites that they&rsquo;ve already built and their capability to build things and have a business that&rsquo;s easy for them to manage in the future, is going to be difficult. And I wonder what you thought about those horizons. I wonder if you&rsquo;ve got any words of comfort for people who have those concerns. And a related question, I wondered if there was possible responsibility, that again maybe too strong, a word, but I&rsquo;m going to use it, a responsibility on Automattic to provide guidance, training, materials, whatever would be needed to help people cross that bridge and to ease the burden of learning these new things.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-taraking vcard\"><cite class=\"fn\">Tara King</cite> [00:35:15]</div> <div class=\"chat-text\"><p>Yeah. So I&rsquo;m a PHP developer, I taught myself PHP and I always held JavaScript at arms length, right? It was like, nope, that is too far. I will not do it. When JavaScript started becoming more and more popular, I just was like, nope, I don&rsquo;t have to, I know PHP. So I feel very much the pain of why do I have to learn JavaScript again?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I think the concerns I&rsquo;m hearing, and again, I said my email, I&rsquo;ll say it again at the end of the podcast, but the concerns I&rsquo;m hearing and the concerns I&rsquo;ve had are, yeah, it&rsquo;s just, I don&rsquo;t want to learn JavaScript because I don&rsquo;t need to, why do I need to? There&rsquo;s a build step, right? There&rsquo;s often a more, a slightly more complicated kind of environment needed to Gutenberg development versus just straight PHP. You just write it, hit save and I&rsquo;ll see if it works. So there&rsquo;s additional complications of writing Gutenberg code. Not every host necessarily well, set up if you wanted to do that remotely or something like that. For some of us, I thought we stopped compiling things. I have to compile things. It feels a little, old. So I hear all of that and I&rsquo;m sure there&rsquo;s other objections people have. The things that I&rsquo;m excited about with it, now that I&rsquo;m having to do more of it, I&rsquo;m realizing JavaScript&rsquo;s not that hard. We&rsquo;re all going to be okay. It&rsquo;s not that hard. And it opens up so much in terms of greater web technologies.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And again, this feels very parallel to Drupal seven, to Drupal eight, which was moving to object oriented programming actually made me a better developer. I was a fine PHP procedural programmer. I was a reasonable developer and then having to learn it, which I know it&rsquo;s frustrating when you have to learn something, but I don&rsquo;t regret having done it. It made it easier actually for me to get into Gutenberg development, it&rsquo;s made my whole development life much easier. I don&rsquo;t think JavaScript is going away on the web in general. I think if anything, it&rsquo;s going to continue to eat the web. As an individual, it&rsquo;s powerful to have that tool in your toolbox as an agency, it&rsquo;s powerful to be able to sell that work. Talk to people, have a more diverse kind of set of skills on the team. I&rsquo;m pro learning in general, right? It&rsquo;s I think something that helps every open source project grow. I think the backwards compatibility with WordPress, I hesitate to say it, but it feels like it&rsquo;s gone a little bit too far. At some point, if you maintain backwards compatibility, the software can&rsquo;t move forward because the old stuff is pulling it back.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I think it&rsquo;s a wonderful model and Drupal is moving more towards it. It&rsquo;s kind interesting to see the two communities converge there, but this might just be a case where there&rsquo;s going to be a few pain points. Every web developer, no matter what tool they&rsquo;re working with is going to have pain points where they have to learn something new.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I think it&rsquo;s useful on an individual level. And then in terms of offering support for the transition, that is absolutely something that I think needs to happen. Whether or not it&rsquo;s Auttomatic&rsquo;s responsibility. I think it&rsquo;s best when these things are community-wide efforts. I would love to see WordCamps and meetups offer, people volunteering to run&hellip; hey, this is how I got started. That happened a lot in Drupal. I have a friend who ran a talk about how Pokemon can teach you object oriented programming. Very accessible. And so I think, it&rsquo;s not necessarily Automattic&rsquo;s responsibility, but that said it is something that my team is actively working on right now is what kind of materials are needs to help people get over there. Is it, we need to help people understand how to make, build environment, that dev environment that can do the build steps for React, or is it just general JavaScript knowledge? So we&rsquo;re actually, this week, looking at what options are currently out there. What&rsquo;s up to date. There were, when Gutenberg launched, there were a number of products and educational things that came out from the community that were great, but have not been updated. And people are still being directed to stuff that&rsquo;s two years old, and doesn&rsquo;t help them now? So my team is actively working on this.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>How can we help people do this? Because like I said, it&rsquo;s actually not that hard, but we don&rsquo;t give the tools people need. I tried to build a Gutenberg plugin recently entirely just from wordpress dot org documentation. I was like, no blog posts, no outside resources, just wordpress dot org. And it was not easy. So whether or not it&rsquo;s Automattic&rsquo;s responsibility, it&rsquo;s something that we&rsquo;re taking on, because it needs the community does need it. So look for something better in that space, soonish.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:39:44]</div> <div class=\"chat-text\"><p>Thank you. Encouraging, just to hear that the flag has been raised and the concern has been written down and it does sound to me like you are actually planning to bring something to the table and it&rsquo;s been thought about, so that&rsquo;s really encouraging. Thank you for that.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>It feels like we&rsquo;ve been bashing for a long time, we&rsquo;ve probably spent half an hour dissecting all the bad. So before we draw to a close let&rsquo;s flip that entirely. Let&rsquo;s turn it to the good. And I just want to offer you a platform to say why it is you&rsquo;ve taken this job with Gutenberg as the sole focus. What is it about Gutenberg that you feel is better? Why do you think it&rsquo;s the future? In other words, what I&rsquo;m saying is, here&rsquo;s a crowd of naysayers, here&rsquo;s a crowd of people in front of you, they&rsquo;ve got their pitchforks out, they are furious about the way that things are going, you&rsquo;ve got an opportunity now to just address that crowd and see if you can turn some heads.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-taraking vcard\"><cite class=\"fn\">Tara King</cite> [00:40:38]</div> <div class=\"chat-text\"><p>Oh, I wish I had practiced. WordPress has always been about freedom and empowerment of people, of individuals. This is my personal take on it, this is not the Automattic take on it necessarily, it&rsquo;s just how I feel. When I was building small sites, I used to run a consultancy for artists, artists are famously, not necessarily wealthy. Don&rsquo;t have a lot of money to put into these things. And they&rsquo;re also a very do it yourself kind of group. So I was making websites for artists. And if I could just get them started, give them a little push, install, some WordPress on a server, maybe pick out a theme for them. They could do it. People who almost refuse to touch computers because they&rsquo;re just busy off making their art could come back and use WordPress and share their work, talk about it, sell it, do really cool things.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And I think I&rsquo;ve always been very passionate about that kind of end user being able to make their own website. I am personally just so not interested in having to go to a developer to say I need to post my new blog post. I need to add a little widget here with my new event. It&rsquo;s feels so old fashioned to me, and it&rsquo;s so disempowers, like I said, the user of the website. And so when I was looking at this job, thinking to myself, self, nobody, like everybody&rsquo;s mad about Gutenberg. Do you really want to talk about it and try to make them like it, what it really came down to was a genuine feeling, when I was interviewing and talking to people at Automattic, genuine feeling that they wanted this to be a collaborative experience, that they wanted it to be in conversation with the entire community, which is really where my passion derives from. And then Gutenberg itself as a tool is just incredible. I wouldn&rsquo;t have taken it if I didn&rsquo;t think the tool was worth it. If it was like, oh, there&rsquo;s this like terrible piece of software, but it&rsquo;s okay. I&rsquo;m getting a salary. I&rsquo;m not going to work 40 hours a week on something like that. So the tool allows people to do really powerful things and really control stuff that I haven&rsquo;t seen in other CMS&rsquo;s. I&rsquo;ve built sites for clients in Wix and Weebly and Squarespace and Drupal and WordPress and other more niche platforms. And I just see my clients over and over again, bumping up against, oh, I just want to put two pictures next to each other. And they can&rsquo;t because they don&rsquo;t know HTML or they don&rsquo;t know how to make a table.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I just want to be able to make all my pictures, have a little, like a header cover image with some text on it and they have to call me and I have to code that in and put it up there. And obviously Gutenberg doesn&rsquo;t have every kind of block and every kind of pattern that you might imagine. But having now built several sites, just with vanilla WordPress, I haven&rsquo;t installed any themes or anything like that, and just a couple of block packages that are out there, you can get pretty far, I think much farther. Yesterday I was watching a video on YouTube about, it was 10 minutes to a block theme, and it was like, make these five files and now you can put a block widget as your header, which means the users can make their own headers. And I don&rsquo;t have to go in and do all of those little things for them all the time. I think that&rsquo;s scary for some folks because they rely on that work. They rely on it being difficult. But ultimately, it&rsquo;s really empowering. It makes more people able to make more websites. Like it really grows the size of the pie if you will. Drupal&rsquo;s like jealous of it and there&rsquo;s a Gutenberg port to Drupal and it&rsquo;s really very cool. It&rsquo;s very powerful. And I think, the community can really benefit from it. We just need to be able to actually speak to each other and hear each other and work together. And that&rsquo;s the part that my team is really trying to build that bridge and to make that a reality, obviously we can&rsquo;t fix everything for everybody, but we can fix more things than we have been fixing.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:44:35]</div> <div class=\"chat-text\"><p>That, I feel is a really excellent place to call it a day. You mentioned just before we finish, you did mention earlier that you were going to drop your email in once more. It may be that people have heard it and haven&rsquo;t written it down. Can I encourage you to do that once again?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-taraking vcard\"><cite class=\"fn\">Tara King</cite> [00:44:51]</div> <div class=\"chat-text\"><p>Absolutely. My email is t a r a dot k i n g at automattic dot com. And there are two T&rsquo;s on the end of that. So it&rsquo;s a u t o m a t t i c dot com. I&rsquo;m also sparklingrobots on Twitter. Like I said, R I P my inbox let&rsquo;s see how this goes. But I, I believe my DMs are open on Twitter or you can just tweet at me because I am actively looking to have conversations in the community. One-on-one conversations actually move things forward quite a bit. So I&rsquo;m excited to have those.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:45:25]</div> <div class=\"chat-text\"><p>Tara thank you very much for coming on the podcast today.</p>\n</div></div></div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Nov 2021 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: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:64:\"HeroPress: Grief, Stuff and Netflix – Rouw, Spullen en Netflix\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=4227\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:168:\"https://heropress.com/essays/grief-stuff-and-netflix-rouw-spullen-en-netflix/#utm_source=rss&utm_medium=rss&utm_campaign=grief-stuff-and-netflix-rouw-spullen-en-netflix\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9696:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2021/11/110121-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Stuff is worthless, people are valuable.\" /><p><a href=\"https://heropress.com/feed/#dutch\">Dit essay is ook beschikbaar in het Nederlands.</a></p>\n<p>This post is not about web accessibility, it’s about mental health. About trying to cope with grief and burnout.</p>\n<p>I’m not the first within the WordPress community who lost someone they love. People within the community lost a spouse, a sibling, a parent, a child. People that cannot be missed but died anyway. Life and death happens to all of us. And everyone copes in a different way. How can you help them? And how can you help yourself? I don’t have all the answers, but I’d like to share some of my experiences.</p>\n<h3>My story</h3>\n<p>I remember WordCamp Helsinki 2019 as the last WordCamp where things were normal. I was in a good place, at home with my husband and son and in my career, working in a job I like.</p>\n<p>Shortly after that my mother was diagnosed with cancer and my husband Marc died of a heart attack. My father had to move to a nursing home because of his Parkinsons. In the middle of the first lockdown my mother died, just at the same time my kitchen was being renovated. At that point I burned out.</p>\n<p>What did grief do to me? It drained all of my energy and made me feel lonely, overwhelmed and in a constant state of panic. Marc and I were together for 35 years, I had no idea how to live without him. Suddenly there were a ton of things to do and to decide. Decisions I had to make alone, important decisions we used to make together. Mortgage, pension, stuff, the leaking roof and for God’s sake that bloody new kitchen.</p>\n<p>I spent a lot of evenings on the couch watching Netflix. Shutting down my brain. Re-watching all the SciFi they offer. And yes, I love Michael “Let’s fly” Burnham.</p>\n<h3>What can you do for someone who grieves?</h3>\n<p>Just listen and ask questions. Don’t force decisions on them, just listen. In the conversation you may discover how to also help in a practical way. Like Job, who bottled Marc’s last batch of home brew beer. Monique, who took me to an exposition of cat paintings to cheer me up. Or colleagues who gave a hug when I returned to work, and friends who just called out of the blue to ask how I was doing.</p>\n<h3>What not to do?</h3>\n<p>Taking over the conversation and telling about your sister-in-law’s brother’s neighbour who had cancer too and blablablabla. I don’t have the energy for that and besides, what’s the point?</p>\n<p>Assuming things, like the advice to stop working for a while. I burned out, not from my work, but from all the stuff I needed to do at home while being tired and sad as fuck. Work was actually a relief, a way to escape. I could not work as much, but I needed to be there to feel my old self again.</p>\n<h3>What can you do for yourself?</h3>\n<p>What worked for me? Professional counseling. Really. Get a professional, not some mumbo jumbo alternative therapy. A wonderful psychologist taught me to live in the moment, reduce the stress in my body and take care of myself. To accept that healing takes time. And she helped me to properly say goodbye to Marc and my mother and to not feel guilty about my dad being in a nursing home.</p>\n<h3>Stuff is worthless</h3>\n<p>Last year I had to sort out the things of Marc, my mother and my father. Stuff is worthless. It may sound cliche and very Marie Kondo, but a lot of items went through my hands. I thanked them and brought them to the charity shop. And yes, thanking helps. It felt disrespectful to throw things away without giving them a proper goodbye. Getting rid of so much stuff gave me a different perspective on what is important and what brings me real joy.</p>\n<p>The Dutch poet Lucebert wrote: “Alles van waarde is weerloos”. That translates as “Everything of value is defenceless”. Stuff is worthless, people are valuable. Colleagues, friends, family, the memories of holidays, important events in life, having dinner or just hanging out at some WordCamp and talking about WordPress or make-up. People are indispensable, even though they are fragile.</p>\n<h3>So how am I now?</h3>\n<p>I’m ok-ish. My energy is still not 100{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}. I get tired easily and need to listen to my body. Healing takes frustratingly longer than I want, but I’m getting there.</p>\n<p>I am blessed to be part of 2 communities, the WordPress and the Accessibility community. Both showed up at Marc’s funeral and looked after me during the time after.</p>\n<p>And I’m very thankful to <a href=\"https://twitter.com/taekereijenga?s=20\">Taeke</a>, my CEO, for giving me the time to heal.</p>\n<h1 id=\"dutch\">Rouw, Spullen en Netflix</h1>\n<p>Dit artikel gaat niet over webtoegankelijkheid, het gaat over mentale gezondheid. Over het proberen om te gaan met rouw en burn-out.</p>\n<p>Ik ben niet de eerste binnen de WordPress-community die iemand verloor van wie ze houden. Mensen binnen de community verloren een partner, een broer of zus, een ouder, een kind. Mensen die niet gemist kunnen worden, maar toch stierven. Leven en dood overkomt ons allemaal. Maar iedereen gaat er op een andere manier mee om.</p>\n<p>Hoe kun je helpen? En hoe kun je jezelf helpen? Ik heb niet voor alles een oplossing, maar ik wil graag mijn ervaringen met je delen.</p>\n<h3>Mijn verhaal</h3>\n<p>Ik herinner me WordCamp Helsinki 2019 als de laatste WordCamp waarop alles normaal was. Ik was gelukkig, thuis bij mijn man en zoon en in mijn carrière, met een leuke baan.</p>\n<p>Kort daarna kreeg mijn moeder kanker en stierf mijn man Marc aan een hartaanval. Mijn vader moest vanwege zijn Parkinson verhuizen naar een verpleeghuis. Midden in de eerste lockdown stierf mijn moeder, op hetzelfde moment dat mijn keuken werd gerenoveerd. Op dat moment stortte ik in.</p>\n<p>Wat deed verdriet met mij? Het putte me volkomen uit, ik voelde me eenzaam, overweldigd, in een constante paniek. Marc en ik waren 35 jaar samen, ik had geen idee hoe ik zonder hem moest leven. Plotseling waren er een heleboel dingen om te doen en te beslissen. Beslissingen die ik alleen moest nemen, belangrijke beslissingen die we vroeger altijd samen namen. Hypotheek, pensioen, spullen, het lekkende dak en sodeju, die verdomde nieuwe keuken.</p>\n<p>Ik heb vele avonden op de bank naar Netflix zitten kijken. Om mijn piekerende hoofd stil te zetten door alle SciFi te kijken die ze hebben. En ja, ik hou van Michael &#8220;Let&#8217;s fly&#8221; Burnham.</p>\n<h3>Wat kun je doen voor iemand die rouwt?</h3>\n<p>Gewoon luisteren en vragen stellen. Druk geen veronderstellingen door, luister gewoon. Tijdens het gesprek ontdek je misschien hoe je ook praktisch kunt helpen. Zoals Job, die Marc’s laatste batch zelfgebrouwen bier bottelde. Monique, die me meenam naar een tentoonstelling van kunst over katten, om me op te vrolijken. Collega&#8217;s die me een knuffel gaven toen ik weer aan het werk ging en vrienden die zomaar opbelden om te vragen hoe het met me ging.</p>\n<h3>Wat je niet moet doen?</h3>\n<p>Het gesprek overnemen en vertellen over de buurman van de broer van je schoonzus die ook kanker had en blablablabla. Daar heb ik echt de energie niet voor en bovendien, wat heeft het voor zin?</p>\n<p>Dingen veronderstellen, zoals het advies om even te stoppen met werken. Ik kreeg geen een burn-out van mijn werk, maar van alle dingen die ik thuis moest doen terwijl ik moe en verdrietig was. Werk was eigenlijk een verademing, een manier om te ontsnappen. Ik kon niet zoveel werken, maar ik wilde er wel zijn om me weer een beetje de oude te voelen.</p>\n<h3>Wat kun je voor jezelf doen?</h3>\n<p>Wat werkte voor mij? Professionele begeleiding. Echt, zoek een professional en geen een of andere vage alternatieve therapie. Een goede psycholoog leerde me om in het nu te leven, de stress in mijn lichaam te verminderen en beter voor mezelf te zorgen. Ze leerde me accepteren dat genezing tijd kost. Ze heeft me geholpen om fatsoenlijk afscheid te nemen van Marc en mijn moeder en me niet schuldig te voelen omdat mijn vader in een verpleeghuis zit.</p>\n<h3>Spullen zijn onbelangrijk</h3>\n<p>Vorig jaar moest ik de bezittingen uitzoeken van Marc, mijn moeder en mijn vader. Spullen hebben geen waarde. Het klinkt misschien cliché en heel Marie Kondo, maar er zijn veel spullen door mijn handen gegaan. Ik bedankte ze en bracht ze naar de kringloopwinkel. En ja, bedanken helpt echt. Het voelt respectloos om dingen weg te gooien zonder ze een goed afscheid te geven. Het uitzoeken en wegdoen van zoveel spullen gaf me een ander perspectief op wat belangrijk is en waar ik gelukkig van word.</p>\n<p>De Nederlandse dichter Lucebert schreef: “Alles van waarde is weerloos”. Spullen zijn onbelangrijk, mensen zijn waardevol. Collega&#8217;s, vrienden, familie, de herinneringen aan vakanties, belangrijke gebeurtenissen in het leven, samen eten of gewoon rondhangen bij een WordCamp en praten over WordPress of make-up. Mensen zijn onmisbaar, ook al zijn ze kwetsbaar.</p>\n<h3>Hoe gaat het nu met mij?</h3>\n<p>Ik ben een soort van oké. Mijn energie is nog steeds geen 100{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}. Ik word snel moe en moet goed naar mijn lijf luisteren. Beter worden duurt frustrerend langer dan ik wil, maar ik kom er wel.</p>\n<p>Ik ben bevoorrecht deel uit te maken van twee communities, de WordPress en de Accessibility-community. Beiden kwamen naar de uitvaart van Marc en beiden keken naar me om, in de tijd daarna. En ik ben <a href=\"https://twitter.com/taekereijenga?s=20\">Taeke</a>, mijn CEO, erg dankbaar dat hij me de tijd geeft om te genezen.</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, 03 Nov 2021 06:00:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Rian Rietveld\";s: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:79:\"WPTavern: Ona by DeoThemes Just Raised the Bar for WordPress Block Theme 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=125092\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:203:\"https://wptavern.com/ona-by-deothemes-just-raised-the-bar-for-wordpress-block-theme-design?utm_source=rss&utm_medium=rss&utm_campaign=ona-by-deothemes-just-raised-the-bar-for-wordpress-block-theme-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5033:\"<img />\n\n\n\n<p class=\"has-drop-cap\">No sooner than I said the <a href=\"https://wptavern.com/the-wordpress-block-theme-revolution-is-quietly-picking-up-momentum\">floodgates of block theme development</a> would be open, a couple of more <a href=\"https://wordpress.org/themes/tags/full-site-editing/\">FSE-capable themes</a> landed in the WordPress.org directory. I checked the review system, and three more were queued up.</p>\n\n\n\n<p>It took mere days for me to find another favorite: <a href=\"https://wordpress.org/themes/ona/\">Ona by DeoThemes</a>. When the author mentioned it, I checked the source code to ensure it was a 100{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} block theme. It was hard to believe at first glance.</p>\n\n\n\n<p>The theme has been approved for the directory, but it has not yet been set live. It should be available soon, but anyone can grab the <a href=\"https://themes.trac.wordpress.org/ticket/107617#comment:9\">ZIP file from its ticket</a> if they want to give it a spin.</p>\n\n\n\n<p>We are now at a point where the block system can nearly match traditional theming in features. There are still some kinks to work out and a few missing pieces, but Ona embraces block templating and global styles like few have before. It is modern, almost minimalist, yet packed with potential for a site owner who wants to share their content in style.</p>\n\n\n\n<p>Of the free block themes available, less than a handful could be named its equal. But let&rsquo;s give it a few weeks and see what else lands. I could be eating my own words shortly.</p>\n\n\n\n<p>Ona&rsquo;s design leans heavily toward modern-day fashion, lifestyle, and travel blogs. However, that is not a hard requirement. It is balanced enough for use on a range of sites. It works well as a blog, but small businesses could get a lot out of it with block-built landing pages. It does lend itself well to storytelling with a mix of large, in-content images.</p>\n\n\n\n<img />Single post view.\n\n\n\n<p>The change that users will need to make out of the gates is with the site branding. The default <code>18px</code> of letter-spacing for the site title does not work well for more than a few characters. This is easy to adjust in the site editor.</p>\n\n\n\n<p>Ona does not have a lot of patterns, but it makes up for it with a well-rounded set. It ships with two headers, one footer, and five for general usage. Most of them are in use on the <a href=\"https://ona.deothemes.com/\">demo&rsquo;s homepage</a>.</p>\n\n\n\n<img />Inserting Ona&rsquo;s &ldquo;Promo Boxes&rdquo; pattern.\n\n\n\n<p>Looking through the theme&rsquo;s source code, I noticed a couple of additional registered pattern categories titled &ldquo;Ona Pages&rdquo; and &ldquo;Ona Posts.&rdquo; There are no block patterns defined for them, so they do not appear in the inserter. The author may have forgotten to remove them or has plans for a more extensive set in the future.</p>\n\n\n\n<p>Instead of putting everything into patterns, the theme also offers extra About and Contact page templates. Such custom templates were commonplace in traditional theming, but their usefulness was impeded by the lack of a standard editing interface. That is a non-issue with block themes.</p>\n\n\n\n<img />Contact page template.\n\n\n\n<p>With the template and site editors, Ona showcases how custom page templates could see a resurgence. I still lean toward block patterns as the primary way to offer custom layouts, but having full-page designs ready to go through the templating system is much nicer than in the classic era.</p>\n\n\n\n<p>The problem with templates is that it can be hard to judge where structure and layout end and the content begins. For an About or Contact template, this is usually not a problem. Those two are likely to only be used once on a site. However, when you get into templates meant for use with multiple pages, there should be a clear separation of the two. Patterns are going to make a lot more sense for the content.</p>\n\n\n\n<p>I rarely judge a theme entirely by its fancier features. What I truly want to know is whether its typography makes for comfortable long-form reading, and Ona does well in that department. I am not a fan of the oversized default blockquote design, but that can be easily adjusted.</p>\n\n\n\n<p>The biggest issues I had with the theme were the font and color slugs. However, this is more of a personal grievance about nonexistent standards. Right now, slug naming is a free-for-all affair for block themes, and I do not see that changing any time soon.</p>\n\n\n\n<p>Users will also encounter 404 errors from the theme&rsquo;s default images. Again, this is not specific to Ona; it is a WordPress/Gutenberg issue. A fix only <a href=\"https://github.com/WordPress/gutenberg/pull/33217\">landed in the development version</a> of the Gutenberg plugin five days ago. Maybe when the theme&rsquo;s next update rolls around, it will be able to make use of it.</p>\n\n\n\n<p>If this is the quality we are seeing at this stage, I cannot wait to see what the rest of the theme design community has in store. DeoThemes just raised the bar.</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, 02 Nov 2021 22:48:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:64:\"WPTavern: WordPress’ Gutenberg Demo Page Is Getting a Redesign\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=125010\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:167:\"https://wptavern.com/wordpress-gutenberg-demo-page-is-getting-a-redesign?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-gutenberg-demo-page-is-getting-a-redesign\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2825:\"<p>The official <a href=\"https://wordpress.org/gutenberg/\">Gutenberg demo page</a> on WordPress.org may soon be getting an update that better reflects the editor&rsquo;s capabilities and showcases the design creativity available through patterns.</p>\n\n\n\n<p>Automattic-sponsored designers Beatriz Fialho and Kelly Hoffman have <a href=\"https://make.wordpress.org/design/2021/10/29/redesign-of-the-gutenberg-page/\">submitted a prototype</a> for consideration with explorations of both light and dark modes and three different variations for typography.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>&ldquo;Now that&nbsp;Gutenberg&nbsp;has been a part of WordPress for a few years, it makes sense to update it, shifting the message from what used to be the new post editor to the editor that can power all parts of your site,&rdquo; Fialho said.</p>\n\n\n\n<p>Practically speaking, this works out to a more polished landing page with less focus on the demo being a playground that can be manipulated by visitors. Headings like &ldquo;Say Hello to the New Editor&rdquo; are now outdated, as the editor is no longer new. It has been nearly three years since Gutenberg was introduced in WordPress 5.0.</p>\n\n\n\n<p>Since the time the demo page was first launched, the use of pattens has become a centerpiece in designing pages with Gutenberg. The updated demo will highlight blocks and patterns and will add a new section dedicated to helping new users get connected to resources for learning WordPress.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>&ldquo;It is intentional that the page looks more like a landing page rather than an open canvas &lsquo;playground&rsquo; page,&rdquo; Fialho said. &ldquo;While it can still be interactive, allowing people to click around and explore, it shows what is possible to achieve with the editor, remaining ultimately informative.&rdquo;</p>\n\n\n\n<p>A few contributors have commented on the post to offer critical feedback. Some refinements in wording on the page may be necessary to be appropriate for newer audiences. Dan Soschin, an Automattic-sponsored marketing team member, suggests rephrasing terms like &ldquo;WordPress Editor&rdquo; and &ldquo;blocks&rdquo; and &ldquo;patterns,&rdquo; so that understanding them is not a requirement for choosing WordPress as a CMS. </p>\n\n\n\n<p>Soschin also suggested the design include more variety of visuals for showing different types of websites, such as e-commerce, media portfolios, and news sites, to demonstrate the flexibility of the platform beyond just blogging.</p>\n\n\n\n<p>Feedback on the proposal will be open through November 5 before the next iteration. Contributors are also welcome to jump in on the Meta Trac <a href=\"https://meta.trac.wordpress.org/ticket/5600\">ticket</a> where previous discussions have been held.</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, 02 Nov 2021 19:18: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:\"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:61:\"WPTavern: NaNoWriMo? NaBloPoMo? A Month of Writing Challenges\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=125086\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:163:\"https://wptavern.com/nanowrimo-nablopomo-a-month-of-writing-challenges?utm_source=rss&utm_medium=rss&utm_campaign=nanowrimo-nablopomo-a-month-of-writing-challenges\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4503:\"<p class=\"has-drop-cap\">It is November, and that only means one thing. It is <a href=\"https://nanowrimo.org/dashboard\">National Novel Writing Month</a> &mdash; NaNoWriMo for short.</p>\n\n\n\n<p>Autumn is my favorite time of year. Football is in full swing. Warm mugs of coffee replace the cold brew. Eggnog cartons line supermarket fridges. There are weekend hayrides, face paintings, corn mazes, ring-toss games, and more as fall festivals and fairs are underway. Local farmers&rsquo; markets are selling off the last of the summer crop. Many of us can begin switching our thermostats over to heating mode &mdash; anything below 60&deg; in my home state of Alabama is jeans and jacket weather. Walks around the neighborhood or park are ablaze with reds, browns, and oranges as the yearly cycles start to wind down. It is always a magical time that offers one last explosion of life before winter comes.</p>\n\n\n\n<p>November is smack in the middle of it all. While it can be a busy month for many, it is always the ideal time for writing. The changing season creates moments worth capturing and stories to savor.</p>\n\n\n\n<p>Between the hustle and bustle of autumn activities and upcoming holidays, the season also has those quiet moments that allow us to reflect on the world around us. There is a calmness in the cooling air for those who slow down and simply observe.</p>\n\n\n\n<p>This is the season where I get the itch to write fiction. While I enjoy the work I do here at the Tavern, I am a novelist at heart. If I am fortunate, I will one day publish a novel. Until then, there is this worldwide movement known as NaNoWriMo. It is an event where 1,000s of people attempt to write a 50,000-word first draft.</p>\n\n\n\n<p>There is also a massive community around the challenge. It is sort of like group therapy for those crazy enough to attempt it.</p>\n\n\n\n<p>It is a wild ride that is only driven by grit and coffee. There are no guaranteed publishing deals or trophies at the end of the road. The reward is a printable certificate, self-pride, and a month of household chores you likely skipped out on. You may bask in the glory of an achievement few others have accomplished. Many crash and burn by the end of Week #1.</p>\n\n\n\n<p>But, if you are a writer, the techniques and lessons you learn along the way are well worth it.</p>\n\n\n\n<p>I have a B.A. in English and am a published tech book author. Nothing has taught me more practical writing skills than my participation and victory in NaNoWriMo 2018. School gave me the foundation, but NaNoWriMo taught me about word sprints and how to disable my inner editor.</p>\n\n\n\n<p>I will once again participate in NaNoWriMo. I was unable to do so over the past couple of years because of preexisting obligations. But I have that itch again and need to see this thing through.</p>\n\n\n\n<p>While NaNoWriMo is not directly related to WordPress (though many participants blog their journey via the platform), there is a spin-off of the event for bloggers:</p>\n\n\n\n<p><em>National Blog Posting Month.</em></p>\n\n\n\n<p>NaBloPoMo does not roll off the tongue quite as well, and it has never reached the global success of NaNoWriMo. There is not even an official website dedicated to the month-long blogging challenge. However, it was once popular enough that WordPress.com <a href=\"https://wordpress.com/blog/tag/nablopomo/\">hyped it for several years</a>. The last announcement seems to be <a href=\"https://wordpress.com/blog/2014/10/24/the-namos-are-coming-the-namos-are-coming/\">from 2014</a>.</p>\n\n\n\n<p>In 2006, blogger Eden Kennedy began NaBloPoMo in response to the NaNoWriMo mania. Not everyone has the time or desire to write 50,000 words in a month, but many want to up their writing game. Instead of averaging 1,667 words per day, the challenge is merely to blog something &mdash; anything &mdash; every day throughout November.</p>\n\n\n\n<p>Our frenemies over at <a href=\"https://poststatus.com/\">Post Status</a> have also been running a similar event called #ClickPublish throughout the year via Slack. Today is the start of a new month-long challenge in which WordPress professionals might participate. <em>Side note: &ldquo;Click Publish&rdquo; is much better branding than NaBloPoMo.</em></p>\n\n\n\n<p>If you are looking for an excuse to wipe the dust off your WordPress blog, what better reason than a 30-day publishing challenge?</p>\n\n\n\n<p>Any of our readers up for it? Feel free to let us know in the comments, and share your articles if you jump on the bandwagon.</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, 01 Nov 2021 22:22:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Akismet: Introducing New Self-serve Options for Enterprise Plus Plans\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=2134\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://blog.akismet.com/2021/11/01/introducing-new-self-serve-options-for-enterprise-plus-plans/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3329:\"<p>We’re all about making it easy to keep spam off your site, from the initial signup process to the protection we provide for years to come.&nbsp;</p>\n\n\n\n<p>Last year, we introduced Enterprise Plus plans, designed for businesses that have over 60K API calls each month. But until now, you had to contact our sales team to register. </p>\n\n\n\n<p>Don’t get us wrong, our sales team is pretty awesome. But time is money and the sooner you’re registered, the sooner you’re protected.</p>\n\n\n\n<p>So, we’ve made signing up for an Enterprise Plus plan easier than ever.&nbsp;</p>\n\n\n\n<h2>Three new Enterprise Plus plans</h2>\n\n\n\n<p>The three tiers are based on monthly API calls. We define an API call as any time a request is made to our servers – basically when&nbsp;we check your content for spam. The larger your site and the more visitors, comments, and form submissions you have, the more API calls you’ll use.</p>\n\n\n\n<p>And now, customers with less than two million per month can now sign up automatically.&nbsp;</p>\n\n\n\n<p></p>\n\n\n\n<img />\n\n\n\n<h3>60K – 350K API calls per month&nbsp;</h3>\n\n\n\n<p>This tier costs $250 per month. Simply choose the plan, agree to our terms and conditions, and you can check out right away.&nbsp;</p>\n\n\n\n<p>And there’s a bonus: Sign up for an annual subscription and you’ll get a 16{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} discount — $500 back in your pocket!&nbsp;</p>\n\n\n\n<h3>350K – 2 million API calls per month&nbsp;</h3>\n\n\n\n<p>Woah —&nbsp;that’s a lot of spam-fighting power!&nbsp;</p>\n\n\n\n<p>This plan is $1,250 per month. Sign up for a year and save $2,500 with the 16{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} discount.&nbsp;</p>\n\n\n\n<h3>2+ million API calls per month&nbsp;</h3>\n\n\n\n<p>If you expect more than two million monthly API calls, you should speak to one of our spam-fighting experts to get a custom plan. Just <a href=\"https://akismet.com/signup/#enterprise-plus\">let us know</a>.</p>\n\n\n\n<h2>Exceeding API call limits&nbsp;</h2>\n\n\n\n<p>Sometimes it’s hard to accurately predict your exact needs. Plus, things outside of your control can temporarily impact the number of API calls you use.&nbsp;</p>\n\n\n\n<p>That’s why, if you exceed your plan’s limit for a couple of months, there’s no reason to worry. We’ll continue to fight spam while we see if your usage normalizes. However, if you exceed the limit for more than three consecutive months, future requests in excess of the monthly limit will be denied until you upgrade your plan.&nbsp;</p>\n\n\n\n<p>Remember: the number of API calls is tracked based on the calendar month,&nbsp;not the date you registered or renewed. You can monitor your API usage by going to the bottom of your account page, clicking the prompt that says, “<strong>click here for account-wide spam stats</strong>,” and checking the <strong>Total API Calls </strong>column.&nbsp;</p>\n\n\n\n<p><a href=\"https://docs.akismet.com/akismet-api-usage-limits/\">Learn more about API limits and reducing API calls</a>.</p>\n\n\n\n<h2>Get started with Enterprise Plus&nbsp;</h2>\n\n\n\n<p>Our new self-serve options for less than two million API calls mean one less barrier to great spam-fighting power.&nbsp;</p>\n\n\n\n<p>Less talking, less spam, more time.&nbsp;</p>\n\n\n\n<p>Pretty great, right?&nbsp;</p>\n\n\n\n<p>Get started with an <a href=\"https://akismet.com/signup/#enterprise-plus\">Enterprise Plus plan</a>.&nbsp;</p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Nov 2021 16:28:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"David Schwister\";s: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:68:\"WordPress.org blog: WP Briefing: Episode 19: The 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:53:\"https://wordpress.org/news/?post_type=podcast&p=11368\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2021/11/episode-19-the-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8205:\"<p>In this nineteenth episode, WordPress&#8217;s Executive director, Josepha Haden Chomphosy, discusses and expresses gratitude for the inspiration behind the People of WordPress series, HeroPress.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<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<p><a href=\"https://wordpress.org/news/category/interviews/\">People of WordPress series</a></p>\n\n\n\n<p><a href=\"https://heropress.com/\">HeroPress</a></p>\n\n\n\n<p><a href=\"https://heropressnetwork.com/\">HeroPress Network</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/5-9/\">WordPress 5.9 Development Cycle</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/updates/2021/10/22/team-rep-nominations/\">Call for Team Rep Nomination</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-11368\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:11</p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:29</p>\n\n\n\n<p>The month of November includes the Thanksgiving holiday in my part of the world and in my familial traditions. And one of the things that November always brings up for me is the concept of gratitude. I have a gratitude practice that lasts throughout the year. But this time of year always kind of lets me look outside what makes me feel routinely grateful and explore areas that I don&#8217;t always notice.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:05</p>\n\n\n\n<p>This year, I&#8217;m taking some time to do that in the context of the WordPress project, and it&#8217;s reminded me of one of the foundational things I talk about a lot that may be a little harder for folks to see. I am routinely grateful, of course, for the people who show up to maintain WordPress, the people who keep the back office work going, the contributors who contribute directly to the WordPress CMS and project, the folks who routinely go out and tell other people about WordPress and make sure others know how to use it.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:35</p>\n\n\n\n<p>But there&#8217;s another group that I talk about a lot that is a little harder to grasp. And that&#8217;s this conceptual group of people whose lives have been changed by WordPress. I used to run into people like this all the time when I was organizing WordCamps. And the small but meaningful successes that they share year after year made me realize that my small contribution of organizing these events was really quite valuable; valuable to them, and I assumed also valuable to just other people in the WordPress project.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:09</p>\n\n\n\n<p>Now, if you&#8217;re contributing in a way that doesn&#8217;t let you have contact with the same users consistently over time, or if contributing doesn&#8217;t quite balance out in your ledger at the moment, it can be hard to put names to faces in a way that lets you see how your contributions are making an impact. To help with that, a few years ago, the WordPress project partnered with the community Marketing team and the HeroPress team to share the People of WordPress series which you can find monthly on wordpress.org/news. For me, this series provides a glimpse into the humanity of the people who use WordPress, and for me, that&#8217;s enough. If all the series ever did was to remind us that WordPress was made for people whose needs matter, that would be enough to continue to have that series forever. But fortunately, the series does quite a bit more than that.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:04</p>\n\n\n\n<p>The People of WordPress series also lifts up the stories of people who we don&#8217;t always hear from in technology. It highlights the wide array of origin stories that lead people to WordPress. It reminds us of the global nature of what we&#8217;re doing. It reconnects us to the hopefulness of our own first WordPress successes. And it draws a direct line to why we should care about refreshing the commons of this open ecosystem. I&#8217;m sure that there are more things that do as well. But those are just the things off the top of my head, we draw all of the people of WordPress stories that are inside that series directly from the HeroPress essays that have been submitted by users. And I was gonna say users like you in a kind of Reading Rainbow way. But I actually don&#8217;t know if any of you are everyday users who are also using WordPress but maybe not contributing yet. If you are then like I&#8217;m talking to you. And if you&#8217;re not, I&#8217;m probably still talking to you. Because all of these stories that go to HeroPress are very valuable and very important for us to know. Anyway, I digress.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:14</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/topher1kenobe/\">Topher DeRosia</a>, who founded HeroPress, is among the first people I met in the community lo these many years ago. And I think the impact that HeroPress has on the WordPress community as a whole is not always well recognized. So in the spirit of expanding the scope of my gratitude, and in the context of refreshing the commons, I would encourage you to head over to HeroPress.com and their newly launched HeroPress Network and see if there&#8217;s any little way that you can contribute to their commons, submitting your story donating to their network offering a small bit of volunteer time if you happen to have any spare time lying around. I know that the team would be delighted to hear from you.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:01</p>\n\n\n\n<p>That leads us now to our small list of big things. We are about a week away from the feature freeze for WordPress 5.9, the final release of the year. Feature freeze caused a little confusion last time. So I just want to clarify there won&#8217;t be a package released with this milestone. But no more enhancements or features will be worked on at that point. And bug fixing will become the primary focus. That will be on November 9, which I believe is next Tuesday. It&#8217;s definitely next week whenever the calendar turns to nine of November 2021. That&#8217;s the day that we&#8217;re going into feature freeze.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:38</p>\n\n\n\n<p>The second big thing in our small list of big things is that team rep nomination season is upon us. If you are a team rep or want to learn more about being one, now is the time to kind of look at what&#8217;s going on and how to keep everything moving in that way. I&#8217;ll include a link to the announcement post of that in the notes below.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:57</p>\n\n\n\n<p>And finally, Daylight Saving Time movements are also upon us. Some parts of the world are ending Daylight Saving Time others are starting it and some have already started or stopped that already. So no matter where you are, don&#8217;t forget to check and double-check the timing of things across time zones for the next few weeks.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:21</p>\n\n\n\n<p>And that is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Nov 2021 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:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:108:\"Gutenberg Times: Changelog #54 – Gutenberg 11.8-Navigation Block, Full-site Editing and the Plugin Machine\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=19499\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://gutenbergtimes.com/podcast/changelog-54-gutenberg-11-8/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:55589:\"<p>Birgit Pauli-Haack and Grzegorz (Greg) Ziolkowski &nbsp;discuss this week&#8217;s Gutenberg 11.8 release, WordPress 5.9, the Navigation Block, Full-site Editing and the Plugin Machine. </p>\n\n\n\n<ul><li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li><li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li><li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li><li>Production:&nbsp;<a href=\"https://paulisystems.net/wordpress-consulting\">Pauli Systems</a></li></ul>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/changelog-54-gutenberg-11-8#shownotes\">Show Notes </a>/ <a href=\"https://gutenbergtimes.com/podcast/changelog-54-gutenberg-11-8#transcript\">Transcript</a></p>\n\n\n\n<span id=\"more-19499\"></span>\n\n\n\n<p><strong>Subscribe to the&nbsp;<a href=\"https://gutenbergtimes.com/podcast/\">Gutenberg Changelog</a>&nbsp;podcast via your favorite podcast apps!</strong><br />🎙️&nbsp;<a href=\"https://open.spotify.com/show/620NwVKQJGdTupy36zYxvg?mc_cid=4b6c9f88fe\">Spotify</a>&nbsp;|&nbsp;<a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9ndXRlbmJlcmd0aW1lcy5jb20vZmVlZC9wb2RjYXN0\">Google</a>&nbsp;|&nbsp;<a href=\"https://podcasts.apple.com/us/podcast/gutenberg-changelog/id1469294475\">iTunes</a>&nbsp;|&nbsp;<a href=\"https://pca.st/podcast/f8445ec0-7508-0137-f267-1d245fc5f9cf\">PocketCasts</a>&nbsp;|&nbsp;<a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a>&nbsp;|<br />🎙️&nbsp;<a href=\"https://www.podbean.com/podcast-detail/chi7j-9904a/Gutenberg-Changelog-Podcast\">Pod Bean</a>&nbsp;|&nbsp;<a href=\"https://castbox.fm/channel/Gutenberg-Changelog-id2173375\">CastBox</a>&nbsp;|&nbsp;<a href=\"https://www.podchaser.com/podcasts/gutenberg-changelog-878239/\">Podchaser</a>&nbsp;|&nbsp;<a href=\"https://gutenbergtimes.com/feed/podcast\">RSS Feed</a>&nbsp;</p>\n\n\n\n<p class=\"has-large-font-size\" id=\"shownotes\"><strong>Show Notes </strong></p>\n\n\n\n<h2>Announcements</h2>\n\n\n\n<ul><li><a href=\"https://json.schemastore.org/theme-v1.json\">Theme.json</a> and <a href=\"https://json.schemastore.org/block.json\">block.json</a> now available through <a href=\"https://schemastore.org/\">SchemaStore.org</a></li><li>GitHub Issue: <a href=\"https://github.com/WordPress/gutenberg/issues/35927\">Create a Schemas Package</a></li></ul>\n\n\n\n<h2>Community Contributions</h2>\n\n\n\n<ul><li><a href=\"https://kinsta.com/blog/gutenberg-blocks/\">Building Custom Gutenberg Blocks: The Definitive Block Development Tutorial</a> by Carlo Daniele from Kinsta</li><li>Updated: <a href=\"https://github.com/WordPress/gutenberg-examples\">Gutenberg Example Blocks</a></li><li><a href=\"https://pluginmachine.com/how-it-works/\">Plugin Machine</a> by Josh Pollock</li><li>Video: <a href=\"https://www.youtube.com/watch?v=_u4R9zIMoU8\">Live Q &amp; A Converting classic widgets to blocks </a>with Mathieu Viet, Varun Dubey and David Cavins from the BuddyPress team</li></ul>\n\n\n\n<h2>Gutenberg 11.8 is a massive release!</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2021/10/28/whats-new-in-gutenberg-11-8-0-27-october/\">What’s new in Gutenberg 11.8.0? (27 October)</a></li><li><a href=\"https://wptavern.com/gutenberg-11-8-adds-dozens-of-features-including-featured-patterns-and-automatically-generated-heading-anchors\">Gutenberg 11.8 Adds Dozens of Features, Including Featured Patterns and Automatically-Generated Heading Anchors</a></li></ul>\n\n\n\n<h2>What&#8217;s discussed or in active development</h2>\n\n\n\n<p>New Gallery Block will come out of experimental for 11.9 (<a href=\"https://github.com/WordPress/gutenberg/pull/34979\">#34979</a>)</p>\n\n\n\n<p>Audit of experimental APIs is on the way (<a href=\"https://github.com/WordPress/gutenberg/issues/35920\">#35970</a>)</p>\n\n\n\n<p>The Template Parts are almost there (<a href=\"https://github.com/WordPress/gutenberg/issues/33926\">#33926</a>)</p>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-container-619a83e1121cf wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<ul><li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li><li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gziolo\">@gziolo </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li><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><li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li></ul>\n</div></div>\n\n\n\n<p></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hello, and welcome to our 54th episode of the Gutenberg Changelog podcast. We are recording this on October 29 in 2021. In today&#8217;s episode, we will talk about Gutenberg 11.8, navigation block, full-site editing and the plugin machine. I&#8217;m Birgit Pauli-Haack, curator at the Gutenberg Times and developer advocate for WordPress at Automattic. And I&#8217;m here with my co-host, co-worker fellow European and friend Grzegorz Ziolkowski, JavaScript developer at Automattic and WordPress core contributor. Howdy howdy Grzegorz, how are you doing today?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Howdy, howdy Birgit? I&#8217;m great today. Oh, that&#8217;s a good way to begin that. Today I met with my co-workers from Poland; we met in a co-working space, that was really nice to meet them again about, I guess two years. That&#8217;s a lot of time and a lot has changed. So we had spent a lot of time catching up, and meet some new co-workers. So very exciting. And yeah, I&#8217;m ready to talk about what&#8217;s happening in the Gutenberg world. And how are you today Birgit?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, I&#8217;m excited. My new pixel six pro phone will be delivered this weekend, and I&#8217;m looking forward to sunset-setting my old phone that&#8217;s from 2018. And it seems like it&#8217;s too long, although it&#8217;s only four years, right? Yeah. So I will plan to test the new camera features over the weekend. And it&#8217;s a good excuse to get out on a photo tour downtown or around town. Yeah. So&#8230; yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I&#8217;m looking forward to see some footage from your walks in Florida.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes. So maybe I need to start a little photo blog and not put them all on Instagram. Yeah-</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: That&#8217;s a good way to use Gutenberg and create a gallery using the gallery blog. That&#8217;s going to be in using inner blocks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right. Yeah, but it&#8217;s still not as easy. And I like WordPress to be as easy as Instagram, but it&#8217;s not yet with the photos. So maybe I should switch teams.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, maybe to the mobile team that is working on the Gutenberg app and they have some features that will help with that in the future. I hope so.</p>\n\n\n\n<h3><strong>Announcements</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I will try that out, definitely, yeah. So we have a few announcements that theme.json and block.json are now available through the schemastore.org. And you can add the location, the URL of the schema on the top of your JSON file, and then your code editor supports this with your suggestions for the keys and values. You don&#8217;t have to look up exact syntax, and can avoid missing commas and end quotes. Grzegorz, you and Marcus are working on the canonical version for the Gutenberg ripple to integrate. So how does that work?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Birgit, we are still discussing how to approach that, because at the moment we are using an external project, that has a URL that could change one day for whatever reason. And WordPress prefers to have control over everything. Also, if we have it stored locally, then we will be able to integrate that in the process. So when there is a change in a core block, we can validate that and ensure that it&#8217;s always up to date. And you already count a few issues with existing blocks, which is a good testament that the tooling is really solid. And yeah, so probably one of the ways we could approach that, and Marcus discovered that Microsoft is using this approach, that we could just create a redirect to a URL, that would be like something in the wp.org domain, I don&#8217;t know, it&#8217;s something that we will find out. But I&#8217;m really excited about that, because this will help a lot, especially with the theme.JSON, which is a huge file to maintain. And it also shows hints, so if you provide&#8230; There are descriptions, so it explains what the given properties about, what values are available there. So also people will be able to contribute to that, and improve the hints, so this is really exciting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So I&#8217;m glad we talked about this here quite there, early in the process. So whoever, if you want to use it more and you want to contribute, yeah. Grzegorz and Marcus are the person to-</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. So just to be clear, so the credit should go to Alex Lender from Automattic, he originally submitted the first version of schema for theme.json file. And then the follow up was for the blog.json. So great work on that, and the idea was excellent.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And Alex Lender, there&#8217;s also the developer who did the whole duotone feature, right?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yes, that&#8217;s him.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Okay. So, but WordPress 5.9 is coming up fast, FeatureFreeze is November 9th, that&#8217;s less than two weeks. And Gutenberg 11.9, which is the same date, November 9th.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: What a coincidence.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Will be the last version with features to get into core. The release candidate has been rescheduled for the plugin, has been rescheduled for November 5th instead of November 3rd. But the final release will be after FeatureFreeze on November 10th, but the release candidate is the version that will get into core, for the first FeatureFreeze kind of. Then between November first and ninth, the team will be working on merging all the packages and code with core for the 5.9 release. Are you going to do it before that, like a dry run too? Or you&#8217;re just going to use this, the whole thing in one scoop into one core?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Oh, so I don&#8217;t know about this one. I didn&#8217;t follow that so closely, because I&#8217;m working on another project. I&#8217;m working on new version of the comments, query loop block, which is going to be responsible for displaying comments and comments form. But from my experience, it might be a few comments on the WordPress core site, because it&#8217;s quite complex, it&#8217;s&#8230; So the packages that update only JavaScript, but there is a lot of features that require PHP changes, which is more complex to tackle. I don&#8217;t know, I guess it will take a few days, hopefully they have enough boundaries to finish that on time. But also FeatureFreeze, it&#8217;s mostly about making a cut that this is what we provide for the release. And I wouldn&#8217;t be so worried if the merging is delayed a little bit, because what matters here, is the date for Beta one, which is November 16, right? So there will be a couple of days to make sure that everything is solid enough.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So as you said, Beta on November 16th, and then the final release of WordPress 5.9 will be on December 14th, 2021. All right, so we got that out of the way.&nbsp;</p>\n\n\n\n<h3><strong>Community Contributions</strong></h3>\n\n\n\n<p>If you want to start now building blocks and need kind of a rundown, what all needs to be there. Of course there is a developer handbook, but Carlo Daniele from Kinsta has actually published a great tutorial, building custom Gutenberg blocks for definitive block development tutorial, and we will share the link and the show notes. So he walks us through all the prerequisites, and then all the tooling, and then also get into one block, an example block.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, it&#8217;s a more complex block than the one that is provided in the official block development tutorial in the block editor handbook. And it&#8217;s also really is collected in one article that you can just process, and it provides a different option. So it&#8217;s not that step by step, but you have options in every step that you can take. For instance, you can use WPN for building your WordPress local environment, but you could also use the other option that as provided, I don&#8217;t remember what exactly.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, Kinsta has their own local development tool, and then there is local as well. Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Recently the WordPress repository of the Gutenberg examples has been updated. Ryan Welcher went through all the examples and updated them to the newest APIs, and make them work. I think you also have found one, a few that are a little bit more complicated than the &#8216;hello world&#8217; examples. So it&#8217;s definitely now another repository to go to, to have examples that work, and you can learn from in your journey to developing the blocks.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. So, he did that, most of the work he did live streaming on Twitch, which is also recorded on his YouTube account. And it&#8217;s really a great way to see the steps he does to update everything. And the nice thing about that is also that the examples use up to the syntax, the latest APIs, and the most correct recommendations from the Gutenberg core team. So he did exciting work, very great work there, but also he is now looking and integrating some tooling that helps developers like code formatting, code linking. So, there are now integrations with IDEs, so everything is much simpler than before, and he is even looking and integrating very basic end to end test, using the same tools that Gutenberg uses. So that&#8217;s very helpful for someone that wants to explore block development.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes. Yeah. So Ryan has actually settled on Thursdays 10:30 Eastern, which is 4:30 UTC PM to do his Twitch live streaming and live coding session. So if you want to put this on your calendar, Thursdays at 10:30 on Twitch, and his&#8230;. We have the links and the show notes. His username is Ryanwelchercodes, all one word. And yeah, for those who listen and will not just keep it in memory.&nbsp;</p>\n\n\n\n<p>Now, yesterday, a whole new tool popped up on my radar and that is by Josh Pollock. It&#8217;s an electronic app for plugin developers to get a head start on boilerplate on. He wrote, &#8220;It can create plugins with blocks, editor sidebar, custom admin pages, remote updater, common actions and filters, custom content, post types, local development, tests, GitHub actions, and any other things.” So it&#8217;s more like an all encompassing tool. “The UI for creating plugins, managing features, modifying generated files, and downloading development versions of the plugin, is nearly done.&#8221; He wrote on his new site, &#8220;And I&#8217;m also making good progress on the CLI, I&#8217;m almost ready to start early access.&#8221; That was Josh Pollock on his websites. I signed up for the early access and I&#8217;m excited for Josh&#8217;s new app, because Josh pollock was one of the early JavaScript educators in WordPress community together with you Grzegorz, Zack and Brian Richards at WordCamp Miami in 2018, which was in spring 2018.</p>\n\n\n\n<p>And Josh Pollock is also the original creator of Caldera forms that he sold in 2020 to Ninja Forms. And that plugin will reach end of life at the end of the year. It&#8217;s a shame that because it was one of the few form builders who actually offered a lot of features beyond creating forms for the end user, because other plugin developers could connect with it and create processes, for the submitted form data. So, Josh certainly knows what a plugin developer might be looking for, so will keep an eye out for this new tool that comes on the website. He also said, of course, this tool can come for free, but it&#8217;s also going to increase your or improve plug-in developer&#8217;s processes. So especially in agencies, so it definitely will be worth its investment.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: It sounds very intriguing. I hear for the first time about that, but I believe that Josh did great work, because he has all the necessary knowledge to do that. And he was one of the early adopters and educators in the space. So, he&#8217;s definitely someone that has credit to do this type of work. And also, it sounds really interesting to have an app that you can install on your machine. I guess it will work with Mac and with Windows, and then you will just install that and does all the job for you. Sounds very exciting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes, it is. Yes. Also exciting, we had a very good conversation yesterday. A lot of things happened yesterday, with Mathieu Viet, Varun Dubey and David Cavins from the BuddyPress team, when we discussed how they were converting their classic widgets to blocks and what the advantages are now, and what they learned, when they were using blocks. And one thing stood out, and I didn&#8217;t know why I wasn&#8217;t zeroing in on that, but Mathieu Viet, he mentions that he likes programming just a little block, a one unit kind of content unit. And if you stay within your own lane, you only do what this block does, and you&#8217;re not messing with everything else, like the post content or the sidebar, or any other place on the WordPress, it&#8217;s very isolated, but you can also focus on it. And I think it wasn&#8217;t really that clear to me until you said it, but that see atomic nature of the blocks.</p>\n\n\n\n<p>And he&#8217;s also said that it&#8217;s so much easier now setting up a BuddyPress site for end users, because they see, they just drag the blocks over and it just works. Yeah. And they don&#8217;t have to learn short codes or widgets and all that, because&#8230; Yeah, I think David said that widgets are very hard for end users to grasp the concept of that and to apply it to their site building. So it was an interesting conversation. We will have the YouTube video, the recording available in the show notes, and also some of the tools and the resources that they mentioned, how they got into it and what helped them to move forward with the blocks. Yeah, and now we come to Gutenberg 11.8.</p>\n\n\n\n<h3><strong>What’s Released &#8211; Gutenberg 11.8</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yes, the last one that goes into WordPress 5.9 release.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes, the second last.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yes, second last.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, Vincente Canales has managed to release for this version and highlights plenty of great features in the release post on the make blog. And it had 166 PRs merged, excluding all the mobile version PRs that were released, and it has 80 enhancements. We are not going to talk about all of them.</p>\n\n\n\n<h3><strong>Enhancements</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, 80, it&#8217;s an impressive number. And it&#8217;s for real. And a lot of those enhancements are really great, so we should start right away.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So the&#8230; go ahead.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. You probably wanted to say something there, it&#8217;s like there&#8217;s a lot of integration with global styles and this product evolves so fast, and it really gives a lot of power to block developers, because you just need to provide one entry in the JSON file, and suddenly you have this feature enabled. So this way is like, now you can add spacing controls to all heading blocks, which is pretty interesting that you can now control the margin or padding depending on your needs. So it&#8217;s under the dimension section in the sidebar of your block.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Well, that&#8217;s one that was missing for a long time for the spacing part. I think the most used block was actually the spacer block, to make up for the missing pieces there. But now many blocks have actually the space controls and blocks like the buttons block, where you have inner blocks, as you have the buttons block outside, and then you have multiple buttons inside the block. You also have a vertical margin support and the gap. So you can, and we also saw that last version 11.7, the columns had that as well. So this is going to be rolled out also to the feature image and block, and those other blocks.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, in general, the idea is that most of the blocks to occupy the full role, they need to have some ways to declare spacing. So you don&#8217;t have to use the spacer block anymore. And that&#8217;s the most important change. And I think at the time of the release, we also have the space gap. However, the name which will stick at the end of take this gap, will be also in all blocks that group other blocks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So the category block got an enhancement by supporting now only top level categories. So when you use the categories you can change that, the column block has now this specification that you can actually have specifications for the blocks within the columns. So which we&#8217;re allowed and which are not, and all that. And also how they are placed into the columns, there&#8217;s a common content block that now has typography color and pattern support. And then there were quite a few changes to the cover block, and it has now the allowed blocks and template block attributes for the cover blocks. So you, as a developer and theme developer can now determine what the cover block can entail. That&#8217;s through the block.json right from the cover block, or is it through theme or both?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I guess this is from through the block attribute, so you can define that. So for instance, when you are using a block pattern, then you can encode that, and you can set a lock now for the block, so once that is like combined together, the user won&#8217;t have a way to change that, so you have a very nice control on how those block will behave after they&#8217;re inserted.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I just looked at the PR and it&#8217;s through the blocks register block type area there. Yeah. Awesome. Yeah, that&#8217;s something that a lot of theme developers and plugin developers are really worried about, is how they can control and block things down, especially when you do development for a larger editor team. So they are guided through their editing experience there.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, I think those APIs will major soon because we have so many use cases for that these days, and those features are added. And as soon as we have enough blocks to make a good decision, then this API will be improved, and this is how it all happens in the block editor.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right, right.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. So for the features, we now also have a new embed integration is for Pinterest, that was missing as it looks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And it was also added to core, so the embed provider is also available for classic editor, not only the block for the block editor, it&#8217;s a new variation on the embed block. I just want to go back just a little bit to the cover block, there were also so a few changes and gradual changes to the opacity for background colors. So now you could have a background color, or a background image, and then the opacity of that, you are really in control of it. There are dim ratios and they have controls over that. And that&#8217;s really good way when you create more creative block patterns. What we have seen for instance from Tammie Lister, she has a few block patterns, the pattern inspiration, and this is a place where I go when I need a little bit inspiration, is she had a background and then an image on it, and then a duotone attached to it, and made that a block pattern.</p>\n\n\n\n<p>And it&#8217;s really fascinating, what you can do with those tools already, in terms of your visual layouts on your post or pages. So yeah, just saying that, yeah. It&#8217;s now in the plugin available now. So feature image got more spacing controls for the image block, and also the heading while we talked about this, but what I missed talking about the heading, was that it also now auto generates heading anchors. So you can, when you create subheaders, you can get a link to those subheaders that you can use, not only to drive people to end and say, okay, check out this little header there, or section of my blog post, or of my page, it also enables the finishing the table of content block that has been in process.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: On hold.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; on hold for quite a while, until that feature is actually available. And I read a little bit through the PR, and if it is already at anchor, it will not override it. So in your existing pages and posts, don&#8217;t worry that some automation is now making your work redundant or make your work more, it only creates new anchors and not override existing anchors.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, it&#8217;s just to ensure that every heading has an anchor, that is already rendered on the front end. So you can use as URLs, but also you can provide your own name, I guess so.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, you can.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: The last version I saw it was working this way, so it&#8217;s very flexible.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And I really love that, but sometimes you have longer blog posts, but then you only want to kind of have share one paragraph of it or one quote or yeah, kind of put a heading on it, and you get an auto generated anchor for it.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. It&#8217;s also, sometimes you have to write a very long heading and then just autogenerate writes out of the text, how the heading is, the anchor how it&#8217;s named. So it&#8217;s also very good experience for the user because they don&#8217;t have to type almost the same name again.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right, yeah. So there are some other things I wanted to just point out, the post comment author, now add link settings, and to the block support as well as the comment dates, those are also link&#8230; I always like links, yeah. It&#8217;s kind of….</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Because you can link both, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: For the author that links to the website that is provided in the user&#8217;s profile, and for the date, that&#8217;s just getting through to the comment.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And to the comments of that date, yeah. And then there&#8217;s some&#8230; Now we come to the more theme-related blocks, the site. Well, the comment author and data already important for the theme, the site logo received some improvements. And now there is a basic example in the site logo block. And there was some interesting back and forth on the reset button and the replace, the menu drop down, and then back and forth. But it works now really nicely, all this back and forth had the benefit that everybody who worked on it now has a better hands on how the site logo works, and how it can be added to the navigation block or to the head up block and head on template part. All right.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: And there are also changes to the social links or social icons. I don&#8217;t know what&#8217;s the name, but the titles use both versions. And so the change there is that you can now set the top and bottom margin for those icons, and the other change, there is some changes to the styling. So when you have only logos, you don&#8217;t display any texture, then it looks better than before.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. It got a Polish.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Polish, a Polish slack.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: A Polish slack. It&#8217;s not in polish. No, of course we are making a pun here from Polish and polish, it&#8217;s a polish logo style. But sometimes when you travel in multiple languages, these things kind of pop up at you at very different times.</p>\n\n\n\n<p>So the global styles, and they&#8217;re now called styles. So yeah in language, in 5.9, you will see that everybody&#8217;s only talking about site styles, not the global styles, but the big change is now that the child theme, JSON file will be merged with a parent theme, JSON file. And that is important because a lot of people think about&#8230; yeah. So when you always have to build a child theme, so when the parent theme gets an update, things are not overwritten, and you can change some of the settings in the same JSON file in your child&#8217;s name.</p>\n\n\n\n<p>So it applies to styles on top of those from the parent theme. And you can&#8230; so the parent space is maintained. If no theme.JSON file is present as child theme, all the parents standards are applied, or the other way around, because you can actually use the theme.JSON file and classic themes. So it works, yeah. If you have a classic theme, you can create a child theme and then put a theme.JSON file in it to configure all the settings for the block editor. So that&#8217;s a very good enhancement, and I&#8217;m glad that it will make it into 5.9.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. Because theme.JSON file is about the styling, and to specify that a given theme is a block theme, you need to provide templates in a special folder. That&#8217;s the distinction. It might be a bit confusing, even for me wrapping a head around that is a bit hard.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I don&#8217;t think that is the last word yet spoken in on the parent theme, the child theme, because we really need to consider that this is the first version where a block theme is actually in core or as a default theme in core, and the handling of a block theme will be in core with 5.9, but it&#8217;s the first version. And as you listeners probably have already noticed, there&#8217;s always the minimal and a first version to get the functionality right, and then iterate fast on it. And what&#8217;s going to happen also with the block themes, and the handling of it in terms of extensibility and all backwards compatibility. So, always through the….</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: We can move to&#8230; you know we are not done yet. We can move to patterns and a big change there, that there is now a new category which feature patterns that come from the pattern directory that is hosted on wordpress.org. So, that&#8217;s a big change because now the patterns that are submitted by the community, they are somehow, I don&#8217;t know, selected to the special category, and every website that is using the block editor will be able to show them on the list, and user will be able to insert them directly from the editor.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: From the inserter, yes. And there&#8217;s also a change in the query loop block, where the number of items per page for the default block has actually increased. So it&#8217;s not only six, but you can change that as well. The query loop block pattern. It&#8217;s one of my most favorite block patterns, because that&#8217;s where you show your….</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> The query loop.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. It&#8217;s so extensible and it&#8217;s&#8230; well, so flexible that you can really make a lot of different pages out of it and showcase your content. So the block editor also got animations for the insertion point and drop zones and other elements. So the drag and drop improvements have been merged there. I didn&#8217;t see anything, well, the template editor itself, it comes totally&#8230; it&#8217;s out of experimentation for this third version, I think. And you get a lot of different updates there, as one of them is to now handle template areas with the template inspector, and have more options for them. And the other one is there for just some cosmetic items, and now it uses a dark background, but though if you have a light background on your theme, yeah, you hardly see it.</p>\n\n\n\n<p>It&#8217;s going to be a&#8230; the background of the editor is not white, it&#8217;s actually black. I don&#8217;t know if it makes a difference. And then the components, there were quite a few update on the story book. That&#8217;s a place where you can look up components, and see the attributes and how they change, and you can kind of copy and paste code from there. So that&#8217;s as good that there are some nice updates there.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. And I also notice that change in the navigation block, that is going out of experimental phase. So, on the mobile screen, if you use that block, you would see the hamburger icon. So now, the changes that you can also enforce then on the desktop or the wider screens, you can also always show this hamburger. It&#8217;s something that, for instance, some Twenty Twenty family of themes, they use that feature very often. So that&#8217;s interesting change that user can use now.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Absolutely, yeah. And then there are some, the great block package, got some changes and one of them is really helpful for people using that to create blocks, as it allows now local directory to pass to a template as a relative path. So, you don&#8217;t have to submit your template to NPM to actually use it in your grade block. You can just have it in a particular directory on your own machine, and reuse it for the next one of your grade block features here. And the pascal case, you can now have a Pascal case slug on your template strings as well.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: So that changes mostly for using PHP classes. So it follows the conversion. So you can just use that to start your class name, and then provide the rest of the class name if you are using a PHP file in your templates. So those two features are related to each other. If you are using those templates and you can build local folder with templates that generates PHP files. And I think there&#8217;s one more thing I wanted to mention. So the one is, last time we talked that for the navigation block, there was a change that allowed using a slash inserter.</p>\n\n\n\n<p>So you need to make inserting a certain type of blocks easier in the navigation menu. And this feature was extended now for the heading list and core blocks. So, for the heading it looks quite funny because if you are using H2, then the font is big, but you are able quickly to insert a different block from that as well. So, sometimes it could be useful to do this type of operation. Maybe in the future, the slash insert might support a different type of action. So, I saw some explorations that could use machine learning. So it could like for instance, Siri or Cortana just to understand what you want to say. And like you could start typing, like insert heading with, find me a pattern with certain characteristics. So I&#8217;m looking forward to how the slash inserter will evolve now that it can be used in more places.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. The slash inserter was actually the&#8230; it has been around since the beginning of Gutenberg, and it has a few nice for the post editor, but I didn&#8217;t realize that you actually have to enable it also for the other screens. And I saw that PR in the list and I didn&#8217;t highlight it, because it&#8230; hmm, I didn&#8217;t understand it quite what the significance was this time around, but now thank you for explaining it to me. I also know that some of the tools that deal with the second brain editing, like Roam Research or Logseq, they use the slash command also to add a to do list item, or to add a to do list to a certain date, or just kind of reference date. So there&#8217;s a lot that can be done with slash insert, the slash commands.</p>\n\n\n\n<p>And for the heading, if you use it in your post, just a little secret from the treasure chest of your Birgit’s secrets, if you say slash H3, it actually gives you a heading three. So you don&#8217;t have to control the heading through the block tool or H5. Yeah, you can do that as well. But now we going back to our changelog here.&nbsp;</p>\n\n\n\n<h3><strong>Bug Fixes</strong></h3>\n\n\n\n<p>Then there were 42 bug fixes in that release, and I&#8217;m pretty sure there are quite a few coming up also in the next release. There was actually none that really stand out where I said, okay, that took a long time to fix, or that makes it now much easier or something like that.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, it&#8217;s definitely in recent releases, we have so many new features and enhancements that show up, that is really hard to find a bug fix that stands out. And those are small things or some something that is a bit of improvement, it&#8217;s not like sometimes it&#8217;s hard to classify. And many of them are related to how it displayed visually inside the editor, because with so many the features you sometimes miss something less important.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I think in total they make a real improvement on the quality of life, of the experience, kind of the workflow. But when you isolate them to just one line item, then it&#8217;s not that clear how the improvement really affects a normal user in the block editor. But I&#8217;m always looking out for those items that are kind of significant in that area, but I didn&#8217;t see one in this one in that regard.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, just in the meantime. So during the Go/No-Go Meeting that was held two weeks ago, Helen Hou-Sandi she mentioned that the biggest difference for her is that, the editor that was a couple months back, feels less buggy, like the experience overall has improved, not because something significantly changed, but because those small interaction has been improved a lot. And the difference between what you see in the block editor and on the front end doesn&#8217;t differ so much, and that&#8217;s the biggest change. This is where those little bug fixes come from, and as you pointed out in isolation, they don&#8217;t seem significant, but the amount of work done is really important, because it improves the first impression for the user.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Absolutely, yeah. Thank you for pointing it out. I heard Helen saying that as well, also in the discussion that we had with her, and Mark Jaquith and Riad Benguella, that the block editor has come such a long way now, that the underlying structure, as well as the look and feel and the usage.&nbsp;</p>\n\n\n\n<h3><strong>Documentation</strong></h3>\n\n\n\n<p>So we come to a documentation, there are 21 changes in documentation. Of course, some of the things with new features comes new documentation, and there&#8217;s now a section on how to use this theme in JSON schema, that we mentioned above, and also update the block categories and the clarifying documentation about the inner blocks orientation prop, and what else? So, there&#8217;s some package documentation updated, and quite a few components didn&#8217;t have any read-me files. And that made it hard to have the automated documentation flow that goes from the GitHub repo into the WordPress meta site on the make block a little harder. And when the information is not in the code, it can&#8217;t be in the documentation either. So there&#8217;s, well, quite a few efforts there to bring the information out of the components into the documentation there.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, to fill the missing gaps, because there are still a few, however, it has improved significantly in the last few weeks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Mm-hmm. And that also covers the grade block documentation that has been updated with the new features.</p>\n\n\n\n<h3><strong>Code Quality</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: And there were also code quality related changes, and there are 17 of that, and it&#8217;s related to maintenance and to bring some libraries up to date, or replace some libraries. So one of the works is to replace tiny color libraries, color D, which is more up to date and is a better fit for the project. And also part of the change to the color picker, that had some refactorings and it looks a bit different than before.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Do you know why the color picker was changed? Was it&#8230; I think we discussed it, that we both were kind of….</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I still know.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Accessibility.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> But yes, and performance, and also flexibility of the new library.</p>\n\n\n\n<h3><strong>Tools</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Okay. And then there were some 11 changes to the tooling or for tools. And these are way over my head anyway, but then I only marvel at the nice naming there, which is now we have flaky test.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Flaky test.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Which kind of isn&#8217;t funny.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: There is a tool, so maybe not tool. So when end to end tests fail, there is a special script that processes those failures. And it tries the test, if the test succeeds on the second or third attempt, then there is an issue opened called flaky tests, and it just reports what went wrong. So someone could look at that and try to fix the failure, or decide that is not an issue and close that one. So that&#8217;s the backstory for that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Mm-hmm. Well, that&#8217;s very interesting, yes. Well, thank you for that.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. I think we reached to the end of the list, and we can now talk about what&#8217;s in active development, or discussed in the community.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right. And they have….</p>\n\n\n\n<h3><strong>What’s in Active Development or Discussed</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: And I think he wanted to talk about project APTA is that, people shared on the core editor meeting on Wednesday, which is very related to the upcoming FeatureFreeze.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right. And first this was about the navigation block and navigation editor. You might remember the listeners that the navigation editor screen won&#8217;t make it into 5.8, and the navigation block has been scaled down a bit for that. And the architecture of the navigation block has changed a little bit, because now it will be saved as a&#8230; the storage of it has been changed. And there are some&#8230; it&#8217;s underlying architecture, and it&#8217;s interesting that it&#8217;s very late in the process for these to come in, but the team feels quite confident to get this, get through it.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: So are you talking about the idea to use a new post type or WP_template? WP_navigation to solve the navigation issues.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that PR has already been merged, so it&#8217;s not in this version, but it&#8217;s in the next version, so it can go get into 5.9, and it allows the same navigation items to be used in multiple places on a site, but with a potential to have each different visual presentation. So the that&#8217;s kind of how they approach it. So you could have a menu in your header and footer, but if you use it on the sub-site, and just want to point it out, you can style it differently, but you use the same links. You only have one place to edit that. And then with it comes also the facilitation of the WP navigation area as a part of the facilitating that from the classic menus. So it preserves its nature on theme switch, that&#8217;s one of the hard things that are now in the work that theme switching should not make you have to redo your menus and your navigation from the website, and that&#8217;s part of the feature parity with the existing one. And then here have some transforms on the links, and they split up the URL and the text in the link. So it can have a rich preview as well. So that was for the navigation editor reports. Do you want to talk about the template editor or the styles?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: For the template editor?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Mm-hmm.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: So, I think that the template editor is a template part editor is the thing that had a lot of iterations, like the focus mode, which displays this template part inside, like removes everything that is not the template part from the view, so you can focus on that. And yeah, it seems like it&#8217;s almost there, and it will be moved out of the experimental phase, and you&#8217;ll launch in WordPress 5.9.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Did I miss anything there?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: No, there was a tracking issue, that&#8217;s actually what is linked there to the template focus mode by Matias, and he had quite a few issues from the design issues that need to be merged, before it all comes together. And it&#8217;s still pretty hard to have the template editor, template part editing should work. And the overview issue has also been closed. So all the things that were in the works have actually been merged, and this overview issue has been closed.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. When we talked about improvements to the template part editor last time, it looked pretty solid for me. So, I&#8217;m not surprised that it has been closed since then. And also it&#8217;s very interesting that this navigation will have its own post type, the same applies for the template part. In some ways they could use this template far for navigation, but I think it&#8217;s conceptually different, that&#8217;s why they decided that should be a different post type.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I think so, that it&#8217;s a single purpose of concern, I think it&#8217;s a better approach than mixing things, just because they&#8217;re technically similar, it doesn&#8217;t have to be that they are same. We have a similar discussion actually between reusable blocks, block patterns, and template parts. And to figure out the differences and what&#8217;s the same, because the end users will have that question as well. And there is a big discussion on how to rename the reusable blocks, and to what name, but it&#8217;s not&#8230; I don&#8217;t think it has come to an end yet, so we can&#8217;t link it in the show notes, I think it&#8217;s ongoing right now for two weeks, but yeah, any opinion is welcome, and every reasoning is welcome, in terms of how this should be called. But what I also learned about in that discussion was that there is definitely quite confusion, or it&#8217;s not particularly clear the purpose of each of them.</p>\n\n\n\n<p>So reading through that has quite a bit of that. That can be&#8230; oh, that&#8217;s why epiphany is in there. So, I think I also read another discussion somewhere, I forgot, that&#8217;s my life now, I read something and then I forget where I have, and when I read it, I bookmark it, but then I still, if I don&#8217;t know where the bookmarks are, I&#8217;m at the same place. So, I have not yet found a solution to it, but I will navy through.&nbsp;</p>\n\n\n\n<p>Jorge posted an update on their global styles in the meeting. And they have a PR that actually propose a new color palette editor. So it makes multiple color palettes from different sources available to the user. And that&#8217;s actually also something that came out of the Go/No Go Meeting, when the team in there was thinking about how can this be improved or what&#8217;s the next step for it, when they showed the color sidebar for a template editing screen. I think it was something that Matt Mullenweg just had loaded outside. Oh, isn&#8217;t there a website out there like color palette.com where you can select different color palettes? And wouldn&#8217;t it be cool if we could get it in? So I&#8217;m definitely looking through those PRs and see how they&#8217;re progressing there or what they suggest in there.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yes. Similar cases for the patterns, explorer, and a new way to browse them, it would be in the modal. So the exploration that is in very advanced phase now, just provides an icon that you can click in the sidebar, and it just moves all the patterns to the modal and you have almost full screen to see them, and so that should help to pick your pattern, like spend more time and have better preview of them, not limited by the very narrow space that the sidebar gives you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh yeah, you&#8217;re right, that&#8217;s a big underscore exploration now, because most page builders have that, third party page builders, and also early layout block plugins collections had some of the full model Windows to select full page patterns. When you come to full page patterns, you need a bigger space to display than the&#8230; Sidebar preview is definitely not going to be enough. Well, that&#8217;s in the discussion, what else do we have? One of preparing for the WordPress 5.9, the technical leads for the editor release leads, Robert Anderson and George Mamadashvili, are conducting an audit of experimental APIs of the various Gutenberg packages that need to come out of experimental to be merged with core. And they have a one issue list that&#8217;s 35920 is the issue number. And it&#8217;s a list of quite a few experimental methods and APIs, but only a few of them. And I know there are a few developers who actually created the features, are already preparing those to come out of experiment. They&#8217;re working on that. This is just the issue list with all the experimental methods, and when you go through the comments, you&#8217;ll see which one are already work in progress to be bring out of experiment.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. Just wanted to explain what this experimental status means for those methods. So, as long as they&#8217;re experimental, then there is no guarantee that this method will have the same signatures. So, plugin developers, or theme developers, they use it and at their own risk, it happens, but those&#8230; I know that people who use that, they pay attention to ensure that, as long as it&#8217;s stabilized, they update their codes. So it still works as they should. And yeah, so the idea is that as soon as you change the name and remove this underscore experimental prefix, the method gets integrated with the block editor handbook and all the like method name, description, patterns, they get included there so people can easily find them later. So it&#8217;s just a way to ensure that the Gutenberg plugin can move very fast, and check out if given API makes sense, and use that with core, usually with the block editor or with the block library for core blocks, and it worked pretty nice. However, the list of experiments has grown over time, and probably it would be a good idea to soon take step back and clarify what the future of some of those APIs.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Will be, yeah, absolutely. Speaking, coming out of experimental, the new gallery block will come out of experimental for 11.9. It was a little bit delayed because when found that there was a problem with the mobile app, if you have a lower mobile app than 18.2, there was some content loss there. So now there is a little notification on the gallery block placeholder, that if you have a different mobile version, make sure that you don&#8217;t use it, so you&#8217;re not encountering any content loss. That&#8217;s the only&#8230; it is from the developers, is the estimation that by the time 6.0 comes around, the people that are on lower mobile apps have upgraded by then, and it&#8217;s not an issue anymore, but it&#8217;s just for this release, but it definitely will come to 11.9 for everybody else. And so I&#8217;m really looking forward to that, because having image blocks within your gallery, is so much easier to handle so much better concept than having images that don&#8217;t have all the features like it has now.</p>\n\n\n\n<p>And they also have&#8230; so the developers, Glen Davis, mostly spearheaded that effort, he took care of quite a few backwards compatibility issues that happened with existing galleries, that are normally not touched, but when you open up the post again, it will be automatically changed. And we have not finished our outreach to the plugin developers yet, to alert them to that change. But most of them that we have contacted, about 15 of them, 80{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf} actually knew about it and had already adopted their gallery extensions. All right.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: That&#8217;s great to hear that people are following the progress on their blog.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I think a big part is they&#8217;re listening to our podcast. I&#8217;m just saying that now.&nbsp;</p>\n\n\n\n<p>So yeah. And that is pretty much the end of our show. I don&#8217;t have anything else that I wanted to talk about, do you have anything Grzegorz?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: No, and other than usual stuff like, we are waiting for reviews and send us your comments, what do you like about the show? What you don&#8217;t like? So we could improve, that would be always appreciated, and you can also contact us on Twitter, like tweet us or DM us. My Twitter handle is @gziolo and yours Birgit&#8217;s is @bph, it&#8217;s very short and sweet. How did you manage to find this one? So short.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, I signed up in 2008, so very early. But I get a lot of street cred from the young-ins that I have a three digit Twitter handle.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So we also have an email address where you can send your questions and suggestions, and the news, it&#8217;s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. And this is it for me. I wish you all a great weekend. And next week, when you listen to that, we are all looking forward to WordPress 5.9 testing, and yeah, this is it until the next time, bye-bye.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yes, that was a great one. Thank you Birgit, and thank you our listeners, see you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Bye.</p>\n\n\n\n<p> </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 30 Oct 2021 19:15:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:76:\"WordPress Foundation: The WordPress Foundation publishes its 2020 financials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpressfoundation.org/?p=201436\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wordpressfoundation.org/news/2021/the-wordpress-foundation-publishes-its-2020-financials/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4205:\"<p class=\"has-drop-cap\">We are glad to announce that WordPress Foundation has published its financials for the year 2020. </p>\n\n\n\n<p>In 2020, the WordPress Foundation and its subsidiary B-Corp (WordPress Community Support, PBC) provided support and guidance for a total of 33<a href=\"http://central.wordcamp.org/\">&nbsp;WordCamps</a>&nbsp;and hundreds of<a href=\"http://www.meetup.com/pro/wordpress/\">&nbsp;Meetup groups</a>, organized by volunteers in communities all over the world. </p>\n\n\n\n<p>WordPress Foundation’s total revenue in 2020 was $10,787, with donations making up all of this amount. Expenses for the WordPress Foundation totaled $3,438. Major 2020 expenses include:</p>\n\n\n\n<ul><li>do_action charity hackathon grants $1,650</li><li>Dues &amp; Subscriptions $759</li></ul>\n\n\n\n<p>You can read about our finances in detail in our <a href=\"https://wordpressfoundation.org/2020-financials/\">2020 financials page</a>: </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpressfoundation.org/2020-financials/\">2020 Financials</a></blockquote>\n</div>\n\n\n\n<h2>Support the WordPress Foundation</h2>\n\n\n\n<p>As you all may know, the WordPress Foundation is a 501(c)3 non-profit organization that pursues a charter to educate the public about WordPress and related open source software. We regularly host educational programs like&nbsp;<a href=\"https://doaction.org/\">charity hackathons</a>&nbsp;and&nbsp;<a href=\"https://wordpressfoundation.org/tag/intro-to-open-source/\">open source educational events</a>. These programs are made possible through the help of generous donations from<a href=\"https://wordpressfoundation.org/donors/\">&nbsp;our donors</a>.&nbsp;</p>\n\n\n\n<blockquote><p>If WordPress has helped you in any way,&nbsp;<a href=\"https://wordpressfoundation.org/donate/\">kindly consider donating to the WordPress Foundation</a>.</p></blockquote>\n\n\n\n<p>Money raised by the WordPress Foundation will be used to ensure free access to&nbsp;<a href=\"http://wordpressfoundation.org/projects/\">supported software projects</a>,&nbsp;<a href=\"https://wordpressfoundation.org/trademark-policy/\">protect the WordPress trademark</a>, and fund various programs. 2022 will be an exciting year for the WordPress Foundation, as we have a plethora of exciting plans in mind, including a <a href=\"https://make.wordpress.org/community/2021/09/01/proposal-centralized-global-do_action-charity-hackathons/\">potential global charity hackathon program</a> along with a host of novel educational initiatives through <a href=\"https://learn.wordpress.org/\">learn.wordpress.org</a>.</p>\n\n\n\n<h3>In short – your donations will go a long way in sustaining and growing the WordPress project. </h3>\n\n\n\n<p><em>Every</em> penny you contribute will help us build and grow our charitable programs that will in turn empower individuals and communities with the help of the WordPress open source software. </p>\n\n\n\n<p>You can either&nbsp;<a href=\"https://wordpressfoundation.org/donate/\">make a one-time donation or choose to donate annually</a>. If you sign up for any one of the four annual subscription plans, you will be featured on our&nbsp;<a href=\"https://wordpressfoundation.org/donors/\">Donors page</a>&nbsp;– as a token of our gratitude for supporting education programs about WordPress and open source.&nbsp;A big thank you to <a href=\"https://wordpressfoundation.org/donors/\">all our donors</a> for supporting us in our journey so far!</p>\n\n\n\n<p>Check out our donations page for more information: </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpressfoundation.org/donate/\">Donate</a></blockquote>\n</div>\n\n\n\n<p class=\"has-background\">Show your support for WordPress by taking part in the <a href=\"https://wwwp5k.run/\"><strong>Worldwide WordPress 5K run</strong></a> from wherever you are! You can also support the WordPress Foundation by donating to us directly <a href=\"https://wwwp5k.run/donate/\">through their website</a>. Hurry up! The event concludes on October 31!</p>\n\n\n\n<p>Thank you so much, for all that you do, to support our goal of serving the public good through our myriad initiatives. </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, 30 Oct 2021 18:52:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Hari Shanker\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WordPress.org blog: People of WordPress: Ronald Gijsel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=11370\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/news/2021/10/people-of-wordpress-ecommerce-ronald-gijsel/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10396:\"<p>In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people&#8217;s lives for the better. This month we feature a WordPress e-commerce specialist on the difference it makes.</p>\n\n\n\n<h2>Empowered to make a change</h2>\n\n\n\n<p><strong>For WordPress contributor Ronald Gijsel, open source is a lifeline and a perfect place for people with creative minds. It led him on a transformational journey from chef to WordPress e-commerce specialist. Originally from the Netherlands, where he trained in hospitality, he was to find a restorative and energizing power within the WordPress local and global community. </strong></p>\n\n\n\n<p>Ten years ago, life took a sad turn for Ronald and his wife Nihan when their baby daughter passed away only a few days after she was born. At that time, Ronald was a restaurant owner in the UK, working hard in a challenging economic environment.&nbsp;Discovering open source was in many ways his lifeline and helped him and his wife through their considerable heartache. Through this community, a journey to understand the opportunities of the web and new career paths began.</p>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2021/10/ronaldgijsel2-1.jpg?w=632&ssl=1\" alt=\"Portrait picture of Ronald Gijsel\" class=\"wp-image-11403\" />\n\n\n\n<p>Ronald believes that working together in WordPress and other open source communities can lead to massive benefits for a large number of users. Not least, an online presence has been essential to the survival of many businesses during the Covid-19 pandemic.&nbsp;</p>\n\n\n\n<p>During recent years, he has visited open source events worldwide as a partnership manager at a WordPress e-commerce plugin company and community supporter. His enthusiasm for WordPress has steered him to being part of local support, solutions and collaboration as a co-organizer of <a href=\"https://central.wordcamp.org/\">WordCamp</a> Bristol, the <a href=\"https://www.meetup.com/Cheltenham-WordPress-Meetup/\">WordPress Cheltenham Meetup</a> and more.</p>\n\n\n\n<h2>Moving forward&nbsp;</h2>\n\n\n\n<p>When Nihan enrolled in the UK&#8217;s Open University to complete her computer science degree, Ronald found her course materials stirring his own interest. He started to follow the lectures with her and even attempted some of the course work for himself &#8211; all whilst he continued to work as a chef in various local pubs.&nbsp;</p>\n\n\n\n<p>Through this, he discovered how to generate affiliate commission earnings through blogging on different platforms. “Creating websites was slowly becoming a passion. In these first few years, I enjoyed every part of the steep learning curve, from tackling the basics to more advanced coding and designs,” said Ronald.</p>\n\n\n\n<h2>The Start of a Web Career</h2>\n\n\n\n<p>Ronald reduced his hours as a chef and devoted more time to online courses learning coding, e-commerce, SEO, and online marketing. Yet when he applied for a job as a WordPress designer, he had only heard of the platform in the context of blogging. This was all to change when an online tutor on one of the training sites revealed the many functions available with WordPress. It was the start of a new career and life journey. This tutor was Topher DeRosia, who went on to create <a href=\"https://heropress.com/\">HeroPress</a>.</p>\n\n\n\n<img width=\"632\" height=\"467\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/10/with-topher.jpg?resize=632{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C467&ssl=1\" alt=\"Ronald Gijsel and Topher De Rosia at \na WordCamp\" class=\"wp-image-11398\" />Ronald with Topher at WordCamp London in 2019\n\n\n\n<p>To learn WordPress, Ronald ‘binge-watched’ webinars on various development topics and over time he became more familiar with it. Securing a job as a designer was only the beginning of his journey into the WordPress ecosystem.</p>\n\n\n\n<p>A year later in 2015, after landing the job as a WordPress designer, Ronald&#8217;s boss asked him to consider taking on the business and its clients. With his wife, Ronald decided to take on the firm and to expand their work in WordPress e-commerce and online marketing.</p>\n\n\n\n<p>As an advocate for learning new skills and practicing them, Ronald encourages others to continue to expand their knowledge through study, attending talks at Meetups and WordCamps, and using the new <a href=\"https://learn.wordpress.org/\">Learn WordPress resource</a>. </p>\n\n\n\n<p>“WordPress has evolved in so many branches that require different skills. There are hundreds of areas of expertise, roles, and jobs that complement WordPress to make it what it is.”</p>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><img width=\"528\" height=\"652\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/10/meetup3-1.jpg?resize=528{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C652&ssl=1\" alt=\"Ronald talking about WordPress and e-commerce solutions\" class=\"wp-image-11414 size-full\" /><div class=\"wp-block-media-text__content\">\n<p class=\"has-large-font-size\">“WordPress is an essential tool in my box.”<br /><em><strong>Ronald Gijsel</strong></em></p>\n</div></div>\n\n\n\n<p>Ronald believes WordPress thrives on diversity, with many <a href=\"https://make.wordpress.org/\">contributor opportunities</a> and jobs in the ecosystem that require a wide range of skills.&nbsp;</p>\n\n\n\n<p>“A big part of this is that each person’s personal background complements their skill sets. Who you are and what you do is influenced by what you have done and learned. We need to cherish this. These things also add to our culture, language, experience, and knowledge,” he said.<br /></p>\n\n\n\n<h2>A journey into WordPress e-commerce</h2>\n\n\n\n<img src=\"https://i2.wp.com/wordpress.org/news/files/2021/10/meetup2.jpg?resize=632{fc429c442f8ff412469990b79e6cd106ea7a0d1f0cac73dd84bdfa5491e20baf}2C442&ssl=1\" alt=\"Ronald presenting on WordPress and e-commerce at an event\" class=\"wp-image-11400\" width=\"632\" height=\"442\" />Ronald shares his enthusiasm for building WordPress and e-commerce websites at WordCamp London in 2019\n\n\n\n<p>Ronald initially extended his interest in the&nbsp;WordPress ecosystem through representing a plugin company at WordCamps in the UK. He became hooked and went on to attend events in many different countries.&nbsp;</p>\n\n\n\n<p>In 2018, he realized he could do more with his connections and create meaningful partnerships. Within a few weeks, he had crafted his dream job and sent a proposal to the CEO of a WordPress e-commerce firm.</p>\n\n\n\n<p>But pitching to strangers wasn’t an easy task, as he did not know if they would understand his vision. </p>\n\n\n\n<p>Ronald said: “The doubts went through my head for months. ‘Do I give up my business and work for the benefit of another company? What if I don’t get on? What do I do with my customers?’ But I decided to take the leap.&#8221; His pitch proved successful, joining his current firm in 2019.<br /><br />In the firm’s CEO, Ronald found a mentor, supporter, and a friend. He explained: “Nando Pappalardo never tells me what to do, but instead, he asks questions to make me realize what is achievable, or could be even better. He simply makes suggestions that I read something and reach my own conclusions.”</p>\n\n\n\n<h2>Looking back at the journey&nbsp;</h2>\n\n\n\n<p>Taking risks or changing directions in mid-career often involves a giant leap. In Ronald&#8217;s view, through WordPress, you don&#8217;t need to be alone. He believes its community can offer support and help to process thinking.</p>\n\n\n\n<p>Ronald said: “I often think back to the moment my daughter passed away. She only lived for a few days. Every day, I wonder how events would have unfolded if she had survived. Maybe her memory lives on in every decision I make and the paths I decide to take.”</p>\n\n\n\n<p>From his experience, he found that&nbsp;changing a career can sometimes take a few years and have a period of transition. He said: “Only looking back do I realize that each small step slowly made a difference in my life.”</p>\n\n\n\n<blockquote><p>“It was WordPress that made the online world easier to navigate and empowered me to make a change”&nbsp;</p><cite>Ronald Gijsel</cite></blockquote>\n\n\n\n<p>He added: “Feeling welcomed into the WordPress community through Meetups and WordCamps added a human dimension and confidence that I can do ‘this’ too.”</p>\n\n\n\n<p>Ronald’s wish is that his story will offer support to others who may have experienced tragedy in their lives. “I hope that I can give you the hope and strength to try and put your energy into something else that can lead to more significant changes in your life. Try to take it as one positive decision at a time.”</p>\n\n\n\n<h2>Share the stories</h2>\n\n\n\n<p>Help us share these stories of open source contributors and continue to grow the community.&nbsp;Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series.</a>&nbsp;#ContributorStory.</p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@</a><a href=\"https://profiles.wordpress.org/webcommsat/\">webcommsat</a>), and Surendra Thakor (<a href=\"https://profiles.wordpress.org/sthakor/\">@sthakor</a>) for the interviews and writing this feature, and to Ronald Gijsel (<a href=\"https://profiles.wordpress.org/just2ronald/\">@just2ronald</a>) for sharing his story.</p>\n\n\n\n<p>Thanks to Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>), Chloé Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>), Anjana Vasan (<a href=\"https://profiles.wordpress.org/anjanavasan/\">@anjanavasan</a>), Collieth Clarke (<a href=\"https://profiles.wordpress.org/callye/\">@callye</a>), and Reyes Martinez (<a href=\"https://profiles.wordpress.org/rmartinezduque/\">@rmartinezduque</a>) for their content contributions, and Josepha Haden Chomphosy (@<a href=\"https://profiles.wordpress.org/chanthaboune/\">chanthaboune</a>), and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) for their support for the series.</p>\n\n\n\n<p><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.&nbsp;</em>#HeroPress</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, 30 Oct 2021 12:21:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:120:\"Gutenberg Times: Designing Block-based Child Themes, Plugin Machine, WooCommerce Blocks and more – Weekend Edition 191\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=19419\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://gutenbergtimes.com/designing-block-based-child-themes-plugin-machine-woocommerce-blocks-and-more-weekend-edition-191/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:19260:\"<p>Howdy, howdy!</p>\n\n\n\n<p>How was your week in the WordPress ecosystem? I hope got to enjoy the creative energy around the Gutenberg project, despite encountering the little quirks and bugs. </p>\n\n\n\n<p>In this edition, you&#8217;ll find updates from the team working on WordPress 5.9, tutorials for the new features coming in WordPress 5.9 and tools and videos for theme and plugin developers. </p>\n\n\n\n<p>Don&#8217;t forget to stop by at the <a href=\"http://patternspiration.com/\">Patternspiration site by Tammie Lister </a>who added a few more beautiful patterns. Today&#8217;s creation shows a beautiful DropCap design. </p>\n\n\n\n<p>Last week, I visited the local contemporary art museum, was fascinated by <a href=\"https://en.wikipedia.org/wiki/Robert_Colescott\">Robert Colescott</a>&#8216;s art. I am also a sucker for museums shop and spend some money on books. What brings joy into your life? Hit reply and let me know, please. </p>\n\n\n\n<p>Yours, 💕<br />Birgit</p>\n\n\n\n\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-team-updates\">WordPress Team updates</a></li><li><a href=\"https://gutenbergtimes.com/feed/#1-content-creators-and-the-block-editor\">Content Creators and the Block Editor</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-design-and-theme-building-with-gutenberg\">Design and Theme Building  with Gutenberg</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-blocks-for-gutenberg\">Building Blocks for Gutenberg</a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-word-press-events\">WordPress Events</a></li></ul></div>\n\n\n\n\n<h2 id=\"0-word-press-team-updates\">WordPress Team updates</h2>\n\n\n\n<p><strong>WordPress 5.9</strong> is coming up fast. <strong>Robert Anderson</strong>, editor technical release lead, posted an <a href=\"https://make.wordpress.org/core/2021/10/25/wordpress-5-9-editor-update-26-october/\">updated list of Must-Have features</a> of the block editor to be merged to core for the release. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>On the WPTavern, Sarah Gooding recounts a discussion among <a href=\"https://wptavern.com/gutenberg-contributors-focus-efforts-on-navigation-block-for-wordpress-5-9-navigation-editor-punted-to-future-release#comments\"><strong>Gutenberg Contributors Focus Efforts on Navigation Block for WordPress 5.9, Navigation Editor Punted to Future Release</strong></a>. We discussed it before, navigation menus are super important for site owners, as they guide the site visitor through the site. WordPress&#8217; plugins are extending in many ways the menus and front end. The first version of the navigation block will not offer any additional extension and will be used in a block theme made for Full-site-Editing. It will not be part of the main navigation for classic themes. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Gutenberg 11.8 </strong>is now available in the WordPress repository. <strong>Vicente Canales</strong> published the release and <a href=\"https://make.wordpress.org/core/2021/10/28/whats-new-in-gutenberg-11-8-0-27-october/\">Make Blog post</a>: <a href=\"https://make.wordpress.org/core/2021/10/28/whats-new-in-gutenberg-11-8-0-27-october/\"><strong>What’s new in Gutenberg 11.8</strong></a> You&#8217;ll find instructional short videos as demos for some features. My favorite new feature is the auto-generated Anchors for Headings and the opacity controls for background in the Cover block. Developers might be happy to learn that a child theme&#8217;s theme.json file can now be merged with the parent theme.json. There were 166 PRs merged in total, and the <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v11.8.0\">changelog lists 80 Enhancements</a>. 🎉</p>\n\n\n\n<p><strong>Grzegorz Ziolkowski </strong>and I  recorded the <a href=\"https://gutenbergtimes.com/podcast/changelog-54-gutenberg-11-8/\"><strong>Gutenberg Changelog episode #54</strong> </a>on Friday, published Saturday.  You might see it pop up in the WordPress Dashboard News section. </p>\n\n\n\n<p><strong>Justin Tadlock</strong> took it our for a spin and posted: <a href=\"https://wptavern.com/gutenberg-11-8-adds-dozens-of-features-including-featured-patterns-and-automatically-generated-heading-anchors\"><strong>Gutenberg 11.8 Adds Dozens of Features, Including Featured Patterns and Automatically-Generated Heading Anchors</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>The third round of Q &amp; A of the FSE Program yielded quite a few new questions. <strong>Anne McCarthy</strong> has connected with the teams and got you the <strong><a href=\"https://make.wordpress.org/core/2021/10/28/fse-program-answers-from-round-three-of-questions/\">Answers from Round Three of Questions</a>. </strong></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Now that the block editor has been in the WordPress ecosystems for a few years, it&#8217;s time for a <a href=\"https://make.wordpress.org/design/2021/10/29/redesign-of-the-gutenberg-page/\"><strong>Redesign of the Gutenberg Page</strong></a>. <strong>Beatriz Fialho</strong> has a proposal and a few first prototypes.  </p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2021&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  </p>\n\n\n\n\n<h2 id=\"1-content-creators-and-the-block-editor\">Content Creators and the Block Editor</h2>\n\n\n\n<p><strong>Jamie Marsland </strong>published a tutorial on <a href=\"https://www.pootlepress.com/2021/10/wordpress-gutenberg-full-site-editing-for-beginners/\"><strong>WordPress Gutenberg Full Site Editing for Beginners</strong></a>. He explains in short demos what new blocks come to WordPress, how Templates work and how you can control your site with Global Styles. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Courtney Robinson</strong> takes a deep dive to help you to <a href=\"https://www.godaddy.com/garage/navigating-wordpress-full-site-editing/\"><strong>Navigate</strong></a> <a href=\"https://www.godaddy.com/garage/navigating-wordpress-full-site-editing/\"><strong>WordPress Full Site Editing</strong></a> experience. She also provides links to tutorials on some components of Full-site-editing, like the Query block, and the template editor.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Joe Casabona</strong> asked in his post <a href=\"https://casabona.org/2021/10/wordpress-writing-app/\"><strong>Should You Really Write in the WordPress Editor?</strong></a> The quick answer is probably not, neither in the classic editor nor the block editor. </p>\n\n\n\n<p>Casabona uses <a href=\"https://ulysses.app/\">Ulysses</a> as his writing app (mac only, paid) and he lists a few other writing tools.  I mostly use <a href=\"https://www.google.com/docs/about/\">Google Doc,</a> as I often collaborate on articles, especially when working with WordPress teams on the Make blogs. Being able to access the Google Doc app from all my devices and continue where I left off, or to answer comments, is invaluable. </p>\n\n\n\n<p>The block editor&#8217;s power feature is that you can <strong>copy/paste from almost any tool into the block editor</strong>, and it just works. I remember the times when I had to spend another hour after finishing a long form piece to format it in the classic editor. Here the block editor shines widely. (<a href=\"https://icodeforapurpose.com/distraction-free-writing-and-wordpress/\"><em>Excerpt of a longer blog post by yours truly</em></a>)</p>\n\n\n\n<p>If you are looking for a more distraction-free writing experience based on the editor, try <a href=\"https://gutenbergtimes.com/writers-rejoice-iceberg-delivers-distraction-free-writing-for-wordpress/\">Iceberg by Rich Tabor and Jeffery Carandang. </a></p>\n\n\n\n<p><strong>Jeff Chandler</strong> also chimed in via  WPMainline: <a href=\"https://wpmainline.com/2021/10/25/i-hope-this-is-all-worth-it/\"><strong>I Hope This Is All Worth It</strong></a></p>\n\n\n\n<p><em>What is your writing process like? How does the block editor fit in there, or does it? Share in the comments or send an email <a href=\"mailto:pauli@gutenbergtimes.com\">pauli@gutenbergtimes.com</a>.</em></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Wes Theron</strong> published the workshop <a href=\"https://learn.wordpress.org/workshop/using-the-block-widget-editor/\"><strong>&#8220;Using the Block Widget Editor&#8221;</strong></a> on Learn.WordPress.org. Widgets provide a convenient means of adding content and features to a website and require no coding experience. This five-minute lesson will give an introduction to finding and including widgets on&nbsp;your website.</p>\n\n\n\n<p>The list of workshops regarding using the Block Editor has grown quite a bit. If you are looking for tutorials to share with your clients and their editors, <a href=\"https://learn.wordpress.org/workshops/?series=&topic=7&language=en_US&captions=\">follow this link the page with all videos available</a></p>\n\n\n\n<img /><a href=\"https://learn.wordpress.org/workshops/?series=&topic=7&language=en_US&captions=\">List of Workshops on Learn.WordPress.org about using the block editor</a>\n\n\n\n<h2 id=\"2-design-and-theme-building-with-gutenberg\">Design and Theme Building  with Gutenberg</h2>\n\n\n\n<p><strong>Eric Karkovack</strong>&nbsp;posted an <strong><a href=\"https://speckyboy.com/introduction-wordpress-theme-json-file/\">Introduction to the WordPress theme.json File</a></strong>. “Developers no longer have to settle for Gutenberg’s out-of-the-box defaults or deal with clunky workarounds.&nbsp;“ He wrote, and went on to walk you through the various settings and their purpose. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Two weeks ago, we had <strong>Ellen Bauer</strong>, <strong>Anders Noren</strong> and <strong>Carolina Nymark</strong> on our Live Q &amp; A and here is the post on the <a href=\"https://gutenbergtimes.com/discussion-going-from-creating-classic-themes-to-building-block-themes/\"><strong>Discussion: Going from Creating classic themes to Building block themes</strong></a> with the recording, a ton of resources and the transcript. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Justin Tadlock</strong> posted about his journey into the weeds of <a href=\"https://wptavern.com/designing-block-based-wordpress-child-themes-with-a-single-json-file\"><strong>Designing Block-Based WordPress Child Themes With a Single JSON File. </strong></a></p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“Block child themes have partially worked in the Gutenberg plugin for months. However, the feature that I was looking forward to the most was not ready until a week ago. A new patch&nbsp;<a href=\"https://github.com/WordPress/gutenberg/pull/35459\">allows a child theme to overwrite</a>&nbsp;single values of its parent’s&nbsp;<code>theme.json</code>&nbsp;file. Essentially, the two files are merged, with the child taking precedence.” </p><cite>Justin Tadlock</cite></blockquote>\n\n\n\n<p>Take a look at the post and learn why Tadlock got all excited about this feature. </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s main (trunk) branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total\" /></p>\n\n\n\n\n<h2 id=\"3-building-blocks-for-gutenberg\">Building Blocks for Gutenberg</h2>\n\n\n\n<p><strong>Bob Dunn</strong> and <strong>Noëlle Steegs</strong> hosted on their show <strong>Darren Either</strong>, and <strong>Gary Murray</strong>, WooCommerce, and <strong>Manos Psychogyiopoulos</strong> of SomeWhereWarm. for <strong><a href=\"https://dothewoo.io/a-conversation-around-woocommerce-blocks/\">An Inside/Outside Conversation Around WooCommerce Blocks </a></strong>in this #105 episode of DotheWoo Podcast. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>This week, I hosted on the Gutenberg Time Live Q &amp; A, members of the BuddyPress team, <strong>Mathieu Viet</strong>, <strong>Varun Dubey</strong> and <strong>David Cavins</strong> and discussed their journey <strong><a href=\"https://www.youtube.com/watch?v=_u4R9zIMoU8\">converting classic widgets to dynamic blocks.</a></strong> The recording is available on YouTube. The post, with resources and transcript, is in the works. </p>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://www.twitch.tv/videos/1189315667\">The @wordpress/create-blocks package now supports local templates</a></strong>. <strong>Ryan Welcher </strong>took it out for a spin on this week&#8217;s Twitch stream. On GitHub, you find the corresponding <a href=\"https://github.com/WordPress/gutenberg/issues/34547\">Issue</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/35645\">PR</a>. The <a href=\"https://developer.wordpress.org/block-editor/getting-started/create-block/\">documentation </a>was updated as well. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>For advanced Gutenberg developers, <strong>Adam Zielinski </strong>wrote about <strong><a href=\"https://make.wordpress.org/core/2021/10/29/thunks-in-gutenberg/\">Thunks in Gutenberg</a>. </strong></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://pluginmachine.com/how-it-works/\">Plugin Machine</a></strong> is the name of a new tool, <strong>Josh Pollock</strong> has been working on for a few months. It’s an Electron app for plugin developers to get a head start on the plugin development and deployment. </p>\n\n\n\n<p>He wrote: “ It can create plugins with blocks, editor sidebars, custom admin pages, remote updater, common actions and filters, custom content types, local development, tests, GitHub actions, and many other things. The UI for creating plugins, managing features, modifying generated files and downloading development versions of the plugin is nearly done. I am also making good progress on the CLI. I am almost ready to start early access.”</p>\n\n\n\n<p>Josh Pollock was one of the early JavaScript educators in WordPress community together with Grzegorz Ziolkowski, Zac Gordon and&nbsp; Brian Richards at <a href=\"https://gutenbergtimes.com/gutenberg-developers-workshop-at-wordcamp-miami-resources/\">WordCamp Miami in 2018.</a> Pollock is also the original creator of <a href=\"https://calderaforms.com\">Caldera Forms</a> plugin that was sold in 2020 to Ninja Forms and will be phased out by the end of this year. </p>\n\n\n\n<p>It’s a shame as it was one of the few form builders, who offered more features beyond creating forms. Other plugins developers could connect with it and create sophisticated processors for the submitted form data and integrating other systems. &nbsp;Josh certainly knows what plugin developer might be looking for.&nbsp;</p>\n\n\n\n<h2 id=\"4-word-press-events\">WordPress Events</h2>\n\n\n\n<p><strong>November 3rd, 2021 2pm EDT / 18:00 UTC<br /><a href=\"https://training.ithemes.com/webinar/what-is-full-site-editing-in-wordpress/\">What is Full-Site Editing in WordPress?</a></strong><br />iThemes Webinar w/ Birgit Pauli-Haack </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>November 3rd, 2021</strong><br /><strong><a href=\"https://spain.wordcamp.org/2021/\">WordCamp Spain 2021 Online</a></strong><br />Please note: all presentation will be in Spanish</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>November 4th, 2021</strong>,  <br /><a href=\"https://events.wpengine.com/event/965784e1-7d9f-4ca4-b5c7-3186a468e125/websitePage:5bbe0ca6-fd0c-4e77-b99b-de21baff9062\"><strong>WPEngine Summit 2021</strong></a> (EMEA)<br />starts at 10 am UTC / 6am EDT</p>\n\n\n\n<p>With many fantastic speakers, among them CEO Heather Brunner, Chris Weigman, Rob Stinson, Hashim Warren, Grace&nbsp;Erixon, and Brian Gardner</p>\n\n\n\n<ul><li><a href=\"https://events.wpengine.com/event/965784e1-7d9f-4ca4-b5c7-3186a468e125/websitePage:645d57e4-75eb-4769-b2c0-f201a0bfc6ce\">Schedule</a></li><li><a href=\"https://events.wpengine.com/event/965784e1-7d9f-4ca4-b5c7-3186a468e125/regProcessStep1\">Tickets</a></li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>November 16th, 2021</strong> &#8211; 11am EST / 16:00 UTC<br /><strong><a href=\"https://events.godaddy.com/events/details/godaddy-events-godaddy-pro-online-presents-testing-the-latest-features-in-gutenberg/\">Testing the latest features in Gutenberg</a></strong><br />GoDaddy Pro Online w/  Andy Fragen, Birgit Pauli-Haack, George Mamadashvili</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-drop-cap\">On the<a href=\"https://wpcalendar.io/online/\">&nbsp;<strong>Calendar for WordPress Online Events</strong>&nbsp;</a>site, you can browse a list of the upcoming WordPress Events, around the world, including WordCamps,  WooCommerce, Elementor, Divi Builder and Beaver Builder meetups.</p>\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\">Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n\n\n<p><a href=\"https://www.flickr.com/photos/13998657@N02/18526571462\" target=\"_blank\" rel=\"noreferrer noopener\"></a><a href=\"https://www.flickr.com/photos/51035555243@N01/38744499\" target=\"_blank\" rel=\"noreferrer noopener\"></a><a target=\"_blank\" rel=\"noreferrer noopener\" href=\"https://www.flickr.com/photos/22098730@N05/3431570690\">&#8220;blocks&#8221;</a>&nbsp;by&nbsp;<a href=\"https://www.flickr.com/photos/22098730@N05\" target=\"_blank\" rel=\"noreferrer noopener\">ye auld bugga</a>&nbsp;is licensed under&nbsp;<a href=\"https://creativecommons.org/licenses/by-nc/2.0/?ref=openverse&atype=rich\" target=\"_blank\" rel=\"noreferrer noopener\">CC BY-NC 2.0</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 30 Oct 2021 05: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: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:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 22 Nov 2021 06:15:43 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Mon, 22 Nov 2021 06:00:08 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:2:\"br\";}}s:5:\"build\";s:14:\"20201016172007\";}', 'no'),
  (188, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1637604944', 'no'),
  (189, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1637561744', 'no'),
  (190, '_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b', '1637604944', 'no'),
  (191, '_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b', '<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/11/episode-20-wordpressblogging/\'>WP Briefing: Episode 20: WordPress=Blogging+</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/11/state-of-the-word-2021/\'>State of the Word 2021</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://gutenbergtimes.com/creating-a-poll-block-for-gutenberg-skins-are-back-in-style-wordpress-5-9-in-2022-weekend-edition-193/\'>Gutenberg Times: Creating a Poll Block for Gutenberg, Skins Are Back in Style, WordPress 5.9 in 2022 – Weekend Edition 193</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/automattic-theme-team-releases-a-plugin-to-build-blockbase-child-themes?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=automattic-theme-team-releases-a-plugin-to-build-blockbase-child-themes\'>WPTavern: Automattic Theme Team Releases a Plugin To Build Blockbase Child Themes</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-5-9-delayed-until-january-2022?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-5-9-delayed-until-january-2022\'>WPTavern: WordPress 5.9 Delayed Until January 2022</a></li></ul></div>', 'no'),
  (194, '_site_transient_timeout_php_check_97f83d63b8a66f6e8c057d89a83d8845', '1638166886', 'no'),
  (195, '_site_transient_php_check_97f83d63b8a66f6e8c057d89a83d8845', 'a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}', 'no'); -- end of statement


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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- end of statement
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
  (1, 2, '_wp_page_template', 'default'),
  (2, 3, '_wp_page_template', 'default'),
  (5, 6, '_form', '<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),
  (6, 6, '_mail', 'a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:41:\"[_site_title] <wordpress@burdujandent.ro>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),
  (7, 6, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:41:\"[_site_title] <wordpress@burdujandent.ro>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),
  (8, 6, '_messages', 'a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}'),
  (9, 6, '_additional_settings', NULL),
  (10, 6, '_locale', 'en_US'); -- end of statement


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_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_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_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_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_ci; -- end of statement
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
  (1, 1, '2021-11-18 06:17:26', '2021-11-18 06:17:26', '<!-- 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-11-18 06:17:26', '2021-11-18 06:17:26', '', 0, 'https://burdujandent.ro/new/?p=1', 0, 'post', '', 1),
  (2, 1, '2021-11-18 06:17:26', '2021-11-18 06:17:26', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://burdujandent.ro/new/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-11-18 06:17:26', '2021-11-18 06:17:26', '', 0, 'https://burdujandent.ro/new/?page_id=2', 0, 'page', '', 0),
  (3, 1, '2021-11-18 06:17:26', '2021-11-18 06:17:26', '<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://burdujandent.ro/new.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where 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-11-18 06:17:26', '2021-11-18 06:17:26', '', 0, 'https://burdujandent.ro/new/?page_id=3', 0, 'page', '', 0),
  (4, 1, '2021-11-18 06:17:33', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2021-11-18 06:17:33', '0000-00-00 00:00:00', '', 0, 'https://burdujandent.ro/new/?p=4', 0, 'post', '', 0),
  (6, 1, '2021-11-18 06:20:35', '2021-11-18 06:20:35', '<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@burdujandent.ro>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@burdujandent.ro>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.', 'Contact form 1', '', 'publish', 'closed', 'closed', '', 'contact-form-1', '', '', '2021-11-18 06:20:35', '2021-11-18 06:20:35', '', 0, 'https://burdujandent.ro/new/?post_type=wpcf7_contact_form&p=6', 0, 'wpcf7_contact_form', '', 0); -- end of statement


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_ci; -- end of statement
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
  (1, 1, 0); -- end of statement


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_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_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_ci; -- end of statement
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
  (1, 1, 'category', '', 0, 1); -- end of statement


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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- end of statement


CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_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_ci; -- end of statement
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
  (1, 'Uncategorized', 'uncategorized', 0); -- end of statement


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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- end of statement
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) 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, 'show_welcome_panel', '1'),
  (16, 1, 'session_tokens', 'a:1:{s:64:\"59ff8da6defd59f466b636a3b2e402430898b8029765859f773d0083686b706e\";a:4:{s:10:\"expiration\";i:1637734532;s:2:\"ip\";s:12:\"5.13.113.231\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36\";s:5:\"login\";i:1637561732;}}'),
  (17, 1, 'wp_dashboard_quick_press_last_post_id', '4'),
  (18, 1, 'community-events-location', 'a:1:{s:2:\"ip\";s:10:\"5.13.113.0\";}'); -- end of statement


CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) COLLATE utf8mb4_unicode_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_ci; -- end of statement
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
  (1, 'admin', '$P$BHyhRD1JHYrK4lg79.4JMY3AsEehpo/', 'admin', 'ovidiublaga1@gmail.com', 'https://burdujandent.ro/new', '2021-11-18 06:17:26', '', 0, 'admin'); -- end of statement
