-- mysqldump-php https://github.com/ifsnop/mysqldump-php
--
-- Host: localhost	Database: aaxelr5_wp844
-- ------------------------------------------------------
-- Server version 	5.5.5-10.3.32-MariaDB-log
-- Date: Mon, 17 Jan 2022 16:55:19 +0000

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wpob_links`
--

DROP TABLE IF EXISTS `wpob_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_links`
--

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

-- Dumped table `wpob_links` with 0 row(s)
--

--
-- Table structure for table `wpob_wc_order_stats`
--

DROP TABLE IF EXISTS `wpob_wc_order_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_order_stats` (
  `order_id` bigint(20) unsigned NOT NULL,
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `num_items_sold` int(11) NOT NULL DEFAULT 0,
  `total_sales` double NOT NULL DEFAULT 0,
  `tax_total` double NOT NULL DEFAULT 0,
  `shipping_total` double NOT NULL DEFAULT 0,
  `net_total` double NOT NULL DEFAULT 0,
  `returning_customer` tinyint(1) DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `customer_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_id`),
  KEY `date_created` (`date_created`),
  KEY `customer_id` (`customer_id`),
  KEY `status` (`status`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_order_stats`
--

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

-- Dumped table `wpob_wc_order_stats` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wpob_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `order_key` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`),
  KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_downloadable_product_permissions`
--

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

-- Dumped table `wpob_woocommerce_downloadable_product_permissions` with 0 row(s)
--

--
-- Table structure for table `wpob_wc_customer_lookup`
--

DROP TABLE IF EXISTS `wpob_wc_customer_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_customer_lookup` (
  `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `username` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `first_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date_last_active` timestamp NULL DEFAULT NULL,
  `date_registered` timestamp NULL DEFAULT NULL,
  `country` char(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `postcode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `city` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `state` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`customer_id`),
  UNIQUE KEY `user_id` (`user_id`),
  KEY `email` (`email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_customer_lookup`
--

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

-- Dumped table `wpob_wc_customer_lookup` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wpob_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_payment_tokens`
--

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

-- Dumped table `wpob_woocommerce_payment_tokens` with 0 row(s)
--

--
-- Table structure for table `wpob_usermeta`
--

DROP TABLE IF EXISTS `wpob_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_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=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_usermeta`
--

LOCK TABLES `wpob_usermeta` WRITE;
/*!40000 ALTER TABLE `wpob_usermeta` DISABLE KEYS */;
INSERT INTO `wpob_usermeta` VALUES (1,1,'nickname','axelrodhahn'),(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,'wpob_capabilities','a:2:{s:13:\"administrator\";b:1;s:16:\"tutor_instructor\";b:1;}'),(13,1,'wpob_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"e2d68e9734959d93705f1823297538a1681735d57273f0fbac8150556e9b6c88\";a:4:{s:10:\"expiration\";i:1642606890;s:2:\"ip\";s:14:\"71.248.161.219\";s:2:\"ua\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:96.0) Gecko/20100101 Firefox/96.0\";s:5:\"login\";i:1642434090;}}'),(17,1,'_woocommerce_tracks_anon_id','woo:9/NFkK5mbyiHDFo2DzWbraRN'),(18,1,'bglibDashboardOrder','1'),(19,1,'jetpack_tracks_anon_id','jetpack:Ei+8p33yp9kLCBNWseT7Y5DL'),(20,1,'wpob_dashboard_quick_press_last_post_id','10'),(21,1,'wc_last_active','1642377600'),(22,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"71.248.161.0\";}'),(23,1,'_is_tutor_instructor','1642437920'),(24,1,'_tutor_instructor_status','approved'),(25,1,'_tutor_instructor_approved','1642437920'),(26,1,'_tutor_instructor_course_id','14');
/*!40000 ALTER TABLE `wpob_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_usermeta` with 26 row(s)
--

--
-- Table structure for table `wpob_wc_product_meta_lookup`
--

DROP TABLE IF EXISTS `wpob_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  `virtual` tinyint(1) DEFAULT 0,
  `downloadable` tinyint(1) DEFAULT 0,
  `min_price` decimal(19,4) DEFAULT NULL,
  `max_price` decimal(19,4) DEFAULT NULL,
  `onsale` tinyint(1) DEFAULT 0,
  `stock_quantity` double DEFAULT NULL,
  `stock_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'instock',
  `rating_count` bigint(20) DEFAULT 0,
  `average_rating` decimal(3,2) DEFAULT 0.00,
  `total_sales` bigint(20) DEFAULT 0,
  `tax_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'taxable',
  `tax_class` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`product_id`),
  KEY `virtual` (`virtual`),
  KEY `downloadable` (`downloadable`),
  KEY `stock_status` (`stock_status`),
  KEY `stock_quantity` (`stock_quantity`),
  KEY `onsale` (`onsale`),
  KEY `min_max_price` (`min_price`,`max_price`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_product_meta_lookup`
--

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

-- Dumped table `wpob_wc_product_meta_lookup` with 0 row(s)
--

--
-- Table structure for table `wpob_comments`
--

DROP TABLE IF EXISTS `wpob_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_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)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_comments`
--

LOCK TABLES `wpob_comments` WRITE;
/*!40000 ALTER TABLE `wpob_comments` DISABLE KEYS */;
INSERT INTO `wpob_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2022-01-17 15:40:57','2022-01-17 15:40:57','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','comment',0,0);
/*!40000 ALTER TABLE `wpob_comments` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_comments` with 1 row(s)
--

--
-- Table structure for table `wpob_commentmeta`
--

DROP TABLE IF EXISTS `wpob_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_commentmeta`
--

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

-- Dumped table `wpob_commentmeta` with 0 row(s)
--

--
-- Table structure for table `wpob_wc_tax_rate_classes`
--

DROP TABLE IF EXISTS `wpob_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_tax_rate_classes` (
  `tax_rate_class_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 '',
  PRIMARY KEY (`tax_rate_class_id`),
  UNIQUE KEY `slug` (`slug`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_tax_rate_classes`
--

LOCK TABLES `wpob_wc_tax_rate_classes` WRITE;
/*!40000 ALTER TABLE `wpob_wc_tax_rate_classes` DISABLE KEYS */;
INSERT INTO `wpob_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate'),(2,'Zero rate','zero-rate');
/*!40000 ALTER TABLE `wpob_wc_tax_rate_classes` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_wc_tax_rate_classes` with 2 row(s)
--

--
-- Table structure for table `wpob_wc_order_tax_lookup`
--

DROP TABLE IF EXISTS `wpob_wc_order_tax_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_order_tax_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `shipping_tax` double NOT NULL DEFAULT 0,
  `order_tax` double NOT NULL DEFAULT 0,
  `total_tax` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_id`,`tax_rate_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_order_tax_lookup`
--

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

-- Dumped table `wpob_wc_order_tax_lookup` with 0 row(s)
--

--
-- Table structure for table `wpob_wc_admin_note_actions`
--

DROP TABLE IF EXISTS `wpob_wc_admin_note_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_admin_note_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `note_id` bigint(20) unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `query` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT 0,
  `actioned_text` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nonce_action` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `nonce_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `note_id` (`note_id`)
) ENGINE=MyISAM AUTO_INCREMENT=168 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_admin_note_actions`
--

LOCK TABLES `wpob_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wpob_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wpob_wc_admin_note_actions` VALUES (135,1,'stripe_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,'',NULL,NULL),(136,2,'square_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,'',NULL,NULL),(137,3,'wcpay_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,'',NULL,NULL),(138,4,'browse_extensions','Browse extensions','https://the-collab.com/wp-admin/admin.php?page=wc-admin&page=wc-addons','unactioned',1,'',NULL,NULL),(139,5,'wayflyer_bnpl_q4_2021','Level up with funding','https://woocommerce.com/products/wayflyer/','actioned',1,'',NULL,NULL),(140,6,'wc_shipping_mobile_app_usps_q4_2021','Get WooCommerce Shipping','https://woocommerce.com/woocommerce-shipping/','actioned',1,'',NULL,NULL),(141,7,'wc_shipping_mobile_app_q4_2021','Get the WooCommerce Mobile App','https://woocommerce.com/mobile/','actioned',1,'',NULL,NULL),(142,8,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned',1,'',NULL,NULL),(143,9,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned',1,'',NULL,NULL),(144,10,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned',1,'',NULL,NULL),(145,11,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned',1,'',NULL,NULL),(146,12,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox','actioned',1,'',NULL,NULL),(147,13,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox','actioned',1,'',NULL,NULL),(148,14,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox','unactioned',1,'',NULL,NULL),(149,15,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned',1,'',NULL,NULL),(150,16,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned',1,'',NULL,NULL),(151,17,'get-started','Get started','https://woocommerce.com/products/google-listings-and-ads','actioned',1,'',NULL,NULL),(152,18,'update-wc-subscriptions-3-0-15','View latest version','https://the-collab.com/wp-admin/admin.php?page=wc-admin&page=wc-addons&section=helper','actioned',1,'',NULL,NULL),(153,19,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned',1,'',NULL,NULL),(154,22,'get-woo-commerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'',NULL,NULL),(155,23,'get-woocommerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'',NULL,NULL),(156,24,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,'',NULL,NULL),(157,25,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,'',NULL,NULL),(159,26,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(161,27,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(163,28,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(165,29,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(166,30,'share-feedback','Share feedback','https://automattic.survey.fm/store-management','unactioned',1,'',NULL,NULL),(167,31,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/feedback-on-woocommerce-navigation','actioned',1,'',NULL,NULL),(158,26,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(160,27,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(162,28,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(164,29,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(67,32,'notify-refund-returns-page','Edit page','https://the-collab.com/wp-admin/post.php?post=9&action=edit','actioned',0,'',NULL,NULL),(68,33,'connect','Connect','?page=wc-addons&section=helper','unactioned',0,'',NULL,NULL);
/*!40000 ALTER TABLE `wpob_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_wc_admin_note_actions` with 35 row(s)
--

--
-- Table structure for table `wpob_tutor_withdraws`
--

DROP TABLE IF EXISTS `wpob_tutor_withdraws`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_tutor_withdraws` (
  `withdraw_id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `amount` decimal(16,2) DEFAULT NULL,
  `method_data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`withdraw_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_tutor_withdraws`
--

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

-- Dumped table `wpob_tutor_withdraws` with 0 row(s)
--

--
-- Table structure for table `wpob_tutor_quiz_questions`
--

DROP TABLE IF EXISTS `wpob_tutor_quiz_questions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_tutor_quiz_questions` (
  `question_id` int(11) NOT NULL AUTO_INCREMENT,
  `quiz_id` int(11) DEFAULT NULL,
  `question_title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `question_description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `question_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `question_mark` decimal(9,2) DEFAULT NULL,
  `question_settings` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `question_order` int(11) DEFAULT NULL,
  PRIMARY KEY (`question_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_tutor_quiz_questions`
--

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

-- Dumped table `wpob_tutor_quiz_questions` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_shipping_zones`
--

DROP TABLE IF EXISTS `wpob_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_shipping_zones`
--

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

-- Dumped table `wpob_woocommerce_shipping_zones` with 0 row(s)
--

--
-- Table structure for table `wpob_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wpob_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `schedule` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `attempts` int(11) NOT NULL DEFAULT 0,
  `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `extended_args` varchar(8000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook` (`hook`),
  KEY `status` (`status`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id` (`claim_id`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_actionscheduler_actions`
--

LOCK TABLES `wpob_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wpob_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wpob_actionscheduler_actions` VALUES (5,'action_scheduler/migration_hook','complete','2022-01-17 15:42:32','2022-01-17 15:42:32','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1642434152;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1642434152;}',1,1,'2022-01-17 15:42:39','2022-01-17 15:42:39',0,NULL);
/*!40000 ALTER TABLE `wpob_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_actionscheduler_actions` with 1 row(s)
--

--
-- Table structure for table `wpob_wc_category_lookup`
--

DROP TABLE IF EXISTS `wpob_wc_category_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_category_lookup` (
  `category_tree_id` bigint(20) unsigned NOT NULL,
  `category_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`category_tree_id`,`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_category_lookup`
--

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

-- Dumped table `wpob_wc_category_lookup` with 1 row(s)
--

--
-- Table structure for table `wpob_wc_admin_notes`
--

DROP TABLE IF EXISTS `wpob_wc_admin_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_admin_notes` (
  `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `locale` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `title` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `content_data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_reminder` datetime DEFAULT NULL,
  `is_snoozable` tinyint(1) NOT NULL DEFAULT 0,
  `layout` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `image` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT 0,
  `icon` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'info',
  PRIMARY KEY (`note_id`)
) ENGINE=MyISAM AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_admin_notes`
--

LOCK TABLES `wpob_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wpob_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wpob_wc_admin_notes` VALUES (1,'stripe_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/stripe/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#apple-pay\">enable Apple Pay with Stripe</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(2,'square_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/woocommerce-square/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#section-14\">enable Apple Pay with Square</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(3,'wcpay_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/payments/apple-pay/\">enable Apple Pay with WooCommerce Payments</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(4,'new_in_app_marketplace_2021','info','en_US','Customize your store with extensions','Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.','{}','unactioned','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(5,'wayflyer_bnpl_q4_2021','marketing','en_US','Grow your business with funding through Wayflyer','Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store\'s performance, Wayflyer provides funding and analytical insights to invest in your business.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(6,'wc_shipping_mobile_app_usps_q4_2021','marketing','en_US','Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(7,'wc_shipping_mobile_app_q4_2021','marketing','en_US','Print and manage your shipping labels with the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(8,'ecomm-need-help-setting-up-your-store','info','en_US','Need help setting up your Store?','Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(9,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping &amp; Tax helps get your store “ready to sell” as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(10,'ecomm-unique-shopping-experience','info','en_US','For a shopping experience as unique as your customers','Product Add-Ons allow your customers to personalize products while they’re shopping on your online store. No more follow-up email requests—customers get what they want, before they’re done checking out. Learn more about this extension that comes included in your plan.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(11,'wc-admin-getting-started-in-ecommerce','info','en_US','Getting Started in eCommerce - webinar','We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(12,'your-first-product','info','en_US','Your first product','That\'s huge! You\'re well on your way to building a successful online store — now it’s time to think about how you\'ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(13,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It\'s crucial to get your store\'s checkout as smooth as possible to avoid losing sales. Let\'s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(14,'wc-admin-first-five-things-to-customize','info','en_US','The first 5 things to customize in your store','Deciding what to start with first is tricky. To help you properly prioritize, we\'ve put together this short list of the first few things you should customize in WooCommerce.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(15,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(16,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(17,'google_listings_and_ads_install','marketing','en_US','Drive traffic and sales with Google','Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(18,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site\'s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br /><br />Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br /><br />We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br /><br />If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(19,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(20,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(21,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(22,'wcpay-promo-2021-6-incentive-1','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br /><br />\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(23,'wcpay-promo-2021-6-incentive-2','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br /><br />\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(24,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There\'s a new PayPal on the block!<br /><br />Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(25,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','We\'ve developed a whole new <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension for WooCommerce</a> that combines the best features of our many PayPal extensions into just one extension.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our latest PayPal today to continue to receive support and updates.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(26,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(27,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(28,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(29,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(30,'habit-moment-survey','marketing','en_US','We\'re all ears! Share your experience so far with WooCommerce','We\'d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(31,'ecomm-wc-navigation-survey','info','en_US','We\'d like your feedback on the WooCommerce navigation','We\'re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.','{}','pending','woocommerce.com','2022-01-17 15:41:32',NULL,0,'plain','',0,'info'),(32,'wc-refund-returns-page','info','en_US','Setup a Refund and Returns Policy page to boost your store\'s credibility.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.','{}','unactioned','woocommerce-core','2022-01-17 15:41:33',NULL,0,'plain','',0,'info'),(33,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2022-01-17 15:41:33',NULL,0,'plain','',0,'info');
/*!40000 ALTER TABLE `wpob_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_wc_admin_notes` with 33 row(s)
--

--
-- Table structure for table `wpob_term_relationships`
--

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

--
-- Dumping data for table `wpob_term_relationships`
--

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

-- Dumped table `wpob_term_relationships` with 1 row(s)
--

--
-- Table structure for table `wpob_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wpob_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_api_keys`
--

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

-- Dumped table `wpob_woocommerce_api_keys` with 0 row(s)
--

--
-- Table structure for table `wpob_terms`
--

DROP TABLE IF EXISTS `wpob_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_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=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_terms`
--

LOCK TABLES `wpob_terms` WRITE;
/*!40000 ALTER TABLE `wpob_terms` DISABLE KEYS */;
INSERT INTO `wpob_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'simple','simple',0),(3,'grouped','grouped',0),(4,'variable','variable',0),(5,'external','external',0),(6,'exclude-from-search','exclude-from-search',0),(7,'exclude-from-catalog','exclude-from-catalog',0),(8,'featured','featured',0),(9,'outofstock','outofstock',0),(10,'rated-1','rated-1',0),(11,'rated-2','rated-2',0),(12,'rated-3','rated-3',0),(13,'rated-4','rated-4',0),(14,'rated-5','rated-5',0),(15,'Uncategorized','uncategorized',0);
/*!40000 ALTER TABLE `wpob_terms` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_terms` with 15 row(s)
--

--
-- Table structure for table `wpob_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wpob_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT 0,
  `tax_rate_shipping` int(1) NOT NULL DEFAULT 1,
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(2)),
  KEY `tax_rate_class` (`tax_rate_class`(10)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_tax_rates`
--

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

-- Dumped table `wpob_woocommerce_tax_rates` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wpob_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_tax_rate_locations`
--

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

-- Dumped table `wpob_woocommerce_tax_rate_locations` with 0 row(s)
--

--
-- Table structure for table `wpob_wc_download_log`
--

DROP TABLE IF EXISTS `wpob_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_download_log`
--

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

-- Dumped table `wpob_wc_download_log` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_payment_tokenmeta`
--

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

--
-- Dumping data for table `wpob_woocommerce_payment_tokenmeta`
--

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

-- Dumped table `wpob_woocommerce_payment_tokenmeta` with 0 row(s)
--

--
-- Table structure for table `wpob_term_taxonomy`
--

DROP TABLE IF EXISTS `wpob_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_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=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_term_taxonomy`
--

LOCK TABLES `wpob_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpob_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpob_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'product_type','',0,0),(3,3,'product_type','',0,0),(4,4,'product_type','',0,0),(5,5,'product_type','',0,0),(6,6,'product_visibility','',0,0),(7,7,'product_visibility','',0,0),(8,8,'product_visibility','',0,0),(9,9,'product_visibility','',0,0),(10,10,'product_visibility','',0,0),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,0),(13,13,'product_visibility','',0,0),(14,14,'product_visibility','',0,0),(15,15,'product_cat','',0,0);
/*!40000 ALTER TABLE `wpob_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_term_taxonomy` with 15 row(s)
--

--
-- Table structure for table `wpob_wc_order_product_lookup`
--

DROP TABLE IF EXISTS `wpob_wc_order_product_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_order_product_lookup` (
  `order_item_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `variation_id` bigint(20) unsigned NOT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `product_qty` int(11) NOT NULL,
  `product_net_revenue` double NOT NULL DEFAULT 0,
  `product_gross_revenue` double NOT NULL DEFAULT 0,
  `coupon_amount` double NOT NULL DEFAULT 0,
  `tax_amount` double NOT NULL DEFAULT 0,
  `shipping_amount` double NOT NULL DEFAULT 0,
  `shipping_tax_amount` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`),
  KEY `product_id` (`product_id`),
  KEY `customer_id` (`customer_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_order_product_lookup`
--

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

-- Dumped table `wpob_wc_order_product_lookup` with 0 row(s)
--

--
-- Table structure for table `wpob_wpforms_lite`
--

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

--
-- Dumping data for table `wpob_wpforms_lite`
--

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

-- Dumped table `wpob_wpforms_lite` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wpob_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_shipping_zone_locations`
--

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

-- Dumped table `wpob_woocommerce_shipping_zone_locations` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wpob_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_order_items`
--

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

-- Dumped table `wpob_woocommerce_order_items` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_log`
--

DROP TABLE IF EXISTS `wpob_woocommerce_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `context` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_log`
--

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

-- Dumped table `wpob_woocommerce_log` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wpob_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_label` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attribute_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_attribute_taxonomies`
--

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

-- Dumped table `wpob_woocommerce_attribute_taxonomies` with 0 row(s)
--

--
-- Table structure for table `wpob_wc_order_coupon_lookup`
--

DROP TABLE IF EXISTS `wpob_wc_order_coupon_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_order_coupon_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `coupon_id` bigint(20) NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `discount_amount` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_id`,`coupon_id`),
  KEY `coupon_id` (`coupon_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_order_coupon_lookup`
--

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

-- Dumped table `wpob_wc_order_coupon_lookup` with 0 row(s)
--

--
-- Table structure for table `wpob_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wpob_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_actionscheduler_claims`
--

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

-- Dumped table `wpob_actionscheduler_claims` with 0 row(s)
--

--
-- Table structure for table `wpob_wc_reserved_stock`
--

DROP TABLE IF EXISTS `wpob_wc_reserved_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_reserved_stock` (
  `order_id` bigint(20) NOT NULL,
  `product_id` bigint(20) NOT NULL,
  `stock_quantity` double NOT NULL DEFAULT 0,
  `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`order_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_reserved_stock`
--

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

-- Dumped table `wpob_wc_reserved_stock` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wpob_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`instance_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_shipping_zone_methods`
--

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

-- Dumped table `wpob_woocommerce_shipping_zone_methods` with 0 row(s)
--

--
-- Table structure for table `wpob_loginizer_logs`
--

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

--
-- Dumping data for table `wpob_loginizer_logs`
--

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

-- Dumped table `wpob_loginizer_logs` with 0 row(s)
--

--
-- Table structure for table `wpob_tutor_earnings`
--

DROP TABLE IF EXISTS `wpob_tutor_earnings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_tutor_earnings` (
  `earning_id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `course_id` int(11) DEFAULT NULL,
  `order_id` int(11) DEFAULT NULL,
  `order_status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `course_price_total` decimal(16,2) DEFAULT NULL,
  `course_price_grand_total` decimal(16,2) DEFAULT NULL,
  `instructor_amount` decimal(16,2) DEFAULT NULL,
  `instructor_rate` decimal(16,2) DEFAULT NULL,
  `admin_amount` decimal(16,2) DEFAULT NULL,
  `admin_rate` decimal(16,2) DEFAULT NULL,
  `commission_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `deduct_fees_amount` decimal(16,2) DEFAULT NULL,
  `deduct_fees_name` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `deduct_fees_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `process_by` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`earning_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_tutor_earnings`
--

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

-- Dumped table `wpob_tutor_earnings` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_order_itemmeta`
--

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

--
-- Dumping data for table `wpob_woocommerce_order_itemmeta`
--

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

-- Dumped table `wpob_woocommerce_order_itemmeta` with 0 row(s)
--

--
-- Table structure for table `wpob_woocommerce_sessions`
--

DROP TABLE IF EXISTS `wpob_woocommerce_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_id`),
  UNIQUE KEY `session_key` (`session_key`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_woocommerce_sessions`
--

LOCK TABLES `wpob_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wpob_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wpob_woocommerce_sessions` VALUES (1,'1','a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:742:\"a:27:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"CA\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"CA\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:21:\"axelrodhahn@gmail.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";}\";}',1642606899);
/*!40000 ALTER TABLE `wpob_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_woocommerce_sessions` with 1 row(s)
--

--
-- Table structure for table `wpob_options`
--

DROP TABLE IF EXISTS `wpob_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_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=MyISAM AUTO_INCREMENT=599 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_options`
--

LOCK TABLES `wpob_options` WRITE;
/*!40000 ALTER TABLE `wpob_options` DISABLE KEYS */;
INSERT INTO `wpob_options` VALUES (1,'siteurl','https://the-collab.com','yes'),(2,'home','https://the-collab.com','yes'),(3,'blogname','The Collab','yes'),(4,'blogdescription','The Collab','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','axelrodhahn@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:310:{s:29:\"courses/(.+?)/lesson/(.+?)/?$\";s:43:\"index.php?post_type=lesson&name=$matches[2]\";s:33:\"courses/(.+?)/tutor_quiz/(.+?)/?$\";s:47:\"index.php?post_type=tutor_quiz&name=$matches[2]\";s:34:\"courses/(.+?)/assignments/(.+?)/?$\";s:54:\"index.php?post_type=tutor_assignments&name=$matches[2]\";s:35:\"courses/(.+?)/zoom-meeting/(.+?)/?$\";s:55:\"index.php?post_type=tutor_zoom_meeting&name=$matches[2]\";s:18:\"video-url/(.+?)/?$\";s:61:\"index.php?post_type=lesson&lesson_video=true&name=$matches[1]\";s:22:\"profile/(.+?)/(.+?)/?$\";s:73:\"index.php?tutor_student_username=$matches[1]&profile_sub_page=$matches[2]\";s:16:\"profile/(.+?)/?$\";s:44:\"index.php?tutor_student_username=$matches[1]\";s:26:\"courses/(.+?)/questions/?$\";s:69:\"index.php?post_type=courses&name=$matches[1]&course_subpage=questions\";s:30:\"courses/(.+?)/announcements/?$\";s:73:\"index.php?post_type=courses&name=$matches[1]&course_subpage=announcements\";s:20:\"(dashboard)/index/?$\";s:57:\"index.php?pagename=$matches[1]&tutor_dashboard_page=index\";s:26:\"(dashboard)/index/(.+?)/?$\";s:94:\"index.php?pagename=$matches[1]&tutor_dashboard_page=index&tutor_dashboard_sub_page=$matches[2]\";s:25:\"(dashboard)/my-profile/?$\";s:62:\"index.php?pagename=$matches[1]&tutor_dashboard_page=my-profile\";s:31:\"(dashboard)/my-profile/(.+?)/?$\";s:99:\"index.php?pagename=$matches[1]&tutor_dashboard_page=my-profile&tutor_dashboard_sub_page=$matches[2]\";s:31:\"(dashboard)/enrolled-courses/?$\";s:68:\"index.php?pagename=$matches[1]&tutor_dashboard_page=enrolled-courses\";s:37:\"(dashboard)/enrolled-courses/(.+?)/?$\";s:105:\"index.php?pagename=$matches[1]&tutor_dashboard_page=enrolled-courses&tutor_dashboard_sub_page=$matches[2]\";s:23:\"(dashboard)/wishlist/?$\";s:60:\"index.php?pagename=$matches[1]&tutor_dashboard_page=wishlist\";s:29:\"(dashboard)/wishlist/(.+?)/?$\";s:97:\"index.php?pagename=$matches[1]&tutor_dashboard_page=wishlist&tutor_dashboard_sub_page=$matches[2]\";s:22:\"(dashboard)/reviews/?$\";s:59:\"index.php?pagename=$matches[1]&tutor_dashboard_page=reviews\";s:28:\"(dashboard)/reviews/(.+?)/?$\";s:96:\"index.php?pagename=$matches[1]&tutor_dashboard_page=reviews&tutor_dashboard_sub_page=$matches[2]\";s:31:\"(dashboard)/my-quiz-attempts/?$\";s:68:\"index.php?pagename=$matches[1]&tutor_dashboard_page=my-quiz-attempts\";s:37:\"(dashboard)/my-quiz-attempts/(.+?)/?$\";s:105:\"index.php?pagename=$matches[1]&tutor_dashboard_page=my-quiz-attempts&tutor_dashboard_sub_page=$matches[2]\";s:31:\"(dashboard)/purchase_history/?$\";s:68:\"index.php?pagename=$matches[1]&tutor_dashboard_page=purchase_history\";s:37:\"(dashboard)/purchase_history/(.+?)/?$\";s:105:\"index.php?pagename=$matches[1]&tutor_dashboard_page=purchase_history&tutor_dashboard_sub_page=$matches[2]\";s:26:\"(dashboard)/separator-1/?$\";s:63:\"index.php?pagename=$matches[1]&tutor_dashboard_page=separator-1\";s:32:\"(dashboard)/separator-1/(.+?)/?$\";s:100:\"index.php?pagename=$matches[1]&tutor_dashboard_page=separator-1&tutor_dashboard_sub_page=$matches[2]\";s:28:\"(dashboard)/create-course/?$\";s:65:\"index.php?pagename=$matches[1]&tutor_dashboard_page=create-course\";s:34:\"(dashboard)/create-course/(.+?)/?$\";s:102:\"index.php?pagename=$matches[1]&tutor_dashboard_page=create-course&tutor_dashboard_sub_page=$matches[2]\";s:25:\"(dashboard)/my-courses/?$\";s:62:\"index.php?pagename=$matches[1]&tutor_dashboard_page=my-courses\";s:31:\"(dashboard)/my-courses/(.+?)/?$\";s:99:\"index.php?pagename=$matches[1]&tutor_dashboard_page=my-courses&tutor_dashboard_sub_page=$matches[2]\";s:28:\"(dashboard)/announcements/?$\";s:65:\"index.php?pagename=$matches[1]&tutor_dashboard_page=announcements\";s:34:\"(dashboard)/announcements/(.+?)/?$\";s:102:\"index.php?pagename=$matches[1]&tutor_dashboard_page=announcements&tutor_dashboard_sub_page=$matches[2]\";s:23:\"(dashboard)/withdraw/?$\";s:60:\"index.php?pagename=$matches[1]&tutor_dashboard_page=withdraw\";s:29:\"(dashboard)/withdraw/(.+?)/?$\";s:97:\"index.php?pagename=$matches[1]&tutor_dashboard_page=withdraw&tutor_dashboard_sub_page=$matches[2]\";s:28:\"(dashboard)/quiz-attempts/?$\";s:65:\"index.php?pagename=$matches[1]&tutor_dashboard_page=quiz-attempts\";s:34:\"(dashboard)/quiz-attempts/(.+?)/?$\";s:102:\"index.php?pagename=$matches[1]&tutor_dashboard_page=quiz-attempts&tutor_dashboard_sub_page=$matches[2]\";s:30:\"(dashboard)/question-answer/?$\";s:67:\"index.php?pagename=$matches[1]&tutor_dashboard_page=question-answer\";s:36:\"(dashboard)/question-answer/(.+?)/?$\";s:104:\"index.php?pagename=$matches[1]&tutor_dashboard_page=question-answer&tutor_dashboard_sub_page=$matches[2]\";s:26:\"(dashboard)/separator-2/?$\";s:63:\"index.php?pagename=$matches[1]&tutor_dashboard_page=separator-2\";s:32:\"(dashboard)/separator-2/(.+?)/?$\";s:100:\"index.php?pagename=$matches[1]&tutor_dashboard_page=separator-2&tutor_dashboard_sub_page=$matches[2]\";s:23:\"(dashboard)/settings/?$\";s:60:\"index.php?pagename=$matches[1]&tutor_dashboard_page=settings\";s:29:\"(dashboard)/settings/(.+?)/?$\";s:97:\"index.php?pagename=$matches[1]&tutor_dashboard_page=settings&tutor_dashboard_sub_page=$matches[2]\";s:21:\"(dashboard)/logout/?$\";s:58:\"index.php?pagename=$matches[1]&tutor_dashboard_page=logout\";s:27:\"(dashboard)/logout/(.+?)/?$\";s:95:\"index.php?pagename=$matches[1]&tutor_dashboard_page=logout&tutor_dashboard_sub_page=$matches[2]\";s:32:\"(dashboard)/retrieve-password/?$\";s:69:\"index.php?pagename=$matches[1]&tutor_dashboard_page=retrieve-password\";s:38:\"(dashboard)/retrieve-password/(.+?)/?$\";s:106:\"index.php?pagename=$matches[1]&tutor_dashboard_page=retrieve-password&tutor_dashboard_sub_page=$matches[2]\";s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:10:\"courses/?$\";s:27:\"index.php?post_type=courses\";s:40:\"courses/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=courses&feed=$matches[1]\";s:35:\"courses/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=courses&feed=$matches[1]\";s:27:\"courses/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=courses&paged=$matches[1]\";s:9:\"lesson/?$\";s:37:\"index.php?post_type=tutor_assignments\";s:39:\"lesson/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?post_type=tutor_assignments&feed=$matches[1]\";s:34:\"lesson/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?post_type=tutor_assignments&feed=$matches[1]\";s:26:\"lesson/page/([0-9]{1,})/?$\";s:55:\"index.php?post_type=tutor_assignments&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s: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:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";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:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";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:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"courses/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"courses/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"courses/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"courses/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"courses/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"courses/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"courses/([^/]+)/embed/?$\";s:40:\"index.php?courses=$matches[1]&embed=true\";s:28:\"courses/([^/]+)/trackback/?$\";s:34:\"index.php?courses=$matches[1]&tb=1\";s:48:\"courses/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?courses=$matches[1]&feed=$matches[2]\";s:43:\"courses/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?courses=$matches[1]&feed=$matches[2]\";s:36:\"courses/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?courses=$matches[1]&paged=$matches[2]\";s:43:\"courses/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?courses=$matches[1]&cpage=$matches[2]\";s:33:\"courses/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?courses=$matches[1]&wc-api=$matches[3]\";s:39:\"courses/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"courses/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"courses/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?courses=$matches[1]&page=$matches[2]\";s:24:\"courses/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"courses/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"courses/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"courses/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"courses/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"courses/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:56:\"course-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?course-category=$matches[1]&feed=$matches[2]\";s:51:\"course-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?course-category=$matches[1]&feed=$matches[2]\";s:32:\"course-category/([^/]+)/embed/?$\";s:48:\"index.php?course-category=$matches[1]&embed=true\";s:44:\"course-category/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?course-category=$matches[1]&paged=$matches[2]\";s:26:\"course-category/([^/]+)/?$\";s:37:\"index.php?course-category=$matches[1]\";s:51:\"course-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?course-tag=$matches[1]&feed=$matches[2]\";s:46:\"course-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?course-tag=$matches[1]&feed=$matches[2]\";s:27:\"course-tag/([^/]+)/embed/?$\";s:43:\"index.php?course-tag=$matches[1]&embed=true\";s:39:\"course-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?course-tag=$matches[1]&paged=$matches[2]\";s:21:\"course-tag/([^/]+)/?$\";s:32:\"index.php?course-tag=$matches[1]\";s:34:\"lesson/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"lesson/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"lesson/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"lesson/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"lesson/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"lesson/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"lesson/([^/]+)/embed/?$\";s:50:\"index.php?tutor_assignments=$matches[1]&embed=true\";s:27:\"lesson/([^/]+)/trackback/?$\";s:44:\"index.php?tutor_assignments=$matches[1]&tb=1\";s:47:\"lesson/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?tutor_assignments=$matches[1]&feed=$matches[2]\";s:42:\"lesson/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?tutor_assignments=$matches[1]&feed=$matches[2]\";s:35:\"lesson/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?tutor_assignments=$matches[1]&paged=$matches[2]\";s:42:\"lesson/([^/]+)/comment-page-([0-9]{1,})/?$\";s:57:\"index.php?tutor_assignments=$matches[1]&cpage=$matches[2]\";s:32:\"lesson/([^/]+)/wc-api(/(.*))?/?$\";s:58:\"index.php?tutor_assignments=$matches[1]&wc-api=$matches[3]\";s:38:\"lesson/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:49:\"lesson/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:31:\"lesson/([^/]+)(?:/([0-9]+))?/?$\";s:56:\"index.php?tutor_assignments=$matches[1]&page=$matches[2]\";s:23:\"lesson/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"lesson/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"lesson/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"lesson/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"lesson/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"lesson/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"topics/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"topics/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"topics/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"topics/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"topics/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"topics/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"topics/([^/]+)/embed/?$\";s:54:\"index.php?post_type=topics&name=$matches[1]&embed=true\";s:27:\"topics/([^/]+)/trackback/?$\";s:48:\"index.php?post_type=topics&name=$matches[1]&tb=1\";s:35:\"topics/([^/]+)/page/?([0-9]{1,})/?$\";s:61:\"index.php?post_type=topics&name=$matches[1]&paged=$matches[2]\";s:42:\"topics/([^/]+)/comment-page-([0-9]{1,})/?$\";s:61:\"index.php?post_type=topics&name=$matches[1]&cpage=$matches[2]\";s:32:\"topics/([^/]+)/wc-api(/(.*))?/?$\";s:62:\"index.php?post_type=topics&name=$matches[1]&wc-api=$matches[3]\";s:38:\"topics/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:49:\"topics/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:31:\"topics/([^/]+)(?:/([0-9]+))?/?$\";s:60:\"index.php?post_type=topics&name=$matches[1]&page=$matches[2]\";s:23:\"topics/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"topics/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"topics/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"topics/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"topics/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"topics/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"tutor_enrolled/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"tutor_enrolled/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"tutor_enrolled/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"tutor_enrolled/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"tutor_enrolled/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"tutor_enrolled/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"tutor_enrolled/([^/]+)/embed/?$\";s:62:\"index.php?post_type=tutor_enrolled&name=$matches[1]&embed=true\";s:35:\"tutor_enrolled/([^/]+)/trackback/?$\";s:56:\"index.php?post_type=tutor_enrolled&name=$matches[1]&tb=1\";s:43:\"tutor_enrolled/([^/]+)/page/?([0-9]{1,})/?$\";s:69:\"index.php?post_type=tutor_enrolled&name=$matches[1]&paged=$matches[2]\";s:50:\"tutor_enrolled/([^/]+)/comment-page-([0-9]{1,})/?$\";s:69:\"index.php?post_type=tutor_enrolled&name=$matches[1]&cpage=$matches[2]\";s:40:\"tutor_enrolled/([^/]+)/wc-api(/(.*))?/?$\";s:70:\"index.php?post_type=tutor_enrolled&name=$matches[1]&wc-api=$matches[3]\";s:46:\"tutor_enrolled/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:57:\"tutor_enrolled/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:39:\"tutor_enrolled/([^/]+)(?:/([0-9]+))?/?$\";s:68:\"index.php?post_type=tutor_enrolled&name=$matches[1]&page=$matches[2]\";s:31:\"tutor_enrolled/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"tutor_enrolled/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"tutor_enrolled/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"tutor_enrolled/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"tutor_enrolled/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"tutor_enrolled/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";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:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";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:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";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:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";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:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";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:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";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:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";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:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";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:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";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:7:{i:0;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:1;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:2;s:77:\"certificate-customizer-for-tutor-lms/certificate-customizer-for-tutor-lms.php\";i:3;s:19:\"jetpack/jetpack.php\";i:4;s:23:\"loginizer/loginizer.php\";i:5;s:15:\"tutor/tutor.php\";i:6;s:27:\"woocommerce/woocommerce.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','twentytwentyone','yes'),(41,'stylesheet','twentytwentyone','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','49752','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','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:0:{}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:1:{s:23:\"loginizer/loginizer.php\";s:22:\"loginizer_deactivation\";}','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','1657986057','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,'wpob_user_roles','a:8:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:148:{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:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:12:\"manage_tutor\";b:1;s:23:\"manage_tutor_instructor\";b:1;s:17:\"edit_tutor_course\";b:1;s:17:\"read_tutor_course\";b:1;s:19:\"delete_tutor_course\";b:1;s:20:\"delete_tutor_courses\";b:1;s:18:\"edit_tutor_courses\";b:1;s:25:\"edit_others_tutor_courses\";b:1;s:26:\"read_private_tutor_courses\";b:1;s:17:\"edit_tutor_lesson\";b:1;s:17:\"read_tutor_lesson\";b:1;s:19:\"delete_tutor_lesson\";b:1;s:20:\"delete_tutor_lessons\";b:1;s:18:\"edit_tutor_lessons\";b:1;s:25:\"edit_others_tutor_lessons\";b:1;s:26:\"read_private_tutor_lessons\";b:1;s:21:\"publish_tutor_lessons\";b:1;s:15:\"edit_tutor_quiz\";b:1;s:15:\"read_tutor_quiz\";b:1;s:17:\"delete_tutor_quiz\";b:1;s:20:\"delete_tutor_quizzes\";b:1;s:18:\"edit_tutor_quizzes\";b:1;s:25:\"edit_others_tutor_quizzes\";b:1;s:26:\"read_private_tutor_quizzes\";b:1;s:21:\"publish_tutor_quizzes\";b:1;s:19:\"edit_tutor_question\";b:1;s:19:\"read_tutor_question\";b:1;s:21:\"delete_tutor_question\";b:1;s:22:\"delete_tutor_questions\";b:1;s:20:\"edit_tutor_questions\";b:1;s:27:\"edit_others_tutor_questions\";b:1;s:23:\"publish_tutor_questions\";b:1;s:28:\"read_private_tutor_questions\";b:1;s:21:\"publish_tutor_courses\";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;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{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:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:16:\"tutor_instructor\";a:2:{s:4:\"name\";s:16:\"Tutor Instructor\";s:12:\"capabilities\";a:35:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:12:\"upload_files\";b:1;s:23:\"manage_tutor_instructor\";b:1;s:17:\"edit_tutor_course\";b:1;s:17:\"read_tutor_course\";b:1;s:19:\"delete_tutor_course\";b:1;s:20:\"delete_tutor_courses\";b:1;s:18:\"edit_tutor_courses\";b:1;s:25:\"edit_others_tutor_courses\";b:1;s:26:\"read_private_tutor_courses\";b:1;s:17:\"edit_tutor_lesson\";b:1;s:17:\"read_tutor_lesson\";b:1;s:19:\"delete_tutor_lesson\";b:1;s:20:\"delete_tutor_lessons\";b:1;s:18:\"edit_tutor_lessons\";b:1;s:25:\"edit_others_tutor_lessons\";b:1;s:26:\"read_private_tutor_lessons\";b:1;s:21:\"publish_tutor_lessons\";b:1;s:15:\"edit_tutor_quiz\";b:1;s:15:\"read_tutor_quiz\";b:1;s:17:\"delete_tutor_quiz\";b:1;s:20:\"delete_tutor_quizzes\";b:1;s:18:\"edit_tutor_quizzes\";b:1;s:25:\"edit_others_tutor_quizzes\";b:1;s:26:\"read_private_tutor_quizzes\";b:1;s:21:\"publish_tutor_quizzes\";b:1;s:19:\"edit_tutor_question\";b:1;s:19:\"read_tutor_question\";b:1;s:21:\"delete_tutor_question\";b:1;s:22:\"delete_tutor_questions\";b:1;s:20:\"edit_tutor_questions\";b:1;s:27:\"edit_others_tutor_questions\";b:1;s:23:\"publish_tutor_questions\";b:1;s:28:\"read_private_tutor_questions\";b:1;}}}','yes'),(101,'fresh_site','0','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:4:{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\";}s:13:\"array_version\";i:3;}','yes'),(104,'cron','a:19:{i:1642438531;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1642438668;a:2:{s:17:\"jetpack_sync_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}s:22:\"jetpack_sync_full_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1642441258;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:1642441291;a:2:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1642441298;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1642441328;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1642444891;a:1:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1642455691;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1642464000;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1642477257;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:1642481120;a:1:{s:30:\"tutor_once_in_day_run_schedule\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1642520457;a:2:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1642520491;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1642520492;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1642520493;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:1642520495;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:1642520501;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1643730151;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}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:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(120,'https_detection_errors','a:0:{}','yes'),(121,'loginizer_version','1.6.8','yes'),(122,'loginizer_options','a:0:{}','yes'),(123,'loginizer_last_reset','1642434058','yes'),(124,'loginizer_whitelist','a:0:{}','yes'),(125,'loginizer_blacklist','a:0:{}','yes'),(126,'loginizer_2fa_whitelist','a:0:{}','yes'),(127,'loginizer_ins_time','1642434058','yes'),(128,'loginizer_promo_time','1642434058','yes'),(130,'_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.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.8.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.8.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.8.3\";s:7:\"version\";s:5:\"5.8.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1642438342;s:15:\"version_checked\";s:5:\"5.8.3\";s:12:\"translations\";a:0:{}}','no'),(136,'boldgrid_settings','a:2:{s:7:\"library\";a:1:{s:35:\"boldgrid-backup/boldgrid-backup.php\";s:8:\"2.13.3.0\";}s:15:\"plugins_checked\";a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:1:{s:7:\"1.14.13\";i:1642434090;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:1:{s:5:\"1.5.9\";i:1642434090;}}}','yes'),(140,'_transient_timeout__woocommerce_helper_updates','1642477290','no'),(141,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1642434090;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(169,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(175,'woocommerce_schema_version','430','yes'),(171,'current_theme_supports_woocommerce','yes','yes'),(172,'woocommerce_queue_flush_rewrite_rules','no','yes'),(292,'woocommerce_inbox_variant_assignment','9','yes'),(293,'_transient_timeout__woocommerce_upload_directory_status','1642520492','no'),(176,'woocommerce_store_address','','yes'),(177,'woocommerce_store_address_2','','yes'),(178,'woocommerce_store_city','','yes'),(179,'woocommerce_default_country','US:CA','yes'),(180,'woocommerce_store_postcode','','yes'),(181,'woocommerce_allowed_countries','all','yes'),(182,'woocommerce_all_except_countries','','yes'),(183,'woocommerce_specific_allowed_countries','','yes'),(184,'woocommerce_ship_to_countries','','yes'),(185,'woocommerce_specific_ship_to_countries','','yes'),(186,'woocommerce_default_customer_address','base','yes'),(187,'woocommerce_calc_taxes','no','yes'),(188,'woocommerce_enable_coupons','yes','yes'),(189,'woocommerce_calc_discounts_sequentially','no','no'),(385,'_site_transient_timeout_theme_roots','1642439692','no'),(386,'_site_transient_theme_roots','a:4:{s:10:\"storefront\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";}','no'),(143,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1642438342;s:7:\"checked\";a:4:{s:10:\"storefront\";s:5:\"3.9.1\";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:4:{s:10:\"storefront\";a:6:{s:5:\"theme\";s:10:\"storefront\";s:11:\"new_version\";s:5:\"3.9.1\";s:3:\"url\";s:40:\"https://wordpress.org/themes/storefront/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/storefront.3.9.1.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:5:\"5.6.0\";}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'),(383,'_transient_timeout__woocommerce_helper_subscriptions','1642438792','no'),(384,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(408,'_site_transient_boldgrid_plugins_filtered','a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:14:{s:4:\"Name\";s:12:\"Total Upkeep\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:7:\"1.14.13\";s:11:\"Description\";s:159:\"Automated backups, remote backup to Amazon S3 and Google Drive, stop website crashes before they happen and more. Total Upkeep is the backup solution you need.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:12:\"Total Upkeep\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:14:{s:4:\"Name\";s:20:\"Total Upkeep Premium\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.5.9\";s:11:\"Description\";s:46:\"Premium extension for the Total Upkeep plugin.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:20:\"Total Upkeep Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}}','no'),(144,'boldgrid_backup_id','11fcd6c5','no'),(145,'boldgrid_backup_settings','a:14:{s:8:\"schedule\";a:10:{s:10:\"dow_sunday\";i:0;s:10:\"dow_monday\";i:0;s:11:\"dow_tuesday\";i:0;s:13:\"dow_wednesday\";i:0;s:12:\"dow_thursday\";i:0;s:10:\"dow_friday\";i:0;s:12:\"dow_saturday\";i:0;s:5:\"tod_h\";i:4;s:5:\"tod_m\";i:49;s:5:\"tod_a\";s:2:\"AM\";}s:15:\"retention_count\";i:5;s:18:\"notification_email\";s:21:\"axelrodhahn@gmail.com\";s:13:\"notifications\";a:3:{s:6:\"backup\";i:1;s:7:\"restore\";i:1;s:10:\"site_check\";b:1;}s:11:\"auto_backup\";i:1;s:13:\"auto_rollback\";i:1;s:6:\"remote\";a:1:{s:5:\"local\";a:1:{s:7:\"enabled\";b:1;}}s:14:\"exclude_tables\";a:0:{}s:24:\"folder_exclusion_include\";s:18:\"WPCORE,/wp-content\";s:24:\"folder_exclusion_exclude\";s:17:\".git,node_modules\";s:10:\"site_check\";a:4:{s:7:\"enabled\";b:1;s:6:\"logger\";b:1;s:13:\"auto_recovery\";b:0;s:8:\"interval\";i:15;}s:10:\"encrypt_db\";b:0;s:11:\"auto_update\";a:3:{s:4:\"days\";i:0;s:7:\"plugins\";a:1:{s:7:\"default\";s:1:\"0\";}s:6:\"themes\";a:1:{s:7:\"default\";s:1:\"0\";}}s:16:\"backup_directory\";s:29:\"/home/aaxelr5/boldgrid_backup\";}','no'),(146,'_transient_timeout_boldgrid_backup_system_zip_test','1642520491','no'),(147,'_transient_boldgrid_backup_system_zip_test','1','no'),(148,'_transient_timeout_boldgrid_backup_is_functional','1642520493','no'),(149,'_transient_boldgrid_backup_is_functional','1','no'),(150,'jetpack_sync_settings_disable','0','yes'),(151,'jetpack_connection_active_plugins','a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}','yes'),(152,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"UcT5GSw7jKzTBmQsbyy6D0LBb1f8IdcE\";}','yes'),(153,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(154,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(155,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(156,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(157,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(158,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(159,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(160,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(161,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(162,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(163,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(164,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(165,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(166,'action_scheduler_hybrid_store_demarkation','4','yes'),(167,'schema-ActionScheduler_StoreSchema','5.0.1642434091','yes'),(168,'schema-ActionScheduler_LoggerSchema','3.0.1642434091','yes'),(409,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1642438345;s:8:\"response\";a:2:{s:19:\"weforms/weforms.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/weforms\";s:4:\"slug\";s:7:\"weforms\";s:6:\"plugin\";s:19:\"weforms/weforms.php\";s:11:\"new_version\";s:6:\"1.6.11\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/weforms/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/weforms.1.6.11.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/weforms/assets/icon-256x256.png?rev=1978687\";s:2:\"1x\";s:60:\"https://ps.w.org/weforms/assets/icon-128x128.png?rev=1978687\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/weforms/assets/banner-1544x500.png?rev=2243402\";s:2:\"1x\";s:62:\"https://ps.w.org/weforms/assets/banner-772x250.png?rev=2243402\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"5.7.5\";s:12:\"requires_php\";s:6:\"5.6.20\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"6.1.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2366418\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2366418\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:5:\"5.8.3\";s:12:\"requires_php\";s:3:\"7.0\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{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:77:\"certificate-customizer-for-tutor-lms/certificate-customizer-for-tutor-lms.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:50:\"w.org/plugins/certificate-customizer-for-tutor-lms\";s:4:\"slug\";s:36:\"certificate-customizer-for-tutor-lms\";s:6:\"plugin\";s:77:\"certificate-customizer-for-tutor-lms/certificate-customizer-for-tutor-lms.php\";s:11:\"new_version\";s:5:\"1.0.1\";s:3:\"url\";s:67:\"https://wordpress.org/plugins/certificate-customizer-for-tutor-lms/\";s:7:\"package\";s:85:\"https://downloads.wordpress.org/plugin/certificate-customizer-for-tutor-lms.1.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:89:\"https://ps.w.org/certificate-customizer-for-tutor-lms/assets/icon-256X256.jpg?rev=2106001\";s:2:\"1x\";s:89:\"https://ps.w.org/certificate-customizer-for-tutor-lms/assets/icon-128x128.jpg?rev=2106001\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:92:\"https://ps.w.org/certificate-customizer-for-tutor-lms/assets/banner-1544x500.jpg?rev=2106001\";s:2:\"1x\";s:91:\"https://ps.w.org/certificate-customizer-for-tutor-lms/assets/banner-772x250.jpg?rev=2106001\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.5\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:4:\"10.5\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/jetpack.10.5.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/jetpack/assets/icon-256x256.png?rev=2638128\";s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2638128\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2638128\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:23:\"loginizer/loginizer.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/loginizer\";s:4:\"slug\";s:9:\"loginizer\";s:6:\"plugin\";s:23:\"loginizer/loginizer.php\";s:11:\"new_version\";s:5:\"1.6.8\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/loginizer/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/loginizer.1.6.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/loginizer/assets/icon-256x256.png?rev=1381093\";s:2:\"1x\";s:62:\"https://ps.w.org/loginizer/assets/icon-128x128.png?rev=1381093\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/loginizer/assets/banner-1544x500.jpg?rev=1517954\";s:2:\"1x\";s:64:\"https://ps.w.org/loginizer/assets/banner-772x250.jpg?rev=1517954\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";}s:34:\"rollback-update-failure/plugin.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/rollback-update-failure\";s:4:\"slug\";s:23:\"rollback-update-failure\";s:6:\"plugin\";s:34:\"rollback-update-failure/plugin.php\";s:11:\"new_version\";s:5:\"1.3.0\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/rollback-update-failure/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/rollback-update-failure.1.3.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:68:\"https://ps.w.org/rollback-update-failure/assets/icon.svg?rev=2545812\";s:3:\"svg\";s:68:\"https://ps.w.org/rollback-update-failure/assets/icon.svg?rev=2545812\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:35:\"boldgrid-backup/boldgrid-backup.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/boldgrid-backup\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:6:\"plugin\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:11:\"new_version\";s:7:\"1.14.13\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/boldgrid-backup/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.14.13.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-256x256.png?rev=1880952\";s:2:\"1x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-128x128.png?rev=1880952\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/boldgrid-backup/assets/banner-1544x500.png?rev=1880952\";s:2:\"1x\";s:70:\"https://ps.w.org/boldgrid-backup/assets/banner-772x250.png?rev=1880952\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}s:15:\"tutor/tutor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:19:\"w.org/plugins/tutor\";s:4:\"slug\";s:5:\"tutor\";s:6:\"plugin\";s:15:\"tutor/tutor.php\";s:11:\"new_version\";s:6:\"1.9.13\";s:3:\"url\";s:36:\"https://wordpress.org/plugins/tutor/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/tutor.1.9.13.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:58:\"https://ps.w.org/tutor/assets/icon-256X256.jpg?rev=2386220\";s:2:\"1x\";s:58:\"https://ps.w.org/tutor/assets/icon-128x128.jpg?rev=2386220\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/tutor/assets/banner-1544x500.jpg?rev=2386220\";s:2:\"1x\";s:60:\"https://ps.w.org/tutor/assets/banner-772x250.jpg?rev=2386220\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.5\";}}s:7:\"checked\";a:11:{s:19:\"akismet/akismet.php\";s:5:\"4.2.1\";s:77:\"certificate-customizer-for-tutor-lms/certificate-customizer-for-tutor-lms.php\";s:5:\"1.0.1\";s:9:\"hello.php\";s:5:\"1.7.2\";s:19:\"jetpack/jetpack.php\";s:4:\"10.5\";s:23:\"loginizer/loginizer.php\";s:5:\"1.6.8\";s:34:\"rollback-update-failure/plugin.php\";s:5:\"1.3.0\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:7:\"1.14.13\";s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";s:5:\"1.5.9\";s:15:\"tutor/tutor.php\";s:6:\"1.9.13\";s:19:\"weforms/weforms.php\";s:5:\"1.6.9\";s:27:\"woocommerce/woocommerce.php\";s:10:\"5.8.0-rc.1\";}}','no'),(190,'woocommerce_currency','USD','yes'),(191,'woocommerce_currency_pos','left','yes'),(192,'woocommerce_price_thousand_sep',',','yes'),(193,'woocommerce_price_decimal_sep','.','yes'),(194,'woocommerce_price_num_decimals','2','yes'),(195,'woocommerce_shop_page_id','5','yes'),(196,'woocommerce_cart_redirect_after_add','no','yes'),(197,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(198,'woocommerce_placeholder_image','4','yes'),(199,'woocommerce_weight_unit','kg','yes'),(200,'woocommerce_dimension_unit','cm','yes'),(201,'woocommerce_enable_reviews','yes','yes'),(202,'woocommerce_review_rating_verification_label','yes','no'),(203,'woocommerce_review_rating_verification_required','no','no'),(204,'woocommerce_enable_review_rating','yes','yes'),(205,'woocommerce_review_rating_required','yes','no'),(206,'woocommerce_manage_stock','yes','yes'),(207,'woocommerce_hold_stock_minutes','60','no'),(208,'woocommerce_notify_low_stock','yes','no'),(209,'woocommerce_notify_no_stock','yes','no'),(210,'woocommerce_stock_email_recipient','axelrodhahn@gmail.com','no'),(211,'woocommerce_notify_low_stock_amount','2','no'),(212,'woocommerce_notify_no_stock_amount','0','yes'),(213,'woocommerce_hide_out_of_stock_items','no','yes'),(214,'woocommerce_stock_format','','yes'),(215,'woocommerce_file_download_method','force','no'),(216,'woocommerce_downloads_redirect_fallback_allowed','no','no'),(217,'woocommerce_downloads_require_login','no','no'),(218,'woocommerce_downloads_grant_access_after_payment','yes','no'),(219,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(220,'woocommerce_prices_include_tax','no','yes'),(221,'woocommerce_tax_based_on','shipping','yes'),(222,'woocommerce_shipping_tax_class','inherit','yes'),(223,'woocommerce_tax_round_at_subtotal','no','yes'),(224,'woocommerce_tax_classes','','yes'),(225,'woocommerce_tax_display_shop','excl','yes'),(226,'woocommerce_tax_display_cart','excl','yes'),(227,'woocommerce_price_display_suffix','','yes'),(228,'woocommerce_tax_total_display','itemized','no'),(229,'woocommerce_enable_shipping_calc','yes','no'),(230,'woocommerce_shipping_cost_requires_address','no','yes'),(231,'woocommerce_ship_to_destination','billing','no'),(232,'woocommerce_shipping_debug_mode','no','yes'),(233,'woocommerce_enable_guest_checkout','yes','no'),(234,'woocommerce_enable_checkout_login_reminder','no','no'),(235,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(236,'woocommerce_enable_myaccount_registration','no','no'),(237,'woocommerce_registration_generate_username','yes','no'),(238,'woocommerce_registration_generate_password','yes','no'),(239,'woocommerce_erasure_request_removes_order_data','no','no'),(240,'woocommerce_erasure_request_removes_download_data','no','no'),(241,'woocommerce_allow_bulk_remove_personal_data','no','no'),(242,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(243,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(244,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(245,'woocommerce_trash_pending_orders','','no'),(246,'woocommerce_trash_failed_orders','','no'),(247,'woocommerce_trash_cancelled_orders','','no'),(248,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(249,'woocommerce_email_from_name','The Collab','no'),(250,'woocommerce_email_from_address','axelrodhahn@gmail.com','no'),(251,'woocommerce_email_header_image','','no'),(252,'woocommerce_email_footer_text','{site_title} &mdash; Built with {WooCommerce}','no'),(253,'woocommerce_email_base_color','#96588a','no'),(254,'woocommerce_email_background_color','#f7f7f7','no'),(255,'woocommerce_email_body_background_color','#ffffff','no'),(256,'woocommerce_email_text_color','#3c3c3c','no'),(257,'woocommerce_merchant_email_notifications','no','no'),(258,'woocommerce_cart_page_id','6','no'),(259,'woocommerce_checkout_page_id','7','no'),(260,'woocommerce_myaccount_page_id','8','no'),(261,'woocommerce_terms_page_id','','no'),(262,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(263,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(264,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(265,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(266,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(267,'woocommerce_myaccount_orders_endpoint','orders','yes'),(268,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(269,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(270,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(271,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(272,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(273,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(274,'woocommerce_logout_endpoint','customer-logout','yes'),(275,'woocommerce_api_enabled','no','yes'),(276,'woocommerce_allow_tracking','no','no'),(277,'woocommerce_show_marketplace_suggestions','yes','no'),(278,'woocommerce_analytics_enabled','yes','yes'),(279,'woocommerce_single_image_width','600','yes'),(280,'woocommerce_thumbnail_image_width','300','yes'),(281,'woocommerce_checkout_highlight_required_fields','yes','yes'),(282,'woocommerce_demo_store','no','no'),(283,'product_cat_children','a:0:{}','yes'),(284,'default_product_cat','15','yes'),(313,'do_activate','0','yes'),(286,'woocommerce_refund_returns_page_id','9','yes'),(289,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:21:\"axelrodhahn@gmail.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:21:\"axelrodhahn@gmail.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','yes'),(290,'woocommerce_version','5.8.0','yes'),(291,'woocommerce_db_version','5.8.0','yes'),(294,'_transient__woocommerce_upload_directory_status','protected','no'),(295,'woocommerce_onboarding_profile','a:1:{s:9:\"completed\";b:1;}','yes'),(296,'woocommerce_admin_install_timestamp','1642434092','yes'),(297,'woocommerce_task_list_hidden_lists','a:1:{i:0;s:5:\"setup\";}','yes'),(301,'wc_remote_inbox_notifications_wca_updated','','no'),(302,'wc_remote_inbox_notifications_specs','a:31:{s:27:\"stripe_applepay_holiday2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"stripe_applepay_holiday2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Boost sales this holiday season with Apple Pay!\";s:7:\"content\";s:380:\"Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/stripe/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#apple-pay\">enable Apple Pay with Stripe</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"stripe_applepay_holiday2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Accept Apple Pay\";}}s:3:\"url\";s:34:\"https://woocommerce.com/apple-pay/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-08 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-26 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}s:27:\"square_applepay_holiday2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"square_applepay_holiday2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Boost sales this holiday season with Apple Pay!\";s:7:\"content\";s:393:\"Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/woocommerce-square/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#section-14\">enable Apple Pay with Square</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"square_applepay_holiday2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Accept Apple Pay\";}}s:3:\"url\";s:34:\"https://woocommerce.com/apple-pay/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-08 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-26 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-square\";}}}}s:26:\"wcpay_applepay_holiday2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"wcpay_applepay_holiday2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Boost sales this holiday season with Apple Pay!\";s:7:\"content\";s:338:\"Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/payments/apple-pay/\">enable Apple Pay with WooCommerce Payments</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"wcpay_applepay_holiday2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Accept Apple Pay\";}}s:3:\"url\";s:34:\"https://woocommerce.com/apple-pay/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-08 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-26 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}s:27:\"new_in_app_marketplace_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"new_in_app_marketplace_2021\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:36:\"Customize your store with extensions\";s:7:\"content\";s:164:\"Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"browse_extensions\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Browse extensions\";}}s:3:\"url\";s:15:\"&page=wc-addons\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.7\";}}}s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:259:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store\'s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:42:\"https://woocommerce.com/products/wayflyer/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:45:\"https://woocommerce.com/woocommerce-shipping/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:30:\"wc_shipping_mobile_app_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc_shipping_mobile_app_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:69:\"Print and manage your shipping labels with the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc_shipping_mobile_app_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:30:\"Get the WooCommerce Mobile App\";}}s:3:\"url\";s:31:\"https://woocommerce.com/mobile/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}s:37:\"ecomm-need-help-setting-up-your-store\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"ecomm-need-help-setting-up-your-store\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:32:\"Need help setting up your Store?\";s:7:\"content\";s:350:\"Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"set-up-concierge\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Schedule free session\";}}s:3:\"url\";s:34:\"https://wordpress.com/me/concierge\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:255:\"WooCommerce Shipping & Tax helps get your store “ready to sell” as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:32:\"ecomm-unique-shopping-experience\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"ecomm-unique-shopping-experience\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"For a shopping experience as unique as your customers\";s:7:\"content\";s:274:\"Product Add-Ons allow your customers to personalize products while they’re shopping on your online store. No more follow-up email requests—customers get what they want, before they’re done checking out. Learn more about this extension that comes included in your plan.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"learn-more-ecomm-unique-shopping-experience\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:71:\"https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:37:\"wc-admin-getting-started-in-ecommerce\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-getting-started-in-ecommerce\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Getting Started in eCommerce - webinar\";s:7:\"content\";s:174:\"We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"watch-the-webinar\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Watch the webinar\";}}s:3:\"url\";s:28:\"https://youtu.be/V_2XtCOyZ7o\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:12:\"setup_client\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";b:1;}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:4:\"none\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:10:\"up-to-2500\";}}}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:461:\"That\'s huge! You\'re well on your way to building a successful online store — now it’s time to think about how you\'ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:171:\"It\'s crucial to get your store\'s checkout as smooth as possible to avoid losing sales. Let\'s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:78:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:39:\"wc-admin-first-five-things-to-customize\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-admin-first-five-things-to-customize\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"The first 5 things to customize in your store\";s:7:\"content\";s:173:\"Deciding what to start with first is tricky. To help you properly prioritize, we\'ve put together this short list of the first few things you should customize in WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:2;}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:5:\"value\";s:9:\"NOT EMPTY\";s:7:\"default\";s:9:\"NOT EMPTY\";s:9:\"operation\";s:2:\"!=\";}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:56:\"https://woocommerce.com/products/google-listings-and-ads\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:736:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site\'s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":7:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":7:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:5:\"rules\";a:0:{}}s:30:\"wcpay-promo-2021-6-incentive-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wcpay-promo-2021-6-incentive-1\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:82:\"Simplify the payments process for you and your customers with WooCommerce Payments\";s:7:\"content\";s:702:\"With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br/><br/>\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"get-woo-commerce-payments\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Payments\";}}s:3:\"url\";s:57:\"admin.php?page=wc-admin&action=setup-woocommerce-payments\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:12:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:6:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"1\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"3\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"5\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"7\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"9\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:2:\"11\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:4:{i:0;s:17:\"crowdsignal-forms\";i:1;s:11:\"layout-grid\";i:2;s:17:\"full-site-editing\";i:3;s:13:\"page-optimize\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"woocommerce_allow_tracking\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:2:\">=\";s:4:\"days\";i:31;}i:5;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.0\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:10:\"db_version\";s:5:\"value\";s:5:\"45805\";s:7:\"default\";i:0;s:9:\"operation\";s:2:\">=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:30:\"wcpay-promo-2021-6-incentive-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wcpay-promo-2021-6-incentive-2\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:82:\"Simplify the payments process for you and your customers with WooCommerce Payments\";s:7:\"content\";s:702:\"With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br/><br/>\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"get-woocommerce-payments\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Payments\";}}s:3:\"url\";s:57:\"admin.php?page=wc-admin&action=setup-woocommerce-payments\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:12:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:6:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"2\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"4\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"6\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"8\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:2:\"10\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:2:\"12\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:4:{i:0;s:17:\"crowdsignal-forms\";i:1;s:11:\"layout-grid\";i:2;s:17:\"full-site-editing\";i:3;s:13:\"page-optimize\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"woocommerce_allow_tracking\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:2:\">=\";s:4:\"days\";i:31;}i:5;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.0\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:10:\"db_version\";s:5:\"value\";s:5:\"45805\";s:7:\"default\";i:0;s:9:\"operation\";s:2:\">=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:440:\"Heads up! There\'s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:513:\"We\'ve developed a whole new <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension for WooCommerce</a> that combines the best features of our many PayPal extensions into just one extension.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br/><br/>Start using our latest PayPal today to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:38:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"We\'re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:134:\"We\'d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:26:\"ecomm-wc-navigation-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"ecomm-wc-navigation-survey\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"We\'d like your feedback on the WooCommerce navigation\";s:7:\"content\";s:132:\"We\'re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:63:\"https://automattic.survey.fm/feedback-on-woocommerce-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:90;}}}}','no'),(300,'woocommerce_admin_version','2.7.1-rc.1','yes'),(303,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:0;}','no'),(304,'_transient_timeout_as-post-store-dependencies-met','1642520492','no'),(305,'_transient_as-post-store-dependencies-met','yes','no'),(310,'_transient_jetpack_autoloader_plugin_paths','a:2:{i:0;s:25:\"{{WP_PLUGIN_DIR}}/jetpack\";i:1;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','yes'),(307,'boldgrid_backup_environment','a:3:{s:8:\"hostname\";s:28:\"ecbiz238.inmotionhosting.com\";s:10:\"phpversion\";s:6:\"7.3.33\";s:9:\"wpversion\";s:5:\"5.8.3\";}','yes'),(308,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(309,'jetpack_options','a:12:{s:7:\"version\";s:15:\"10.5:1642438368\";s:11:\"old_version\";s:15:\"10.2:1642434093\";s:14:\"last_heartbeat\";i:1642434101;s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:201845507;s:6:\"public\";i:1;s:16:\"first_admin_view\";b:1;s:30:\"recommendations_banner_enabled\";b:1;s:28:\"has_seen_wc_connection_modal\";b:1;s:20:\"recommendations_step\";s:7:\"summary\";s:20:\"recommendations_data\";a:3:{s:18:\"site-type-business\";b:1;s:23:\"selectedRecommendations\";a:0:{}s:22:\"skippedRecommendations\";a:2:{i:0;s:13:\"related-posts\";i:1;s:13:\"creative-mail\";}}}','yes'),(311,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:8:\"approved\";s:1:\"1\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(314,'jetpack_activated','2','yes'),(315,'_transient_timeout_jetpack_https_test','1642520493','no'),(316,'_transient_jetpack_https_test','1','no'),(317,'_transient_timeout_jetpack_https_test_message','1642520493','no'),(318,'_transient_jetpack_https_test_message','','no'),(319,'wc_blocks_surface_cart_checkout_probability','16','yes'),(320,'wc_blocks_db_schema_version','260','yes'),(321,'_site_transient_timeout_browser_2c988cefc3fb3222bd21882d7ebc728a','1643038893','no'),(322,'_site_transient_browser_2c988cefc3fb3222bd21882d7ebc728a','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"96.0\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:32:\"https://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(323,'_site_transient_timeout_php_check_0260183cef5829810c63d4ec9ff87fd1','1643038893','no'),(324,'_site_transient_php_check_0260183cef5829810c63d4ec9ff87fd1','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(325,'_transient_product_query-transient-version','1642434095','yes'),(356,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:5328;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4778;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2743;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2614;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2024;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1878;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1866;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1549;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1538;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1516;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1508;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1504;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1484;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1336;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1311;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1304;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1246;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1167;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1136;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1083;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:987;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:947;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:930;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:923;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:889;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:850;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:832;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:830;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:826;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:816;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:771;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:763;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:757;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:742;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:739;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:728;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:720;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:701;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:696;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:681;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:672;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:669;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:668;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:667;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:667;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:658;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:609;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:606;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:598;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:595;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:595;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:589;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:587;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:578;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:573;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:571;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:571;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:568;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:563;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:562;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:553;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:544;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:536;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:526;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:521;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:518;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:515;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:504;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:504;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:498;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:494;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:490;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:489;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:481;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:479;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:476;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:456;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:450;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:450;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:444;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:438;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:432;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:428;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:426;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:416;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:415;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:408;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:406;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:403;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:395;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:392;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:392;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:392;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:387;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:386;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:382;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:376;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:373;}s:16:\"google-analytics\";a:3:{s:4:\"name\";s:16:\"google analytics\";s:4:\"slug\";s:16:\"google-analytics\";s:5:\"count\";i:366;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:365;}}','no'),(354,'finished_updating_comment_type','1','yes'),(326,'action_scheduler_lock_async-request-runner','1642438555','yes'),(327,'woocommerce_admin_notices','a:0:{}','yes'),(328,'woocommerce_meta_box_errors','a:0:{}','yes'),(330,'_transient_timeout_jetpack_file_data_10.2','1644939699','no'),(331,'_transient_jetpack_file_data_10.2','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(332,'jetpack_available_modules','a:1:{s:4:\"10.5\";a:42:{s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(333,'_transient_timeout_wc_onboarding_product_data','1642520500','no'),(334,'_transient_wc_onboarding_product_data','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:19:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 17 Jan 2022 15:41:40 GMT\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:14:\"content-length\";s:5:\"12398\";s:12:\"x-robots-tag\";s:7:\"noindex\";s:4:\"link\";s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:29:\"access-control-expose-headers\";s:33:\"X-WP-Total, X-WP-TotalPages, Link\";s:28:\"access-control-allow-headers\";s:73:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\";s:13:\"x-wccom-cache\";s:3:\"HIT\";s:13:\"cache-control\";s:10:\"max-age=60\";s:5:\"allow\";s:3:\"GET\";s:4:\"x-rq\";s:13:\"dca5 0 4 9980\";s:16:\"content-encoding\";s:4:\"gzip\";s:3:\"age\";s:2:\"33\";s:7:\"x-cache\";s:3:\"hit\";s:4:\"vary\";s:23:\"Accept-Encoding, Origin\";s:13:\"accept-ranges\";s:5:\"bytes\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}}s:4:\"body\";s:64926:\"{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\"},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Security, performance, and marketing tools made for WooCommerce stores by the WordPress experts. Get started with basic security and speed tools for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/jetpack\\/\",\"icon\":null},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"rating\":2.1,\"reviews_count\":51,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"Securely accept payments, track cash flow, and manage recurring revenue from your dashboard \\u2014 all without setup costs or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/02\\/wcpay-icon-fv4tef.png\"},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"rating\":3.6,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"rating\":3.2,\"reviews_count\":65,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"rating\":3.4,\"reviews_count\":40,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mailchimp\\/\",\"icon\":null},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"rating\":3,\"reviews_count\":21,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Google Listings &amp; Ads\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/marketplace-card.png\",\"excerpt\":\"Reach millions of engaged shoppers across Google with free product listings and ads. Built in partnership with Google.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"rating\":3.4,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Google Ads &amp; Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"rating\":4.4,\"reviews_count\":109,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kliken\\/\",\"icon\":null},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg\",\"excerpt\":\"PayPal\'s latest, all-in-one checkout solution. Securely accept PayPal Digital Payments, credit\\/debit cards and local payment methods.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/pp_v_rgb-didybc.jpg\"},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890,\"rating\":2.7,\"reviews_count\":18,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"rating\":4.4,\"reviews_count\":78,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/07\\/Bundles_logo-0cllvb.png\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"rating\":4.9,\"reviews_count\":115,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay &amp; Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890,\"rating\":3.2,\"reviews_count\":32,\"vendor_name\":\"Codisto\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/codisto\\/\",\"icon\":null},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"rating\":3,\"reviews_count\":16,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/xero2.png\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/live-chat\\/\",\"icon\":null},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"rating\":4.7,\"reviews_count\":42,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Storefront Homepage Contact Section\",\"image\":\"\",\"excerpt\":\"Add a Contact section to the Storefront homepage.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-homepage-contact-section\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"cb12b87f8bbb0139dafbf92ca1f871ef\",\"slug\":\"storefront-homepage-contact-section\",\"id\":1468793,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"rating\":2.9,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Storefront Footer Bar\",\"image\":\"\",\"excerpt\":\"Adds a full-width widget region above the Storefront footer widget area, which can be customized with colors and a background image.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-footer-bar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"6cfd3d4f923cafa16e4801ae801751f4\",\"slug\":\"storefront-footer-bar\",\"id\":1434472,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652,\"rating\":4.5,\"reviews_count\":21,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"rating\":4.6,\"reviews_count\":121,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\"},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Automate sales tax compliance for your multi-channel e-commerce business. Accurate sales tax calculations, data aggregation, quality reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"TaxJar\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/taxjar\\/\",\"icon\":null},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate your WooCommerce store with 4000+ cloud apps and services today. Trusted by 11,000+ users.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"rating\":4.5,\"reviews_count\":35,\"vendor_name\":\"OM4\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/om4\\/\",\"icon\":null},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products &amp; let customers request &amp; manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging &amp; dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Sensei LMS Course Progress\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-course-progress.png\",\"excerpt\":\"Enable your students to easily see their progress and pick up where they left off in a course.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-course-progress\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ec0f55d8fa7c517dc1844f5c873a77da\",\"slug\":\"sensei-course-progress\",\"id\":435833,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738,\"rating\":5,\"reviews_count\":52,\"vendor_name\":\"Backcourt Development\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/backcourt-development\\/\",\"icon\":null},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643,\"rating\":3.4,\"reviews_count\":27,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Storefront Reviews\",\"image\":\"\",\"excerpt\":\"Reviews can often be the deciding factor when making a purchase online. Highlight your best reviews on your homepage, or across your site with Storefront Reviews.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-reviews\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/reviews\\/\",\"price\":\"&#36;19.00\",\"hash\":\"0c8a1d86b8eff9f1edffa923aeb3fc1f\",\"slug\":\"storefront-reviews\",\"id\":1044976,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"title\":\"WooCommerce Print Invoices &amp; Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666,\"rating\":4.3,\"reviews_count\":27,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on-time tax filing. No more tracking sales tax rates and rules.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed rich product data to Google Merchant Center for setting up free product listings, product ads, and local inventory campaigns. Full control over your field mappings, and feed content so you can maximize campaign performance and ad spend.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619,\"rating\":4.3,\"reviews_count\":36,\"vendor_name\":\"Ademti Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/ademti-software\\/\",\"icon\":null},{\"title\":\"Sensei LMS Certificates\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-certificates.png\",\"excerpt\":\"Award your students with a certificate of completion and a sense of accomplishment after finishing a course.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-certificates\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"625ee5fe1bf36b4c741ab07507ba2ffd\",\"slug\":\"sensei-certificates\",\"id\":247548,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/06\\/Composites_logo-8dctno.png\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836,\"rating\":4.9,\"reviews_count\":99,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Eway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/51456-Eway-logo-tagline-RGB-H-yellow-_-grey.png\",\"excerpt\":\"Take credit card payments securely via Eway (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/wc-paid-courses.png\",\"excerpt\":\"Sell your online courses using Sensei LMS with WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Sensei LMS Media Attachments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-media-attachments.png\",\"excerpt\":\"Provide your students with easy access to additional learning materials, from audio files to slideshows and PDFs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-media-attachments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"788647a9a1d8ef5c95371f0e69223a0f\",\"slug\":\"sensei-media-attachments\",\"id\":290551,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MyWorks Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/myworks-software\\/\",\"icon\":null},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/03\\/CSP_Logo-abcc0f.png\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253,\"rating\":4.8,\"reviews_count\":42,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Upgrade from Sequential Order Numbers with advanced features and with optional prefixes\\/suffixes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497,\"rating\":4,\"reviews_count\":19,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174,\"rating\":4.4,\"reviews_count\":138,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout &amp; pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Klarna Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Payments_Pink.png\",\"excerpt\":\"With Klarna Payments\\u00a0you can choose the payment that you want, Pay Now, Pay Later or Slice It. No credit card numbers, no passwords, no worries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnapayments\\/\",\"price\":\"&#36;0.00\",\"hash\":\"a19c689325bc8ea63c620765dd54b33a\",\"slug\":\"klarna-payments-for-woocommerce\",\"id\":2754217,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"Accept payment with First Data using the Payeezy Gateway, Payeezy, or legacy Global Gateway payment gateways.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"HubSpot for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/04\\/hubspotlogo-web-color-pxebeq.png\",\"excerpt\":\"Connect your WooCommerce store to HubSpot. Sync, automate &amp; analyze data with HubSpot WooCommerce Integration\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/hubspot-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e50acec8-3a6c-454c-8562-2da4898fa6c1\",\"slug\":\"hubspot-for-woocommerce\",\"id\":5785079,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MakeWebBetter\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/makewebbetter\\/\",\"icon\":null}]}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:64926:\"{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\"},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Security, performance, and marketing tools made for WooCommerce stores by the WordPress experts. Get started with basic security and speed tools for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/jetpack\\/\",\"icon\":null},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"rating\":2.1,\"reviews_count\":51,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"Securely accept payments, track cash flow, and manage recurring revenue from your dashboard \\u2014 all without setup costs or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/02\\/wcpay-icon-fv4tef.png\"},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"rating\":3.6,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"rating\":3.2,\"reviews_count\":65,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"rating\":3.4,\"reviews_count\":40,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mailchimp\\/\",\"icon\":null},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"rating\":3,\"reviews_count\":21,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Google Listings &amp; Ads\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/marketplace-card.png\",\"excerpt\":\"Reach millions of engaged shoppers across Google with free product listings and ads. Built in partnership with Google.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"rating\":3.4,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Google Ads &amp; Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"rating\":4.4,\"reviews_count\":109,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kliken\\/\",\"icon\":null},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg\",\"excerpt\":\"PayPal\'s latest, all-in-one checkout solution. Securely accept PayPal Digital Payments, credit\\/debit cards and local payment methods.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/pp_v_rgb-didybc.jpg\"},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890,\"rating\":2.7,\"reviews_count\":18,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"rating\":4.4,\"reviews_count\":78,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/07\\/Bundles_logo-0cllvb.png\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"rating\":4.9,\"reviews_count\":115,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay &amp; Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890,\"rating\":3.2,\"reviews_count\":32,\"vendor_name\":\"Codisto\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/codisto\\/\",\"icon\":null},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"rating\":3,\"reviews_count\":16,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/xero2.png\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/live-chat\\/\",\"icon\":null},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"rating\":4.7,\"reviews_count\":42,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Storefront Homepage Contact Section\",\"image\":\"\",\"excerpt\":\"Add a Contact section to the Storefront homepage.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-homepage-contact-section\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"cb12b87f8bbb0139dafbf92ca1f871ef\",\"slug\":\"storefront-homepage-contact-section\",\"id\":1468793,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"rating\":2.9,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Storefront Footer Bar\",\"image\":\"\",\"excerpt\":\"Adds a full-width widget region above the Storefront footer widget area, which can be customized with colors and a background image.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-footer-bar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"6cfd3d4f923cafa16e4801ae801751f4\",\"slug\":\"storefront-footer-bar\",\"id\":1434472,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652,\"rating\":4.5,\"reviews_count\":21,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"rating\":4.6,\"reviews_count\":121,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\"},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Automate sales tax compliance for your multi-channel e-commerce business. Accurate sales tax calculations, data aggregation, quality reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"TaxJar\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/taxjar\\/\",\"icon\":null},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate your WooCommerce store with 4000+ cloud apps and services today. Trusted by 11,000+ users.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"rating\":4.5,\"reviews_count\":35,\"vendor_name\":\"OM4\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/om4\\/\",\"icon\":null},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products &amp; let customers request &amp; manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging &amp; dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Sensei LMS Course Progress\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-course-progress.png\",\"excerpt\":\"Enable your students to easily see their progress and pick up where they left off in a course.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-course-progress\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ec0f55d8fa7c517dc1844f5c873a77da\",\"slug\":\"sensei-course-progress\",\"id\":435833,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738,\"rating\":5,\"reviews_count\":52,\"vendor_name\":\"Backcourt Development\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/backcourt-development\\/\",\"icon\":null},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643,\"rating\":3.4,\"reviews_count\":27,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Storefront Reviews\",\"image\":\"\",\"excerpt\":\"Reviews can often be the deciding factor when making a purchase online. Highlight your best reviews on your homepage, or across your site with Storefront Reviews.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-reviews\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/reviews\\/\",\"price\":\"&#36;19.00\",\"hash\":\"0c8a1d86b8eff9f1edffa923aeb3fc1f\",\"slug\":\"storefront-reviews\",\"id\":1044976,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"title\":\"WooCommerce Print Invoices &amp; Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666,\"rating\":4.3,\"reviews_count\":27,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on-time tax filing. No more tracking sales tax rates and rules.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed rich product data to Google Merchant Center for setting up free product listings, product ads, and local inventory campaigns. Full control over your field mappings, and feed content so you can maximize campaign performance and ad spend.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619,\"rating\":4.3,\"reviews_count\":36,\"vendor_name\":\"Ademti Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/ademti-software\\/\",\"icon\":null},{\"title\":\"Sensei LMS Certificates\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-certificates.png\",\"excerpt\":\"Award your students with a certificate of completion and a sense of accomplishment after finishing a course.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-certificates\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"625ee5fe1bf36b4c741ab07507ba2ffd\",\"slug\":\"sensei-certificates\",\"id\":247548,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/06\\/Composites_logo-8dctno.png\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836,\"rating\":4.9,\"reviews_count\":99,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Eway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/51456-Eway-logo-tagline-RGB-H-yellow-_-grey.png\",\"excerpt\":\"Take credit card payments securely via Eway (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/wc-paid-courses.png\",\"excerpt\":\"Sell your online courses using Sensei LMS with WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Sensei LMS Media Attachments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-media-attachments.png\",\"excerpt\":\"Provide your students with easy access to additional learning materials, from audio files to slideshows and PDFs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-media-attachments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"788647a9a1d8ef5c95371f0e69223a0f\",\"slug\":\"sensei-media-attachments\",\"id\":290551,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MyWorks Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/myworks-software\\/\",\"icon\":null},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/03\\/CSP_Logo-abcc0f.png\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253,\"rating\":4.8,\"reviews_count\":42,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Upgrade from Sequential Order Numbers with advanced features and with optional prefixes\\/suffixes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497,\"rating\":4,\"reviews_count\":19,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174,\"rating\":4.4,\"reviews_count\":138,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout &amp; pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Klarna Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Payments_Pink.png\",\"excerpt\":\"With Klarna Payments\\u00a0you can choose the payment that you want, Pay Now, Pay Later or Slice It. No credit card numbers, no passwords, no worries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnapayments\\/\",\"price\":\"&#36;0.00\",\"hash\":\"a19c689325bc8ea63c620765dd54b33a\",\"slug\":\"klarna-payments-for-woocommerce\",\"id\":2754217,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"Accept payment with First Data using the Payeezy Gateway, Payeezy, or legacy Global Gateway payment gateways.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"HubSpot for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/04\\/hubspotlogo-web-color-pxebeq.png\",\"excerpt\":\"Connect your WooCommerce store to HubSpot. Sync, automate &amp; analyze data with HubSpot WooCommerce Integration\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/hubspot-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e50acec8-3a6c-454c-8562-2da4898fa6c1\",\"slug\":\"hubspot-for-woocommerce\",\"id\":5785079,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MakeWebBetter\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/makewebbetter\\/\",\"icon\":null}]}\";s:3:\"raw\";s:65606:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Mon, 17 Jan 2022 15:41:40 GMT\r\nContent-Type: application/json; charset=UTF-8\r\nContent-Length: 12398\r\nConnection: close\r\nX-Robots-Tag: noindex\r\nLink: <https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\r\nX-Content-Type-Options: nosniff\r\nAccess-Control-Expose-Headers: X-WP-Total, X-WP-TotalPages, Link\r\nAccess-Control-Allow-Headers: Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\r\nX-WCCOM-Cache: HIT\r\nCache-Control: max-age=60\r\nAllow: GET\r\nX-rq: dca5 0 4 9980\r\nContent-Encoding: gzip\r\nAge: 33\r\nX-Cache: hit\r\nVary: Accept-Encoding, Origin\r\nAccept-Ranges: bytes\r\nStrict-Transport-Security: max-age=31536000\r\n\r\n{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\"},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Security, performance, and marketing tools made for WooCommerce stores by the WordPress experts. Get started with basic security and speed tools for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/jetpack\\/\",\"icon\":null},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"rating\":2.1,\"reviews_count\":51,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"Securely accept payments, track cash flow, and manage recurring revenue from your dashboard \\u2014 all without setup costs or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/02\\/wcpay-icon-fv4tef.png\"},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"rating\":3.6,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"rating\":3.2,\"reviews_count\":65,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"rating\":3.4,\"reviews_count\":40,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mailchimp\\/\",\"icon\":null},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"rating\":3,\"reviews_count\":21,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Google Listings &amp; Ads\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/marketplace-card.png\",\"excerpt\":\"Reach millions of engaged shoppers across Google with free product listings and ads. Built in partnership with Google.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"rating\":3.4,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Google Ads &amp; Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"rating\":4.4,\"reviews_count\":109,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kliken\\/\",\"icon\":null},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg\",\"excerpt\":\"PayPal\'s latest, all-in-one checkout solution. Securely accept PayPal Digital Payments, credit\\/debit cards and local payment methods.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/pp_v_rgb-didybc.jpg\"},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890,\"rating\":2.7,\"reviews_count\":18,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"rating\":4.4,\"reviews_count\":78,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/07\\/Bundles_logo-0cllvb.png\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"rating\":4.9,\"reviews_count\":115,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay &amp; Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890,\"rating\":3.2,\"reviews_count\":32,\"vendor_name\":\"Codisto\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/codisto\\/\",\"icon\":null},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"rating\":3,\"reviews_count\":16,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/xero2.png\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/live-chat\\/\",\"icon\":null},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"rating\":4.7,\"reviews_count\":42,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Storefront Homepage Contact Section\",\"image\":\"\",\"excerpt\":\"Add a Contact section to the Storefront homepage.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-homepage-contact-section\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"cb12b87f8bbb0139dafbf92ca1f871ef\",\"slug\":\"storefront-homepage-contact-section\",\"id\":1468793,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"rating\":2.9,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Storefront Footer Bar\",\"image\":\"\",\"excerpt\":\"Adds a full-width widget region above the Storefront footer widget area, which can be customized with colors and a background image.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-footer-bar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"6cfd3d4f923cafa16e4801ae801751f4\",\"slug\":\"storefront-footer-bar\",\"id\":1434472,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652,\"rating\":4.5,\"reviews_count\":21,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"rating\":4.6,\"reviews_count\":121,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\"},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Automate sales tax compliance for your multi-channel e-commerce business. Accurate sales tax calculations, data aggregation, quality reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"TaxJar\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/taxjar\\/\",\"icon\":null},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate your WooCommerce store with 4000+ cloud apps and services today. Trusted by 11,000+ users.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"rating\":4.5,\"reviews_count\":35,\"vendor_name\":\"OM4\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/om4\\/\",\"icon\":null},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products &amp; let customers request &amp; manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging &amp; dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Sensei LMS Course Progress\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-course-progress.png\",\"excerpt\":\"Enable your students to easily see their progress and pick up where they left off in a course.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-course-progress\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ec0f55d8fa7c517dc1844f5c873a77da\",\"slug\":\"sensei-course-progress\",\"id\":435833,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738,\"rating\":5,\"reviews_count\":52,\"vendor_name\":\"Backcourt Development\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/backcourt-development\\/\",\"icon\":null},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643,\"rating\":3.4,\"reviews_count\":27,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Storefront Reviews\",\"image\":\"\",\"excerpt\":\"Reviews can often be the deciding factor when making a purchase online. Highlight your best reviews on your homepage, or across your site with Storefront Reviews.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-reviews\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/reviews\\/\",\"price\":\"&#36;19.00\",\"hash\":\"0c8a1d86b8eff9f1edffa923aeb3fc1f\",\"slug\":\"storefront-reviews\",\"id\":1044976,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"title\":\"WooCommerce Print Invoices &amp; Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666,\"rating\":4.3,\"reviews_count\":27,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on-time tax filing. No more tracking sales tax rates and rules.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed rich product data to Google Merchant Center for setting up free product listings, product ads, and local inventory campaigns. Full control over your field mappings, and feed content so you can maximize campaign performance and ad spend.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619,\"rating\":4.3,\"reviews_count\":36,\"vendor_name\":\"Ademti Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/ademti-software\\/\",\"icon\":null},{\"title\":\"Sensei LMS Certificates\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-certificates.png\",\"excerpt\":\"Award your students with a certificate of completion and a sense of accomplishment after finishing a course.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-certificates\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"625ee5fe1bf36b4c741ab07507ba2ffd\",\"slug\":\"sensei-certificates\",\"id\":247548,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/06\\/Composites_logo-8dctno.png\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836,\"rating\":4.9,\"reviews_count\":99,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Eway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/51456-Eway-logo-tagline-RGB-H-yellow-_-grey.png\",\"excerpt\":\"Take credit card payments securely via Eway (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/wc-paid-courses.png\",\"excerpt\":\"Sell your online courses using Sensei LMS with WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Sensei LMS Media Attachments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-media-attachments.png\",\"excerpt\":\"Provide your students with easy access to additional learning materials, from audio files to slideshows and PDFs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-media-attachments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"788647a9a1d8ef5c95371f0e69223a0f\",\"slug\":\"sensei-media-attachments\",\"id\":290551,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MyWorks Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/myworks-software\\/\",\"icon\":null},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/03\\/CSP_Logo-abcc0f.png\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253,\"rating\":4.8,\"reviews_count\":42,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Upgrade from Sequential Order Numbers with advanced features and with optional prefixes\\/suffixes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497,\"rating\":4,\"reviews_count\":19,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174,\"rating\":4.4,\"reviews_count\":138,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout &amp; pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Klarna Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Payments_Pink.png\",\"excerpt\":\"With Klarna Payments\\u00a0you can choose the payment that you want, Pay Now, Pay Later or Slice It. No credit card numbers, no passwords, no worries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnapayments\\/\",\"price\":\"&#36;0.00\",\"hash\":\"a19c689325bc8ea63c620765dd54b33a\",\"slug\":\"klarna-payments-for-woocommerce\",\"id\":2754217,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"Accept payment with First Data using the Payeezy Gateway, Payeezy, or legacy Global Gateway payment gateways.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"HubSpot for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/04\\/hubspotlogo-web-color-pxebeq.png\",\"excerpt\":\"Connect your WooCommerce store to HubSpot. Sync, automate &amp; analyze data with HubSpot WooCommerce Integration\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/hubspot-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e50acec8-3a6c-454c-8562-2da4898fa6c1\",\"slug\":\"hubspot-for-woocommerce\",\"id\":5785079,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MakeWebBetter\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/makewebbetter\\/\",\"icon\":null}]}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:19:{s:6:\"server\";a:1:{i:0;s:5:\"nginx\";}s:4:\"date\";a:1:{i:0;s:29:\"Mon, 17 Jan 2022 15:41:40 GMT\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=UTF-8\";}s:14:\"content-length\";a:1:{i:0;s:5:\"12398\";}s:12:\"x-robots-tag\";a:1:{i:0;s:7:\"noindex\";}s:4:\"link\";a:1:{i:0;s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";}s:22:\"x-content-type-options\";a:1:{i:0;s:7:\"nosniff\";}s:29:\"access-control-expose-headers\";a:1:{i:0;s:33:\"X-WP-Total, X-WP-TotalPages, Link\";}s:28:\"access-control-allow-headers\";a:1:{i:0;s:73:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\";}s:13:\"x-wccom-cache\";a:1:{i:0;s:3:\"HIT\";}s:13:\"cache-control\";a:1:{i:0;s:10:\"max-age=60\";}s:5:\"allow\";a:1:{i:0;s:3:\"GET\";}s:4:\"x-rq\";a:1:{i:0;s:13:\"dca5 0 4 9980\";}s:16:\"content-encoding\";a:1:{i:0;s:4:\"gzip\";}s:3:\"age\";a:1:{i:0;s:2:\"33\";}s:7:\"x-cache\";a:1:{i:0;s:3:\"hit\";}s:4:\"vary\";a:1:{i:0;s:23:\"Accept-Encoding, Origin\";}s:13:\"accept-ranges\";a:1:{i:0;s:5:\"bytes\";}s:25:\"strict-transport-security\";a:1:{i:0;s:16:\"max-age=31536000\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:59:\"https://woocommerce.com/wp-json/wccom-extensions/1.0/search\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),(335,'_site_transient_timeout_community-events-97d368fbf172f8d2650a60cccf114d24','1642477300','no'),(336,'_site_transient_community-events-97d368fbf172f8d2650a60cccf114d24','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"71.248.161.0\";}s:6:\"events\";a:3:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:42:\"ONLINE: WordPress Cape Cod Meetup via Zoom\";s:3:\"url\";s:49:\"https://www.meetup.com/capecodwp/events/282100254\";s:6:\"meetup\";s:28:\"WordPress Cape Cod (Hyannis)\";s:10:\"meetup_url\";s:33:\"https://www.meetup.com/capecodwp/\";s:4:\"date\";s:19:\"2022-02-01 18:30:00\";s:8:\"end_date\";s:19:\"2022-02-01 19:30:00\";s:20:\"start_unix_timestamp\";i:1643758200;s:18:\"end_unix_timestamp\";i:1643761800;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:41.64999999999999857891452847979962825775146484375;s:9:\"longitude\";d:-70.2999999999999971578290569595992565155029296875;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:33:\"Topic TBD But It Will Be Awesome!\";s:3:\"url\";s:51:\"https://www.meetup.com/WordPressRI/events/283106767\";s:6:\"meetup\";s:19:\"WordPress RI Meetup\";s:10:\"meetup_url\";s:35:\"https://www.meetup.com/WordPressRI/\";s:4:\"date\";s:19:\"2022-02-08 18:00:00\";s:8:\"end_date\";s:19:\"2022-02-08 20:00:00\";s:20:\"start_unix_timestamp\";i:1644361200;s:18:\"end_unix_timestamp\";i:1644368400;s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Pawtucket, RI, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:41.882519000000002051820047199726104736328125;s:9:\"longitude\";d:-71.37878399999999601277522742748260498046875;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:25:\"WordPress Lunch and Learn\";s:3:\"url\";s:51:\"https://www.meetup.com/WordPressRI/events/283106770\";s:6:\"meetup\";s:19:\"WordPress RI Meetup\";s:10:\"meetup_url\";s:35:\"https://www.meetup.com/WordPressRI/\";s:4:\"date\";s:19:\"2022-02-10 12:00:00\";s:8:\"end_date\";s:19:\"2022-02-10 13:00:00\";s:20:\"start_unix_timestamp\";i:1644512400;s:18:\"end_unix_timestamp\";i:1644516000;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:41.82000000000000028421709430404007434844970703125;s:9:\"longitude\";d:-71.409999999999996589394868351519107818603515625;}}}}','no'),(337,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1642477300','no'),(338,'_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:\"Thu, 13 Jan 2022 17:22:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.0-alpha-52585\";s:7:\"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: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:70:\"WP Briefing: Episode 23: A letter from WordPress’ Executive Director\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wordpress.org/news/2022/01/episode-23-a-letter-from-wordpress-executive-director/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 17 Jan 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=12043\";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:408:\"As we greet a new year, WordPress&#8217; Executive Director writes a letter to the project and community that speaks to the hopes of the year ahead. 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 [&#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/2022/01/WP-Briefing-023.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:6741:\"\n<p>As we greet a new year, WordPress&#8217; Executive Director writes a letter to the project and community that speaks to the hopes of the year ahead.</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=\"transcript\">Transcript</h2>\n\n\n\n<span id=\"more-12043\"></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>Yesterday marked three years since the WordPress project welcomed me as their executive director. As I start my fourth year, I&#8217;ve spent a bit of time considering what the next five years will bring us. WordPress will turn 19 this year, which means that we will soon be a whopping 20 years old; for some of the people who have been with the project since the beginning, that can represent two-thirds of their whole life. And even if you were not that young when you got here, two decades as an open source project is really a cause for celebration.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:10</p>\n\n\n\n<p>I am not in that group that has been here forever. I showed up for the first time in 2009, as a community organizer, self-sponsored, and I learned so much about myself as a person and as a leader while I was doing that. So when I arrived as a sponsored contributor in 2015, I already knew exactly what made this work so fulfilling for me was these three things:&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:34</p>\n\n\n\n<p>First, the ability to lend a hand in those moments where I wish someone had lent a hand.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:40</p>\n\n\n\n<p>Second is the delight of seeing people&#8217;s first successes and the joy of watching them grow over time.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:48</p>\n\n\n\n<p>And the third was a chance to be part of something great, which turned out to be something greater; greater than me or you or a CMS.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:58</p>\n\n\n\n<p>This list is still at the heart of what I feel I get out of the WordPress project. But it has also grown substantially in my seven years as a sponsored contributor. I now also love how we as a community of contributors get to foster a better way to lead and a better way to collaborate. And through those things help people find a way to have a better life. Not just through WordPress, the CMS, but through WordPress, the people, and WordPress, the project.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:25</p>\n\n\n\n<p>And so when I think of what I want for WordPress in its 19th year, so that we can head with confidence and dignity into our 20th year, it is this:&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:35</p>\n\n\n\n<p>I want you to remember that you are not alone here. People come together in the world often because of a shared location. But WordPress fosters this beautiful experience of bringing us together because of what we care about. Whether you care about PHP standards, diversity in technology, helping people with their first big wins, making WordPress more secure. I mean, if what you care about is being able to write the most arcane and complex apps on top of WordPress that the world has ever seen. Then there are others out there who want to do that with you, too. We have so many things to connect about. And fortunately, we support a great piece of software for getting our thoughts out in the world. Take some time to see who else shares your thoughts and potentially learn a bit about the view from the other side.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:26</p>\n\n\n\n<p>And speaking of the other side, I also want us to approach our discussions as the US versus the Problem TM. WordPress may be 20 years old, and we may stand on the shoulders of giants, but right now, the people who are here you, you are explorers and creators and guides toward the best possible future for WordPress. The tension that we witness between teams is always about the best possible answers for the people who use our software. It is about securing the freedoms of the open web for everyone who comes after us whether they know they need those freedoms or not.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:04</p>\n\n\n\n<p>And finally, I want us to expand our reasons for doing this at all. If you are a member of the community of contributors, We frequently talk about how we give back because WordPress gave to us. Or if you are part of a Five for the Future group. You have heard that companies who have experienced success because of WordPress should commit 5% of their resources back to the project to ensure WordPress&#8217; long-term success. But the reason that I keep doing this, and hopefully a new reason for you to keep doing this is that we can take part in securing opportunities for future users of WordPress.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:42</p>\n\n\n\n<p>Yes, I want WordPress to be the best CMS. Yes, I want this community to be vibrant and engaged. Yes, I want WordPress to be a shining beacon of how to work remotely. And I want all of that because I know it is our careful and tireless stewardship of this project that lets us continue to lend a hand in those moments where people wish for someone to lend a hand.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:11</p>\n\n\n\n<p>Those are my hopes for WordPress in 2022 to move us forward into WordPress of the future. I hope you all will come with me and we can continue our journey together.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:23</p>\n\n\n\n<p>Thanks again for listening. I&#8217;m Josepha Haden and this is the WP Briefing. 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:\"12043\";s: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:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress 5.9 RC 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/news/2022/01/wordpress-5-9-rc-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Jan 2022 20:43:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.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:\"\";}i:3;a:5:{s:4:\"data\";s:3:\"RC2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12014\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"The second Release Candidate (RC2) for WordPress 5.9 is available! The final release is slated for January 25, 2022. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Jonathan Bossenger\";s: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:4966:\"\n<p>The second Release Candidate (RC2) for<a href=\"https://make.wordpress.org/core/5-9/\"> WordPress 5.9</a> is now available!&nbsp;</p>\n\n\n\n<p>“Release Candidate” means the new version of the software is ready for release. It helps the community check that nothing is missed, given the thousands of plugins and themes and differences in how millions of people use the software.</p>\n\n\n\n<p>Thank you to everyone who has contributed thus far towards testing and filing bugs to help make WordPress 5.9 a great release. WordPress 5.9 is slated for release in just two weeks on January 25, 2022. There&#8217;s still time to help! Since RC1 was released, <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=5.9&amp;time=01%2F05%2F2022..01%2F12%2F2022&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\" target=\"_blank\" rel=\"noreferrer noopener\">six</a> bugs have been found and fixed. There were <a href=\"https://core.trac.wordpress.org/changeset/52551\">13 bug fixes backported from Gutenberg.</a></p>\n\n\n\n<h2 id=\"testing-the-release\"><strong>Testing the release</strong></h2>\n\n\n\n<p>You can test the WordPress 5.9 release candidate in three ways:</p>\n\n\n\n<p><strong>Option 1:</strong> Install and activate the<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"> <strong>WordPress Beta Tester</strong></a><strong> </strong>plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2:</strong> Direct download the beta version here (<a href=\"https://wordpress.org/wordpress-5.9-RC2.zip\"><strong>zip</strong></a>).</p>\n\n\n\n<p><strong>Option 3:</strong> When using WP-CLI to upgrade from Beta 1, 2, 3, 4, or RC1, on a case-insensitive filesystem, please use the following command sequence:</p>\n\n\n\n<p>Command One:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-RC2</code></pre>\n\n\n\n<p>Command Two:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-RC2 --force</code></pre>\n\n\n\n<p>Your help to test the second Release Candidate is vital: the more testing that happens, the more stable the release, and the better the experience for users and developers—and the entire WordPress community.</p>\n\n\n\n<p>Thank you to all of the contributors who tested the RC1 release and gave feedback. Testing for bugs is not just a critical part of polishing every release, it is also a great way to contribute to WordPress.</p>\n\n\n\n<h2 id=\"how-to-help\"><strong>How to Help</strong></h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/test/2021/11/30/help-test-wordpress-5-9-features/\">Help test WordPress 5.9 features</a> – a guide to how you can take part.</p>\n\n\n\n<p>Can you write in another language other than English? You can<a href=\"https://translate.wordpress.org/projects/wp/dev\"> help translate WordPress into more than 100 languages!</a> Release Candidate 1 marked the<a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\"> hard string freeze</a> point of the 5.9 release schedule. Thanks to every locale that is already involved with translations.</p>\n\n\n\n<p>Developers and those interested in more of the background to the features can find more in the <a href=\"https://make.wordpress.org/core/2022/01/10/wordpress-5-9-field-guide/\">Field Notes</a>. More developer notes will be added as the release progresses to its final stage. You can also follow the <a href=\"https://make.wordpress.org/core/5-9/\">5.9 development cycle</a> and timeline.</p>\n\n\n\n<p><strong><em>If you think you have found a bug</em></strong><em>, you can post the details to the</em><a href=\"https://wordpress.org/support/forum/alphabeta\"><em> </em><em>Alpha/Beta area</em></a><em> in the support forums.</em></p>\n\n\n\n<p><em>&nbsp;If you are comfortable writing a reproducible bug report, you can</em><a href=\"https://core.trac.wordpress.org/newticket\"><em> </em><em>file one on WordPress Trac</em></a><em>, where you can also check the issue against</em><a href=\"https://core.trac.wordpress.org/tickets/major\"><em> </em><em>a list of known bugs</em></a><em>.</em></p>\n\n\n\n<p><em>Props to: </em><a href=\'https://profiles.wordpress.org/psykro/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>psykro</a> and <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a><em>, and </em><a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a>, <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>, <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a> and <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a> <em>for final 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:\"12014\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 5.8.3 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2022/01/wordpress-5-8-3-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Jan 2022 21:02: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: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=11999\";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:360:\"This security release features four security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated. WordPress 5.8.3 is a short-cycle security release. The next major release will be version 5.9, which is already in the Release Candidate stage. You [&#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:3681:\"\n<p>This security release features four security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.8.3 is a short-cycle security release. The next major release will be version <a href=\"https://make.wordpress.org/core/5-9/\">5.9</a>, which is already in the Release Candidate stage.</p>\n\n\n\n<p>You can update to WordPress 5.8.3 by downloading from WordPress.org or visiting your Dashboard → Updates and clicking 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 id=\"security-updates\">Security Updates</h3>\n\n\n\n<p>Four security issues affect WordPress versions between 3.7 and 5.8. If you haven’t yet updated to 5.8, all WordPress versions since 3.7 have also been updated to fix the following security issue (except where noted otherwise):</p>\n\n\n\n<ul><li>Props to Karim El Ouerghemmi and Simon Scannell of <a href=\"https://www.sonarsource.com/\">SonarSource</a> for disclosing an issue with stored XSS through post slugs.</li><li>Props to Simon Scannell of <a href=\"https://www.sonarsource.com/\">SonarSource</a> for reporting an issue with Object injection in some multisite installations.</li><li>Props to ngocnb and khuyenn from <a href=\"https://giaohangtietkiem.vn/\">GiaoHangTietKiem JSC</a> for working with <a href=\"https://www.zerodayinitiative.com/\">Trend Micro Zero Day Initiative</a> on reporting a SQL injection vulnerability in WP_Query.</li><li>Props to Ben Bidner from the WordPress security team for reporting a SQL injection vulnerability in WP_Meta_Query (only relevant to versions 4.1-5.8). </li></ul>\n\n\n\n<p>Thank you to all of the reporters above for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>. This gave the security team time to fix the vulnerabilities before WordPress sites could be attacked. Thank you to the members of the WordPress security team for implementing these fixes in WordPress.</p>\n\n\n\n<p>For more information, check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-8-3/\">5.8.3 HelpHub documentation page</a>.</p>\n\n\n\n<h3 id=\"thanks-and-props\">Thanks and props!</h3>\n\n\n\n<p>The 5.8.3 release was led by <a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a> and <a href=\'https://profiles.wordpress.org/circlecube/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>circlecube</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.3 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, and <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11999\";s: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:40:\"The Month in WordPress – December 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2022/01/the-month-in-wordpress-december-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Jan 2022 19:03: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:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11972\";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:335:\"December was a busy month for the WordPress community. In the latest episode of the WP Briefing podcast, WordPress Executive Director Josepha Haden Chomphosy shares a carol of thanks and shows her gratitude to all the people who make the WordPress project a success. (&#8230;) I know that we have gotten so much done together [&#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:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:13065:\"\n<p>December was a busy month for the WordPress community. In the<a href=\"https://wordpress.org/news/2021/12/episode-22-a-carol-of-thanks/\"> latest episode of the WP Briefing podcast</a>, WordPress Executive Director Josepha Haden Chomphosy shares a carol of thanks and shows her gratitude to all the people who make the WordPress project a success.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>(&#8230;) I know that we have gotten so much done together in the last few years. And I am equally sure that we’re going to get so much done in the years to come. And so thank you all so much for your continued work with WordPress and the way that you just bring your best at all times.</p><cite>Josepha Haden, Executive Director of the WordPress project</cite></blockquote>\n\n\n\n<p>We said goodbye to 2021 with the annual State of the Word, along with the release of WordPress 5.9 Beta 4, among many other exciting updates. Read on to learn more about the latest community achievements.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 id=\"wordpress-5-9-the-first-release-candidate-just-landed\">WordPress 5.9: The first release candidate just landed</h2>\n\n\n\n<ul><li>Following the<a href=\"https://wordpress.org/news/2021/12/wordpress-5-9-beta-3/\"> Beta 3</a> and<a href=\"https://wordpress.org/news/2021/12/wordpress-5-9-beta-4/\"> Beta 4</a> releases in December, the first <a href=\"https://wordpress.org/news/2022/01/wordpress-5-9-rc-1/\">release candidate for WordPress 5.9</a> is now out and available for testing.</li><li>With less than three weeks to go until the final release, this version continues the work from last year and marks the hard<a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\"> string freeze point</a> of the 5.9 release schedule.</li><li>Follow the <a href=\"https://make.wordpress.org/core/tag/5-9+dev-notes/\">5.9 developer notes</a> to learn more about the <a href=\"https://make.wordpress.org/core/2022/01/04/miscellaneous-core-changes-in-wordpress-5-9/\">changes</a> and updates coming with this release.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Are you interested in contributing to WordPress core?</strong> 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>. 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\">8 PM</a> UTC.</p></blockquote>\n\n\n\n<h2 id=\"gutenberg-releases-versions-12-1-and-12-2-are-here\">Gutenberg releases: Versions 12.1 and 12.2 are here</h2>\n\n\n\n<p>The Core Team launched two new versions of Gutenberg last month. Both come with new features, code quality improvements, and bug fixes.</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2021/12/08/whats-new-in-gutenberg-12-1-8-december/\">Gutenberg 12.1</a> marks the return of the template List View and includes several Navigation block enhancements, new global styles features, an improved developer experience for block themes, and more.</li><li>The<a href=\"https://make.wordpress.org/core/2021/12/22/whats-new-in-gutenberg-12-2-22-december/\"> Gutenberg 12.2</a> release focuses on user experience improvements and brings the block styles preview to the Widgets Editor, among other new features.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Want to get involved in developing Gutenberg?</strong> Follow <a href=\"https://make.wordpress.org/core/\">the Core Team blog</a>, contribute to Gutenberg on <a href=\"https://github.com/WordPress/gutenberg/\">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>. Follow the <a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">#gutenberg-new</a> tag for details on the latest updates.</p></blockquote>\n\n\n\n<h2 id=\"highlights-from-state-of-the-word-2021\">Highlights from State of the Word 2021</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2021/12/highlights-from-state-of-the-word-2021/\">State of the Word 2021</a>, the annual keynote address delivered by WordPress co-founder Matt Mullenweg, was livestreamed from New York City on December 14, 2021. The event gathered WordPress enthusiasts at 29 watch parties around the world.</li><li>Matt shared his thoughts on the progress of the WordPress project and made announcements regarding its future in 2022. The presentation was followed by a Question and Answer session.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>If you missed the event’s livestream, you could watch the </strong><a href=\"https://wordpress.tv/2021/12/15/matt-mullenweg-2021-state-of-the-word/\"><strong>State of the Word recording</strong></a><strong> and the </strong><a href=\"https://wordpress.tv/2021/12/15/matt-mullenweg-state-of-the-word-2021-qa/\"><strong>Q&amp;A session</strong></a><strong> on WordPress.tv.</strong></p></blockquote>\n\n\n\n<h2 id=\"team-updates-2022-major-release-timings-new-team-rep-announcements-and-more\">Team updates: 2022 major release timings, new team rep announcements, and more</h2>\n\n\n\n<ul><li>The Core Team opened a discussion on <a href=\"https://make.wordpress.org/core/2021/12/17/discussion-2022-major-release-timing/\">the release dates for 2022</a> and the possibility of having four major WordPress releases this year.</li><li>The following teams announced their team representatives for 2022: <a href=\"https://make.wordpress.org/themes/2021/12/03/introducing-new-themes-team-representatives/\">Themes</a>, <a href=\"https://make.wordpress.org/support/2021/12/agenda-for-the-december-9-support-meeting/\">Support</a>, <a href=\"https://make.wordpress.org/polyglots/2021/11/08/call-for-polyglots-team-representatives/#comment-293358\">Polyglots</a>, and <a href=\"https://make.wordpress.org/community/2022/01/03/announcement-team-representatives-for-2022/\">Community</a>.</li><li>In 2021, 2572 people contributed to WordPress source code using Trac, including 305 first-timers. Check out <a href=\"https://make.wordpress.org/core/2021/12/29/a-year-in-core-2021/\">A Year in Core – 2021</a> for more interesting stats on WordPress Core contributions.</li><li>The Diverse Speaker Training Group (#WPDiversity) shared its accomplishments from last year in this<a href=\"https://make.wordpress.org/community/2021/12/14/diverse-speaker-training-group-wpdiversity-2021-year-end-report/\"> 2021 year-end report</a>.</li><li>The Training Team<a href=\"https://make.wordpress.org/training/2021/12/07/december-2021-team-sprint/\"> planned a sprint</a> to audit and revisit the Learn WordPress content for the WordPress 5.9 release.</li><li>The Design Team summarized some of the key changes behind the<a href=\"https://make.wordpress.org/design/2021/12/17/redesign-of-openverse/\"> Openverse redesign</a>.</li><li>The December 2021 editions of the <a href=\"https://make.wordpress.org/polyglots/2021/12/20/polyglots-monthly-newsletter-december-2021/\">Polyglots Monthly Newsletter</a> and the<a href=\"https://make.wordpress.org/community/2021/12/14/meetup-organizer-newsletter-december-2021/\"> Meetup Organizer Newsletter</a> are out.</li><li>The latest edition of<a href=\"https://wordpress.org/news/2021/12/people-of-wordpress-collins-agbonghama/\"> </a>People of WordPress features <a href=\"https://wordpress.org/news/2021/12/people-of-wordpress-collins-agbonghama/\">Collins Agbonghama</a> from Nigeria.</li><li>The Core Team <a href=\"https://make.wordpress.org/core/2022/01/05/proposal-changes-to-javascript-coding-standards-for-full-prettier-compatibility/\">announced a proposal</a> to change the JavaScript coding standards for complete Prettier compatibility.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Are you looking for some 5.9 resources to share with your local community? </strong>Check out the <a href=\"https://make.wordpress.org/community/2021/12/10/wordpress-5-9-talking-points/\">WordPress 5.9 Talking Points for Meetup Organizers</a> post.</p></blockquote>\n\n\n\n<h2 id=\"feedback-testing-requests-contribute-by-testing-or-translating-wordpress-5-9\">Feedback/Testing requests: Contribute by testing or translating WordPress 5.9</h2>\n\n\n\n<ul><li>Your feedback on WordPress 5.9 release candidates is still needed and appreciated! If you haven’t tried this version yet, you can find instructions on testing 5.9 features <a href=\"https://make.wordpress.org/test/2021/11/30/help-test-wordpress-5-9-features/\">in this post</a>.</li><li>Do you speak a language other than English? The Polyglots Team announced that <a href=\"https://make.wordpress.org/polyglots/2021/12/16/wordpress-5-9-ready-to-be-translated/\">WordPress 5.9 is also ready to be translated</a>.</li><li>Version 18.9 of WordPress for<a href=\"https://make.wordpress.org/mobile/2021/12/14/call-for-testing-wordpress-for-android-18-9/\"> Android</a> is available for testing.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><a href=\"https://make.wordpress.org/test/2021/11/30/help-test-wordpress-5-9-features/\"><strong>Share your feedback</strong></a><strong> on WordPress 5.9.</strong></p></blockquote>\n\n\n\n<h2 id=\"apply-to-speak-or-host-a-workshop-at-wordcamp-europe-2022\">Apply to speak or host a workshop at WordCamp Europe 2022</h2>\n\n\n\n<ul><li>WordCamp US 2022 is currently looking for<a href=\"https://us.wordcamp.org/2022/are-you-ready-to-be-a-2022-organizer/\"> organizers</a>.</li><li>The WordPress community celebrated its first in-person WordCamp after 21 months in<a href=\"https://sevilla.wordcamp.org/2021/\"> Sevilla (Spain)</a> on December 11-12, 2021.<a href=\"https://taiwan.wordcamp.org/2021/\"> WordCamp Taiwan</a> was held online the same weekend.</li><li>The Test Team organized the Hallway Hangout titled <a href=\"https://make.wordpress.org/test/2021/12/21/hallway-hangout-lets-talk-about-wordpress-6-0/\">Let’s talk about WordPress 6.0</a> on December 21, 2021. The team also shared a wrap-up of the <a href=\"https://make.wordpress.org/test/2021/12/16/fse-program-site-editing-safari-summary/\">Site Editing Safari</a> as part of the <a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/\">FSE Outreach Program</a>.</li><li>The Training Team hosted several WordPress Social Learning Meetups last month, and there will be many more in <a href=\"https://www.meetup.com/wordpress-social-learning/events/\">January 2022</a>.</li><li>Last year the WordPress Foundation made significant progress in its mission to educate the public about open source software. Learn more about it in this <a href=\"https://wordpressfoundation.org/news/2021/looking-back-at-2021/\">2021 recap</a>.</li></ul>\n\n\n\n<p>Don’t miss the following upcoming WordCamps: <a href=\"https://birmingham.wordcamp.org/2022/\">WordCamp Birmingham, Alabama 2022</a>,<a href=\"https://vienna.wordcamp.org/2022/\"> </a><a href=\"https://geneve.wordcamp.org/2022/\">WordCamp Genève 2022</a><a href=\"https://vienna.wordcamp.org/2022/\">, WordCamp Vienna 2022</a>, and <a href=\"https://europe.wordcamp.org/2022/\">WordCamp Europe 2022</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>The</strong><a href=\"https://europe.wordcamp.org/2022/call-for-sponsors/\"><strong> Call For Sponsors</strong></a><strong> and </strong><a href=\"https://europe.wordcamp.org/2022/call-for-speakers/\"><strong>Call For Speakers</strong></a><strong> for WordCamp Europe 2022 are open! </strong>Read <a href=\"https://europe.wordcamp.org/2022/a-sneak-peek-at-wceu2022/\">this post</a> to learn more about the Organizing Team&#8217;s plans for the first in-person WordCamp Europe in three years.</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/\"><strong><em>this form</em></strong></a><strong><em>.</em></strong></p>\n\n\n\n<p><em>The following folks contributed to December 2021’s Month in WordPress: <a href=\'https://profiles.wordpress.org/anjanavasan/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>anjanavasan</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/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/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:\"11972\";s: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: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:18:\"WordPress 5.9 RC 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/news/2022/01/wordpress-5-9-rc-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Jan 2022 20:43:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.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:35:\"https://wordpress.org/news/?p=11948\";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:101:\"The WordPress 5.9 Release Candidate 1 is available. The final release is slated for January 25, 2022.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:5481:\"\n<p>The first Release Candidate (RC1) for <a href=\"https://make.wordpress.org/core/5-9/\">WordPress 5.9</a> is now available!&nbsp;</p>\n\n\n\n<p>Thank you to everyone who has contributed to reach this important milestone in the community’s progress towards a WordPress 5.9 release.</p>\n\n\n\n<p>“Release Candidate” means the new version of the software is ready for release. It helps the community check that nothing is missed, given the thousands of plugins and themes and differences in how millions of people use the software.</p>\n\n\n\n<p>WordPress 5.9 is slated for release on January 25, 2022. This is just three weeks to go&nbsp; &#8211; and there’s still time to help!</p>\n\n\n\n<h2 id=\"testing-the-release\">Testing the release</h2>\n\n\n\n<p>You can test the WordPress 5.9 release candidate in three ways:</p>\n\n\n\n<p><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"><strong>WordPress Beta Tester</strong></a><strong> </strong>plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2:</strong> Direct download the beta version here (<a href=\"https://wordpress.org/wordpress-5.9-RC1.zip\"><strong>zip</strong></a>).</p>\n\n\n\n<p><strong>Option 3:</strong> When using WP-CLI to upgrade from Beta 1, 2, 3 or 4 on a case-insensitive filesystem, please use the following command sequence:</p>\n\n\n\n<p>Command One:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-RC1</code></pre>\n\n\n\n<p>Command Two:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-RC1 --force</code></pre>\n\n\n\n<p>Your help to test the RC1 is vital: the more testing that happens, the more stable the release, and the better the experience for users and developers—and the entire WordPress community.</p>\n\n\n\n<p>Thank you to all of the contributors who tested the Beta releases and gave feedback. Testing for bugs is not just a critical part of polishing every release; it is also a great way to contribute to WordPress.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/test/2021/11/30/help-test-wordpress-5-9-features/\">Help test WordPress 5.9 features</a> &#8211; a guide to how you can take part.</p>\n\n\n\n<h2 id=\"what-is-in-wordpress-5-9-release-candidate\">What is in WordPress 5.9 release candidate?</h2>\n\n\n\n<p>This will be the first release of 2022 and continues the work towards 5.9 from last year. It features the latest advances of the block editor and is the first version of full site editing in Core.</p>\n\n\n\n<p>WordPress 5.9 also brings more refinements to the developer experience. To keep up with the latest updates and discover more about how the community works to continually improve the software, please subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a>. In particular, the <a href=\"https://make.wordpress.org/core/tag/5-9+dev-notes/\">developer notes tag</a> will keep you up to date on changes that might affect your products or how you use the software.</p>\n\n\n\n<h2 id=\"plugin-and-theme-developers\">Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.9 and update the <em>Tested up to</em> version&nbsp; to 5.9 in your readme file. If you find compatibility problems, please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so volunteers and developers can help you figure them out before the final release.</p>\n\n\n\n<p>The WordPress 5.9 Field Guide will be out very shortly. It will give you a deeper dive into the major changes.</p>\n\n\n\n<h2 id=\"how-to-help\">How to Help</h2>\n\n\n\n<p>Do you speak a language that is not English? You can <a href=\"https://translate.wordpress.org/projects/wp/dev\">help translate WordPress into more than 100 languages!</a> Release Candidate 1 marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 5.9 release schedule. Thanks to every locale that is already involved with translations.</p>\n\n\n\n<p><strong><em>If you think you have found a bug</em></strong><em>, you can post to the </em><a href=\"https://wordpress.org/support/forum/alphabeta\"><em>Alpha/Beta area</em></a><em> in the support forums.&nbsp; If you are comfortable writing a reproducible bug report, you can </em><a href=\"https://core.trac.wordpress.org/newticket\"><em>file one on WordPress Trac</em></a><em>, where you can also check the issue against </em><a href=\"https://core.trac.wordpress.org/tickets/major\"><em>a list of known bugs</em></a><em>.</em></p>\n\n\n\n<p>Props to <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a> for the post and to <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a> <a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a> <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a> <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a> <a href=\'https://profiles.wordpress.org/estelaris/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>estelaris</a> <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a> for final review. </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:\"11948\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"People of WordPress: Collins Agbonghama\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/12/people-of-wordpress-collins-agbonghama/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Dec 2021 22:45: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:5:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s: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:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11923\";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:\"Collins Agbonghama, a web developer from Nigeria, Africa, shares how WordPress gives him a sustainable income and a better 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: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:8695:\"\n<p>In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better. This month we feature a website builder from Nigeria, who uses the open source WordPress platform to support his family and to share learning with others in his home country and beyond.</p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2021/12/fimg_collins-agbonghama.jpg?resize=632%2C318&#038;ssl=1\" alt=\"Collins Agbonghama\" class=\"wp-image-11919\" width=\"632\" height=\"318\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/12/fimg_collins-agbonghama.jpg?resize=1024%2C515&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/12/fimg_collins-agbonghama.jpg?resize=300%2C151&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/12/fimg_collins-agbonghama.jpg?resize=768%2C386&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/12/fimg_collins-agbonghama.jpg?w=1247&amp;ssl=1 1247w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2 id=\"creating-a-life-in-the-wordpress-ecosystem\"><strong>Creating a life in the WordPress Ecosystem</strong></h2>\n\n\n\n<p>Collins Agbonghama started his journey to becoming a web developer by reading the football news headlines on a friend’s mobile phone. His fascination with development and learning continued to grow, and he now makes a living using WordPress and the web.</p>\n\n\n\n<p>Read on to discover his story, which shows with creativity and determination you can create products and make a living using WordPress.&nbsp;</p>\n\n\n\n<h2 id=\"starting-web-building-on-a-phone\"><strong>Starting web building on a phone</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"350\" height=\"426\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/12/collins-agbonghama1.jpg?resize=350%2C426&#038;ssl=1\" alt=\"Collins Agbonghama headshot photo\" class=\"wp-image-11920\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/12/collins-agbonghama1.jpg?w=350&amp;ssl=1 350w, https://i2.wp.com/wordpress.org/news/files/2021/12/collins-agbonghama1.jpg?resize=246%2C300&amp;ssl=1 246w\" sizes=\"(max-width: 350px) 100vw, 350px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Collins began his exploration of the internet while attending Secondary School in Nigeria, or High School as it is known in some other countries.&nbsp;</p>\n\n\n\n<p>A friend at the school had a simple mobile phone which could browse the internet. Collins had his first introduction to the World Wide Web through access to this device. He became hooked by reading headlines on a sports site about a famous English Premier League Football Club, Chelsea, a soccer team which he has long supported.</p>\n\n\n\n<p>“Being a very inquisitive person, I wanted to learn how the web works as well as have my own website. I was able to buy a classic mobile phone through the menial jobs I did after school,” he said.&nbsp;</p>\n\n\n\n<p>His first website was a wapsite or Wireless Application Protocol site optimized for mobile devices.&nbsp;</p>\n\n\n\n<p>He took to Google to learn how to actually build a site. He discovered he needed something called an ‘email address’ to sign-up for site builders. Google Search came to the rescue again, and he created the first email account for his first website.</p>\n\n\n\n<p>A desire for a website was the catalyst for further learning, starting with HTML and CSS from an online provider. His interest in building sites with more advanced tools grew, and then he came across WordPress.&nbsp;</p>\n\n\n\n<p>Using his savings, he bought the cheapest hosting plan from a local Nigerian web host. He installed WordPress and started writing tutorials for a mobile device platform. He built the site, created the lessons, and started his entry into WordPress all on a mobile phone.&nbsp;</p>\n\n\n\n<p>This led to him having the confidence to start building sites for others, and he was able to earn a small income from that.&nbsp;</p>\n\n\n\n<p>Collins said: “I couldn’t go to the university because of my precarious financial situation. I continued to do menial jobs during the day and started learning PHP in the evenings and at night using my mobile phone via online learning platforms.”</p>\n\n\n\n<p>He was later able to get an old laptop, which helped him access ebooks to learn more and practice his coding.&nbsp;</p>\n\n\n\n<p>Keen to share this learning, he started blogging about what he was learning on his website.&nbsp;&nbsp;</p>\n\n\n\n<p>Collins said: “I later took up a job teaching children at a school primarily because I got tired of the menial jobs and wanted to earn enough to take care of my internet data plan. After a while, I became fairly proficient in PHP and even took up a job to build a school management system.”</p>\n\n\n\n<h2 id=\"using-wordpress-to-make-a-living\"><strong>Using WordPress to make a living</strong></h2>\n\n\n\n<p>Collins’ blog wasn’t making money through advertisements, but he discovered opportunities to write tutorials for other platforms.&nbsp;</p>\n\n\n\n<p>“I started writing PHP and WordPress development tutorials and got paid a few hundred dollars per article. In Nigeria, that’s quite a lot of money. I was able to improve the life and wellbeing of my family and myself,” he said.</p>\n\n\n\n<p>After getting into a higher education program to study computer science, his life dramatically changed. He decided to stop writing and began to focus on building and selling WordPress plugins.&nbsp;His first one was a user and profile plugin for WordPress sites.</p>\n\n\n\n<p>“Thankfully, after a year, it started making enough revenue for me to live pretty comfortably here in Nigeria because the cost of living here is relatively low,” he said</p>\n\n\n\n<p>Today, Collins has several plugins which have given him a sustainable source of income. He’s also a Core and Translation volunteer contributor to the WordPress.org Open Source project. </p>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p>I am thankful for WordPress because without it, I’m really not sure I would have been able to live a decent quality life. <br>Who knows what would have become of me?</p><cite>Collins Agbonghama</cite></blockquote></figure>\n\n\n\n<p>“I am also thankful for the community. I have made lots of friends that have been very supportive and helpful in my journey.”</p>\n\n\n\n<p>He added: “I tell people, life won’t give you what you want. You demand from life what you want. You make these demands by being determined and never giving up on your dreams and aspirations.</p>\n\n\n\n<p>“If you are poor, perhaps because you came from a humble and poor background, it is not your fault. You can’t go back in time to change things. I implore you to be strong, determined, and work hard.” </p>\n\n\n\n<p></p>\n\n\n\n<p><strong>Meet more WordPress community members in our <a href=\"https://wordpress.org/news/category/interviews/\">People of WordPress series</a>.</strong></p>\n\n\n\n<h2 id=\"contributors\">Contributors</h2>\n\n\n\n<p>Thanks to Michael Geheren (<a href=\'https://profiles.wordpress.org/geheren/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>geheren</a>), Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), for writing this feature, to @MeherBala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>) for follow-ups and photo-editing, and to Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>) and Nalini Thakor (<a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>) for the final proofing. Thank you to Collins Agbonghama (<a href=\'https://profiles.wordpress.org/collizo4sky/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>collizo4sky</a>) for sharing his Contributor Story.</p>\n\n\n\n<p><em>Thanks to Josepha Haden Chomphosy&nbsp;(@<a href=\"https://profiles.wordpress.org/chanthaboune/\">chanthaboune</a>), Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) and others for their support </em>of this initiative. </p>\n\n\n\n<p><em>The People of WordPress feature is inspired by an essay originally published on&nbsp;</em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia, which highlights people in the WordPress community who have overcome barriers.&nbsp;</em></p>\n\n\n\n<p>#HeroPress #ContributorStory</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:\"11923\";s: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:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.9 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2021/12/wordpress-5-9-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 21 Dec 2021 21:17:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.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:\"\";}i:3;a:5:{s:4:\"data\";s:4:\"beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11876\";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:80:\"WordPress 5.9 Beta 4 released on 21 December 2021 and is available for testing. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Jonathan Bossenger\";s: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:5052:\"\n<p>WordPress 5.9 Beta 4 is now available for testing!</p>\n\n\n\n<p><strong>This software version is still under development.</strong> Please do not run this software on a production site; install it on a test site, where you can try out the newest features and get a feel for how they will work on your site.</p>\n\n\n\n<p>You can test the WordPress 5.9 Beta 4 in three ways:</p>\n\n\n\n<p><strong>Option 1:</strong> Install and activate the<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"> <strong>WordPress Beta Tester</strong></a><strong> </strong>plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2:</strong> Direct download the beta version here (<strong><a href=\"https://wordpress.org/wordpress-5.9-beta4.zip\">zip</a></strong>).</p>\n\n\n\n<p><strong>Option 3:</strong> When using WP-CLI to upgrade from Beta 1, 2, or 3 to Beta 4 on a case-insensitive filesystem, please use the following command sequence:</p>\n\n\n\n<p>Command One:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-beta4</code></pre>\n\n\n\n<p>Command Two:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-beta4 --force</code></pre>\n\n\n\n<p>The current target for the final release of 5.9 is January 25, 2022, which is only five weeks away. Your help testing this beta is vital: the more testing that happens, the more stable the release, and the better the experience for users and developers—and the entire WordPress community.</p>\n\n\n\n<h2 id=\"some-highlights\"><strong>Some Highlights</strong></h2>\n\n\n\n<p>Since <a href=\"https://wordpress.org/news/2021/12/wordpress-5-9-beta-3/\">Beta 3</a>, 20 bugs have been fixed. Here are a few of the changes you will find in Beta 4:</p>\n\n\n\n<ul><li>Bundled Theme: Fixed duplicate CSS rules in Twenty Twenty-One theme (<a href=\"https://core.trac.wordpress.org/ticket/53605\">#53605</a>).</li><li>Customizer: It&#8217;s possible to switch to a block theme from within Customizer (<a href=\"https://core.trac.wordpress.org/ticket/54549\">#54549</a>).</li><li>Themes: Provide guidance to users seeking to preview block themes on WordPress versions below 5.9 (<a href=\"https://core.trac.wordpress.org/ticket/54575\">#54575</a>).</li><li>REST API: The get_theme_item method should respect fields param (<a href=\"https://core.trac.wordpress.org/ticket/54595\">#54595</a>).</li><li>Editor: Block Patterns: &#8220;Featured&#8221; category &amp; patterns missing from inserter (<a href=\"https://core.trac.wordpress.org/ticket/54623\">#54623</a>).</li><li>Login and registration: Add a filter to allow to disable the Login screen language dropdown – (#54675).</li></ul>\n\n\n\n<h2 id=\"how-you-can-help\"><strong>How You Can Help</strong></h2>\n\n\n\n<p><strong>Do some testing!</strong></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/handbook/testing/beta-testing/\">Testing for bugs</a> is vital for polishing the release in the beta stage and a great way to contribute.&nbsp;</p>\n\n\n\n<p>Please post to the<a href=\"https://wordpress.org/support/forum/alphabeta/\"> Alpha/Beta</a> area in the support forums if you find a bug. If you’re comfortable writing a reproducible<a href=\"https://make.wordpress.org/core/reports/\"> bug report</a>, file one on<a href=\"https://core.trac.wordpress.org/newticket\"> WordPress Trac</a>, where you can also find a list of<a href=\"https://core.trac.wordpress.org/tickets/major\"> known bugs</a>.</p>\n\n\n\n<h2 id=\"got-questions-here-are-some-answers\"><strong>Got questions? Here are some answers</strong></h2>\n\n\n\n<p>In the coming weeks, follow the<a href=\"https://make.wordpress.org/core/\"> Make WordPress Core blog</a> for<a href=\"https://make.wordpress.org/core/tag/5-9+dev-notes/\"> 5.9-related developer notes</a> that will cover these items in detail.</p>\n\n\n\n<p>So far, contributors have fixed <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=5.9&amp;resolution=fixed\">326 tickets and 108 new features and enhancements</a> in WordPress 5.9. More bug fixes are on the way with your help through testing.</p>\n\n\n\n<p><strong>Props to <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/psykro/\" target=\"_blank\">@psykro</a>, <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/hellofromtonya/\" target=\"_blank\">@hellofromtonya</a>, <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/marybaum/\" target=\"_blank\">@marybaum</a>, <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/webcommsat/\" target=\"_blank\">@webcommsat</a>, <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>, <a href=\'https://profiles.wordpress.org/costdev/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>costdev</a> and <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a> for contributions to this post.</strong></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:\"11876\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:58:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"WP Briefing: Episode 22: A Carol of Thanks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/12/episode-22-a-carol-of-thanks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Dec 2021 19:22:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=11880\";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:404:\"In this last episode of 2021, Josepha Haden Chomphosy takes the time to appreciate those who make the WordPress project a success and offers a carol of thanks. 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: [&#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/12/WP-Briefing-022.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:5720:\"\n<p>In this last episode of 2021, Josepha Haden Chomphosy takes the time to appreciate those who make the WordPress project a success and offers a carol of thanks. </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<p><a href=\"https://en.wikipedia.org/wiki/Have_Yourself_a_Merry_Little_Christmas\">Have yourself A Merry Little Christmas </a></p>\n\n\n\n<h2 id=\"transcript\">Transcript</h2>\n\n\n\n<span id=\"more-11880\"></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:39</p>\n\n\n\n<p>So, ages and ages ago, when I first started this podcast, someone basically requested that Matt and I do a duet for the last podcast of the year. A Christmas carol duet; him on the saxophone and me on voice. I obviously did not get that coordinated I don&#8217;t even know why I said obviously. I&#8217;ll tell you right now I did not get that coordinated. I was a very busy lady this year. So I don&#8217;t have a Matt on saxophone. Still, I did think that maybe it might be nice just for me to sing a teensy little Christmas carol for you all just because it seems especially poignant the words this year, especially after the 2020, 2021 COVID, all the things and trying to get back in person. So I&#8217;m going to sing you all one little verse from <em>Have Yourself a Merry Little Christmas</em>.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy </strong>01:35 <em>Singing</em>  </p>\n\n\n\n<p>Have yourself a merry little Christmas</p>\n\n\n\n<p>Let your heart be light</p>\n\n\n\n<p>From now on our troubles</p>\n\n\n\n<p>Will be out of sight</p>\n\n\n\n<p>Have yourself a merry little Christmas</p>\n\n\n\n<p>Make the Yuletide gay</p>\n\n\n\n<p>From now on our troubles</p>\n\n\n\n<p>Will be miles away</p>\n\n\n\n<p>Here we are as in olden days</p>\n\n\n\n<p>Happy golden days of yore</p>\n\n\n\n<p>Faithful friends who are dear to us</p>\n\n\n\n<p>Gather near to us, once more</p>\n\n\n\n<p>Through the years we all will be together</p>\n\n\n\n<p>If the fates allow</p>\n\n\n\n<p>Hang a shining star upon the highest bough</p>\n\n\n\n<p>And have yourself a merry little Christmas now</p>\n\n\n\n<p>Here we are as in olden days</p>\n\n\n\n<p>Happy golden days of yore</p>\n\n\n\n<p>Faithful friends who are dear to us</p>\n\n\n\n<p>Gather near to us, once more</p>\n\n\n\n<p>Through the years we all will be together</p>\n\n\n\n<p>If the fates allow</p>\n\n\n\n<p>Hang a shining star upon the highest bough</p>\n\n\n\n<p>And have yourself a merry little Christmas now</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:34</p>\n\n\n\n<p>Alright, my friends, that was from my heart to yours if you happened to listen. If you skipped a few seconds to get through it, which I would totally understand, that is also fine. But I did want to just kind of wrap up the year to let you all know that I am so incredibly grateful for all of the people who show up for the WordPress project to make it a success. I have made so many friends and wonderful acquaintances throughout my time here with the WordPress project. And especially in my three years as the project&#8217;s Executive Director. You all have put a lot of trust in me and a lot of faith. And I know that we have gotten so much done together in the last few years. And I am equally sure that we&#8217;re going to get so much done in the years to come. And so thank you all so much for your continued work with WordPress and the way that you just bring your best at all times. </p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:32</p>\n\n\n\n<p>One other little thanks I want to give. Over the course of this year, I&#8217;ve had an excellent team that works with me on this podcast. I have editing and design folks and people who&#8217;ve joined me here and there, folks who helped me with my production. So big thank you to <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Bea</a>, I realize your name is Beatriz in the actual credits, but I call you Bea, and so thank you. Also, a huge thank you to <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé</a>, who does all of our production and wrangling every couple of weeks. A big round of applause and kudos to that tiny but tough team that helps me get this all done.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:10</p>\n\n\n\n<p>That&#8217;s to go on top of the general thanks to the WordPress project. And if you all are celebrators, I hope you have a wonderful holiday season. If you are not celebrators, I hope that you have a wonderful end to your year and that everything you wanted to get done, you did get done, and that you can start 2022 with a fresh slate. Again, this is the WP Briefing. Thank you so much for listening. I&#8217;m your host Josepha Haden Chomphosy, and I&#8217;ll see you again in 2022.</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:\"11880\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Highlights from 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:74:\"https://wordpress.org/news/2021/12/highlights-from-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:\"Thu, 16 Dec 2021 01:04:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{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:6:\"WrapUp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=11869\";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:60:\"Highlights and the official video for 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: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:3653:\"\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/OpiH_P9aGhQ?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<p>State of the Word 2021, the annual keynote from WordPress co-founder Matt Mullenweg, happened on December 14. The hybrid event took place in New York City with a small audience (proof of vaccination required). As Matt said, &#8220;we had people join by plane, train, and automobile.&#8221; Those who didn’t make the trek to the live event watched the livestream from wherever they call home, all around the world.&nbsp;</p>\n\n\n\n<p>It was an exciting moment for the WordPress community which also celebrated its first in-person WordCamp in Sevilla, Spain, after a lengthy hiatus for in-person events.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.tv/2021/12/15/matt-mullenweg-2021-state-of-the-word/\">view the full recording</a>, complete with captions and transcripts on WordPress.tv.</p>\n\n\n\n<p>It was thrilling to see so many meetup organizers host watch parties worldwide. Twenty-eight watch parties were held across eleven countries, with more than 300 RSVPs.  </p>\n\n\n\n<p>Similar to past State of the Word events, Matt covered a broad range of topics. This year was no different. WordPress’ past, present, and future were in the spotlight, with highlights on the growth of the contributors, language translations, recent release milestones, and educational initiatives, to name a few.</p>\n\n\n\n<p>Audience members and livestreamers alike viewed product demos showcasing upcoming features that will be the hallmark of WordPress 5.9, such as full site editing, block patterns, global styling options, and enhanced image controls.</p>\n\n\n\n<p>Matt took the opportunity to remind everyone of the WordPress roadmap which includes native multi-lingual support and real-time collaborative site editing. He also pointed out that anyone can contribute to WordPress’ progress through a number of different initiatives ranging from creating new features and testing to helping spread the word and educate others.</p>\n\n\n\n<p>Matt emphasized the way that open source software gets better by reminding everyone that “The more people that use a program like WordPress, the better it gets.”</p>\n\n\n\n<p>Broader topics covering the tech landscape including web3, merger and acquisition activity, as well as the growth and support of open source software, rounded out the energetic presentation.&nbsp;</p>\n\n\n\n<p>The one-hour multimedia presentation was followed by an interactive <a href=\"https://wordpress.tv/2021/12/15/matt-mullenweg-state-of-the-word-2021-qa/\">question and answer</a> session where Matt fielded questions that were submitted ahead of the event, as well as questions from the livestream and studio audience.</p>\n\n\n\n<p>Discover everything that was covered by <a href=\"https://wordpress.tv/2021/12/15/matt-mullenweg-2021-state-of-the-word/\">watching the official event recording</a> and join the ongoing <a href=\"https://twitter.com/hashtag/ILoveWP\">#ILoveWP conversation on Twitter</a>!</p>\n\n\n\n<p><em>Special thanks to <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a> for review and edits! </em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11869\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.9 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2021/12/wordpress-5-9-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Dec 2021 20:19: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:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"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:\"\";}i:3;a:5:{s:4:\"data\";s:4:\"beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11835\";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:102:\"WordPress 5.9 Beta 3 is now available for testing. Help test to make the release as good as it can be.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Jonathan Bossenger\";s: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:6087:\"\n<p>WordPress 5.9 Beta 3 is now available for testing!</p>\n\n\n\n<p><strong>This software version is still under development.</strong> Please do not run this software on a production site; install it on a test site, where you can try out the newest features and get a feel for how they will work on your site.</p>\n\n\n\n<p>You can test the WordPress 5.9 Beta 3 in three ways:</p>\n\n\n\n<p><strong>Option 1:</strong> Install and activate the<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"> <strong>WordPress Beta Tester</strong></a><strong> </strong>plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2:</strong> Direct download <a href=\"https://wordpress.org/wordpress-5.9-beta3.zip\">the beta version</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> If you use WP-CLI to upgrade from Beta 1 or Beta 2 to Beta 3 on a case-insensitive filesystem, please use the following command sequence:</p>\n\n\n\n<p>Command One:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-beta2</code></pre>\n\n\n\n<p>Command Two:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-beta3 --force</code></pre>\n\n\n\n<p>The current target for the final release of 5.9 is January 25, 2022, which gets closer every minute. Your help testing this beta is vital: the more testing that happens, the more stable the release, and the better the experience for users and developers—and the entire WordPress community.</p>\n\n\n\n<h2 id=\"some-highlights\"><strong>Some Highlights</strong></h2>\n\n\n\n<p>Since <a href=\"https://wordpress.org/news/2021/12/wordpress-5-9-beta-2/\">Beta 2</a>,<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=11%2F30%2F2021..12%2F07%2F2021&amp;milestone=5.9&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\"> </a><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=12%2F08%2F2021..12%2F14%2F2021&amp;milestone=5.9&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">14</a> bugs have been fixed. Here are a few of the changes you will find in Beta 3:</p>\n\n\n\n<ul><li>Editor: Add FSE infrastructure from Gutenberg plugin into Core (<a href=\"https://core.trac.wordpress.org/ticket/54335\">#54335</a>).</li><li>Formatting: Allow PDFs to embedded as objects (<a href=\"https://core.trac.wordpress.org/ticket/54261\">#54261</a>)</li><li>Language switcher on the login screen (<a href=\"https://core.trac.wordpress.org/ticket/43700\">#43700</a>)</li><li>REST API: Add navigation areas REST API endpoint from Gutenberg plugin (<a href=\"https://core.trac.wordpress.org/ticket/54393\">#54393</a>)</li><li>Themes: Live Preview button bug (<a href=\"https://core.trac.wordpress.org/ticket/54578\">#54578</a>)</li></ul>\n\n\n\n<h2 id=\"how-you-can-help\"><strong>How You Can Help</strong></h2>\n\n\n\n<p><strong>Do some testing!</strong></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/handbook/testing/beta-testing/\">Testing for bugs</a> is vital for polishing the release in the beta stage and a great way to contribute.&nbsp;</p>\n\n\n\n<p>If you think you’ve found a bug, please post to the<a href=\"https://wordpress.org/support/forum/alphabeta/\"> Alpha/Beta</a> area in the support forums. If you’re comfortable writing a reproducible<a href=\"https://make.wordpress.org/core/reports/\"> bug report</a>, file one on<a href=\"https://core.trac.wordpress.org/newticket\"> WordPress Trac</a>. That’s also where you can find a list of<a href=\"https://core.trac.wordpress.org/tickets/major\"> known bugs</a>.</p>\n\n\n\n<p>For even more ways to test, you can also refer to<a href=\"https://make.wordpress.org/test/2021/11/30/help-test-wordpress-5-9-features/\"> this official Full Site Editing post from @annezazu</a>.</p>\n\n\n\n<h2 id=\"got-questions-here-are-some-answers\"><strong>Got questions? Here are some answers</strong></h2>\n\n\n\n<p>In the coming weeks, follow the<a href=\"https://make.wordpress.org/core/\"> Make WordPress Core blog</a> for<a href=\"https://make.wordpress.org/core/tag/5-9+dev-notes/\"> 5.9-related developer notes</a> that cover these items in detail. So far, contributors have fixed<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=5.9&amp;resolution=fixed\"> 316 tickets in WordPress 5.9</a>, including<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;status=reopened&amp;changetime=..12%2F07%2F2021&amp;type=enhancement&amp;type=feature+request&amp;milestone=5.9&amp;group=component&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=changetime&amp;col=owner&amp;col=priority&amp;col=keywords&amp;order=changetime\"> 100 new features and enhancements</a>. More bug fixes are on the way with your help through testing.</p>\n\n\n\n<p><em>Props to<a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/chanthaboune/\" target=\"_blank\">&nbsp;</a><a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/psykro/\" target=\"_blank\">@psykro</a>,&nbsp;<a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/estelaris/\" target=\"_blank\">@estelaris</a>,&nbsp;<a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/hellofromtonya/\" target=\"_blank\">@hellofromtonya</a>, <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/marybaum/\" target=\"_blank\">@marybaum</a>,&nbsp;<a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/webcommsat/\" target=\"_blank\">@webcommsat</a>,&nbsp;<a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/cbringmann/\" target=\"_blank\">@cbringmann</a>,&nbsp;<a href=\'https://profiles.wordpress.org/costdev/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>costdev</a>,</em> <em>and&nbsp;<a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/audrasjb/\" target=\"_blank\">@audrasjb</a></em>&nbsp;<em>for contributions to this post.</em></p>\n\n\n\n<p><em>Filed under #release, #5.9, #beta</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:\"11835\";s: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:75:\"\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:20:\"WordPress 5.9 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2021/12/wordpress-5-9-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Dec 2021 22:02:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.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:\"\";}i:3;a:5:{s:4:\"data\";s:4:\"beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:6:\"Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:12:\"block editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:11:\"WP releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11794\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"Can you help test the latest software version of WordPress? 5.9 Beta 2 was published on 7 December 2021, help find any bugs. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Jonathan Bossenger\";s: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:6225:\"\n<p>WordPress 5.9 Beta 2 is now available for testing!</p>\n\n\n\n<p><strong>This software version is still under development.</strong> Please do not run this software on a production site. Instead, install it on a test site, where you can try out the newest features to get a feel for how they will work on your site.</p>\n\n\n\n<p>You can test the WordPress 5.9 Beta 2 in three ways:</p>\n\n\n\n<p><strong>Option 1:</strong> Install and activate the <strong><a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> </strong>plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2:</strong> Direct download the beta version here (<a href=\"https://wordpress.org/wordpress-5.9-beta2.zip\"><strong>zip</strong></a>).</p>\n\n\n\n<p><strong>Option 3:</strong> When using WP-CLI to upgrade from Beta 1 to Beta 2 on a case-insensitive filesystem, please use the following command sequence:<br></p>\n\n\n\n<p>Command One: </p>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-beta1 </code></pre>\n\n\n\n<p>Command Two: </p>\n\n\n\n<pre class=\"wp-block-code\"><code> wp core update --version=5.9-beta2 --force </code></pre>\n\n\n\n<p>The current target for the final release of 5.9 is January 25, 2022, which is just seven weeks away. Your help testing this version is a vital part of making this release as good as it can be.</p>\n\n\n\n<h2 id=\"some-highlights\"><strong>Some Highlights</strong></h2>\n\n\n\n<p>Since<a href=\"https://wordpress.org/news/2021/06/wordpress-5-8-beta-1/\"> </a><a href=\"https://wordpress.org/news/2021/11/wordpress-5-9-beta-1/\">Beta 1</a>, <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=11%2F30%2F2021..12%2F07%2F2021&amp;milestone=5.9&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">24</a> bugs have been fixed. Here are a few of the changes you will find in Beta 2:</p>\n\n\n\n<ul><li>Block Editor: Remove navigation areas (<a href=\"https://core.trac.wordpress.org/ticket/54506\">#54506</a>)</li><li>Block Editor: Navigation block view JavaScript error (<a href=\"https://core.trac.wordpress.org/ticket/54456\">#54456</a>)</li><li>Block Editor: Block template theme error related to child themes (<a href=\"https://core.trac.wordpress.org/ticket/54515\">#54515</a>)</li><li>General: Fixing existing links to Customizer when the Site Editor is enabled (<a href=\"https://core.trac.wordpress.org/ticket/54460\">#54460</a>)</li><li>Media: Media library showing only the selected image (<a href=\"https://core.trac.wordpress.org/ticket/53765\">#53765</a>)</li><li>Media: Fatal error uploading media on PHP8 (<a href=\"https://core.trac.wordpress.org/ticket/54385\">#54385</a>)</li><li>REST API: Add Global Styles REST API endpoints from Gutenberg into Core (<a href=\"https://core.trac.wordpress.org/ticket/54336\">#54336</a>)</li></ul>\n\n\n\n<p>Also, note that some users testing 5.9 Beta 1 faced some fatal errors upon upgrade. In turn, these errors revealed the need for some extra work on the filesystem and upgrader.&nbsp;Those fatal errors are no longer a problem, and the enhancements will be part of version 6.0.</p>\n\n\n\n<h2 id=\"how-you-can-help\"><strong>How You Can Help</strong></h2>\n\n\n\n<p><strong>Do some testing!</strong></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/handbook/testing/beta-testing/\">Testing for bugs</a> is vital for polishing the release in the beta stage and a great way to contribute.&nbsp;</p>\n\n\n\n<p>If you think you’ve found a bug, please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta</a> area in the support forums. If you’re comfortable writing a reproducible <a href=\"https://make.wordpress.org/core/reports/\">bug report</a>, file one on <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a>. That’s also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<h2 id=\"where-can-i-get-more-information\">Where can I get more information?</h2>\n\n\n\n<p>In the coming weeks, follow the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/5-9+dev-notes/\">5.9-related developer notes</a> that cover these items in detail.</p>\n\n\n\n<p>So far, contributors have fixed <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=5.9&amp;resolution=fixed\">305 tickets in WordPress 5.9</a>, including <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;status=reopened&amp;changetime=..12%2F07%2F2021&amp;type=enhancement&amp;type=feature+request&amp;milestone=5.9&amp;group=component&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=changetime&amp;col=owner&amp;col=priority&amp;col=keywords&amp;order=changetime\">110 new features and enhancements</a>. More bug fixes are on the way with your help through testing.</p>\n\n\n\n<p><em>Props to</em><a href=\"https://profiles.wordpress.org/chanthaboune/\"><em> </em></a><em><a href=\'https://profiles.wordpress.org/psykro/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>psykro</a>, <a href=\'https://profiles.wordpress.org/estelaris/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>estelaris</a>, <a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a>, <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/davidb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidb</a>, <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>, and </em><a href=\'https://profiles.wordpress.org/pbiron/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>pbiron</a><em> for contributions to this post.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11794\";s: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: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:40:\"The Month in WordPress – November 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/12/month-in-wordpress-november-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, 02 Dec 2021 11:30:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:22:\"the 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=11763\";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:\"Despite the holiday season being around the corner, the WordPress project didn’t slow down. In a recent episode of WP Briefing, Executive Director Josepha Haden shares the first thing she wants people to notice about WordPress, which is also the heart of this open source project: Now, the first thing I want people to see [&#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:18257:\"\n<p>Despite the holiday season being around the corner, the WordPress project didn’t slow down. In a <a href=\"https://wordpress.org/news/2021/11/episode-20-wordpressblogging/\">recent episode</a> of <a href=\"https://wordpress.org/news/podcast/\">WP Briefing</a>, Executive Director <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> shares the first thing she wants people to notice about WordPress, which is also the heart of this open source project:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>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 thousands of really smart people making sure it works and gets better every day.</p><cite>Josepha Haden, Executive Director of the WordPress project</cite></blockquote>\n\n\n\n<p>As always, contributors across various teams are working hard to ensure the upcoming release of WordPress 5.9 doesn’t disappoint. With State of the Word 2021 coming up soon, there are many exciting things in the works. Read the November 2021 edition of the Month in WordPress to learn more about what’s happening.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 id=\"wordpress-5-9-expected-to-release-on-january-25-2022\">WordPress 5.9: Expected to release on January 25, 2022</h2>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"309\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/12/5.9.png?resize=632%2C309&#038;ssl=1\" alt=\"\" class=\"wp-image-11764\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/12/5.9.png?resize=1024%2C501&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/12/5.9.png?resize=300%2C147&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/12/5.9.png?resize=768%2C376&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/12/5.9.png?resize=1536%2C752&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/12/5.9.png?w=1830&amp;ssl=1 1830w, https://i2.wp.com/wordpress.org/news/files/2021/12/5.9.png?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<ul><li>The Core Team announced the <a href=\"https://make.wordpress.org/core/2021/11/22/wordpress-5-9-revised-release-schedule/\">WordPress 5.9 Revised Release Schedule</a>, and the release is now planned for January 25, 2022.</li><li><strong>WordPress 5.9 Beta 1 was recently released and is available for testing.</strong> This version of the WordPress software is under development. Check out the <a href=\"https://wordpress.org/news/2021/11/wordpress-5-9-beta-1/\">release post</a> to learn more about what’s new in version 5.9 and how you can help testing.&nbsp;</li><li>Check out “<a href=\"https://wordpress.org/news/2021/11/a-look-at-wordpress-5-9/\">A Look at WordPress 5.9</a>” for a first peek into the exciting features included in this major release.</li><li><a href=\"https://wordpress.org/news/2021/11/wordpress-5-8-2-security-and-maintenance-release/\">WordPress 5.8.2</a>, a security and maintenance release, was out on November 10, 2021. This release includes two bug fixes and one security fix.</li></ul>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong><strong>Are you interested in contributing to WordPress core?</strong> 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>. 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\">8 PM</a> UTC.</strong></p></blockquote>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"gutenberg-releases-11-9-and-12-0-are-out\">Gutenberg releases: 11.9 and 12.0 are out</h2>\n\n\n\n<p>Two new Gutenberg versions have been released!</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2021/11/12/whats-new-in-gutenberg-11-9-0-10-november/\">Version 11.9.0</a> brings new Gutenberg blocks for working with post comments, a fullscreen pattern explorer modal, further iterations on the Navigation block, and many other improvements.</li><li><a href=\"https://make.wordpress.org/core/2021/11/29/whats-new-in-gutenberg-12-0-0-24-november/\">Gutenberg 12.0.0</a>, released on November 24, improves the Block Styles preview and includes featured image block visual enhancements, a site Editor welcome guide, official JSON schema updates, and much more.</li></ul>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Want to get involved in developing Gutenberg? </strong>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>. Follow <a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">#gutenberg-new</a> for details on the latest updates.</p></blockquote>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"state-of-the-word-2021-join-a-watch-party-in-your-local-community\">State of the Word 2021: Join a watch party in your local community</h2>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"422\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/12/Web-—-Matt.png?resize=632%2C422&#038;ssl=1\" alt=\"State of the Word 2021 Announcement, which will take place on December 14 between 5 pm and 7 pm ET (22 - 00 UTC).\" class=\"wp-image-11766\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/12/Web-—-Matt.png?resize=1024%2C683&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/12/Web-—-Matt.png?resize=300%2C200&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/12/Web-—-Matt.png?resize=768%2C512&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/12/Web-—-Matt.png?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2021/11/state-of-the-word-2021/\">State of the Word 2021</a>, the annual keynote address delivered by the WordPress project’s co-founder, Matt Mullenweg, will be held on December 14, 2021 <a href=\"https://calendar.google.com/calendar/u/0/r/eventedit?text=State+of+the+Word+2021+livestream&amp;dates=20211214T220000Z/20211215T000000Z&amp;details=State+of+the+Word+is+the+annual+keynote+address+delivered+by+the+WordPress+project%27s+co-founder,+Matt+Mullenweg.%0AJoin+Matt+as+he+provides+a+retrospective+of+2021,+celebrates+the+community%27s+amazing+wins,+discusses+the+latest+trends+he%27s+seeing,+and+explores+the+future+of+open+source.%0AState+of+the+Word+will+be+live+streamed+from+New+York+City,+and+is+free+for+all+to+watch.%0Ahttps://wordpress.org/news/2021/11/state-of-the-word-2021/\">between 5 and 7 pm ET/10 pm – 12 am (December 15) UTC</a>. The event will be <a href=\"https://wordpress.org/news/2021/11/join-us-for-state-of-the-word-2021-in-person-or-online/\">livestreamed from New York City</a>, and include a Question and Answer session.&nbsp;</li><li>Host or join a <a href=\"https://wordpress.org/news/2021/11/watch-state-of-the-word-at-a-watch-party-with-your-wordpress-friends/\">State of the Word watch party</a> to enjoy the event with your WordPress friends. Check <a href=\"https://meetup.com/pro/wordpress\">Meetup</a> to see if a watch party is scheduled to be held in your local community!</li></ul>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><a href=\"https://calendar.google.com/calendar/u/0/r/eventedit?text=State+of+the+Word+2021+livestream&amp;dates=20211214T220000Z/20211215T000000Z&amp;details=State+of+the+Word+is+the+annual+keynote+address+delivered+by+the+WordPress+project%27s+co-founder,+Matt+Mullenweg.%0AJoin+Matt+as+he+provides+a+retrospective+of+2021,+celebrates+the+community%27s+amazing+wins,+discusses+the+latest+trends+he%27s+seeing,+and+explores+the+future+of+open+source.%0AState+of+the+Word+will+be+live+streamed+from+New+York+City,+and+is+free+for+all+to+watch.%0Ahttps://wordpress.org/news/2021/11/state-of-the-word-2021/\"><strong>Add the event to your calendar</strong></a><strong> so you don’t miss State of the Word 2021!</strong> Want to ask Matt a question during State of the Word? Please send your questions ahead of time to <a>ask-matt@wordcamp.org</a> or ask them live during the event via YouTube chat.</p></blockquote>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"team-updates-nominations-for-some-team-representatives-are-still-underway\">Team updates: Nominations for some team representatives are still underway</h2>\n\n\n\n<ul><li><a href=\"https://github.com/WordPress/Requests/releases/tag/v2.0.0\">Requests 2.0.0 has been released</a>. This release is fully compatible with PHP 8.0 and 8.1, indicating that a legacy codebase can be modernized, made more stable and secure <em>without</em> breaking backward-compatibility. The Requests project is a dependency of WordPress core, which was adopted into the WordPress organization earlier this year.&nbsp;</li><li>The <a href=\"https://wordpress.org/news/files/2021/11/WordPress.org-2020-Annual-Survey.pdf\">2020 WordPress Annual Survey</a> results are available to be viewed.&nbsp;</li><li>The Core Team added <a href=\"https://make.wordpress.org/core/2021/11/08/new-committers-2021/\">six new committers</a>.</li><li>Last month, the <a href=\"https://make.wordpress.org/marketing/2021/11/22/2022-team-nominations-for-marketing/\">Marketing Team</a> opened its call for team representatives, joining <a href=\"https://make.wordpress.org/core/2021/10/26/nominations-for-core-team-reps-2022/\">Core</a>, <a href=\"https://make.wordpress.org/themes/2021/10/27/nominations-call-for-the-themes-team-representatives/\">Themes</a>, <a href=\"https://make.wordpress.org/accessibility/2021/10/30/call-for-team-rep-nominations-3/\">Accessibility</a>, <a href=\"https://make.wordpress.org/support/2021/10/team-representative-nominations/\">Support</a>, and <a href=\"https://make.wordpress.org/hosting/2021/10/30/nominations-for-hosting-team-reps-2022/\">Hosting</a> from October 2021.</li><li>The <a href=\"https://make.wordpress.org/core/2021/11/24/core-team-reps-for-2020-and-beyond-2/\">Core Team announced its new Team Rep for 2022</a> (and beyond).</li><li>The <a href=\"https://make.wordpress.org/design/2021/10/08/moving-to-bi-weekly-meetings/\">Design Team</a> and the <a href=\"https://make.wordpress.org/accessibility/2021/11/19/accessibility-team-meeting-notes-november-19-2021/\">Accessibility Team’s</a> meetings will be held bi-weekly moving forward.</li><li>The Marketing Team published the latest edition of <a href=\"https://wordpress.org/news/2021/11/people-of-wordpress-devin-maeztri/\">People of WordPress, featuring Devin Maeztri</a> from Indonesia.</li><li>There’s an open call for suggestions for <a href=\"https://make.wordpress.org/community/2021/11/05/2022-goals-for-the-community-team-suggestions-invited/\">Global Community Team</a>, <a href=\"https://make.wordpress.org/training/2021/11/16/team-goal-setting-2022/\">Training Team</a>, and <a href=\"https://make.wordpress.org/polyglots/2021/11/11/2022-polyglots-planning/\">Polyglots</a> goals for 2022. Please drop your ideas by December 6, 2021.</li><li>The Accessibility Team has opened 1-2 <a href=\"https://wordpress.slack.com/archives/C037W5S7X/p1637775719355600\">volunteer positions</a> for the <a href=\"https://make.wordpress.org/community/tag/diverse-speaker-support/\">#diverse-speaker-support</a> channel.</li><li>The <a href=\"https://make.wordpress.org/polyglots/2021/11/22/polyglots-monthly-newsletter-november-2021/\">November 2021 edition</a> of the Polyglots monthly newsletter is out.&nbsp;</li><li>The Marketing Team welcomes any help to <a href=\"https://make.wordpress.org/marketing/2021/11/17/help-promote-wordpress-meetups-each-week/\">promote WordPress Meetups</a> on a weekly basis and thus keep the community connected.</li></ul>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>We want to hear from you!</strong> Suggest your 2022 goals for the <a href=\"https://make.wordpress.org/community/2021/11/05/2022-goals-for-the-community-team-suggestions-invited/\">Global Community Team</a> by December 6, 2021.</p></blockquote>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"feedback-testing-requests-test-wordpress-5-9-beta-1-take-the-2021-annual-wordpress-survey-to-share-your-experience\">Feedback/Testing requests: Test WordPress 5.9 Beta 1; Take the 2021 Annual WordPress Survey to share your experience</h2>\n\n\n\n<ul><li>WordPress 5.9 Beta 1 is now available for testing and we’d like to hear from you! Testing is vital to ensure the release is as good as it can be—it’s also a great way to contribute. Read the comprehensive guide, “<a href=\"https://make.wordpress.org/test/2021/11/30/help-test-wordpress-5-9-features/\">Help test WordPress 5.9 Features</a>,” to learn how to test WordPress 5.9 Beta 1 and report any bugs.</li><li>There’s an open call for testing for <a href=\"https://make.wordpress.org/mobile/2021/11/16/call-for-testing-wordpress-for-ios-18-7/\">WordPress iOS 18.7</a> and <a href=\"https://make.wordpress.org/mobile/2021/11/16/call-for-testing-wordpress-for-android-18-7/\">Android 18.7</a>.</li></ul>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>The </strong><a href=\"https://wordpress.org/news/2021/11/take-the-2021-wordpress-annual-survey-and-view-the-2020-results/\"><strong>2021 WordPress Annual Survey</strong></a><strong> is out! </strong>Please respond to the survey, so <em>your</em> WordPress experience is reflected in the results.</p></blockquote>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"keep-an-eye-out-for-wordcamp-taiwan-and-sevilla-along-with-several-wordpress-workshops-in-december-2021\">Keep an eye out for WordCamp Taiwan and Sevilla, along with several WordPress workshops in December 2021</h2>\n\n\n\n<ul><li>Several <a href=\"https://www.meetup.com/wordpress-social-learning/\">WordPress Social Learning Meetups</a> were held in November by the Training Team, and there will be more in December 2021.</li><li><a href=\"https://make.wordpress.org/community/tag/tuesdaytrainings/\">Tuesday Training</a> sessions are paused until 2022.</li><li><a href=\"https://saopaulo.wordcamp.org/2021/\">WordCamp São Paulo</a> was held online on November 27, 2021.</li><li>Get excited for <a href=\"https://sevilla.wordcamp.org/2021/\">WordCamp Sevilla 2021</a>, coming up on December 11-12! Sevilla is the first in-person WordCamp happening in over 18 months, since WordCamps moved online in March 2020 due to COVID-19.</li><li>Don’t miss the following upcoming WordCamps: <a href=\"https://taiwan.wordcamp.org/2021/\">WordCamp Taiwan 2021</a>, <a href=\"https://birmingham.wordcamp.org/2022/\">WordCamp Birmingham 2022</a>, and <a href=\"https://europe.wordcamp.org/2022/\">WordCamp Europe 2022</a>!</li><li>Check out the latest episodes of WordPress Briefing with Josepha Haden on<ul><li>“<a href=\"https://wordpress.org/news/2021/11/episode-21-all-things-block-themes/\">All Things Block Themes!</a>”</li><li>“<a href=\"https://wordpress.org/news/2021/11/episode-20-wordpressblogging/\">WordPress=Blogging+</a>”</li><li>“<a href=\"https://wordpress.org/news/2021/11/episode-19-the-people-of-wordpress/\">The People of WordPress</a>”</li></ul></li></ul>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Give back to open source. </strong>Please donate to<a href=\"https://wordpressfoundation.org/news/2021/give-back-to-open-source-this-giving-tuesday/\"> the WordPress Foundation</a>’s mission this holiday season.</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&nbsp; by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this form</em></strong></a><strong><em>.&nbsp;</em></strong></p>\n\n\n\n<p><em>The following folks contributed to November 2021’s Month in WordPress: <a href=\'https://profiles.wordpress.org/anjanavasan/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>anjanavasan</a>, <a href=\'https://profiles.wordpress.org/harishanker/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>harishanker</a>, <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/callye/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>callye</a>, <a href=\'https://profiles.wordpress.org/jrf/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jrf</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, and <a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</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:\"11763\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.9 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2021/11/wordpress-5-9-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Nov 2021 23:35:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11584\";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:307:\"WordPress 5.9 Beta 1 is now available for testing! This version of the WordPress software is under development. You don’t want to run this version on a production site. Instead, it is recommended that you run this on a test site. This will allow you to test out the new version. You can test 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: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:10992:\"\n<p>WordPress 5.9 Beta 1 is now available for testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. You don’t want to run this version on a production site. Instead, it is recommended that you run this on a test site. This will allow you to test out the new version.</p>\n\n\n\n<p>You can test the WordPress 5.9 Beta 1 in three ways:</p>\n\n\n\n<ul><li>Option 1: Install and activate the<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"> WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li><li>Option 2: Direct download the <a href=\"https://wordpress.org/wordpress-5.9-beta1.zip\">beta version here (zip)</a>.</li><li>Option 3: Use WP-CLI to test: <code>wp core update --version=5.9-beta1</code>. <strong><em>Do not use this option if your filesystem is case-insensitive.</em></strong></li></ul>\n\n\n\n<p>The current target for the final release is January 25, 2022, which is just eight weeks away. Your help testing this version is vital to make sure the release is as good as it can be.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/5-9+dev-notes/\">5.9-related developer notes</a> in the coming weeks which will break down all upcoming changes in greater detail.</p>\n\n\n\n<h2 id=\"how-you-can-help-testing\"><strong>How You Can Help – Testing!</strong></h2>\n\n\n\n<p>Testing for bugs is a critical part of polishing the release in the beta stage. It is also a great way to contribute. If you’ve never tested a beta release before, <a href=\"https://make.wordpress.org/test/2021/11/30/help-test-wordpress-5-9-features/\">this detailed guide will help</a> walk you through what and how to test.</p>\n\n\n\n<p>If you think you’ve found a bug, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. That’s also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>To see every feature in the Gutenberg releases since WordPress 5.8, check out the What’s New In Gutenberg posts for <a href=\"https://make.wordpress.org/core/2021/06/10/whats-new-in-gutenberg-10-8-9-june/\">10.8</a>, <a href=\"https://make.wordpress.org/core/2021/06/24/whats-new-in-gutenberg-10-9-23-june/\">10.9</a>, <a href=\"https://make.wordpress.org/core/2021/07/09/whats-new-in-gutenberg-11-0-0-9-july/\">11.0</a>, <a href=\"https://make.wordpress.org/core/2021/07/21/whats-new-in-gutenberg-11-1-0-21-july/\">11.1</a>, <a href=\"https://make.wordpress.org/core/2021/08/05/whats-new-in-gutenberg-11-2-0-4-august/\">11.2</a>, <a href=\"https://make.wordpress.org/core/2021/08/18/whats-new-in-gutenberg-11-3-18-august/\">11.3</a>, <a href=\"https://make.wordpress.org/core/2021/09/01/whats-new-in-gutenberg-11-4-1-september/\">11.4</a>, <a href=\"https://make.wordpress.org/core/2021/09/17/whats-new-in-gutenberg-11-5-16-september/\">11.5</a>, <a href=\"https://make.wordpress.org/core/2021/10/01/whats-new-in-gutenberg-11-6-29-september/\">11.6</a>, <a href=\"https://make.wordpress.org/core/2021/10/14/whats-new-in-gutenberg-11-7-october-13th/\">11.7</a>, <a href=\"https://make.wordpress.org/core/2021/10/28/whats-new-in-gutenberg-11-8-0-27-october/\">11.8</a>, and <a href=\"https://make.wordpress.org/core/2021/11/12/whats-new-in-gutenberg-11-9-0-10-november/\">11.9</a>.&nbsp;</p>\n\n\n\n<p>Beyond the noted changes, which include 580 enhancements and nearly 450 bug fixes, contributors have fixed <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=5.9&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">297 tickets for WordPress 5.9</a>, including <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;status=reopened&amp;type=enhancement&amp;type=feature+request&amp;milestone=5.9&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=priority&amp;col=changetime&amp;col=keywords&amp;order=changetime\">110 new features and enhancements</a>. More fixes are on the way.</p>\n\n\n\n<p>Happy testing!</p>\n\n\n\n<p><em>Want to know what’s new in version 5.9? Read on for some highlights.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 id=\"full-site-editing\"><strong><strong>Full Site Editing</strong></strong></h2>\n\n\n\n<h3 id=\"styles-interface\">The <strong>Styles Interface</strong></h3>\n\n\n\n<p>Combine all the features that went live in 5.8 with those making their entrance in 5.9, and you get <strong>Full Site Editing.</strong></p>\n\n\n\n<p>Formerly known as Global Styles, the Styles Interface lets you interact directly with your blocks and elements right in the WordPress Admin. From typography to color palettes, this cohesive design interface means a design change—even a dramatic one—can happen without a theme switch. <strong>No code needed.</strong></p>\n\n\n\n<h3 id=\"theme-json\"><strong>Theme.json</strong></h3>\n\n\n\n<p>Introduced in WordPress 5.8, theme.json has been improved to enable features and default styles for your site and its blocks. With 5.9, theme.json can support child themes and the duotone treatment. Coordinate layers of style with theme.json, taking the weight off of your theme’s required CSS.</p>\n\n\n\n<p>Other features supported by theme.json include: </p>\n\n\n\n<ul><li><strong>Border:</strong> color, style, and width augment the border-radius property that landed in 5.8.</li><li><strong>Flex layouts:</strong> Block Gap support, courtesy of spacing.blockGap.</li><li><strong>Typography:</strong> font families, font style, font weight, text decoration, and text transform.</li><li><strong>Images</strong>: Duotones.</li></ul>\n\n\n\n<h3 id=\"a-new-navigation-block\"><strong>A New Navigation Block</strong></h3>\n\n\n\n<p>Welcome to the most intuitive way to build navigation: the Navigation Block.&nbsp;</p>\n\n\n\n<p>Here are the features that need testing the most:</p>\n\n\n\n<ul><li>Responsive menu options you can turn off, have always on, or opt to use only for small screens.</li><li>Built-in keyboard accessibility.&nbsp; For accessibility, for speed, or both.</li><li>Add extra blocks like Search and Site Icon blocks (and customize them to your liking).</li><li>Submenu items with styling options.</li><li>Horizontal or vertical alignment.</li><li>Reusable navigation? Even across themes? Yes. Because the Navigation Block you build gets saved as a custom post type.</li></ul>\n\n\n\n<h3 id=\"a-better-gallery-block\"><strong>A Better Gallery Block</strong></h3>\n\n\n\n<p>What if you could treat single images in your Gallery Block the same way you treat the Image Block? <strong>Now you can.</strong></p>\n\n\n\n<p> Make every image in your gallery different from the next, with inline cropping or a duotone and change layouts with the ease of drag and drop. With the improved gallery block, every image is its own Image block.</p>\n\n\n\n<p><strong>One thing to note: </strong>Have you built a plugin or theme on the Gallery Block functionality?<a href=\"https://make.wordpress.org/core/2021/08/20/gallery-block-refactor-dev-note/\"> Be sure to review this Dev Note, which details what you need to do for compatibility</a>.</p>\n\n\n\n<h3 id=\"focused-template-part-mode\"><strong>Focused Template Part Mode</strong></h3>\n\n\n\n<p>Building template parts can take a level of focus all its own because you’re making decisions for the entire site. So WordPress 5.9 adds a focus mode that shows you only the part you’re working on right now (and you can get back to the regular view with a keystroke).&nbsp;</p>\n\n\n\n<h3 id=\"block-pattern-directory\"><strong>Block Pattern Directory</strong></h3>\n\n\n\n<p>The <a href=\"https://wordpress.org/patterns/\">Pattern Directory</a> offers a range of prebuilt block patterns, from a couple of blocks that show an image and text, to an entire page layout with columns and sections. Since the 5.8 release, the directory has become a hub for exploratory UI and patterns, taking submissions and offering them to the community. So now, your creation can help other people build out their perfect site.</p>\n\n\n\n<h2 id=\"twenty-twenty-two-default-theme\"><strong>Twenty Twenty-Two Default Theme</strong></h2>\n\n\n\n<p><strong>A whole new way of building WordPress themes.</strong></p>\n\n\n\n<p>WordPress 5.9 introduces features that make Full Site Editing possible, including <strong>the first default block theme</strong>.</p>\n\n\n\n<p>Using minimal CSS, theme styles reside in theme.json so that you can configure them in the Styles interface of the WordPress Admin. Make this theme take on its own personality site-wide, with a wide array of color schemes, type combinations, page templates, premade components (forms), and image treatments to choose from.</p>\n\n\n\n<h2 id=\"more-improvements-and-updates\"><strong>More Improvements and Updates</strong></h2>\n\n\n\n<ul><li>Do you love to blog? New tweaks to the publishing flow let you add new posts just seconds after hitting Publish on your latest post.</li><li>List View lets you drag and drop content as easily as you could always cruise through it – and collapse entire sections – so you can concentrate on a task or get the bigger picture.</li><li><a href=\"https://github.com/WordPress/gutenberg/pull/33955\">The Buttons and Social icons blocks now absorb</a> and display their parent block’s toolbar controls.&nbsp;&nbsp;</li><li><a href=\"https://core.trac.wordpress.org/ticket/43700\">Choose your language</a> on the login screen.</li><li>More <a href=\"https://github.com/WordPress/gutenberg/pull/33868\">performance improvements</a> (i.e., speed).</li></ul>\n\n\n\n<p><em>Props to <a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>, <a href=\'https://profiles.wordpress.org/priethor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>priethor</a>, <a href=\'https://profiles.wordpress.org/psykro/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>psykro</a>, <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>, <a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a>, <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a>, and <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a> for their research and copy.</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:\"11584\";s: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:72:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"People of WordPress: Devin Maeztri\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/11/people-of-wordpress-devin-maeztri/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Nov 2021 22:21:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s: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:2;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:3;a:5:{s:4:\"data\";s:9:\"Indonesia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:20:\"Polyglot Contributor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=11678\";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:111:\"Devin Maeztri, a campaigner from Indonesia talks about the difference WordPress makes in her life and her work.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:16562:\"\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 translator and campaigner who uses WordPress to highlight good causes and helps people in her area benefit from the open source platform.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"843\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/11/devin-with-her-cat.jpg?resize=632%2C843&#038;ssl=1\" alt=\"Devin pictured with one of her cats\" class=\"wp-image-11690\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/11/devin-with-her-cat-scaled.jpg?resize=768%2C1024&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/11/devin-with-her-cat-scaled.jpg?resize=225%2C300&amp;ssl=1 225w, https://i1.wp.com/wordpress.org/news/files/2021/11/devin-with-her-cat-scaled.jpg?resize=1152%2C1536&amp;ssl=1 1152w, https://i1.wp.com/wordpress.org/news/files/2021/11/devin-with-her-cat-scaled.jpg?resize=1536%2C2048&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/11/devin-with-her-cat-scaled.jpg?w=1920&amp;ssl=1 1920w, https://i1.wp.com/wordpress.org/news/files/2021/11/devin-with-her-cat-scaled.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>Going to a WordCamp can be a life-changing experience, as Devin Maeztri discovered. Every event she attends is a further step on a journey of discovering the WordPress community and its many opportunities.</p>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p>“It is not that hard to fall for WordPress if you have a chance to experience WordPress. For me, it took a WordCamp.”</p><cite>Devin Maeztri</cite></blockquote></figure>\n\n\n\n<p>Devin&#8217;s first experience with camps came when she volunteered impromptu at an Indonesian event, WordCamp Denpasar, Bali in 2016.&nbsp;</p>\n\n\n\n<p>Here, she made a profound discovery: “WordCamps can bring people who will give back to the community, even if they don’t get anything from WordPress directly.”</p>\n\n\n\n<p>With every WordCamp after that first experience, she became more interested in WordPress and the community.&nbsp;</p>\n\n\n\n<p>Over time, Devin found she wanted to be part of WordPress events more often. She became a regular at Meetups in Ubud and Jakarta, joining as a co-organizer at WordCamp Jakarta in 2017 and 2019. Later, she took on the role of co-organizer for Meetups in Jakarta and Ubud.&nbsp;</p>\n\n\n\n<p>Smitten by what WordCamps can offer and how they can bring people together across national borders, she joined the organizing team for WordCamp Asia 2020. Sadly, this event was to become the first major WordPress event to be cancelled in the COVID-19 pandemic.&nbsp;</p>\n\n\n\n<p>Naturally, Devin hopes WordCamp Asia will happen someday very soon. Beyond the expected WordPress learning and sharing that event will promote, she believes its very scale will showcase how WordCamps add international tourism and cultural understanding everywhere they take place.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><img loading=\"lazy\" width=\"632\" height=\"632\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/11/wcasia_2020_organizers_in_wceu_2019.jpeg?resize=632%2C632&#038;ssl=1\" alt=\"Devin pictured with other WordCamp Asia organizers who attended WordCamp Europe in 2019\" class=\"wp-image-11692\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/11/wcasia_2020_organizers_in_wceu_2019.jpeg?w=1024&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/11/wcasia_2020_organizers_in_wceu_2019.jpeg?resize=300%2C300&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/11/wcasia_2020_organizers_in_wceu_2019.jpeg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2021/11/wcasia_2020_organizers_in_wceu_2019.jpeg?resize=768%2C768&amp;ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>WordCamp Asia 2020 Organizers at WordCamp Europe 2019. Devin is pictured in the front row, second from left. Photo Credit: Abha Thakor</figcaption></figure></div>\n\n\n\n<h2 id=\"showing-how-wordpress-can-be-used-locally\">Showing how WordPress can be used locally</h2>\n\n\n\n<p>After experiencing several events, Devin had questions: “At WordCamps and Meetups, you hear stories about how WordPress powers the web. How it changes the lives of so many people, how it helps dreams come true. It made me think, considering WordPress is that powerful, why are there not even more people in Indonesia using websites, and more using WordPress? Why aren’t more talented Indonesian WordPress users, developers, designers, and business owners taking part in WordPress.org projects? Language, for me, was the main answer.”</p>\n\n\n\n<p>The solution Devin felt was to make WordPress available in the main local language. She said: “I believe, the more content translated into Indonesian, the more Indonesian WordPress users see WordPress as more than just a blogging platform or a content management system. They will realize it’s a huge open source community that works together to make the web a better place. The more plugins and themes translated, the easier the work of the developer and designer will be. The more people see how WordPress can enhance their life, the better the ecosystem for business owners becomes.”</p>\n\n\n\n<h3 id=\"encouraging-others-to-translate-wordpress\">Encouraging others to translate WordPress</h3>\n\n\n\n<p>After talking with others about how WordPress could be even more useful in Indonesia, Devin felt she had to make a personal commitment to reviving the polyglot project in Indonesia. With another volunteer contributor and through promotion, the local polyglot team got bigger and the interest in translation grew. She also took on the responsibility of a General Translation Editor for the language.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"318\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/11/featured-img-used-for-devin-pow2.jpg?resize=632%2C318&#038;ssl=1\" alt=\"Polyglot nominatee - Devin Maeztri\" class=\"wp-image-11706\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/11/featured-img-used-for-devin-pow2.jpg?resize=1024%2C515&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/11/featured-img-used-for-devin-pow2.jpg?resize=300%2C151&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/11/featured-img-used-for-devin-pow2.jpg?resize=768%2C386&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/11/featured-img-used-for-devin-pow2.jpg?w=1247&amp;ssl=1 1247w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Through the efforts of Devin and the other translation editors, Indonesia took part in <a href=\"https://wptranslationday.org/\">WordPress Translation Day</a> in 2020, and in 2021 held sprints and learning sessions spanning the whole 30 days of the event. </p>\n\n\n\n<p>Her enthusiasm and dedication to helping others translate WordPress locally and promoting the global community were recognized in the Polyglot Appreciation Nominations for 2021. </p>\n\n\n\n<h2 id=\"helping-to-give-access-to-more-diverse-audiences\">Helping to give access to more diverse audiences</h2>\n\n\n\n<p>Through her involvement in translation, Devin noticed there were not many women involved in the WordPress community in Indonesia. Often, she found herself the only woman at an event.</p>\n\n\n\n<p>So, along with a couple of community members, she started Perempuan WordPress, a local initiative. This group is open for everyone to join, but prioritizes women as event speakers.</p>\n\n\n\n<p>Devin has gone on to support the work of the Diversity Speaker Training group in the Community Team, translating materials and promoting initiatives in Indonesia.&nbsp;She is keen to encourage others to get involved with this initiative which helps increase the diversity of presenters at Meetups and WordCamps. </p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><img loading=\"lazy\" width=\"600\" height=\"534\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/11/devin-at-wc-jakarta2019.png?resize=600%2C534&#038;ssl=1\" alt=\"\" class=\"wp-image-11689\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/11/devin-at-wc-jakarta2019.png?w=600&amp;ssl=1 600w, https://i1.wp.com/wordpress.org/news/files/2021/11/devin-at-wc-jakarta2019.png?resize=300%2C267&amp;ssl=1 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /><figcaption><em>Organizing at WordCamp Jakarta 2019</em></figcaption></figure></div>\n\n\n\n<p>In her professional roles, Devin is an advocate for WordPress as a tool for people with a wide variety of skill sets. She does not code, but uses the platform extensively for her projects. In 2014, she signed up for a free account on WordPress.com to keep and share notes about what she saw or was thinking about as she commuted on public transport to work. This site did not turn into a blog, but instead introduced her to other opportunities and the vast capabilities of the platform.</p>\n\n\n\n<h2 id=\"wordpress-can-support-your-skills-and-passions\">WordPress can support your skills and passions</h2>\n\n\n\n<p>With a background in environmental activism, Devin has worked for international development organizations on everything from policymaking to campaigning.&nbsp;</p>\n\n\n\n<p>Behind the desk, she worked with policymakers and organized conferences and meetings. That meant doing a lot of writing and translating and working with people on the ground who were impacted by the policies. “My work on the ground usually involved researching, movement building and community empowerment,” she noted.</p>\n\n\n\n<p>Her work with events inspired Devin to get involved in WordCamps and Meetups and share her energy for making things happen. As in her professional work, she felt WordPress was an opportunity to work and share with people about something that can make a positive impact on someone else’s life.</p>\n\n\n\n<p>“For me, everything comes from the heart. I do things that I feel so strongly about. Things that call me, and things that I am good at but still giving me room to learn and become better at. WordPress can be the perfect place for this.”</p>\n\n\n\n<p>While she was between jobs, Devin was encouraged to volunteer at WordCamp Denpasar 2016. With some help, she created an online CV. She also learned to manage a WordPress site, navigate the wp-admin, and make the content appeal to potential employers.&nbsp;</p>\n\n\n\n<p>She eventually got a job as a campaigner to build a movement online and offline. The brainchild of many university friends in America, who used digital campaigns to go global, the campaign used WordPress.&nbsp;</p>\n\n\n\n<p>Devin worked alongside a digital campaigner and helped shape the content, the call to action, and the user experience. She also had to use the wp-admin to make some amendments. As a global movement, it developed its resources in English, so she also reviewed the work of the translators she worked with.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"474\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/11/cat-watching-translation.jpg?resize=632%2C474&#038;ssl=1\" alt=\"One of Devin\'s cats watches the WPTranslationDay 2021 livestreamed events.\" class=\"wp-image-11688\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/11/cat-watching-translation-scaled.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/11/cat-watching-translation-scaled.jpg?resize=300%2C225&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/11/cat-watching-translation-scaled.jpg?resize=768%2C576&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/11/cat-watching-translation-scaled.jpg?resize=1536%2C1152&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/11/cat-watching-translation-scaled.jpg?resize=2048%2C1536&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2021/11/cat-watching-translation-scaled.jpg?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/11/cat-watching-translation-scaled.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>Devin&#8217;s cat became a regular on social media posts about #WPTranslationDay 2021</figcaption></figure></div>\n\n\n\n<p>She left her job as a campaigner at the end of 2018 to concentrate on freelancing – and to spend more of her free time contributing to the WordPress community. She also took up the initiative to help street cats in Jakarta.&nbsp;</p>\n\n\n\n<p>Devin said: “So, I am busy helping these cats but also learning how to fundraise using a website. I’m learning to use online forms, set up a payment service provider, work on SEO, and do other new things I need to learn to grow my initiative. I do have the privilege to learn directly from a personal guru. The same person who convinced me to volunteer at WordCamp Denpasar, and who I married in 2018.”</p>\n\n\n\n<h2 id=\"wordpress-gives-everyone-a-chance-to-learn\">WordPress gives everyone a chance to learn</h2>\n\n\n\n<p>Devin was so enthused by being a contributor for WordPress, she took part in the video shorts following the Translation Day events.</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/VsiQzdmAz8g?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><figcaption>Devin talks about translating in this short <a rel=\"noreferrer noopener\" href=\"https://www.youtube.com/watch?v=VsiQzdmAz8g\" target=\"_blank\">video</a> (opens in a new tab on YouTube)</figcaption></figure>\n\n\n\n<p>She is also active in other Contributor Teams and decided to become a Community Team Deputy to support meetups in new cities across Indonesia and perhaps future WordCamps.&nbsp;</p>\n\n\n\n<p>She said: “One of the things that I like about WordPress is that it is very welcoming and open to people like me, who don’t code at all. At the same time, it shows me a different way of looking at the world.”</p>\n\n\n\n<p>Devin believes in the power of WordPress to give ‘everyone a chance to learn new things’ and allows her to contribute and share her knowledge and experience. “By contributing, I hope to make a difference in someone’s life. I hope they feel the benefit of using WordPress and want to give back to create a healthier WordPress community.”</p>\n\n\n\n<h2 id=\"contributors\">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 Mary Baum (<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>) for the interviews and writing this feature, and to Devin Maeztri (<a href=\"https://profiles.wordpress.org/devinmaeztri/\">@devinmaeztri</a>) for sharing her story. Thanks to Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>) for work on the images, and to Chloé Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>) and Collieth Clarke (<a href=\'https://profiles.wordpress.org/callye/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>callye</a>) for proofing.</p>\n\n\n\n<p>Thanks to Josepha Haden Chomphosy&nbsp;(@<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. </em>#HeroPress #ContributorStory</p>\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11678\";s: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: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:49:\"WP Briefing: Episode 21: All Things 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2021/11/episode-21-all-things-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Nov 2021 12:07: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=11636\";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:436:\"In episode 21 of the WordPress Briefing, Executive Director, Josepha Haden Chomphosy, talks all things block themes with developers and theme specialists Maggie Cabrera and Jeff Ong. 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 [&#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-021.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:26887:\"\n<p>In episode 21 of the WordPress Briefing, Executive Director, Josepha Haden Chomphosy, talks all things block themes with developers and theme specialists Maggie Cabrera and Jeff Ong.</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://make.wordpress.org/core/2021/11/17/wordpress-5-9-beta-1-delayed/\">5.9 Beta 1 Delay Announcement </a></li><li><a href=\"https://make.wordpress.org/core/2021/11/22/wordpress-5-9-revised-release-schedule/\">5.9 Revised Release Schedule</a></li><li><a href=\"https://sevilla.wordcamp.org/2021/\">WordCamp Sevilla 2021</a></li><li>Charitable Giving: <ul><li><a href=\"https://wordpressfoundation.org/donate/\">WordPress Foundation</a></li><li><a href=\"https://donate.bigorangeheart.org/\">Big Orange Heart</a></li><li><a href=\"https://heropressnetwork.com/support/\">HeroPress</a> <em>(Update: This organization is not a non-profit.)</em></li></ul></li></ul>\n\n\n\n<h2 id=\"transcript\">Transcript</h2>\n\n\n\n<span id=\"more-11636\"></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. See, here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:40</p>\n\n\n\n<p>Well, today, folks, in our podcast, I am joined by a couple of special guests. I know it&#8217;s been a bit since I&#8217;ve had a guest, so I&#8217;m very excited to introduce you to who I have with me today. Today, I have <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> and <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>. They both are working on themes, and especially the future of themes as we move into this low code, no code block based experience of editing things in WordPress. And there have been so many questions lately about what does the landscape of being a theme developer turns into once we move fully into this excellent promise of user empowerment for Gutenberg? I figured who best to come and talk to us about that than these two. So welcome, Maggie. Welcome, Jeff. I&#8217;m really excited to have this conversation with you today.</p>\n\n\n\n<p><strong>Jeff Ong&nbsp; </strong>01:39</p>\n\n\n\n<p>Thank you for having us. Excited to be here.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:45</p>\n\n\n\n<p>I&#8217;m just gonna hop right in, and we will see what happens. The first thing that I want to chat about, I hear so many questions and so much discussion about patterns in a lot of different places. Like obviously, the work that I helped to steward the most is around like the Block Pattern directory and various other user-facing tools. And so I have never really been able to give a really solid answer about like patterns and how they work inside themes. And so I wondered if you all had anything that you could offer to our listeners to help clarify what is the power of patterns inside themes in the future? Implementation of themes?</p>\n\n\n\n<p><strong>Jeff Ong&nbsp; </strong>02:34</p>\n\n\n\n<p>I can try to start unless, Maggie? Okay. Well, if you take a look at what I&#8217;ve been doing for the last couple of months working on Twenty Twenty-Two. And if you look at that theme, it&#8217;s mostly just the collection of patterns. Patterns. As you know, if you read the description, the theme, it&#8217;s designed to be the most flexible and kind of like flexible theme ever, dare I say ever created.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:04</p>\n\n\n\n<p>I think you can dare to say it.&nbsp;</p>\n\n\n\n<p><strong>Jeff Ong&nbsp; </strong>03:03</p>\n\n\n\n<p>And, you know, I think a huge part of that is because of the Full Site Editing being launched, introduced in 5.9. And also that theme itself ships with all of these patterns in it that work with the overall design, but really can be configured to your own kind of unique liking and kind of taste and ultimately, what you want to accomplish, whether that&#8217;s I want to make a portfolio, I want to make, you know, a single-page website promoting like my podcast, or there are patterns for that kind of shipping with the theme. And they&#8217;ve all been kind of designed and tailored to work with the typography choices at a baseline level with the color choices at a baseline level, but can very easily be tweaked. And you can kind of rely on them to work with the editor. And I guess, kind of zooming out for a little bit, not just about Twenty-Twenty Two.&nbsp;</p>\n\n\n\n<p><strong>Jeff Ong&nbsp; </strong>04:04</p>\n\n\n\n<p>But like patterns as this idea that a theme, hopefully, what it is, it&#8217;s a collection of different design options or layout options that are ultimately presented as patterns to the user, the patterns are just a really easy way to basically say &#8220;I want you this layout, like two columns of text or with like some images here.&#8221; Basically, a theme becomes a way of packaging the patterns together in a way that feels like a coherent piece of a coherent website. And I think that&#8217;s a pretty powerful idea. I know that the patterns directory is also opening up making those patterns pretty widely available. But I think a theme you could think of as like a curation of those patterns in a way that makes sense. And I think Twenty-Twenty Two is a really good example. I mean, I&#8217;m biased.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:03</p>\n\n\n\n<p>I also think it&#8217;s a good example. Maggie, did you have anything that you wanted to add to that?</p>\n\n\n\n<p><strong>Maggie Cabrera&nbsp; </strong>05:08</p>\n\n\n\n<p>Yeah, What I really like about patterns is how it empowers the user, even if they don&#8217;t really have like a deep knowledge of code, or they&#8217;re not used to the more complex blocks. When the theme developer gives you this pattern about using the query block, for example, it lays out your posts in a very compelling manner. And you can edit it if you want it or just use it out of the box. And you have this dynamic blog that it&#8217;s, like, such a big important part of your website. Like if you want to have a page where you have, you have maybe a podcast website, and you want to showcase your podcasts differently than your regular blog posts. So you can use a different gray pattern for that. And it&#8217;s like, really, really easy to use, even if you&#8217;re not familiar with it.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:07</p>\n\n\n\n<p>One of the things that I have found compelling about this new version of themes and kind of the way that themes are planning to look in the future; it&#8217;s going to be like a super throwback, so everyone get ready for me to sound old, my guests and my listeners alike. It reminds me of my original days of blogging on the web. I was not a developer and even though I had this really short stint of working with JavaScript in my career, at some point. Like no one actually would ever look to me and be like, that one is excellent at design and fixing everything with code, like I was just killer at searching for the right pieces of code, right.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:57</p>\n\n\n\n<p>And so I remember sitting there on Zynga, which is, of course, now powered by WordPress, I absolutely just went out and found bundles of code that are now what we would consider themes and modified the small pieces that I needed to change in order to like really suit what I wanted to have happen on the site at the time. And they&#8217;re like, I knew I could break it all. Really easily. But also, it was, it was not scary to think about breaking it. Like it was clear how I could fix it if I really broke it. The content, like what I had written, was separate from everything to do with the way that it was looking. And so like, I wouldn&#8217;t destroy all of my work, just because I didn&#8217;t put a semicolon in the right place, or whatever it was in that moment. And so like, this future of themes really reminds me of this a lot where someone has curated how it can look how it should look. And you can just like add in modular pieces that will augment what was already intended, but still kind of work. And if it&#8217;s not gonna work, it&#8217;s kind of easy to fix too. So like, I&#8217;m excited. That was a really exciting time in my learning of the web and certainly was formative in my career, as we all now see. And so yeah, I think that&#8217;s really exciting.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:20</p>\n\n\n\n<p>I did have actually another question that this conversation has kind of brought up for me. I have, obviously just use the term modular, which no one has ever used in the context of themes for WordPress. And I know that there is a lot there are a lot of terms kind of wandering around about themes right now. And especially as we&#8217;re moving into what themes can look like in the future. There was block based theme as a term for a while. And now it&#8217;s block themes. There was like this floating around the term, universal themes. And now we&#8217;re looking at just like block themes forever. And so I wondered if y&#8217;all could give us a just like a clear understanding of these terms that had been being used and maybe are going out of fashion? Like, are they important for us to keep knowing?</p>\n\n\n\n<p><strong>Jeff Ong&nbsp; </strong>09:11</p>\n\n\n\n<p>So yes, the history of terms around themes. And obviously, even my knowledge only goes back so far. But it was around when we started doing the block based themes meeting. And trying to I think that&#8217;s where that term kind of came from is like, oh, let&#8217;s, let&#8217;s start talking about this idea that themes can be completely made up out of blocks. And what does that mean?&nbsp;</p>\n\n\n\n<p><strong>Jeff Ong&nbsp; </strong>09:33</p>\n\n\n\n<p>I think over time, it wasn&#8217;t just block themes, because, you know, previously, there were themes and even default themes that used and took into account the fact that blocks existed. So there was some confusion there. Enough time has gone on where we focus on this idea that themes whose templates are ultimately made out of blocks are block themes. And to me, it&#8217;s kind of as simple as that. Its themes that supply a set of templates that previously in the past were a collection of PHP and various template tags and whatnot is all transitioned to themes made up including other blocks, as well as themes that supply styles through theme.json configuration instead of supplying it in raw CSS. To me this idea is really crystallizing around like this is a block theme, one that is really, at its core, supplying a set of templates, and styles through a language that WordPress understands natively, and can allow it to be configured and customized in a really powerful way. And then maybe someday in the future, they&#8217;ll just be called themes again. If we do a good enough they will just be called themes.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>10:57</p>\n\n\n\n<p>I&#8217;m gonna, I&#8217;m gonna take us into a philosophical area now that you&#8217;ve just put us in there. You said, someday they&#8217;ll be called Themes. Again, I&#8217;ve talked about this on this podcast a few times. And for anyone who&#8217;s worked with me for any length of time, like you all probably heard this from me as well. But like, adjectives are so frequently the realm of things that are not what you expect, right? Because like you have coffee, and then decaf coffee, no one&#8217;s like caffeinated coffee, because that&#8217;s what you expect out of it. And so when you&#8217;re like themes, and block themes, it makes it look like block themes are secondary, which at the moment, they are, ish. But in the future, I think you&#8217;re probably right, there will be a time when the modifier isn&#8217;t necessary anymore because it will be hopefully a much better way for people to kind of change the way that their themes work and make it more usable for users and people who are, you know, having to manage their own site without necessarily wanting to or being able to, like, have a Maggie in the room to fix everything that they break.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:08</p>\n\n\n\n<p>Maggie is nowhere near me. And so she&#8217;s never been in the room when I&#8217;ve broken anything. But I believe that Maggie on one occasion, at least, has come in and helped me fix something that I definitely broke. I&#8217;m an excellent breaker of WordPress things. Maggie, did you have anything you wanted to add to that question?&nbsp;</p>\n\n\n\n<p>12:29</p>\n\n\n\n<p>Yeah, I guess, maybe clarify a bit, what universal themes are because, yeah, maybe some people have heard about the term but they don&#8217;t really know what they are. And maybe just clarify that. The term was born when developing block themes wasn&#8217;t something that you could actually do for production websites like you could build them to test some experiments, but they weren&#8217;t really ready for users to use. So universal themes want to grasp the power of love themes while still being ready for users. So the way they do it is they are block based, like we used to call them in the sense that the templates are made of blocks. But they are also able to be customized using the customizer, which is the old way of customizing themes, instead of using the site editor. So they can have a balance between two worlds between the worlds of classic themes and block themes. But they are, at heart, a temporary concept. They are bound to be blocked themes in the future, but with maybe a foot in the past, where they can actually serve users who are not ready for full-on site editor. But they are bound to be full block themes in the future.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>14:00</p>\n\n\n\n<p>There&#8217;s a really interesting concept in there. So universal themes, it sounds like are basically kind of like an on-ramp for people who are not really ready to fully commit to this for any number of reasons. Like we never want to say that we know the reason that people would be a little bit shy to get started with this. But like it&#8217;s kind of like an on-ramp, it&#8217;s a safe way to get back to something that they do know, in the event that what they don&#8217;t know, really hinders their progress makes it hard for them to get the work done.</p>\n\n\n\n<p><strong>Maggie Cabrera&nbsp; </strong>14:31</p>\n\n\n\n<p>I think I wouldn&#8217;t say that they are for people shyer to get into new stuff rather than developers who want to embrace the new stuff before it&#8217;s even really ready. They really want to embrace the power of the blocks instead of doing things the old way. But even if it&#8217;s not fully ready.</p>\n\n\n\n<p><strong>Jeff Ong&nbsp; </strong>14:54</p>\n\n\n\n<p>They still need to support the old way of doing things.</p>\n\n\n\n<p><strong>Maggie Cabrera&nbsp; </strong>14:58</p>\n\n\n\n<p>Like being backward compatible and being ready for any kind of user.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>15:05</p>\n\n\n\n<p>So mostly for developers, everyone who heard me just talking about how it was a great thing for users, ignore it. </p>\n\n\n\n<p><strong>Maggie Cabrera&nbsp; </strong>15:12</p>\n\n\n\n<p>It&#8217;s also good for users; If they feel secure in using the customizer.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>15:20</p>\n\n\n\n<p>Well, I think that there&#8217;s something important here that we certainly learned with the adoption of Gutenberg in 5.0. Right, which is that there is certainly one method of helping people to adopt things, which is to go like the art of war style, and kind of smash their rice pots and burn all their boats, like, that&#8217;s one way. Which works for a lot of companies in the world, I&#8217;m sure. But WordPress has always had kind of a commitment, not even kind of, has always had a commitment to backward compatibility. And like, we know that a lot of the work on Gutenberg is going to represent some breaking changes around the around workflows and around the user experience the interface, especially like, we know that. But the opportunity to like have a thing that gives you an early taste of what&#8217;s coming but also the ability to keep kind of working in your old space where you need to, I think it&#8217;s an excellent way to bring people forward into the future of things, I have never been a fan of the just like cut off all avenues and hope that they stay with your method because of course, like you can&#8217;t cut off all the methods. You can&#8217;t cut off all the ways people can get away from you. And even if we could, it wouldn&#8217;t be in line with how WordPress hopes to kind of help people through some tough stuff like making your first website is hard. If you are doing it as part of, an overall campaign that&#8217;s supposed to bring in leads for you or generate revenue like you don&#8217;t want to necessarily play with that in a way that could break things and be risky for you in the long term. So I think all the tools that we offer to help people kind of move forward with the technology move forward with the CMS as it&#8217;s moving forward, I think it&#8217;s really smart. And so universal themes are one of those things, but also not around to stay. As we move into non modified themes, just the word themes that happen to be based in blocks. If I&#8217;ve confused anyone, please email me at wpbriefing@wordpress.org. And tell me how I confused you. And I will do a follow-up to unconfuse everyone.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>17:40</p>\n\n\n\n<p>So speaking of the way that we help people kind of move forward with WordPress and with the technology. So much has been done in the CMS in the past 12 months in the past 18 months to be able to move themes into this same future as the rest of the editor. Right. So like, for folks who have not been listening to me for the last five years, you may not know this. So I&#8217;m going to tell everybody now, like one of the pain points that Gutenberg overall is solving is the fact that you for a long time had to learn five different editing interfaces to get one thing done in WordPress, right. And so like the advent of blocks and moving it into more and more spaces in the CMS is intended to really flatten the editing experience by making the type of user interaction the type of workflow really similar across all of the editing interfaces in the CMS. And so themes are a natural extension of that, where we can take similar user patterns and workflows, and work them out into themes. So over the last 12 months or so probably a little bit more, there&#8217;s been a lot of work on the CMS to move us forward in that that is now enabling the work that we want to be able to do to move things forward ahead. And so, I mean, this is probably our last question. Is there anything that you all want to offer to people who maybe saw themes early on or saw Gutenberg early on and felt like this is just not for me, in that in that context of like, how far it&#8217;s moved ahead in the past 12 months or so.</p>\n\n\n\n<p><strong>Jeff Ong&nbsp; </strong>19:23</p>\n\n\n\n<p>So you&#8217;re asking like, what in the last 12 months has maybe like really surprised me or like sticks out to me as something that like, Wow, look how far we&#8217;ve come?</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>19:36</p>\n\n\n\n<p>Yeah, yeah. So like, if you&#8217;re looking at what is the one thing that you saw in the last 12 months, that changed in the CMS that really enabled something wonderful for themes or from the other side of it. Like if someone had looked at themes or WordPress 18 months ago, and now they&#8217;re looking at it and seeing this new and different way to do things with the look and feel of their site, like what is one thing that they should be aware of? On either side of that question,</p>\n\n\n\n<p><strong>Maggie Cabrera&nbsp; </strong>20:05</p>\n\n\n\n<p>I think there&#8217;s more than one thing that has really evolved through this last year, year and a half. Like the maturity of some of the blocks is astounding now, like navigation blog, for example, was really bare-bones at the start and now it&#8217;s full potential, and it&#8217;s really looking really great. I would say the same thing about those days or the features on fire, like how basic it was at the start, was full potential. But now it&#8217;s really, really mature in terms of how much you can do with it. Like, I think the example, the perfect example of that is the work that <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell [Reigstad]</a> has done on Twenty-Twenty Two with the alternative theme.json files, where just changing that file basically feels like a new theme, with just the configuration and the styles. And without writing any CSS without changing any templates. It&#8217;s really, really amazing how that can turn into a reality. And it&#8217;s so easy for users to tinker with that if they want to. And it&#8217;s much easier than having to delve deep into CSS and changing everything in like 2000 lines of code.&nbsp;</p>\n\n\n\n<p><strong>Jeff Ong&nbsp; </strong>21:23</p>\n\n\n\n<p>Yeah, I probably would echo most of that. What the thing that astounds me is global styles and how the UI can be shipping a theme or default theme with basically like, 20 lines of CSS, and have it be one of them. A beautiful, beautiful, like crisp and sharp, like, experience. It&#8217;s super fast. And it&#8217;s like, what this is a theme, you know, I thought a theme was supposed to supply all the styles like no, like, it&#8217;s just yeah. And workers do for you. Exactly. And like that. That&#8217;s pretty amazing to think in the last 12 months, we can go from, you know, shipping 1000s of lines of CSS to you none, it&#8217;s like, Wow, pretty cool.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>22:10</p>\n\n\n\n<p>Well, my friends, thank you so much for joining me today. This has been a really interesting conversation. I hope that all y&#8217;all out listening. Also find it interesting. As I mentioned, if you have any follow-up questions, absolutely. Send them to me via email. And I collect all of my questions that I get through the year for answering at the end of the year, mostly because I don&#8217;t get lots of questions that people want to be answered on this. Everyone just asked me their questions on Twitter and in Slack, which is fine as well.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>22:41</p>\n\n\n\n<p>So, Maggie, Jeff, thank you both for joining me. And I&#8217;m sure that we&#8217;ll talk to you all again soon.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>22:56</p>\n\n\n\n<p>That brings us now to our small list of big things. In the last episode, I got all excited about being in the beta phase. But today, I&#8217;m rolling that back a little bit. As part of our usual open source processes, a group of contributors did a deep dive review on the WordPress 5.9 release and found a workflow that needed some refinement. So we are delaying the beta.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>23:19</p>\n\n\n\n<p>Since we are in the midst of a major commerce slash/sales season, and of course, a lengthy holiday season, that delay also means that it makes sense to delay WordPress 5.9 final release a little as well. And so we are delaying that all the way into 2022 to January 25. For me, the trade-off works really well there. Every decision that we make in open source, of course, has some balance to it. It&#8217;s great for these aspects, it is less great for these aspects over here. But for myself, the opportunity to make sure that we have a really excellent experience for our users and also an opportunity to kind of avoid all of the chaos and hustle and bustle of the end of the year. Really, it seemed like a no-brainer for me. So in case you want to learn a little bit more about why we made the decision and get some insight into the actual milestones and where they have moved now, I&#8217;ll include some posts in the show notes below in case you want to read more and of course, if you have any additional questions you can always ask.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>24:33</p>\n\n\n\n<p>The second small list of big things is that the first back to people WordCamp. I don&#8217;t think that&#8217;s what we&#8217;re calling it. Our first back to people WordCamp is happening in a couple of weeks actually. WordCamp Sevilla is happening in person on December 11. And I&#8217;m so excited I wish I were local, but I&#8217;m not so if you are local stop by their website and pick up your ticket.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>24:55</p>\n\n\n\n<p>And the third thing on our smallest a big things is that it is, of course, charitable giving season. I don&#8217;t know if you do your charitable giving at the end of the year or if that&#8217;s even part of your general ways of giving back. But I can think of two or three charitable organizations inside the WordPress ecosystem. There&#8217;s of course the WordPress Foundation, but also Big Orange Heart and HeroPress. If there are others out there, I certainly do want to know about them. WordPress Foundation also does additional giving on behalf of just like the open web and open source as a whole. So if you&#8217;re the sort of person who does their charitable giving at the end of the year, just a reminder that you have some options inside the WordPress ecosystem if you were trying to figure out some new places to donate to in 2021.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>25:42</p>\n\n\n\n<p>And that is your small list of big things. Thank you so much for tuning in today for the WordPress Briefing. Thank you again to our special guests, Maggie and Jeff. 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:\"11636\";s: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: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:68:\"Watch State of the Word at a Watch Party with your WordPress Friends\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2021/11/watch-state-of-the-word-at-a-watch-party-with-your-wordpress-friends/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Nov 2021 18:30:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=11641\";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:322:\"State of the Word 2021 is just around the corner!&#160; Although attending State of the Word in person would be ideal, not all WordPress community members get to enjoy the experience of attending the speech live with friends.&#160; This year, as State of the Word is streamed live for the second time, we want 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: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:20064:\"\n<p><a href=\"https://wordpress.org/news/2021/11/state-of-the-word-2021/\">State of the Word 2021</a> is just around the corner!&nbsp;</p>\n\n\n\n<p>Although attending State of the Word in person would be ideal, not all WordPress community members get to enjoy the experience of attending the speech live with friends.&nbsp;</p>\n\n\n\n<p>This year, as State of the Word is streamed live for the second time, we want to restore that in person camaraderie through State of the Word watch parties for WordPress Community members around the world.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><strong>We encourage WordPress meetup organizers and community members worldwide to (safely) host State of the Word 2021 watch parties —</strong><a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/2021-state-of-the-word-watch-parties/\"><strong>read this handbook to learn more</strong></a><strong>.</strong></p></blockquote>\n\n\n\n<h2 id=\"why-organize-a-watch-party\">Why organize a watch party?&nbsp;</h2>\n\n\n\n<ul><li>If you are a <a href=\"https://meetup.com/pro/wordpress\">WordPress meetup</a> organizer, many folks in your meetup may be unaware of the State of the Word, and a watch party could be a great opportunity to introduce or remind them.</li><li>As meetup organizers slowly bid goodbye to a tough year, the watch party could be an excellent opportunity to revitalize your group, especially if you haven’t had many events this year.</li><li>Along with your Meetup group members, you get a platform to ask questions directly to Matt Mullenweg.</li><li>And last but not least, even if you are not a Meetup Organizer, a watch party can be the perfect opportunity to reconnect and have a blast with your WordPress friends!</li></ul>\n\n\n\n<h2 id=\"how-do-i-organize-a-state-of-the-word-watch-party\">How do I organize a State of the Word watch party?</h2>\n\n\n\n<p>You can choose to host a watch party online or in person. Check out <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/2021-state-of-the-word-watch-parties/#schedule-a-state-of-the-word-watch-party-for-your-meetup\">our handbook</a> for detailed instructions on how to schedule an event (including event templates).</p>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<h3 id=\"online\">Online</h3>\n\n\n\n<p>The simplest way to organize an online watch party is to schedule an online event for your WordPress group and add the State of the Word YouTube streaming link directly on Meetup.com. Alternatively, you can schedule an online meeting using tools like Zoom and broadcast the live stream over there by screen sharing––thereby facilitating better engagement. </p>\n\n\n\n<div class=\"wp-container-61e58cfe57695 wp-block-buttons\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/2021-state-of-the-word-watch-parties/#organizing-an-online-watch-party\" target=\"_blank\" rel=\"noreferrer noopener\">Organize an Online Watch Party</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<h3 id=\"in-person\">In Person</h3>\n\n\n\n<p>If your region meets <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/2021-returning-to-in-person-meetups/\">the guidelines for in person events</a> (if vaccines and testing are freely available), you can organize an in person watch party event (for fully vaccinated OR recently tested OR recently recovered folks) for your WordPress Meetup! Group members can hang out together (following local safety guidelines of course) and watch State of the Word live.</p>\n\n\n\n<div class=\"wp-container-61e58cfe579af wp-block-buttons\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/2021-state-of-the-word-watch-parties/#organizing-an-in-person-watch-party\" target=\"_blank\" rel=\"noreferrer noopener\">Plan an In person Watch Party</a></div>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong>NOTE:</strong> If State of the Word is happening at an odd hour in your timezone, you can still organize a watch party by organizing a replay of live stream, at a date/time that is convenient for your group.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>If your Local WordPress Meetup is organizing an in person watch party, <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/2021-state-of-the-word-watch-parties/request-swag-for-in-person-watch-parties/\"><strong>fill out this form</strong></a><strong> so that we can ship some swag for your group to celebrate!</strong><br>Deadline: November 30, 2021</p></blockquote>\n\n\n\n<h2 id=\"what-else-do-i-need-to-know-about-organizing-a-state-of-the-word-watch-party\">What else do I need to know about organizing a State of the Word watch party?</h2>\n\n\n\n<p>Excited? To help you get started, we’ve put together a few resources:</p>\n\n\n\n<ul><li><strong>Check out this </strong><a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/2021-state-of-the-word-watch-parties/\"><strong>handbook</strong></a><strong> for detailed instructions on how to organize a watch party, </strong>be it online or in person.</li><li>Looking for a Zoom Pro account to host your online watch party?&nbsp;<a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/getting-started/special-virtual-events-zoom-request/\">Request a community zoom pro account</a>&nbsp;for your event right away!</li><li>We have prepared some <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/2021-state-of-the-word-watch-parties/email-templates-for-state-of-the-word/\">email templates</a> that Meetup Organizers can use to spread the word in their Meetup groups.</li><li>Don’t forget to share on social media about your watch party events using the hashtag <strong>#StateOfTheWord</strong> so we can join in on the fun!</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><strong>NOTE: </strong> The guidelines in this post are primarily aimed at WordPress Meetup organizers. <strong>However, you do not need to be a Meetup organizer to schedule a watch party!</strong> You can simply hang out together with your friends online or in person (while following local safety guidelines) and catch the event live!</p></blockquote>\n\n\n\n<h2 id=\"join-a-state-of-the-word-watch-party-near-you\">Join a State of the Word Watch Party near you!</h2>\n\n\n\n<p>We have compiled a list of State of the Word Watch Parties around the world. If you don&#8217;t see a watch party in your region listed here, <a href=\"https://meetup.com/pro/wordpress\" target=\"_blank\" rel=\"noreferrer noopener\">check this page on Meetup.com</a>  to see if your local WordPress group is organizing one. If not, why don&#8217;t you consider organizing a watch party on your own? <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> </p>\n\n\n\n<ul><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/WordPressNYC\">WordPress NYC Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPressNYC/events/282276960/\" target=\"_blank\">An In Person MeetUp: The State of the Word 2021 is in Manhattan.</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/South-Jersey-WordPress-Meetup\">South Jersey WordPress Meetup</a>]  <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/South-Jersey-WordPress-Meetup/events/282402090/\" target=\"_blank\">JerseyPress: State of the Word 2021 Watch Party</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Morris-County-NJ-WordPress-Group\" target=\"_blank\">Morris County NJ WordPress Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Morris-County-NJ-WordPress-Group/events/282402069/\" target=\"_blank\">JerseyPress: State of the Word 2021 Watch Party</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPress-Montclair-Meetup\" target=\"_blank\">WordPress Montclair Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPress-Montclair-Meetup/events/282326195/\" target=\"_blank\">JerseyPress: State of the Word 2021 Watch Party</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/wordpressscv\">WordPress Santa Clarita Valley</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/wordpressscv/events/282056842/\" target=\"_blank\">State of the Word 2021 Watch Party</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/houston-wordpress\" target=\"_blank\">The Houston WordPress Meetup Group</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/houston-wordpress/events/282402609/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/NEOWordPress/\">North East Ohio WordPress Meetup</a>] <a href=\"https://www.meetup.com/NEOWordPress/events/282456476/\">State of Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/Birmingham-WordPress-Meetup\">Birmingham WordPress Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Birmingham-WordPress-Meetup/events/282313212/\" target=\"_blank\">State of the Word Watch Party</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Lehigh-Valley-WordPress-Meetup\" target=\"_blank\">Lehigh Valley WordPress Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Lehigh-Valley-WordPress-Meetup/events/282304472/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/metro-detroit-wordpress-meetup/\">Metro Detroit WordPress Meetup</a>] <a href=\"https://www.meetup.com/metro-detroit-wordpress-meetup/events/282519538/\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Milwaukee-WordPress-MeetUp\" target=\"_blank\">Greater Milwaukee Area WordPress Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Milwaukee-WordPress-MeetUp/events/282598865/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Eastbay-WordPress-Meetup\" target=\"_blank\">The East Bay WordPress Meetup Group</a>] <a href=\"https://www.meetup.com/Eastbay-WordPress-Meetup/events/282539457/\">State of the Word 2021 (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Sacramento-WordPress\" target=\"_blank\">Sacramento WordPress Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Sacramento-WordPress/events/282593192/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPress-Meetup-Louisville\" target=\"_blank\">WordPress Louisville</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPress-Meetup-Louisville/events/281858101/\" target=\"_blank\">State of the Word Watch Party and Discussion (WP Louisville, KY)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1e8-1f1f4.png\" alt=\"🇨🇴\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPressMedellin\" target=\"_blank\">WordPress Medellín</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPressMedellin/events/282306436/\" target=\"_blank\">State of the Word 2021: Discurso de Matt &amp; Fiesta de Comunidad (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1ed-1f1f9.png\" alt=\"🇭🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/Port-au-Prince-WordPress-Meetup\">Port-au-Prince WordPress Meetup Group</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Port-au-Prince-WordPress-Meetup\" target=\"_blank\"></a><a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Port-au-Prince-WordPress-Meetup/events/282350488/\" target=\"_blank\">Rejoignez-nous le 14 décembre pour regarder State of the Word 2021 (online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1ec-1f1e7.png\" alt=\"🇬🇧\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/wpcoventry\" target=\"_blank\">WordPress Coventry Meetup</a>]  <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/wpcoventry/events/282302051/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1ec-1f1e7.png\" alt=\"🇬🇧\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/wpexeter\" target=\"_blank\">WordPress Exeter</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/wpexeter/events/282293408/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1ee-1f1f9.png\" alt=\"🇮🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/WordPress-Meetup-Torino/\">WordPress Meetup Torino</a>] <a href=\"https://www.meetup.com/WordPress-Meetup-Torino/events/282467417/\">State of the Word 2021 Video Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1f7-1f1fc.png\" alt=\"🇷🇼\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Kigali-WordPress-Meetup\" target=\"_blank\">Kigali WordPress Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Kigali-WordPress-Meetup/events/282321636/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1f3-1f1ec.png\" alt=\"🇳🇬\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Lagos-WordPress-Meetup-Group\" target=\"_blank\">Lagos WordPress Community</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Lagos-WordPress-Meetup-Group/events/282321642/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1f3-1f1ec.png\" alt=\"🇳🇬\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Ijebu-WordPress-Meetup\" target=\"_blank\">Ijebu WordPress Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Lagos-WordPress-Meetup-Group/events/282321642/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1ec.png\" alt=\"🇺🇬\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Jinja-WordPress-Meetup\" target=\"_blank\">Jinja WordPress Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Jinja-WordPress-Meetup/events/282637298/\" target=\"_blank\">State of the Word 2021 Watch Party &#8211; WordPress Community Uganda (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1ec.png\" alt=\"🇺🇬\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/Kampala-WordPress-Meetup/\">Kampala WordPress Meetup</a>] <a href=\"https://www.meetup.com/Kampala-WordPress-Meetup/events/282678558/\">State of the Word Livestream</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1f5-1f1f0.png\" alt=\"🇵🇰\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPress-Lahore\" target=\"_blank\">WordPress Meetups Lahore</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPress-Lahore/events/282311458/\" target=\"_blank\">State of the Word 2021 Watch Party (In-person)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/WordPress-Bhopal\">WordPress Bhopal</a>] <a href=\"https://www.meetup.com/WordPress-Bhopal/events/282470541/\">State of the Word 2021 Watch Party (In-person)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/BengaluruWordPress/\">Bengaluru WordPress</a>] <a href=\"https://www.meetup.com/BengaluruWordPress/events/282271921/\">WordPress Meetup &#8211; State of the word -Watch Party</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1f8-1f1ec.png\" alt=\"🇸🇬\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPress-Singapore\" target=\"_blank\">WordPress Singapore</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPress-Singapore/events/282296137/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li></ul>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>If you are planning a watch party for State of the Word, and have questions, please drop us an email to: <a href=\"mailto:support@wordcamp.org\">support@wordcamp.org</a> if you have any questions. We are happy to help you in the best way possible.</p>\n\n\n\n<p><em>The following folks contributed to this post: <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> <em><a href=\'https://profiles.wordpress.org/evarlese/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>evarlese</a></em></em> <em>and <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11641\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"A Look 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:59:\"https://wordpress.org/news/2021/11/a-look-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:\"Tue, 23 Nov 2021 21:02: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: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=11625\";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:322:\"WordPress 5.9 is expected to be a ground-breaking release. It will introduce the next generation of themes with Twenty Twenty-Two joining the fun and over 30 theme blocks to build all parts of your site. In anticipation of the January 25th release, we hope you enjoy this sneak peek of 5.9. New design tools will [&#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: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:2987:\"\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 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/XvEG9XWD4JI?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<p>WordPress 5.9 is expected to be a ground-breaking release. It will introduce the next generation of themes with <a href=\"https://make.wordpress.org/core/2021/10/06/introducing-twenty-twenty-two/\">Twenty Twenty-Two</a> joining the fun and over 30 theme blocks to build all parts of your site. <a href=\"https://make.wordpress.org/core/5-9/\">In anticipation of the January 25th release</a>, we hope you enjoy this sneak peek of 5.9.</p>\n\n\n\n<p>New design tools will allow you to create exactly what you want, from adding filters to all your images to fine-tuning the border radius on all your buttons. With WordPress 5.9 providing more design control along with streamlined access to patterns, you can easily change the entire look and feel of your site without switching themes<strong>.</strong></p>\n\n\n\n<p>No matter what you’re editing, whether it&#8217;s crafting a new post or working on a header, improvements to List View make it simple to navigate content regardless of complexity. More improvements and features for everyone are to come in this release and we can&#8217;t wait to see what you create with WordPress 5.9! </p>\n\n\n\n<h2 id=\"stay-tuned\">Stay Tuned</h2>\n\n\n\n<p>Stay tuned for more updates as the date draws near. If you want to help, the best thing you can do is <a href=\"https://make.wordpress.org/core/handbook/testing/beta-testing/\">test everything</a>! For all the details, <a href=\"https://make.wordpress.org/core/2021/11/22/wordpress-5-9-revised-release-schedule/\">check out this Make Core post</a>.</p>\n\n\n\n<p><em>Video props: <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a> (also co-wrote the post) <a href=\'https://profiles.wordpress.org/michaelpick/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>michaelpick</a> <a href=\'https://profiles.wordpress.org/matveb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>matveb</a> <a href=\'https://profiles.wordpress.org/beafialho/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>beafialho</a> <a href=\'https://profiles.wordpress.org/javiarce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>javiarce</a> <a href=\'https://profiles.wordpress.org/critterverse/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>critterverse</a> <a href=\'https://profiles.wordpress.org/joen/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joen</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:\"11625\";s: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: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:56:\"Join us for State of the Word 2021, in person or online!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wordpress.org/news/2021/11/join-us-for-state-of-the-word-2021-in-person-or-online/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 Nov 2021 21:08:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=11611\";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:297:\"As previously announced, State of the Word will be livestreamed from New York City. That means that you can join the fun either online or in person, on December 14, 2021, between 5 and 7 pm EST! To join State of the Word 2021 online, check your Meetup chapter for a local watch party, or [&#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:1726:\"\n<p>As <a href=\"https://wordpress.org/news/2021/11/state-of-the-word-2021/\">previously announced</a>, State of the Word will be livestreamed from New York City. That means that you can join the fun either online or in person, on <a href=\"https://www.worldtimebuddy.com/?qm=1&amp;lid=5128581,100&amp;h=5128581&amp;date=2021-12-14&amp;sln=17-19&amp;hf=0\">December 14, 2021, between 5 and 7 pm EST</a>!</p>\n\n\n\n<p>To join State of the Word 2021 online, check your Meetup chapter for a local watch party, or simply visit <a href=\"https://wordpress.org/news/\">wordpress.org/news</a>, where the livestream will be embedded.&nbsp;</p>\n\n\n\n<p>If you would like to participate in person in New York City, please request a seat by filling out the registration form by Sunday, November 28. Not all requests will receive a seat due to venue capacity, but everyone who requests one will receive further notification on Tuesday, November 30.&nbsp;</p>\n\n\n\n<p>In person attendees will be asked to show their COVID vaccination card at the venue entrance, and are expected to follow the safety measures in place. Because of these safety measures, there is a maximum of 50 attendees.&nbsp;</p>\n\n\n\n<div class=\"wp-container-61e58cfe5f6b8 wp-block-buttons\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://wordcampcentral.survey.fm/request-a-seat-sotw-2021\">Request a seat</a></div>\n</div>\n\n\n\n<p>Whether you participate in person or online, we are so excited to see you on December 14! Don’t forget, State of the Word will be followed by a Question &amp; Answer session. If you have a question for Matt, you can send your question ahead of time to ask-matt@wordcamp.org, or ask during the event in the YouTube chat.</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:\"11611\";s: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: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% 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% 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: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: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:17591:\"\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/OpiH_P9aGhQ?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<p>Howdy, World!&nbsp;</p>\n\n\n\n<p><a href=\"https://calendar.google.com/calendar/u/0/r/eventedit?text=State+of+the+Word+2021+livestream&amp;dates=20211214T220000Z/20211215T000000Z&amp;details=State+of+the+Word+is+the+annual+keynote+address+delivered+by+the+WordPress+project%27s+co-founder,+Matt+Mullenweg.%0AJoin+Matt+as+he+provides+a+retrospective+of+2021,+celebrates+the+community%27s+amazing+wins,+discusses+the+latest+trends+he%27s+seeing,+and+explores+the+future+of+open+source.%0AState+of+the+Word+will+be+live+streamed+from+New+York+City,+and+is+free+for+all+to+watch.%0Ahttps://wordpress.org/news/2021/11/state-of-the-word-2021/\">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 Word 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/u/0/r/eventedit?text=State+of+the+Word+2021+livestream&amp;dates=20211214T220000Z/20211215T000000Z&amp;details=State+of+the+Word+is+the+annual+keynote+address+delivered+by+the+WordPress+project%27s+co-founder,+Matt+Mullenweg.%0AJoin+Matt+as+he+provides+a+retrospective+of+2021,+celebrates+the+community%27s+amazing+wins,+discusses+the+latest+trends+he%27s+seeing,+and+explores+the+future+of+open+source.%0AState+of+the+Word+will+be+live+streamed+from+New+York+City,+and+is+free+for+all+to+watch.%0Ahttps://wordpress.org/news/2021/11/state-of-the-word-2021/\">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 <a href=\"https://wordpress.org/news/2021/11/watch-state-of-the-word-at-a-watch-party-with-your-wordpress-friends/\">local watch party</a>, 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<hr class=\"wp-block-separator\" />\n\n\n\n<h2 id=\"join-a-state-of-the-word-watch-party-near-you\">Join a State of the Word Watch Party near you</h2>\n\n\n\n<p>We have compiled a list of State of the Word Watch Parties around the world. If you don&#8217;t see a watch party in your region listed here, <a rel=\"noreferrer noopener\" href=\"https://meetup.com/pro/wordpress\" target=\"_blank\">check this page on Meetup.com</a> to see if your local WordPress group is organizing one.</p>\n\n\n\n<ul><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/WordPressNYC\">WordPress NYC Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPressNYC/events/282276960/\" target=\"_blank\">An In Person MeetUp: The State of the Word 2021 is in Manhattan.</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/South-Jersey-WordPress-Meetup\">South Jersey WordPress Meetup</a>]  <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/South-Jersey-WordPress-Meetup/events/282402090/\" target=\"_blank\">JerseyPress: State of the Word 2021 Watch Party</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Morris-County-NJ-WordPress-Group\" target=\"_blank\">Morris County NJ WordPress Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Morris-County-NJ-WordPress-Group/events/282402069/\" target=\"_blank\">JerseyPress: State of the Word 2021 Watch Party</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPress-Montclair-Meetup\" target=\"_blank\">WordPress Montclair Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPress-Montclair-Meetup/events/282326195/\" target=\"_blank\">JerseyPress: State of the Word 2021 Watch Party</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/wordpressscv\">WordPress Santa Clarita Valley</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/wordpressscv/events/282056842/\" target=\"_blank\">State of the Word 2021 Watch Party</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/houston-wordpress\" target=\"_blank\">The Houston WordPress Meetup Group</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/houston-wordpress/events/282402609/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/NEOWordPress/\">North East Ohio WordPress Meetup</a>] <a href=\"https://www.meetup.com/NEOWordPress/events/282456476/\">State of Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/Birmingham-WordPress-Meetup\">Birmingham WordPress Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Birmingham-WordPress-Meetup/events/282313212/\" target=\"_blank\">State of the Word Watch Party</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Lehigh-Valley-WordPress-Meetup\" target=\"_blank\">Lehigh Valley WordPress Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Lehigh-Valley-WordPress-Meetup/events/282304472/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/metro-detroit-wordpress-meetup/\">Metro Detroit WordPress Meetup</a>] <a href=\"https://www.meetup.com/metro-detroit-wordpress-meetup/events/282519538/\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Milwaukee-WordPress-MeetUp\" target=\"_blank\">Greater Milwaukee Area WordPress Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Milwaukee-WordPress-MeetUp/events/282598865/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Eastbay-WordPress-Meetup\" target=\"_blank\">The East Bay WordPress Meetup Group</a>] <a href=\"https://www.meetup.com/Eastbay-WordPress-Meetup/events/282539457/\">State of the Word 2021 (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Sacramento-WordPress\" target=\"_blank\">Sacramento WordPress Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Sacramento-WordPress/events/282593192/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPress-Meetup-Louisville\" target=\"_blank\">WordPress Louisville</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPress-Meetup-Louisville/events/281858101/\" target=\"_blank\">State of the Word Watch Party and Discussion (WP Louisville, KY)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1e8-1f1f4.png\" alt=\"🇨🇴\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPressMedellin\" target=\"_blank\">WordPress Medellín</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPressMedellin/events/282306436/\" target=\"_blank\">State of the Word 2021: Discurso de Matt &amp; Fiesta de Comunidad (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1ed-1f1f9.png\" alt=\"🇭🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/Port-au-Prince-WordPress-Meetup\">Port-au-Prince WordPress Meetup Group</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Port-au-Prince-WordPress-Meetup\" target=\"_blank\"></a><a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Port-au-Prince-WordPress-Meetup/events/282350488/\" target=\"_blank\">Rejoignez-nous le 14 décembre pour regarder State of the Word 2021 (online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1ec-1f1e7.png\" alt=\"🇬🇧\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/wpcoventry\" target=\"_blank\">WordPress Coventry Meetup</a>]  <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/wpcoventry/events/282302051/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1ec-1f1e7.png\" alt=\"🇬🇧\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/wpexeter\" target=\"_blank\">WordPress Exeter</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/wpexeter/events/282293408/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1ee-1f1f9.png\" alt=\"🇮🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/WordPress-Meetup-Torino/\">WordPress Meetup Torino</a>] <a href=\"https://www.meetup.com/WordPress-Meetup-Torino/events/282467417/\">State of the Word 2021 Video Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1f7-1f1fc.png\" alt=\"🇷🇼\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Kigali-WordPress-Meetup\" target=\"_blank\">Kigali WordPress Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Kigali-WordPress-Meetup/events/282321636/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1f3-1f1ec.png\" alt=\"🇳🇬\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Lagos-WordPress-Meetup-Group\" target=\"_blank\">Lagos WordPress Community</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Lagos-WordPress-Meetup-Group/events/282321642/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1f3-1f1ec.png\" alt=\"🇳🇬\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Ijebu-WordPress-Meetup\" target=\"_blank\">Ijebu WordPress Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Lagos-WordPress-Meetup-Group/events/282321642/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1ec.png\" alt=\"🇺🇬\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Jinja-WordPress-Meetup\" target=\"_blank\">Jinja WordPress Meetup</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/Jinja-WordPress-Meetup/events/282637298/\" target=\"_blank\">State of the Word 2021 Watch Party &#8211; WordPress Community Uganda (Online)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1fa-1f1ec.png\" alt=\"🇺🇬\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/Kampala-WordPress-Meetup/\">Kampala WordPress Meetup</a>] <a href=\"https://www.meetup.com/Kampala-WordPress-Meetup/events/282678558/\">State of the Word Livestream</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1f5-1f1f0.png\" alt=\"🇵🇰\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPress-Lahore\" target=\"_blank\">WordPress Meetups Lahore</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPress-Lahore/events/282311458/\" target=\"_blank\">State of the Word 2021 Watch Party (In-person)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/WordPress-Bhopal\">WordPress Bhopal</a>] <a href=\"https://www.meetup.com/WordPress-Bhopal/events/282470541/\">State of the Word 2021 Watch Party (In-person)</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a href=\"https://www.meetup.com/BengaluruWordPress/\">Bengaluru WordPress</a>] <a href=\"https://www.meetup.com/BengaluruWordPress/events/282271921/\">WordPress Meetup &#8211; State of the word -Watch Party</a></li><li><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f1f8-1f1ec.png\" alt=\"🇸🇬\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> [<a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPress-Singapore\" target=\"_blank\">WordPress Singapore</a>] <a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/WordPress-Singapore/events/282296137/\" target=\"_blank\">State of the Word 2021 Watch Party (Online)</a></li></ul>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>If you are planning a watch party for State of the Word, and have questions, please drop us an email to: <a href=\"mailto:support@wordcamp.org\">support@wordcamp.org</a> if you have any questions. We are happy to help you in the best way possible.</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:\"\";}}}}}}}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, 17 Jan 2022 15:41:40 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:\"Mon, 17 Jan 2022 12:00:00 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:\"20201017035008\";}','no'),(339,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1642477300','no'),(340,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1642434100','no'),(341,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1642477301','no'),(342,'_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:64:\"WordCamp Central: WP Y’all has been Postponed until the Spring\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3144092\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://central.wordcamp.org/news/2022/01/17/wp-yall-has-been-postponed-until-the-spring/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:323:\"<p>The WordCamp Birmingham Organizing Team has unanimously decided to postpone WP Y’all until a future date in April or May when we can safely hold the event for our attendees.</p>\n<p>See our <a href=\"https://birmingham.wordcamp.org/2022/wordcamp-birmingham-postponed-until-spring/\">full announcement</a> on our site.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 17 Jan 2022 12:35:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Ryan Marks\";s: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:90:\"WordPress.org blog: WP Briefing: Episode 23: A letter from WordPress’ Executive Director\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=12043\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wordpress.org/news/2022/01/episode-23-a-letter-from-wordpress-executive-director/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6739:\"<p>As we greet a new year, WordPress&#8217; Executive Director writes a letter to the project and community that speaks to the hopes of the year ahead.</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=\"transcript\">Transcript</h2>\n\n\n\n<span id=\"more-12043\"></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>Yesterday marked three years since the WordPress project welcomed me as their executive director. As I start my fourth year, I&#8217;ve spent a bit of time considering what the next five years will bring us. WordPress will turn 19 this year, which means that we will soon be a whopping 20 years old; for some of the people who have been with the project since the beginning, that can represent two-thirds of their whole life. And even if you were not that young when you got here, two decades as an open source project is really a cause for celebration.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:10</p>\n\n\n\n<p>I am not in that group that has been here forever. I showed up for the first time in 2009, as a community organizer, self-sponsored, and I learned so much about myself as a person and as a leader while I was doing that. So when I arrived as a sponsored contributor in 2015, I already knew exactly what made this work so fulfilling for me was these three things:&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:34</p>\n\n\n\n<p>First, the ability to lend a hand in those moments where I wish someone had lent a hand.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:40</p>\n\n\n\n<p>Second is the delight of seeing people&#8217;s first successes and the joy of watching them grow over time.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:48</p>\n\n\n\n<p>And the third was a chance to be part of something great, which turned out to be something greater; greater than me or you or a CMS.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:58</p>\n\n\n\n<p>This list is still at the heart of what I feel I get out of the WordPress project. But it has also grown substantially in my seven years as a sponsored contributor. I now also love how we as a community of contributors get to foster a better way to lead and a better way to collaborate. And through those things help people find a way to have a better life. Not just through WordPress, the CMS, but through WordPress, the people, and WordPress, the project.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:25</p>\n\n\n\n<p>And so when I think of what I want for WordPress in its 19th year, so that we can head with confidence and dignity into our 20th year, it is this:&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:35</p>\n\n\n\n<p>I want you to remember that you are not alone here. People come together in the world often because of a shared location. But WordPress fosters this beautiful experience of bringing us together because of what we care about. Whether you care about PHP standards, diversity in technology, helping people with their first big wins, making WordPress more secure. I mean, if what you care about is being able to write the most arcane and complex apps on top of WordPress that the world has ever seen. Then there are others out there who want to do that with you, too. We have so many things to connect about. And fortunately, we support a great piece of software for getting our thoughts out in the world. Take some time to see who else shares your thoughts and potentially learn a bit about the view from the other side.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:26</p>\n\n\n\n<p>And speaking of the other side, I also want us to approach our discussions as the US versus the Problem TM. WordPress may be 20 years old, and we may stand on the shoulders of giants, but right now, the people who are here you, you are explorers and creators and guides toward the best possible future for WordPress. The tension that we witness between teams is always about the best possible answers for the people who use our software. It is about securing the freedoms of the open web for everyone who comes after us whether they know they need those freedoms or not.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:04</p>\n\n\n\n<p>And finally, I want us to expand our reasons for doing this at all. If you are a member of the community of contributors, We frequently talk about how we give back because WordPress gave to us. Or if you are part of a Five for the Future group. You have heard that companies who have experienced success because of WordPress should commit 5% of their resources back to the project to ensure WordPress&#8217; long-term success. But the reason that I keep doing this, and hopefully a new reason for you to keep doing this is that we can take part in securing opportunities for future users of WordPress.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:42</p>\n\n\n\n<p>Yes, I want WordPress to be the best CMS. Yes, I want this community to be vibrant and engaged. Yes, I want WordPress to be a shining beacon of how to work remotely. And I want all of that because I know it is our careful and tireless stewardship of this project that lets us continue to lend a hand in those moments where people wish for someone to lend a hand.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:11</p>\n\n\n\n<p>Those are my hopes for WordPress in 2022 to move us forward into WordPress of the future. I hope you all will come with me and we can continue our journey together.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:23</p>\n\n\n\n<p>Thanks again for listening. I&#8217;m Josepha Haden and this is the WP Briefing. See you again in a couple of weeks.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 17 Jan 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:100:\"Gutenberg Times: Level Up with Query Block, FSE for Classic Themes and more – Weekend edition #199\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=19873\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:135:\"https://gutenbergtimes.com/level-up-with-query-block-fse-for-classic-themes-and-the-customizer-isnt-going-anywhere-weekend-edition-199/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20519:\"<p>Howdy, </p>\n\n\n\n<p>Yes, I am so happy to be back in Florida, and I enjoy the warmth of the sun, and the palm trees. ☀️ ⛱️ 🌴. Earlier this week, I  was sitting outside chatting with my girlfriendsin Naples, FL, squinting into the setting sun. After sunset all we needed was a normal sweater to keep us comfortable as opposed to the 15 pounds of clothes, I had to put on in Whistler to spend five minutes outside. </p>\n\n\n\n<p>Alas, the break is over. It&#8217;s down to the wire. We are a little over a week away from the WordPress 5.9 release on January 25th, 2022. If you haven&#8217;t caught up with all the new features, the <a href=\"https://make.wordpress.org/core/2022/01/10/wordpress-5-9-field-guide/\">Field Guide</a>  is now available on WordPress.org.  Last week, I also published <a href=\"https://gutenbergtimes.com/whats-new-in-wordpress-5-9-a-reading-list-on-full-site-editing-and-block-themes/\"><strong>a reading list on block themes and full site editing</strong></a> for End-users, site builders and theme developers/designers. </p>\n\n\n\n<p>The training team around Learn.WordPress released a ton of additional Social Learning events, that should make it easier for users to learn more about the Site editor, the Theme Blocks and the Styles interface. You&#8217;ll find the list of 12 upcoming event at the end of the newsletter. Big Thank you to <a href=\"https://twitter.com/TheeDestinyWP\">Destiny Fox Kanno</a>, for researching and compiling the list! </p>\n\n\n\n<p>With that I leave you to the rest of the news around the Block editor. </p>\n\n\n\n<p>Yours, 💕<br />Birgit</p>\n\n\n\n<p><em>PS: <strong>Join us on Monday night </strong>at the <a href=\"https://www.meetup.com/BoulderWP/events/282792359\">virtual WordPress Meetup Boulder event</a> about What&#8217;s new in WordPress 5.9 and a panel discussion with Brian Garnder, Courtney Robertson and yours truly. </em></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/#general-information-on-wordpress-block-editor\">General Information on WordPress&#8217; Block Editor </a></li><li><a href=\"https://gutenbergtimes.com/feed/#tools-for-site-builders-and-content-creators\">Tools for Site Builders and Content Creators</a></li><li><a href=\"https://gutenbergtimes.com/feed/#theme-building-for-full-site-editing\">Theme building for Full Site Editing. </a></li><li><a href=\"https://gutenbergtimes.com/feed/#extending-the-block-editor-and-building-custom-blocks\">Extending the Block editor and building Custom Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#12-wordpress-social-learning-events-and-meetups\">12 WordPress Social Learning Events (and Meetups)</a></li></ul></div>\n\n\n\n\n<h2 id=\"general-information-on-wordpress-block-editor\">General Information on WordPress&#8217; Block Editor </h2>\n\n\n\n<p>The founders of WPExperts.io, <strong>Saad Iqbal</strong> and <strong>Ahmed Salah</strong>, put on their magic hats and explained in their post &#8220;<a href=\"https://wpexperts.io/blog/gutenberg-revolutionize-the-wordpress-industry/\"><strong>How Gutenberg will revolutionize the WordPress industry in 2022</strong></a>&#8220;.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> joined <strong>DocPop</strong> and <strong>Nick Diego</strong> on the <a href=\"https://www.youtube.com/watch?v=gPCw2hf1SMM\"><strong>Torque Social Hour</strong></a>. They discussed WordPress 5.9 delay of the release, about accessibility, locking Blocks and also how the customizer is to work for with block themes or not. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>On the WPTavern, Justin Tadlock gave an overview of <strong><a href=\"https://wptavern.com/what-are-block-themes-what-you-need-to-know-before-wordpress-5-9\">What Are Block Themes? What You Need To Know Before WordPress 5.9</a></strong> for those WordPress users, who only heard recently about Block Themes and Full site editing. It&#8217;s a great post to share with your clients, and users, that are just now getting interested in the WordPress 5.9 features. </p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 id=\"tools-for-site-builders-and-content-creators\">Tools for Site Builders and Content Creators</h2>\n\n\n\n<p>Justin Tadlock at WPTavern reviewed <a href=\"https://wptavern.com/automattics-livro-is-a-minimal-block-theme-for-writers\"><strong>Automattic’s Livro Is a Minimal Block Theme for Writers</strong></a>. Is a minmalistic block theme. It also is a bit opinionated on certain features and designs, but nothing that wasn&#8217;t possible to fix within the new site editor. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Jamie Marsland</strong> was a guest at the latest <em>Do The Woo Podcast</em> and discussed with Anne Maria Radu and Bob Dunn BobWP <a href=\"https://dothewoo.io/woocommerce-product-pages-blocks-and-full-site-editor-customizations/\"><strong>Woo Product Pages wtih Blocks and Full Site Editing customizations</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Also, in <a href=\"https://wptavern.com/customizer-will-disappear-for-some-block-theme-users-with-wordpress-5-9\"><strong>Customizer Will Disappear for Some Block Theme Users With WordPress 5.9</strong></a>, Tadlock outlines how the Customizer is not going to go away. <br />Only when you activate a Block Theme. And only if you don&#8217;t have plugins installed that tap into the Customizer for additional feature settings. If you don&#8217;t change your theme, all your customization will stay in place and you won&#8217;t loose any Custom CSS code. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>The first FSE course is live on Lean.WordPress.org: <a href=\"https://learn.wordpress.org/course/simple-site-design-with-full-site-editing/\"><strong>Simple Site Design with Full Site Editing</strong></a>. &#8220;This course will review the interconnected features that make up full site editing (FSE) and how they are going to help you create beautiful site designs without needing to use any code.&#8221; Check it out!</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In her post&nbsp;<a href=\"https://extendify.com/what-to-expect-in-wordpress-5-9-from-gutenberg/\"><strong>What to expect in WordPress 5.9 from Gutenberg</strong></a>, <strong>Tammie Lister</strong> gives you a high-level overview of the features that make up Full Site Editing and will arrive at a WordPress instance near you, provided you activate a Block Theme. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In this video <strong><a href=\"https://www.youtube.com/watch?v=VA09cW8Qv-I\">WooCommerce and Full Site Editing</a></strong><a href=\"https://www.youtube.com/watch?v=VA09cW8Qv\"> </a><strong>Jamie Marsland </strong>gives you a first look at what the team at  PootlePress has been working on for the past two months. You get a sneak peak of the Single Product template that comes with the WooCommerce Blocks plugin. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Extendify</strong>&nbsp;<strong><a href=\"https://wordpress.org/plugins/extendify/\">launched a new pattern library plugin by the same name</a>.</strong> It&#8217;s theme agnostic and includes a &#8220;library of reusable website patterns and full page layouts can be assembled to rapidly build beautiful websites.&#8221; <a href=\"https://wptavern.com/extendify-launches-new-pattern-library-plugin\">You can read a longer review on the WPTavern site </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/abrightclearweb\">Claire Brotherton</a></strong> published post <a href=\"https://www.abrightclearweb.com/gutentor/\"><strong>Gutentor: A Popular and Powerful WordPress Page Builder Plugin</strong></a>. She reviewed building full page layouts with this plugin for various purposes and explains their screens. You can try the plugin yourself for free and install it <a href=\"https://wordpress.org/plugins/gutentor/\">directly from the WordPress plugins repository</a>.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Between the holidays, <strong>Anne McCarthy </strong>expanded her Connecting the Dot YouTube Series  with <strong>the video </strong><a href=\"https://www.youtube.com/watch?v=n5fbGuTdPKw\"><strong>Level up with Query Loop block</strong></a>.  This video focuses on how using the Query Loop block can both help you level up your content and streamline your workflows, depending on what you&#8217;re trying to accomplish. &#8220;In this case, I recreated a page from a site I run letslifechat.com/lifechat-starters/ and showed off some of the neat things you can do to customize what I created further. &#8221; McCarthy wrote. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Justin Tadlock reviewed in his post <a href=\"https://wptavern.com/creating-speech-balloons-with-the-wordpress-block-editor\"><strong>Creating Speech Balloons With the WordPress Block Editor</strong></a> the Liquid Speech Balloon plugin available in the WordPress repository. Its feature help you create conversations or quotes mimicking the text message interfaces. It&#8217;s a neat little add-in to the block editor. Tadlock offers a lot of detail and use cases. <a href=\"https://wptavern.com/creating-speech-balloons-with-the-wordpress-block-editor\"><em>Check out his review</em></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=\"theme-building-for-full-site-editing\">Theme building for Full Site Editing. </h2>\n\n\n\n<p>The recording of the first session <strong><a href=\"https://youtu.be/NX_7P2lvuwU\">Creating a block-based theme</a> with Daisy Olsen </strong> and <strong>Ryan Welcher</strong> is now up on YouTube. </p>\n\n\n\n<p>Topics covered: </p>\n\n\n\n<ul><li>Theme.json &#8211; <a href=\"https://www.youtube.com/watch?v=NX_7P2lvuwU&t=658s\">00:10:58</a> </li><li>Parts/Templates/Patterns &#8211; <a href=\"https://www.youtube.com/watch?v=NX_7P2lvuwU&t=780s\">00:13:00</a> </li><li>Starting the theme + theme.json &#8211; <a href=\"https://www.youtube.com/watch?v=NX_7P2lvuwU&t=1380s\">00:23:00</a> </li><li>Creating our first template + custom page template &#8211; <a href=\"https://www.youtube.com/watch?v=NX_7P2lvuwU&t=1770s\">00:29:30</a> </li><li>Defining a color palette,  available fonts, Default font &#8211; <a href=\"https://www.youtube.com/watch?v=NX_7P2lvuwU&t=3759s\">01:02:39</a>  </li><li>Finding CSS variables defined by theme.json &#8211; <a href=\"https://www.youtube.com/watch?v=NX_7P2lvuwU&t=4550s\">01:15:50</a> </li><li>Setting the site background color + primary text color- <a href=\"https://www.youtube.com/watch?v=NX_7P2lvuwU&t=4710s\">01:18:30</a> </li><li>Styling elements &#8211; <a href=\"https://www.youtube.com/watch?v=NX_7P2lvuwU&t=5168s\">01:26:08</a> </li><li>Talking about the Query Block &#8211; <a href=\"https://youtu.be/NX_7P2lvuwU?t=5379\">0:1:29:43</a></li></ul>\n\n\n\n<p><a href=\"https://www.youtube.com/playlist?list=PL6D-mnq0bpxP1nWu2OQbcVVScEgC5rpZM\"><em>Bookmark the playlist</em></a>, session 2 and 3 follow. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Dave Smith</strong> gave a <a href=\"https://www.youtube.com/watch?v=ZFl_6I5_AZk\"><strong>technical overview for the new Navigation block</strong></a>, that will be released with WordPress 5.9. Specifically he covered how the block saves its data and how decoupling this from the block&#8217;s presentation helps to make the block more powerful. You&#8217;ll find <a href=\"https://make.wordpress.org/core/2022/01/07/the-new-navigation-block/\">full details in the DevNote</a>, also composed by Dave Smith. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Carolina Nymark</strong> updated her post on <a href=\"https://fullsiteediting.com/lessons/adding-full-site-editing-features-to-classic-themes/\"><strong>how to add full site editing features to classic themes</strong></a> with the latest information and tools. &#8220;The only two features not available to classic themes are the site editor and the global styles interface. You can add template editing to the theme and keep widgets and the customizer.&#8221; she wrote. </p>\n\n\n\n<h2 id=\"extending-the-block-editor-and-building-custom-blocks\">Extending the Block editor and building Custom Blocks</h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/fabiankaegy\">Fabian Kägy</a></strong>, developer with 10up, core contributor and friend of the Gutenberg Times, published a proposal on GitHub Discussions <a href=\"https://github.com/WordPress/gutenberg/discussions/37448\"><strong>Proposal for opening the editor interface to more extensibility</strong></a> and asked for our input ideas and insights. Kägy list examples for suitable extensions,  like allowing Posts without titles, allowing for semantic settings next to core settings or greater controls for the placement of panels in the sidebar of the editor.  I learned quite a bit from Riad Benguella&#8217;s comment, especially about the fact that any extensibility feature built now also has to promised backwards compatibility for the future and that might hold the current development and explorations of the editor back. </p>\n\n\n\n<p>If you are a plugin developer, it would be great if you could chime in on the GitHub discussion especially if you haven&#8217;t found a way to tap into the code base of the block editor as you used to with the Classic Editor. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/jasonbahl\">Jason Bahl</a></strong> walks you through the latest update of his work on supporting <a href=\"https://www.youtube.com/watch?v=tF_IZNBBTpk\"><strong>Gutenberg Blocks in WPGraphQL</strong></a> and demos in his video the Query on post and block data. The code for the new WPGraphQL Block Editor <a href=\"https://github.com/wp-graphql/wp-graphql-block-editor\">integration can be found on GitHub.</a>  As Bahl mentiones in his video, this integration is in very early stages but he will explore some more to support Gutenberg blocks for Headless WordPress. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>A long-standing request for an API that allows for locking blocks and patterns is now coming to WordPress 5.9. Read more from <strong>Sarah Gooding</strong> in here post <a href=\"https://wptavern.com/wordpress-5-9-to-introduce-new-api-for-locking-blocks\"><strong>WordPress 5.9 to Introduce New API for Locking Blocks</strong></a> with links to DevNote and documentation. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In the post<a href=\"https://webdevstudios.com/2022/01/11/react-for-wordpress-developers/\"><strong> React For WordPress Developers</strong></a>, <a href=\"https://twitter.com/laxmariappan\"><strong>Lax Mariappan</strong></a> recounts his story learning ReactJS, the Why of the investment of time and about the resources that are available. </p>\n\n\n\n<h2 id=\"12-wordpress-social-learning-events-and-meetups\">12 WordPress Social Learning Events (and Meetups)</h2>\n\n\n\n<p><strong>January 17, 2022 3 pm ET / 20:00 UTC</strong> <br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/282772979\"><strong>Advanced Layouts with the Block Editor</strong></a> with Wes Theron via WordPress Social Learning Spaces</p>\n\n\n\n<p><strong>January 17, 2022 8 pm ET / 1:00 UTC</strong> <br /><a href=\"https://www.meetup.com/BoulderWP/events/282792359\"><strong>What’s coming in WordPress 5.9</strong></a> Panel discussion with Brian Gardner, Courtney Robertson, and Birgit Pauli-Haack via WordPress Meetup Boulder, Co</p>\n\n\n\n<p><strong>January 19, 2022 3:00 PM ET / 20:00 UTC</strong> <br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/283227591/\"><strong>Zero to Block Theme Series #2: theme.json</strong></a><strong> </strong>with Daisy Olsen and Sarah Snow<strong> </strong>via WordPress Social Learning Spaces</p>\n\n\n\n<p><strong>January 20, 2022 – 7 pm ET / 00:00 UTC</strong> <br /><a href=\"https://www.meetup.com/SF-WordPress-Users/events/283096780/\"><strong>WordPress “Mega Meetup”: Block Patterns, WordPress 5.9</strong></a> <br />South Florida WordPress Meetup Group</p>\n\n\n\n<p><strong>January 21, 2022 – 7 pm ET / 00:00 UTC</strong> <br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/283206029/\"><strong>Breaking it Down: Blocks, Patterns, And Templates</strong></a> with Roxy Kohilakis via WordPress Social Learning Spaces</p>\n\n\n\n<p><strong>January 23, 2022 – 4 pm ET / 21:00 UTC</strong> <br /><a href=\"https://www.meetup.com/Eastbay-WordPress-Meetup/events/283253433/\"><strong>WordPress: the Next Generation</strong></a> with Sallie Goetsch via The East Bay WordPress Meetup Group</p>\n\n\n\n<p><strong>January 24, 2022, 6 pm ET / 23:00 UTC</strong> <br /><a href=\"https://www.meetup.com/WordPressHartford/events/283118120/\"><strong>What Will WordPress 5.9 Mean for You?</strong></a> with Ray and Peter Ingersoll via WordPress Hartford, CT</p>\n\n\n\n<p><strong>January 26, 2022, 6 pm ET / 23:00 UTC</strong> <br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/282773311/\"><strong>Intro to Templates and Template Parts (Full Site Editing)</strong></a> with Wes Theron via WordPress Social Learning Spaces</p>\n\n\n\n<p><strong>January 28, 2022, 3 pm ET / 20:00 UTC</strong> <br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/283227922/\"><strong>Demo: Build Your Homepage Using Full Site Editing</strong></a> with Roxy Kohilakis via WordPress Social Learning Spaces</p>\n\n\n\n<p><strong>February 4, 2022, 3 pm ET / 20:00 UTC</strong> <br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/283228078/\"><strong>Beginner&#8217;s Guide to Full Site Editing</strong></a><strong> </strong>with Roxy Kohilakis via WordPress Social Learning Spaces</p>\n\n\n\n<p><strong>February 11, 2022 – 3 pm ET / 20:00 UTC</strong> <br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/283228209/\"><strong>Breaking it Down: Blocks, Patterns, And Templates with Full Site Editing</strong></a> with Roxy Kohilakis via WordPress Social Learning Spaces</p>\n\n\n\n<p><strong>February 14, 2022 – 4 pm ET / 21:00 UTC </strong><br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/283237147/\"><strong>Exploring Theme Blocks</strong></a><strong> </strong>with Wes Thoren via WordPress Social Learning Spaces</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\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 15 Jan 2022 02:47: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: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:84:\"WPTavern: WordCamp Birmingham Postponed Due to Rising Local COVID-19 Infection Rates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=128301\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:213:\"https://wptavern.com/wordcamp-birmingham-postponed-due-to-rising-local-covid-19-infection-rates?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-birmingham-postponed-due-to-rising-local-covid-19-infection-rates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6797:\"<p>WordCamp Birmingham&#8217;s organizers <a href=\"https://birmingham.wordcamp.org/2022/wordcamp-birmingham-postponed-until-spring/\">announced</a> today that the in-person event planned for the first week in February is now postponed until April or May. Organizers had been planning the event since August 2021 and had just announced the last group of speakers a week ago.</p>\n\n\n\n<p>&#8220;In the last 30 days, our local COVID-19 numbers have risen dramatically as a result of the highly-transmissible Omicron variant,&#8221; lead organizer Ryan Marks said in the announcement.</p>\n\n\n\n<p>&#8220;The WordPress community is bigger than any single WordCamp. We cannot in good conscience continue forward with our event, given the current risk, since this decision could negatively impact other in-person WordCamps currently in the planning stages.&#8221;</p>\n\n\n\n<p>Marks said all attendees will be automatically refunded within the next few days. WordPress Community Support administrator Angela Jin has prepared an <a href=\"https://birmingham.wordcamp.org/2022/files/2022/01/WC-Cancellation-Travel-Letter.pdf\">official letter</a> for those who need proof of cancellation for getting travel refunded.</p>\n\n\n\n<p>WordCamp Birmingham organizers are looking at dates in April or May, 2022, but said that rescheduling will depend on local infection rates and venue availability. Their contract with the Sidewalk Film Center + Cinema allowed organizers to cancel without any loss of deposit as long as they gave more than seven days notice.</p>\n\n\n\n<p>The event&#8217;s COVID-19 safety protocols, which were written before Omicron was spreading in the area, came under greater scrutiny a week ago. Shortly thereafter, organizers <a href=\"https://wptavern.com/wordcamp-birmingham-updates-covid-19-protocols-amid-omicron-surge-wordcamp-europe-still-planning-for-in-person-event\">updated the guidelines</a> to have a more rigid masking requirement, but some attendees and sponsors had already decided not to attend due to current conditions. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I’m still considering whether to go to Birmingham Alabama <a href=\"https://twitter.com/hashtag/WordCamp?src=hash&ref_src=twsrc%5Etfw\">#WordCamp</a> in February. I’m a community sponsor with <a href=\"https://twitter.com/TrustedLogin?ref_src=twsrc%5Etfw\">@TrustedLogin</a>.<br /><br />But I DEFINITELY won’t go to <a href=\"https://twitter.com/wpyall?ref_src=twsrc%5Etfw\">@wpyall</a> unless 2+ vaccinations are required. Negative tests or prior COVID isn’t enough.<a href=\"https://t.co/GCqIC2crDN\">https://t.co/GCqIC2crDN</a><a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a></p>&mdash; Zack Katz (@zackkatz) <a href=\"https://twitter.com/zackkatz/status/1479804454681645058?ref_src=twsrc%5Etfw\">January 8, 2022</a></blockquote>\n</div>\n\n\n\n<p>While WordCamp Birmingham organizers worked to update the COVID-19 safety protocols, more concerned community members <a href=\"https://twitter.com/mor10/status/1478790408482164737\">condemned the gathering as &#8220;irresponsible&#8221;</a> at a time when hospitals have been pushed to the brink. </p>\n\n\n\n<p>Organizers continued to monitor the situation, hoping for the opportunity to hold a safe event. After assessing the timing of the event and the level of community spread, they unanimously decided to that it was necessary to postpone. They had also reached the point where some of their payments would have been nonrefundable and needed to act in stewardship of their funds.</p>\n\n\n\n<p>&#8220;We knew that being the first in-person US WordCamp was both a risk and a responsibility,&#8221; lead organizer Ryan Marks said. &#8220;If we could do it safely, other WordCamps in the US could do the same. If lots of people got sick, we&#8217;d set back US WordCamps such as Montclair, NJ, and Buffalo, NY, and possibly the global program as a whole from moving toward having safe in-person WordCamps. </p>\n\n\n\n<p>&#8220;We saw news reports and estimates indicating Omicron cases would be peaking right as we were hosting WordCamp. That was sufficient for our organizing team to make the call to postpone. Pushing the event a couple months could mean a much safer event for everyone.&#8221;</p>\n\n\n\n<p>Alabama has the second lowest percentage of vaccinated residents in the US, with just <a href=\"https://www.mayoclinic.org/coronavirus-covid-19/vaccine-tracker\">48.1%</a> fully vaccinated. The state currently has an average positive test rate of 37.4%. More than 25% of Alabama students have shifted to remote learning as more school systems have had to close due to record-breaking COVID rates.</p>\n\n\n\n<p>“Our problem is we just don’t have enough adults to safely and effectively operate the school…in some cases, now we’re seeing up to 35% of the faculty report that they have COVID, or they’re close contact,&#8221; Alabama State Superintendent Eric Mackey told <a href=\"https://www.al.com/news/2022/01/1-in-4-alabama-students-back-to-remote-learning-as-covid-spreads.html\">AL.com</a>. The local mitigation efforts are not working to slow the spread of Omicron in the Birmingham area right now.</p>\n\n\n\n<div class=\"wp-block-image\"><img />Mayo Clinic data for <a href=\"https://www.mayoclinic.org/coronavirus-covid-19/map/alabama\">Alabama COVID-19 Average Positive Test Rate</a></div>\n\n\n\n<p>Many attendees communicated their disappointment about the postponed WordCamp on social media but were supportive of the organizers&#8217; decision.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Really bummed about this, but I totally understand the decision. I\'m grateful for the organizing team and their dedication to put on this event, and their willingness to make tough decisions like this one. <a href=\"https://t.co/iPImv8f0LQ\">https://t.co/iPImv8f0LQ</a></p>&mdash; Cory Webb (@corywebb) <a href=\"https://twitter.com/corywebb/status/1482068776220860426?ref_src=twsrc%5Etfw\">January 14, 2022</a></blockquote>\n</div>\n\n\n\n<p>When WordCamp Birmingham&#8217;s organizers began planning in August, they had no idea that a new more transmissible variant would be making its way across the world just as the in-person event was set to kick off. The timing is unfortunate, and the stakes are too high to risk pushing forward.  </p>\n\n\n\n<p>WordCamp Birmingham&#8217;s previously selected speakers will be invited to speak at the rescheduled event, pandemic conditions permitting. The 200 people who signed up to attend will need to buy their tickets again and reschedule their accomodations.</p>\n\n\n\n<p>&#8220;Our goal is to have the same great event we have currently planned, just a bit later,&#8221; Marks 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:\"Sat, 15 Jan 2022 01:32: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:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: Wicked Plugins Launches UI-Based WordPress Block Builder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=125721\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wicked-plugins-launches-ui-based-wordpress-block-builder?utm_source=rss&utm_medium=rss&utm_campaign=wicked-plugins-launches-ui-based-wordpress-block-builder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5170:\"<p class=\"has-drop-cap\">Last week, Wicked Plugins launched version 1.0 of its <a href=\"https://wordpress.org/plugins/wicked-block-builder/\">Wicked Block Builder</a>. I have kept my eye on this plugin since its November 2021 beta release. The project promised that developers would be able to &#8220;effortlessly build custom blocks,&#8221; and I was finally ready to put that to the test.</p>\n\n\n\n<p>In the past two months, I have activated the plugin every so often. I knew a review of it would take me a while, and I would deactivate it before diving in. I kept feeling overwhelmed by the enormity of it &#8212; <em>there are tons of settings to configure</em>. The holiday season did not help either. I wanted to sit down with a clear head and decide whether this plugin was something developers in the WP Tavern audience should put in their toolbox.</p>\n\n\n\n<p>The short answer: yes.</p>\n\n\n\n<p>Or, at least you should give it a spin to see how it compares to similar plugins. This is a version 1.x project, so there are still some missing pieces. However, it will make client builds easier to put together without writing anything more than CSS for custom blocks.</p>\n\n\n\n<p>When I first began using the plugin, I seemed to hit issue after issue. Like always, I was trying to run before I could walk. I like to test new plugins at full speed and often forget to stop and <em>RTFM</em>. With complex projects like Wicked Block Builder, I must remind myself that it is OK to seek help from the docs.</p>\n\n\n\n<p>The plugin has a bit of a learning curve if you want to do anything advanced. My suggestion is to do the opposite of what I did. Start with a simple use case.</p>\n\n\n\n<p>Fortunately, the plugin development team has a tutorial video that will have you building custom blocks in less than five minutes. I recommend following along when creating your first.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Once I hopped over that initial hurdle, using the plugin was a breeze.</p>\n\n\n\n<p>The plugin allows developers to add blocks, block categories, patterns, and pattern categories. I primarily focused on block creation. The plugin worked in much the same way as other pattern builders.</p>\n\n\n\n<p>Following along with the tutorial video, I created a Resource Card block. It included an image, title, summary, and button.</p>\n\n\n\n<img />Building the editor view for a custom block.\n\n\n\n<p>There are multiple tabs for developers to build out their blocks. Aside from the primary Settings tab, most of the work will happen under Attributes and Editor View. The Front-end View is only necessary if the block&#8217;s output does not match what it looks like in the editor. The screen also has a Styles panel for adding custom CSS, which is loaded for the editor and front-end.</p>\n\n\n\n<p>The UI seems mostly straightforward when following along with the tutorial. However, there are tons of options, and it is easy to get lost once you start digging into them all.</p>\n\n\n\n<p>Once I pieced together my custom block, it correctly appeared in the inserter. I also tested a slash command for <code>/resource card</code> to ensure it worked.</p>\n\n\n\n<img />Inserting custom block into the editor.\n\n\n\n<p>A couple of missing features I immediately noticed once inserting my block was a custom icon and example/preview. Both are relatively simple to add when creating a block type from code, so I hope they are on the agenda for a future version.</p>\n\n\n\n<p>While searching for the custom block type via the inserter worked, I would also welcome an option to create custom keywords.</p>\n\n\n\n<p>I filled in the details of the Resource Card block and saved it.</p>\n\n\n\n<img />Block content customized.\n\n\n\n<p>To my surprise, I did not break anything. I began wondering, <em>Could creating blocks be this easy?</em></p>\n\n\n\n<p>I ran through a few other simple block ideas, and the experience was enjoyable. While I no longer work with clients, I could see how this could save hours. Pairing it with <a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-templates/#locking\">template locking</a> would also be a routine use case so that clients would only need to plug in their content and publish.</p>\n\n\n\n<p>There are some <a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-supports/\">block-supported features</a> that I would like to see added. The plugin currently allows devs to enable alignment and wide alignment. However, others like spacing, typography, and color would be easy wins.</p>\n\n\n\n<p>I tested the free version of the Wicked Block Builder. For simple blocks, it worked well. For more complex use cases, developers will need to upgrade to the <a href=\"https://wickedplugins.com/plugins/wicked-block-builder/\">pro version</a>. It runs between $49 and $299 per year, depending on the number of supported sites.</p>\n\n\n\n<p>While I have not tested the pro version, it does offer post and term selects, repeater fields, conditional logic, and inner-block support. After exhausting the basics, these will likely be necessary on some projects. However, the free version can still get you pretty far.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 15 Jan 2022 00:42:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: Creating Speech Balloons With the WordPress Block Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=128271\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/creating-speech-balloons-with-the-wordpress-block-editor?utm_source=rss&utm_medium=rss&utm_campaign=creating-speech-balloons-with-the-wordpress-block-editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4215:\"<p class=\"has-drop-cap\">I do not know how I overlooked <a href=\"https://wordpress.org/plugins/liquid-speech-balloon/\">LIQUID SPEECH BALLOON</a>. The plugin is less than a month shy of being three years old, and I follow block-related projects religiously. This one slipped through the cracks, at least until I haphazardly stumbled upon it when searching for something else entirely.</p>\n\n\n\n<p>It is also relatively popular for a single-block plugin. There are not that many with more than 10,000 active installs. I had to know what it was doing to draw such a crowd.</p>\n\n\n\n<p>In the <a href=\"https://wptavern.com/automattics-livro-is-a-minimal-block-theme-for-writers#comment-412254\">comments on yesterday&#8217;s post</a> about Automattic&#8217;s Livro theme, Nick Hamze wanted to know where all the fun theme designs were. Perhaps it was fortuitous timing that I also happened to be playing around with a plugin that might fit the bill. Sure, it is not a theme, but it can definitely be used to spruce up an otherwise boring or plain design.</p>\n\n\n\n<p>So, I spun up a few Speech Balloon blocks and just had fun creating a chat with a some cartoon animals:</p>\n\n\n\n<img />Inserting and customizing multiple Speech Balloon blocks.\n\n\n\n<p>I tend to gravitate toward clean, open-canvas themes because they allow me to add all the fun elements via the post content. That is why I love finding plugins like LIQUID SPEECH BALLOON. They add that visual flair to pages that can sometimes be boring.</p>\n\n\n\n<p>Using the plugin&#8217;s Speech Balloon block is straightforward. It presents users with a single section for inserting rich text content.</p>\n\n\n\n<img />Default Speech Balloon block.\n\n\n\n<p>In the block options sidebar, users can choose an avatar. They can also make several design adjustments, including background and text colors.</p>\n\n\n\n<p>The block is falling slightly behind the times, though.  Since the plugin&#8217;s release nearly three years ago, WordPress has added several new design components that could be used to make its block even better, such as padding, border, and typography controls.</p>\n\n\n\n<p>The plugin can also be used for testimonials or other types of reviews. It works well enough for more business-friendly layouts if that is the sort of thing you are after.</p>\n\n\n\n<img />Creating testimonials with the Speech Balloon block.\n\n\n\n<p>The plugin&#8217;s biggest failure is in how it handles avatars. It is also why it does not make for the best option for testimonials. Users cannot add avatars directly via the block. Instead, they must register them via an entirely separate admin screen. Then, they can select from their saved avatars list within the block.</p>\n\n\n\n<p>Under the Settings &gt; LIQUID SPEECH BALLOON page, the plugin presents users with several rows of fields. They can add a name and image URL for each avatar.</p>\n\n\n\n<img />Plugin&#8217;s avatar settings.\n\n\n\n<p>This is where the user experience falls apart a bit. There is no way to upload avatars on this screen. Instead, users must upload them via their media library, copy the URL, and paste it into the image URL field.</p>\n\n\n\n<p>The plugin provides the necessary documentation and links to work through this process. The overall experience is simply lackluster.</p>\n\n\n\n<p>However, if users only need a limited number of avatars, the system works well enough once everything is uploaded. The images are always available whenever inserting the Speech Bubble block &#8212; no need to search through the media library or upload a new one.</p>\n\n\n\n<p>I am not sure if this will go in my plugin toolbox. Outside of a few stylistic elements, such as the speech bubble&#8217;s tail, users could readily recreate something similar with a few blocks, as shown in the following screenshot:</p>\n\n\n\n<img />Custom speech bubbles pattern.\n\n\n\n<p>Within a few minutes, I created this with what is already available in core WordPress, and I actually had several more design choices by doing so. I could see keeping a block pattern on hand for such a layout in the future.</p>\n\n\n\n<p>For those who want a quick and easy solution without all the fuss of mixing and matching blocks, LIQUID SPEECH BALLOON would be the better option.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Jan 2022 02:22:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:67:\"WPTavern: Automattic’s Livro Is a Minimal Block Theme for Writers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=128178\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:173:\"https://wptavern.com/automattics-livro-is-a-minimal-block-theme-for-writers?utm_source=rss&utm_medium=rss&utm_campaign=automattics-livro-is-a-minimal-block-theme-for-writers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4992:\"<p class=\"has-drop-cap\">Sometimes the sweetest things in life are the simplest. Automattic&#8217;s latest block theme <a href=\"https://themes.trac.wordpress.org/ticket/110931\">landed in the review queue</a> yesterday, and I had to give it a spin. What I found was a minimally-elegant design that I fell in love with.</p>\n\n\n\n<p><em>Really</em>. I even dedicated an entire demo post on my install to it:</p>\n\n\n\n<img />Single post with gallery and pull-quote.\n\n\n\n<p>Well, that and Valentine&#8217;s Day is a mere month away. It felt like the right time to mix up my install&#8217;s test content anyway.</p>\n\n\n\n<p>Let me preface the rest of this review by saying that I hate dark themes with a fiery passion. However, every now and again, one comes along that makes me rethink my position. Livro is one such theme. I may dislike it in a week, but I have genuinely loved using it for two days.</p>\n\n\n\n<p>The theme&#8217;s most impressive feat was using a single font family, <a href=\"https://fonts.google.com/specimen/Newsreader\">Newsreader</a>, across the entire design. It never felt like it needed anything else to separate body copy, secondary text, and headings.</p>\n\n\n\n<p>Livro will not meet everyone&#8217;s needs &#8212; not by a long shot. However, it is the sort of theme that will appeal to those who do not like any bells and whistles whatsoever. The type where content reigns supreme, where a few words and pictures are all that is necessary to make a point.</p>\n\n\n\n<p>I did not immediately hop on this whirlwind affair with Livro at first sight. Things started a bit rocky. The theme managed to implement my top three pet-peeves:</p>\n\n\n\n<ol><li>It displays post content instead of excerpts on blog/archive pages.</li><li>It shows the featured image at the top of the page on single posts, creating duplicate image output when that same image is used in the content.</li><li>Its navigation menu lists all of my site&#8217;s pages by default. All 90+ of them.</li></ol>\n\n\n\n<p>One extra issue I noticed with the post content on the blog and archive pages was that wide and full-aligned blocks were the same width as normal content. I do not know if that is a WordPress or theme-specific issue. Since I planned on switching to excerpts, I did not look too deeply into the code.</p>\n\n\n\n<p>The Navigation block issue is, in part, a <a href=\"https://github.com/WordPress/gutenberg/issues/37340\">problem with WordPress</a> itself. It will fall back to the core Page List block in specific scenarios. However, theme authors can also address this via the <code>block_core_navigation_render_fallback</code> hook, introduced in Gutenberg 12.1.</p>\n\n\n\n<p>Fortunately, all of these issues are dead simple to correct in the world of block themes. The site editor is just a click away, and users are no longer bound to the oddities of otherwise solid theme designs. In moments, I was able to customize how things looked.</p>\n\n\n\n<img />Removing featured image from single posts via site editor.\n\n\n\n<p>The theme bundles 15 block patterns in total. Eight of them are for headers, and five are for footers. Most of these are variations on the same concept, primarily changing the position of the default elements.</p>\n\n\n\n<p>I was a little disappointed to not see more variety for page or general-use patterns. The theme ships one for an  About page and another for a Contact page. They both use an offset-column design that I hope one day gets dropped into the black hole where other web design trends go to die.</p>\n\n\n\n<img />\n\n\n\n<p>The nav menu&#8217;s &#8220;x&#8221; close button is on the far right edge of the screen, but the open icon is on the far left. This is more of a problem with WordPress&#8217;s handling of the Navigation block than the theme. Nevertheless, it is still irritating trying to find the close button. Ideally, the open and close buttons would always be in the same place.</p>\n\n\n\n<p>One way to mitigate this issue is to use the &#8220;Header with site title on left and button on right&#8221; pattern &#8212; <em>yes, all the short names were taken on header-pattern naming day</em>.</p>\n\n\n\n<img />Using a pattern to change the header design.\n\n\n\n<p>Users can switch it by modifying the Header template in the site editor. It puts the nav menu open button on the right side of the page. The close button will still be slightly off, but it is a better experience than the default.</p>\n\n\n\n<p>For a theme that I claim to love, I did focus on its downsides in this review. Part of that is to show that such issues need not always be the reason to overlook a block-based theme. If they are relatively minor problems, it does not take a programmer to make those adjustments. All of the design elements that I enjoyed about the theme were already there. It just needed some coaxing to make it perfect for me.</p>\n\n\n\n<p>I would still like to see the Automattic Theme Team add a few patterns to the mix. Livro&#8217;s clean canvas seems to invite a mashup of media and text blocks.</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, 13 Jan 2022 01:46: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: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: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:55:\"WPTavern: Extendify Launches New Pattern Library Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=128175\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:155:\"https://wptavern.com/extendify-launches-new-pattern-library-plugin?utm_source=rss&utm_medium=rss&utm_campaign=extendify-launches-new-pattern-library-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4062:\"<p>Extendify has simplified access to its pattern library with a new <a href=\"https://wordpress.org/plugins/extendify/\">plugin</a> that offers patterns and full-page layouts for WordPress sites using Gutenberg-friendly themes. The company has high expectations for the product, publishing it under the name &#8220;Extendify&#8221; as its flagship free plugin in the official directory. </p>\n\n\n\n<p>Although a different version of the pattern library is included in Extendify&#8217;s popular <a href=\"https://wordpress.org/plugins/redux-framework/\">Gutenberg Template Library &amp; Redux Framework</a> plugin, which has more than a million active installs, this new plugin is focused simply on site design tools. </p>\n\n\n\n<p>&#8220;If you’ve tried out the Extendify Library previously, then you’ll find this new version is completely refreshed,&#8221; Extendify&#8217;s Head of Product Rich Tabor said. &#8220;We rebuilt the library, and all our patterns/layouts, from the ground up — with a focus on augmenting the editing experience of both existing and new themes.&#8221;</p>\n\n\n\n<p>Extendify functions as a SaaS connector plugin that uses a custom API to fetch block patterns and page layouts from the company&#8217;s servers. Once installed, the plugin has no separate settings page. Extendify adds a &#8220;Library&#8221; button at the top of the editor to launch a modal with patterns and layouts.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>If you haven&#8217;t selected a &#8220;Site Type&#8221; in the sidebar of the modal, all the patterns and layouts will be black and white. Selecting a Site Type will update the previews to show insert industry-specific copy and pictures with color. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>If you find a page layout that you like, it&#8217;s easy to get a beautifully designed page in a matter of seconds. However, the way it is set up at the moment, free users only have access to five imports. Subscribers can get unlimited imports for <a href=\"https://extendify.com/pricing/\">$49.50/year</a> for one site. </p>\n\n\n\n<p>Users who are not planning to upgrade must be judicious about the patterns and layouts they choose to preview on the page. The plugin will warn free users about the remaining number of imports before proceeding. This mode of limitation may slow the plugin&#8217;s adoption, because users have to be careful about trying too many patterns and layouts on their sites. The plugin&#8217;s FAQs state that &#8220;Each user receives a limited number of imports completely free&#8221; but users would be better served by knowing that it&#8217;s a total of five imports before installing.</p>\n\n\n\n<img />\n\n\n\n<p>One of the good things about the plugin is that it is theme-agnostic and the patterns and layouts should still work nicely, even if you decide to change themes. </p>\n\n\n\n<p>&#8220;All our patterns and layouts are built completely with core blocks, infused with a clever utility design system (which lets us have neat patterns <a href=\"https://library.extendify.com/library/hero-grid-images/\">like this one</a> and are built to be Full Site Editing / Block Theme first &#8211; although we support most themes that support Gutenberg properly),&#8221; Tabor said.</p>\n\n\n\n<p>Previously, Extendify&#8217;s pattern library was only available as an SDK inside the company&#8217;s other related Gutenberg projects. This plugin makes it more accessible for site builders who only need the pattern/layout capabilities.</p>\n\n\n\n<p>&#8220;This effort was geared towards lowering that barrier and bringing the best of what we have to offer to anyone interested in building sites with the block editor,&#8221; Tabor said. &#8220;The new Extendify plugin is really the first big push in this direction, but we’re also leaning in on other ways to augment the editing experience to better empower both small business owners and site builders alike.</p>\n\n\n\n<p>&#8220;Block themes are where the future is and we’re aiming for the pole position with this newest effort.&#8221;</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, 12 Jan 2022 23:16: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: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:80:\"Post Status: Impossibly Knotted Together: Meditations on the WordPress Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=92470\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/impossibly-knotted-together/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10926:\"<h2 id=\"h-what-might-wordpress-community-4-0-look-like\">What might “<a href=\"https://poststatus.com/wordpress-community-40/\">WordPress Community 4.0</a>” look like?</h2>\n\n\n\n<p>This article is part of a conversation we\'d like you to join. </p>\n\n\n\n<p>What were the good and bad features of the first three versions of the WordPress community? What were the major bugs? What should the Post Status community look like in 2022 — and beyond? What should leadership in this space look like? What are the principles that should drive it? What are your own questions and What Ifs?</p>\n\n\n\n<p>You can leave a comment here or <a href=\"https://poststatus.com/contact/\">get in touch</a> on any Post Status channel, on or off the record. Blog about it. Tweet about it. Write for us. <strong>Help start this needed conversation.</strong></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator logo is-style-default\" />\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"h-wordpress-friends\">WordPress Friends</h2>\n\n\n\n<p class=\"has-drop-cap\"><strong>I first meet J as she’s staffing a table at a WordCamp.</strong> We talk about what brought us there, what we did before being involved in the WordPress community, what we hope to get from the day. There’s a problem she’s working through and I mention someone who has been through something similar, in case it helps. She tells me about a resource I hadn’t heard of, and I’m excited to check it out.</p>\n\n\n\n<p>Over the years that follow, J and I remain WordPress friends. At various times we encounter each other at events, in elevators, at receptions, across hallways, during meals, in Slack. The conversation picks back up where it left off. “How’d that thing go?” “You did an awesome job navigating that conflict!” “How’s your new team at work?” “Congrats on that cool thing you launched!” Being a part of the WordPress community gives J and me an anchor point, a foundation, and we build on it from there.</p>\n\n\n\n<p>There are many WordPress friends. I may not encounter them for months or years, and the connections may not always be as wide or deep as other friendships, but they have a special place in my heart. I smile when I notice them, online or in person. I celebrate their successes. I cherish our shared experience of building something together.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator logo is-style-default\" />\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"h-elders\">Elders</h2>\n\n\n\n<p class=\"has-drop-cap\"><strong>We have to talk more about the role of elders in our community. </strong>Definitely not elder as in “old entitled men” but elder as in “someone with life experience and wisdom who can be looked to for guidance as the community evolves.” We are old enough as a community to have elders, whether we see them as such or not.</p>\n\n\n\n<p>As communities go through transitions and face challenges, it’s often the elders who ground us and guide us. Not by wielding their power to keep order or fighting for the status quo, but by helping us weave the stories of our origins and past into our dreams for the future. This can happen in code, in community conversations, in documentation, or anywhere else.&nbsp;</p>\n\n\n\n<p>Elders can help us build relationships and connections across different parts of the community, promoting mutual respect and welcoming newcomers. Elders can pass down knowledge, teaching, and modeling cultural traditions and beliefs. Elders can deal with discrimination and oppression, using their standing to call out problematic behavior. Elders can help build sustainable infrastructure, making sure there are tools and services in place for the challenges we will face. Elders can help protect our identity while also helping us to adapt and evolve.</p>\n\n\n\n<p>How do WordPress community elders see themselves and their role? If they aren’t being celebrated for committing the latest hotness to an upcoming release or giving an exciting WordCamp talk, do we let them just fade into the background? If they branch out into other interests beyond WordPress, do we still find ways to harness their experiences and wisdom? Do we take care of them as they take care of us?</p>\n\n\n\n<p>Do our elders even know they are elders? Are you a WordPress community elder?</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator logo is-style-default\" />\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"h-a-recipe-for-community\">A Recipe for Community</h2>\n\n\n\n<pre class=\"wp-block-verse\">Small enough that you can make a difference\nBig enough that you can grow\nComfortable enough that you feel supported\nChallenging enough that you stay flexible\nFilled with people who want the best for you\nIntentional places and spaces for celebrating\nJust enough certainty to create a sense of purpose\nJust enough uncertainty to keep us humble\nNorms, ground rules and accountability\nPatience and respect built on safety and care\nCreative, kind and loving acts at the heart\nWhen people get a taste, they wonder\nWho created this, and how can I be a part of it? </pre>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator logo is-style-default\" />\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"h-the-matt-factor\">The Matt Factor</h2>\n\n\n\n<p class=\"has-drop-cap\"><strong>I was a WordPress user and developer for 10 years before I knew who Matt Mullenweg is.</strong> I’d bet that most WordPress users still don’t know who he is. And yet conversations about what Matt wants, what Matt thinks, what Matt is going to do sometimes play an outsized role in our community. People can worry when they think a thing they love or depend on is too much in the hands of forces they don’t know or understand. Nobody wants a broken heart.</p>\n\n\n\n<p>For a time I ended up working for Matt, reporting to Matt. I discovered that he has a superpower: he can see around corners and beyond horizons in ways that few other people can. I’d suspect time travel is involved if I didn’t know better. Sometimes he has trouble bringing the rest of us along, like trying to show a 19th-century carpenter the schematics for a space station. Other times, I think it’s just too many hearts and hopes and dreams for one person to carry gently. But on the whole, Matt is responsible for leading us to some amazing milestones.</p>\n\n\n\n<p>When things go well, Matt usually credits people in the community. When things aren’t going well, Matt usually gets or takes the blame. When we challenge him thoughtfully, he usually welcomes the growth and learning that goes with it. But Matt knows that WordPress and the WordPress community are bigger than him. I think he’s happy to be a part of building a thing that will outlive him, and probably all of us. He’s made it his life’s work. We can honor and celebrate that legacy without reservation.</p>\n\n\n\n<p>As a community, we can also build for a future that does not depend on any one person. We can make sure there’s a plan for maintaining our “commons.” There are other superpowers out there; I bet you have at least one to contribute. If we do it right, a shared vision for our community’s future will come from everyone who loves or benefits from WordPress in some way.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator logo is-style-default\" />\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"h-resilience\">Resilience</h2>\n\n\n\n<p class=\"has-drop-cap\">When <a href=\"https://www.ic.org\">intentional communities</a> form in the real world, their members think about the characteristics that will make their community resilient, sustainable, and able to thrive. These characteristics might include:</p>\n\n\n\n<ul><li>Human scale</li><li>Control, influence, trust</li><li>Connection</li><li>Shared purpose</li><li>Continuity</li><li>Diversity</li><li>Collaboration</li><li>Welcoming and supportive</li><li>Clear decision-making processes</li><li>Knowledge sharing</li><li>Respect and pride</li><li>Safety</li><li>Good communication</li><li>Cooperative</li></ul>\n\n\n\n<p>We can’t always choose our fellow community members and software that powers a huge chunk of the web is hard to make small and local again. But what can we learn from intentional communities? When you examine the physical places and spaces in your world that feel most welcoming, thriving, and sustainable, what do you notice?</p>\n\n\n\n<p>Do we want to create community experiences that are not so small as to preclude diversity, space, and freedom, but small enough to be accessible and not overwhelming? How can we make the daily experience of being in the WordPress community more personal, meaningful, and accessible?</p>\n\n\n\n<p>If real-world communities have a distinct center, defined boundaries, smaller sub-centers of activity, and open areas flowing all around, what does that look like for the WordPress community? How can we make sure our community spaces evolve to support interactive and supportive social structures?</p>\n\n\n\n<p>As pandemics and climate crises and polarization and uncertainty circle around us, what would it mean to feel grounded and safe in a resilient WordPress community?</p>\n\n\n\n<p><em>Adapted in part from Chapter 4 of Norwood and Smith’s “Rebuilding Community in America” (1995).</em></p>\n\n\n\n<h2 id=\"h-we-are-at-the-beginning\">We Are at the Beginning</h2>\n\n\n\n<p class=\"has-drop-cap\">Even with its wonderful diversity and global reach, I don’t think we’ve even begun to explore the WordPress community niches that exist out there.&nbsp;</p>\n\n\n\n<p>You could probably have a gathering for Canadian WordPress developers under 40 who specialize in funeral home websites and get a solid showing.</p>\n\n\n\n<p>There could be an entire weekly newsletter devoted to tips for pet adoption and rescue organizations who use WordPress to help animals find their forever homes, and someone would still suggest it needs to come out daily.</p>\n\n\n\n<p>The trials and tribulations of the Restaurants On WordPress scene are waiting to be chopped apart, lightly sauteed and served up with a side of Food Blogger Business Models.</p>\n\n\n\n<p>There are WordPress sub-communities and sub-cultures and niches and nooks and crannies that would take a lifetime to begin uncovering and exploring. There are so many stories to tell, and so many of them are nothing like our own. If we are to appreciate the beauty of the WordPress community as a whole, we have to seek them out.</p>\n\n\n\n<p>Beware anyone who tells you that they fully understand the WordPress community, or that they have their finger on the pulse of all things WordPress. Some of us have made more stops than others, but we are all travelers in a wonderful vastness that has no end.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator logo is-style-default\" />\n\n\n\n<div class=\"wp-block-spacer\"></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, 12 Jan 2022 23: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:46:\"Akismet: How to Stop Comment Spam 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:31:\"http://blog.akismet.com/?p=2188\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://blog.akismet.com/2022/01/12/how-to-stop-comment-spam-in-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23916:\"<p>Comment sections can be goldmines for engaging with your audience. Yet unmoderated comments can quickly descend into chaos. If you don’t <a href=\"https://docs.akismet.com/general/spam-facts/\">keep an eye out for spam</a>, it may overrun every comment section on your website. These messages can scare real readers away, and prevent them from interacting with other users (and with you).</p>\n\n\n\n<p>In most cases, spam is easy to recognize. Users or guests will leave links to other websites without explaining why, or start talking about products and services that have nothing to do with your content. If you put measures in place to stop these messages, you can keep your comment sections protected and valuable to your audience.</p>\n\n\n\n<p>In this article, we’re going to take a good look at how spam appears in a comment section. We’ll show you how to identify spam comments on your WordPress websites, and talk about how they negatively affect your website. Finally, we’ll show you eight ways to prevent comment spam in WordPress. Let’s get to it!</p>\n\n\n\n<span id=\"more-2188\"></span>\n\n\n\n<h2 id=\"what-is-comment-spam\">What is comment spam?</h2>\n\n\n\n<p>If you use the internet, you’re already familiar with spam. You probably get dozens of emails per week advertising fraudulent products and offers. But spam messages don’t just come in the shape of emails — they’re everywhere on the web.</p>\n\n\n\n<p>Spammers tend to gravitate towards comment sections because they offer the opportunity to target a broad audience. On popular blogs, it’s not uncommon to have comment sections with dozens of users engaging in discussion. A single spam comment pointing to another website can easily get a few clicks, and even more so if it blends into the conversation.</p>\n\n\n\n<img />\n\n\n\n<p>Generally speaking, comment spam is any content with the sole purpose of pointing visitors towards other websites. Spam commenters may be trying to get people to buy or sign up for something, phish sensitive information from visitors, or install malware on their device. <em>Occasionally</em> you’ll see legitimate comments that point readers towards third-party websites, but these links have to make sense in the context of the discussion.</p>\n\n\n\n<p>It can be tempting to simply ignore comment spam, but that can have a negative impact on your website. If you visit a site and you see that its comment sections are overrun with spam messages, you might not trust its content or the business that owns it. We’ll touch on other ways that spam can affect your site, but first let’s talk about how to spot this type of comment.</p>\n\n\n\n<h2 id=\"how-to-identify-comment-spam\">How to identify comment spam</h2>\n\n\n\n<p>Spam comments tend to be very easy to spot. In a lot of cases, bots — not actual people — are behind them. These bots are programmed to target comment sections that don’t require any type of verification and post messages that will lead readers to third-party websites.</p>\n\n\n\n<img />\n\n\n\n<p>If you’re ever on the fence about whether a comment is spam or not, there are several signs that you can check for. Signs of comment spam include:</p>\n\n\n\n<ul><li>The comment comes from a guest account or one with a generic name</li><li>The user doesn’t have an avatar</li><li>The comment includes links to third-party websites</li><li>There are mentions of products, services, and benefits to readers</li><li>The comment has little or nothing to do with the discussion at hand</li></ul>\n\n\n\n<h2 id=\"trolls-vs-spam\">Trolls vs spam</h2>\n\n\n\n<p>Sometimes, you might get comments in poor taste or that don’t add anything to the discussion. Those commenters may be genuine in their opinions and honestly think that they’re contributing to the community, or they may be trolling. But those comments are not necessarily spam.</p>\n\n\n\n<p>There are a couple of key differences between trolls and spam. Trolls are real people and spam is most often spread by bots. Also, a troll’s main goal is to disrupt discussion, sow division, and elicit emotional responses from other individuals. The main goal of spam is usually some kind of financial gain, whether it’s an unethical (but genuine) marketing tactic, or an attempt to scam people.</p>\n\n\n\n<h2 id=\"why-are-comment-spam-bots-targeting-your-website\">Why are comment spam bots targeting your website?</h2>\n\n\n\n<p>If you’re working on your first WordPress website, you may think that spam bots have it out for you. Unfortunately, comment spam is something that almost <em>every </em>website has to deal with (unless you turn comments off entirely).&nbsp;</p>\n\n\n\n<p>Bots crawl the web looking for comment sections that they can target. They don’t differentiate between sites that are and are not relevant to the websites, products, and services that they’re promoting. For spammers, it’s all a matter of numbers. If they leave thousands of comments across many different websites, at least <em>some </em>readers will take the bait.</p>\n\n\n\n<p>Some of those users will go on to share personal information or even payment details that spammers can steal. In some cases, spammers might benefit directly from making sales to users who aren’t aware of their underhanded practices.</p>\n\n\n\n<p>Comment sections can be an incredible source for engaging discussions and ideas within your website. They can encourage users to look out for new posts and build relationships with other commenters. On the other hand, the price that you pay for having a comment section is needing to deal with spam.</p>\n\n\n\n<p>Luckily, WordPress empowers you with several tools and features that make dealing with spam comments that much easier. We’ll explore those in a second, but for now let’s talk about the rest of the ways that spam comments can affect your website.</p>\n\n\n\n<h2 id=\"four-ways-that-spam-comments-negatively-affect-your-website\">Four ways that spam comments negatively affect your website</h2>\n\n\n\n<h3 id=\"1-spam-comments-diminish-trust\">1. Spam comments diminish trust&nbsp;</h3>\n\n\n\n<p>If you come across a website that looks credible, but it’s full to the brim with spam comments, you might believe that the site is abandoned. At the very least, you’ll tell yourself that its owners might not care about cleaning up their comment sections, or that they don’t pay attention to comments at all.</p>\n\n\n\n<p>The more obvious the spam is, the more negatively it will impact your website’s image.</p>\n\n\n\n<img />\n\n\n\n<p>Tech-savvy users might not judge you too harshly for having spam on your website, since they understand where it comes from. But not all of your audience will know that they should ignore spam comments.</p>\n\n\n\n<p>Some users will see spam and think that since it’s on your website, you’re endorsing it or promoting the offers the comments include. If that translates to them making a scam purchase or sharing personal information online, it will diminish their trust in you.</p>\n\n\n\n<p>If you have a website with a comment section, it’s your responsibility to keep it clean, and not just so that your site looks better. You have to consider that some of your audience doesn’t have the technical know-how to differentiate spam offers from real content, and it’s your job to ‘protect’ them while they’re on your site.</p>\n\n\n\n<h3 id=\"2-real-comments-can-get-lost-among-spam-entries\">2. Real comments can get lost among spam entries</h3>\n\n\n\n<p>If you’re a user trying to have a real discussion in a comment section, navigating spam can be frustrating. Genuine replies to the topic at hand can easily get lost as bots overrun the comment section.</p>\n\n\n\n<p>That frustration can lead to users deciding that commenting on your content is simply not worth it. Comments can be a great source for critical discussion about your posts, questions that can lead to new content, and even users simply thanking you for your efforts.</p>\n\n\n\n<p>If you allow spam to run unchecked on your website, you lose out on a lot of the value that comment sections can provide. At that point, you might be better off disabling comments altogether.</p>\n\n\n\n<h3 id=\"3-spam-can-impact-your-website-s-search-engine-optimization-seo\">3. Spam can impact your website’s search engine optimization (SEO)</h3>\n\n\n\n<p>Getting a website to rank well on search engines takes a lot of time and effort. Often, it can take months or even years to grow a website to the point where it’s getting decent traffic from search results. That process involves dozens of SEO tasks, tweaking your pages and posts so they&#8217;re well-optimized, and publishing better content than your competitors.</p>\n\n\n\n<p>Unfortunately, spam comments can <a href=\"https://www.semrush.com/blog/content-spam/\" target=\"_blank\" rel=\"noreferrer noopener\">negatively impact your SEO</a> if you leave them unchecked. Most spam includes links to external websites, and search engines can’t differentiate between those links and the ones that you include within your content.</p>\n\n\n\n<p>From the search engine’s perspective, all they see is that your website suddenly includes a lot of ‘low-value’ links. Since links are one of the many signals that search engines use to determine rankings, spam comments can cause your site to plummet in the results.&nbsp;</p>\n\n\n\n<p>Considering how critical search engine traffic is to most websites’ growth, you can’t allow spam comments to linger on your site. That’s why you need to put measures in place to prevent spam, and to weed it out if it makes it past your defenses.</p>\n\n\n\n<h3 id=\"4-spam-can-slow-down-your-website\">4. Spam can slow down your website</h3>\n\n\n\n<p>If you’re getting a lot of spam bots attempting to submit comments, these requests can affect your website’s performance. If your site is having to handle thousands of spam submissions a day, that can use up a lot of your site’s resources —&nbsp;especially if you’re on a budget hosting plan. Additionally, if you let spam comments pile up, you may end up with some serious database bloat, further slowing your site’s load times.&nbsp;</p>\n\n\n\n<p>If your readers have to wait a long time for your pages to render, they’re less likely to stick around to read your content, let alone leave a comment (unless it’s to complain about how slow your site is).</p>\n\n\n\n<h2 id=\"how-to-prevent-comment-spam-in-wordpress\">How to prevent comment spam in WordPress</h2>\n\n\n\n<p>At this point, we wouldn’t blame you if you’re very concerned. Spam causes a lot of problems, and it’s almost guaranteed that bots will try and post these types of messages on your site. So what can you do about it?</p>\n\n\n\n<p>The good news is that WordPress offers a variety of ways in which you can prevent and filter spam comments from your WordPress website. In this section, we’ll explore all of the approaches that you can take to prevent spam and protect your comment sections.</p>\n\n\n\n<h3 id=\"1-use-a-plugin-to-filter-spam-comments\">1. Use a plugin to filter spam comments</h3>\n\n\n\n<p>The best way to deal with spam is to use a plugin that can automatically detect which comments are legitimate and which ones aren’t. That’s a lot to ask from a plugin, but it’s precisely what <a href=\"https://wordpress.org/plugins/akismet/\">Akismet</a> does.</p>\n\n\n\n<img />\n\n\n\n<p>When you use Akismet, the plugin analyzes each comment that visitors submit on your website. It accesses Akismet’s global database and checks to see if the comments match other known spam entries and sources.</p>\n\n\n\n<p>All of that happens in the background, in a matter of seconds. If Akismet marks a comment as spam, it’s flagged and it doesn’t get published. Fortunately, you can also review these comments manually, to double-check that no real entries get flagged by mistake.</p>\n\n\n\n<img />\n\n\n\n<p>If you want to approve a comment, you can mark it for publication and it will show up on your website. But you save a lot of time by focusing only on the comments that Akismet flags versus reviewing every comment submission manually.</p>\n\n\n\n<p>There is a free version of the plugin, which is perfect for most websites. On the other hand, if you’re running a commercial site or get a large volume of traffic, you’ll want to look into <a href=\"https://akismet.com/plans/\">premium plans</a>.</p>\n\n\n\n<h3 id=\"2-disable-wordpress-comments-altogether\">2. Disable WordPress comments altogether</h3>\n\n\n\n<p>If you want to stop spam altogether, you can disable comments throughout your website. This is an extreme approach, so we only recommend that you disable comments if you’re certain that they won’t contribute anything to your site.</p>\n\n\n\n<p>To <a href=\"https://wordpress.org/support/article/comments-in-wordpress/\" target=\"_blank\" rel=\"noreferrer noopener\">disable comments in WordPress</a>, access your dashboard and go to <strong>Settings <em>→ </em>&nbsp;Discussion</strong>. Look for the section that reads <strong>Default post settings</strong><em> </em>at the top of the screen, and uncheck the <strong>Allow people to submit comments on new posts</strong><em> </em>option:</p>\n\n\n\n<img />\n\n\n\n<p>That setting will disable comments for every post that you publish from now on. But comments will remain active for old posts and pages. To disable those comment sections, go into the <strong>Posts</strong><em> </em>or <strong>Pages</strong><em> </em>tab. Select a post or page, and click on <strong>Quick edit</strong><em> </em>below its name. You’ll see an option that reads <strong>Allow Comments</strong>.</p>\n\n\n\n<img />\n\n\n\n<p>If that option is checked, disable it. Repeat this process for every page and post where you want to disable comments.</p>\n\n\n\n<p>Depending on the type of website you’re running, disabling comments altogether might cost you some user engagement. Fortunately, there are other ways to reduce spam.</p>\n\n\n\n<h3 id=\"3-force-users-to-register-before-they-can-comment\">3. Force users to register before they can comment</h3>\n\n\n\n<p>One of the best ways to reduce comment spam in WordPress is to make it more difficult for bots to make submissions. Forcing bots to register and log in before they can comment can go a long way towards reducing spam entries on your posts and pages.</p>\n\n\n\n<p>WordPress enables you to do that by checking a single setting on your website. Go to <strong>Settings </strong><strong>→ </strong><strong>Discussion</strong><em> </em>and scroll down to the <strong>Other comment settings</strong><em> </em>section. Tick the box for the setting that reads <strong>Users must be registered and logged in to comment</strong>.</p>\n\n\n\n<img />\n\n\n\n<p>By enabling that setting, you force spammers and bots to go through the registration process if they want to submit anything on your website. In a lot of cases, that can be enough to deter spammers. But since spam user registration does happen, you may have to implement a few more preventative measures.</p>\n\n\n\n<h3 id=\"4-hold-comments-for-approval-before-publishing-them\">4. Hold comments for approval before publishing them</h3>\n\n\n\n<p>By default, WordPress publishes comments as soon as users submit them. It also comes with a moderation queue where you can review comments and approve or reject them before they go live.</p>\n\n\n\n<p>You can configure WordPress so that your website requires you to approve every comment manually. To do so, go to <strong>Settings </strong><strong>→ </strong><strong>Discussion</strong><em> </em>and scroll down to the <strong>Before a comment appears section</strong>. Enable the setting that reads <strong>Comment must be manually approved</strong>.</p>\n\n\n\n<img />\n\n\n\n<p>There’s also another setting that tells WordPress it can automatically publish comments if<em> </em>you’ve already approved submissions from the same user. That setting can save you a lot of time, as you’ll only have to review submissions from each user once.</p>\n\n\n\n<p>To access pending comments, click on the chat box icon in the top menu within the dashboard. That icon should display a number to its right, which shows the number of pending comments in the queue.</p>\n\n\n\n<img />\n\n\n\n<p>From this screen, you can review comments one by one and approve those that aren’t spam. If you see a spam comment, you can delete it permanently.</p>\n\n\n\n<h3 id=\"5-flag-comments-that-include-links-and-specific-terms\">5. Flag comments that include links and specific terms</h3>\n\n\n\n<p>Generally speaking, there aren’t many situations where it makes sense for legitimate comments to include links. Your readers might want to point each other towards relevant content, but usually, comments that include links tend to fall into the spam category.</p>\n\n\n\n<p>WordPress offers an elegant solution to that problem by enabling you to configure how many links a comment can include before it gets flagged as spam. You can find that setting on the <strong>Settings </strong><strong>→ </strong><strong>Discussion </strong>page under the <strong>Comment Moderation</strong><em> </em>section.</p>\n\n\n\n<img />\n\n\n\n<p>By default, WordPress will flag any comment that includes two or more links within its body. If you want to play it safe, you can reduce that number to one link. This means any comments that include links will go into the moderation queue to await your approval.</p>\n\n\n\n<p>This section also enables you to set keywords that WordPress will use to flag comments. If it detects those words within new comments, WordPress will hold them in the moderation queue. Some common keywords that you can set include:</p>\n\n\n\n<ul><li>Buy/sell</li><li>Make/earn money</li><li>Offer</li><li>Stock and shipment</li></ul>\n\n\n\n<p>All of those keywords are pretty good indicators of spam comments. You can be as aggressive as you want when it comes to choosing what terms to filter, but keep in mind that this means you’ll need to spend more time approving comments manually.</p>\n\n\n\n<p>Rather than deciding what keywords to ‘blocklist’ on your own, you can also benefit from the collective experience of the WordPress community. For example, you might download the recommended <a href=\"https://github.com/splorp/wordpress-comment-blacklist\" target=\"_blank\" rel=\"noreferrer noopener\">Comment Blacklist for WordPress</a> that’s featured on GitHub.</p>\n\n\n\n<h3 id=\"6-add-a-captcha-to-your-comment-sections\">6. Add a CAPTCHA to your comment sections</h3>\n\n\n\n<p>You may have noticed that a lot of comment sections force you to solve a CAPTCHA before you can submit an entry. <a href=\"https://blog.akismet.com/2021/12/23/do-captcha-and-recaptcha-protect-wordpress-sites-from-bots/\">CAPTCHAs are simple tests</a> designed to stop bots from posting and ensure that you’re a human.&nbsp;</p>\n\n\n\n<p>WordPress doesn’t include CAPTCHA functionality out of the box. The good news is that you can easily add this feature using a plugin like <a href=\"https://wordpress.org/plugins/google-captcha/\" target=\"_blank\" rel=\"noreferrer noopener\">reCaptcha</a>.</p>\n\n\n\n<p>This plugin enables you to add CAPTCHAs to multiple elements within your website. You can add them to comment sections, registration and login forms, contact forms, and more.</p>\n\n\n\n<p>If visitors (or bots) can’t solve the CAPTCHAs, they won’t be able to submit comments. But CAPTCHAs don’t always catch every spam comment. Bots become smarter each day and often find ways around even the trickiest of puzzles.&nbsp;&nbsp;</p>\n\n\n\n<h3 id=\"7-use-a-third-party-comment-system\">7. Use a third-party comment system</h3>\n\n\n\n<p>The WordPress comment system works seamlessly and includes a lot of features to make your life easier. Yet it lacks things like social media integration and the ability for visitors to reply using images or GIFs, emoticons, and other options.</p>\n\n\n\n<p>If you want to give your audience access to that type of functionality, you can replace the default WordPress comment system with a different one altogether. There are plenty of WordPress plugins that enhance your comment section:</p>\n\n\n\n<ol><li><a href=\"https://wordpress.org/plugins/wpdiscuz/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>wpDiscuz</strong></a><strong>: </strong>This plugin extends the native WordPress comment system and adds new options like custom layouts, live notifications, responsive comment sections, and more.&nbsp;</li><li><a href=\"https://wordpress.org/plugins/gs-facebook-comments/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>WP Social Comments</strong></a><strong>: </strong>With this plugin, visitors will be able to use their Facebook account to leave comments on your website.</li><li><a href=\"https://wordpress.org/plugins/super-socializer/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Super Socializer</strong></a><strong>: </strong>This plugin enables you to use the Facebook commenting system in WordPress and lets users log in with their social media accounts.</li><li><a href=\"https://jetpack.com/features/discussion/comments/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Jetpack Comments</strong></a>: Visitors can log in using their social media accounts, like other people’s comments, and receive a notification when another user replies.</li></ol>\n\n\n\n<p>Comment plugins that include social media components offer a fantastic way to reduce spam in WordPress. By forcing users to log in through social media to comment, you make it harder for spammers to submit fake entries on your website.</p>\n\n\n\n<h3 id=\"8-set-up-a-web-application-firewall-waf\">8. Set up a web application firewall (WAF)</h3>\n\n\n\n<p>Using a WAF can help you prevent attackers from accessing your website. WAFs enable you to configure rules that govern who can use your site. That means you can block IP addresses, visitors from specific regions, bots that try to access your site repeatedly in short amounts of time, and more.</p>\n\n\n\n<p>If you’ve ever run into a website that uses <a href=\"https://www.cloudflare.com/waf/\" target=\"_blank\" rel=\"noreferrer noopener\">Cloudflare</a> or <a href=\"https://sucuri.net/website-firewall/\" target=\"_blank\" rel=\"noreferrer noopener\">Sucuri</a>, then you’ve already seen WAFs in action. Most content delivery networks (CDNs) offer WAF functionality, since it helps them protect their users against malicious traffic.</p>\n\n\n\n<p>Using a CDN will also help you improve load times throughout your website. Depending on which service you use, you might also get access to features like automatic image optimization, denial of service (DDoS) protection, and more.</p>\n\n\n\n<p>Some CDNs will help protect your website against known bots and spammers. Simply enabling the CDN will block those known agents from accessing your website and being able to leave comments.</p>\n\n\n\n<h2 id=\"spam-is-unavoidable-but-it-can-be-defeated\">Spam is unavoidable, but it can be defeated</h2>\n\n\n\n<p>If you have comment sections on your website, you’re going to be faced with spam. Spam bots are <em>everywhere</em>, and if you ignore them, they can quickly overrun your comment sections with links to other websites and offers that will scare some of your real visitors away.</p>\n\n\n\n<p>Fortunately, WordPress offers a number of ways to deal with comment spam. You can use built-in settings to make it harder for spammers to submit responses to your posts and pages. You can also use plugins that automatically filter out easily recognizable WordPress comment spam, add CAPTCHAs to your comment sections, or require visitors to log in using their social media accounts.</p>\n\n\n\n<p>If you want a simple but effective solution, you can begin by <a href=\"https://akismet.com/plans/\">setting up Akismet</a>. This plugin will automatically filter spam comments on your WordPress website, so you don’t have to spend time going over your entire moderation queue manually. Akismet also integrates with some of WordPress’ most popular plugins like Jetpack, Contact Form 7, Gravity Forms, Formidable Forms, and others.</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, 12 Jan 2022 10:09:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Simon Keating\";s: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:75:\"WPTavern: What Are Block Themes? What You Need To Know Before 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=127927\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"https://wptavern.com/what-are-block-themes-what-you-need-to-know-before-wordpress-5-9?utm_source=rss&utm_medium=rss&utm_campaign=what-are-block-themes-what-you-need-to-know-before-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:7228:\"<p class=\"has-drop-cap\">WordPress 5.9 is set to launch on January 25, and many users will be in for a surprise. The upcoming release will be the most monumental shift in how the platform works since the introduction of the block-based content editor in 5.0. Block themes, global styles, and the site editor will kick-start a new future for WordPress.</p>\n\n\n\n<p>For the average WP Tavern reader, this is not news. We have covered block themes here for over a year. For those out of the loop, there is a lot to catch up on within the next two weeks.</p>\n\n\n\n<p>One of the complaints with the launch of the block editor in 2018 was that users could only opt-out of using it by installing Classic Editor or a related plugin. This is not the case for the new features in 5.9. Users can keep on using their current setup without any changes at all. Accessing the site editor and global styles is an opt-in process. It requires the activation of a block theme.</p>\n\n\n\n<p>The upcoming changes will affect two primary groups of users. The first are those who prefer to run the latest default WordPress theme. The second will be those ready to try out the new system.</p>\n\n\n\n<p>Currently, there are <a href=\"https://wordpress.org/themes/tags/full-site-editing/\">35 block themes in the directory</a> on WordPress.org, with more in the review queue. That limits the available options for now. </p>\n\n\n\n<img />Block themes from WordPress.org.\n\n\n\n<p>After WordPress 5.9 launches and developers become more familiar with building on the new system, I expect that we will see a noticeable uptick in block themes in the coming months.</p>\n\n\n\n<p><strong>Note:</strong> <em>this post focuses on user-facing changes. If you are a developer who wants to get started with block theme design, read Marcus Kazmierczak&#8217;s overview of <a href=\"https://make.wordpress.org/core/2022/01/04/block-themes-a-new-way-to-build-themes-in-wordpress-5-9/\">building block themes for WordPress 5.9</a></em>.</p>\n\n\n\n<h2 id=\"twenty-twenty-two\">Twenty Twenty-Two</h2>\n\n\n\n<img />Twenty Twenty-Two theme about page template.\n\n\n\n<p class=\"has-drop-cap\">The latest default WordPress theme, Twenty Twenty-Two, will launch alongside version 5.9. While I have a few nit-picks about it, it might just be my all-time favorite default theme ever created.</p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2022/01/wordpress-5-9-rc-2/\">WordPress 5.9 RC 2</a> was released earlier today. Now is as good a time as any to give it a test run. Twenty Twenty-Two is already bundled with this version.</p>\n\n\n\n<p>As is often the case with default themes, it is likely to become the <em>de facto</em> standard in which developers build their own projects. It uses all the latest features and is one of the most up-to-date themes out there. This makes it the ideal starting point for users who want to test the new system.</p>\n\n\n\n<p>The theme is merely one component of a broader system. For users, it can be something they set and forget. Or, they can take it to the next level and customize their front end until their heart is content.</p>\n\n\n\n<h2 id=\"site-editor-and-global-styles\">Site Editor and Global Styles</h2>\n\n\n\n<p class=\"has-drop-cap\">Block themes are different than many traditional themes. In the classic era, users activated a theme and customized whatever options the developer made available. It was a rigid system that often did not give users much flexibility unless they knew how to write code.</p>\n\n\n\n<p>Users can access a boatload of new features after activating a block theme. This is done via the site editor, located under the Appearance > Editor admin screen. Users can modify their theme templates directly on the canvas and customize their design through the global styles panel.</p>\n\n\n\n<img />Site editor with global styles panel open (right).\n\n\n\n<p>The first experience with the site editor can be overwhelming. Some might prefer diving right in, while others take a different approach. Regardless of how you learn, I recommend going through the <a href=\"https://learn.wordpress.org/course/simple-site-design-with-full-site-editing/\">Simple Site Design with Full Site Editing</a> course from Learn WordPress. The Training team has created a 15-lesson plan that walks you through everything you need to know. They also have a six-minute <a href=\"https://learn.wordpress.org/workshop/how-to-style-your-site-with-global-styles/\">workshop on using global styles</a>.</p>\n\n\n\n<p>Using the site editor can be fun, but it can also be frustrating. This is essentially a &#8220;version 1.0&#8221; of the feature. It will not meet everyone&#8217;s needs with its launch in two weeks. It will take some time to mature and for theme authors to build on top of it.</p>\n\n\n\n<p>I spent over a decade building themes professionally. One of the most common questions I got was, &#8220;How do I change the post meta area?&#8221; Users would want to remove the author, move the category list, and do numerous other things. No amount of theme options covered every scenario. I often resorted to walking non-coders through making changes to their theme templates.</p>\n\n\n\n<p>Except in the most complex cases, this problem no longer exists. Through the site editor, users can choose what appears.</p>\n\n\n\n<img />Custom post byline/meta.\n\n\n\n<p>I wish we had such a system a decade ago. It would have saved me hours of support work.</p>\n\n\n\n<p>Of course, this is a simple example of what is possible with the site editor. Everything from changing bits of a template to creating an entire custom color palette is mere mouse-clicks away from reality.</p>\n\n\n\n<p>However, the possibilities are not boundless. There are limitations that users will undoubtedly run into as they get more and more advanced with design ideas. Contributors have taken massive strides to get this first version ready for WordPress 5.9. And, there will be more to come.</p>\n\n\n\n<h2 id=\"customizer-widgets-and-nav-menus\">Customizer, Widgets, and Nav Menus</h2>\n\n\n\n<p class=\"has-drop-cap\">The most shocking thing for those who have been out of the loop will likely be the disappearance of the customizer, widgets, and nav menus admin screens. These components are replaced by the site editor when using a block theme.</p>\n\n\n\n<p>There are some known issues related to the customizer, such as no custom CSS option, live previews, or site icon setting. I covered this in <a href=\"https://wptavern.com/customizer-will-disappear-for-some-block-theme-users-with-wordpress-5-9\">more detail in a previous post</a>.</p>\n\n\n\n<p>Nav menus are now handled via the Navigation block:</p>\n\n\n\n<img />Selecting a nav menu.\n\n\n\n<p>It could take some getting used to. While I am a fan of the block system, I, admittedly, still prefer managing menus via the classic screen. However, I am starting to come around. The contributors who have been working on the block have made the experience far better than it was just a few months ago.</p>\n\n\n\n<p>As for dynamic sidebars and widgets, they are gone, at least in the traditional sense. Everything is a block now. Theme authors can create columns or containers that look like sidebars of the past, but they are all managed via the site editor. And, users can stick any block they want anywhere.</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, 12 Jan 2022 02:11:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: WordPress 5.9 to Introduce New API for Locking Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=128129\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:171:\"https://wptavern.com/wordpress-5-9-to-introduce-new-api-for-locking-blocks?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-9-to-introduce-new-api-for-locking-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2675:\"<p>The advent of block themes delivers more creative power into the hands of users, but there are times when theme authors may want to lock down key elements of a design and its designated content areas. First <a href=\"https://wptavern.com/gutenberg-11-6-introduces-new-api-for-locking-blocks\">introduced in Gutenberg 11.6</a>, the upcoming WordPress 5.9 release will include a new API for locking blocks. </p>\n\n\n\n<p>Template level locking has been available in Gutenberg for a few years, allowing developers to lock the template on the UI so that users can&#8217;t manipulate the blocks. This new API offers more granular control that can be applied on the block level and override template locking.</p>\n\n\n\n<p>&#8220;Instead of applying a lock to all inner blocks, you can apply it selectively to individual blocks via the <code>lock</code> attribute,&#8221; Marcus Kazmierczak said in the <a href=\"https://make.wordpress.org/core/2022/01/08/locking-blocks-in-wordpress-5-9/\">dev note</a>. &#8220;The block level locking would supersede the inherited <code>templateLock</code> value. You can choose to lock moving or removing a block.&#8221;</p>\n\n\n\n<p>One of the primary use cases for locking individual blocks, cited in the <a href=\"https://github.com/WordPress/gutenberg/issues/29864\">ticket</a> proposing the new API, is where one might lock the &#8220;post-content&#8221; block of a <code>single</code> template so users can&#8217;t remove it.</p>\n\n\n\n<p>&#8220;Another use case that we&#8217;re building for is having a Checkout Block with different blocks that act as fundamental steps, we don&#8217;t want people to delete or move those steps since they&#8217;re fundamental and their order is also important, but we want to allow people to select them, access settings, and insert blocks in between them,&#8221; WooCommerce engineer Seghir Nadir said.</p>\n\n\n\n<p>Kazmierczak&#8217;s dev note demonstrates how developers can lock a specific block in a pattern and explained how block level locking is not inheritable.</p>\n\n\n\n<p>&#8220;If a block is locked from being removed, its children can still be removed,&#8221; Kazmierczak said. &#8220;If you want to apply locking on children as well, add <code>templateLock</code> to the inner block component, or <code>templateLock</code> attribute to supporting blocks.&#8221;</p>\n\n\n\n<p>For more information on the new locking mechanism, check out the <a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-templates/#locking\">Block Editor Handbook</a> and the code examples in the <a href=\"https://make.wordpress.org/core/2022/01/08/locking-blocks-in-wordpress-5-9/\">dev note</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Jan 2022 21:01:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:38:\"WordPress.org blog: WordPress 5.9 RC 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12014\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/news/2022/01/wordpress-5-9-rc-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4916:\"<p>The second Release Candidate (RC2) for<a href=\"https://make.wordpress.org/core/5-9/\"> WordPress 5.9</a> is now available!&nbsp;</p>\n\n\n\n<p>“Release Candidate” means the new version of the software is ready for release. It helps the community check that nothing is missed, given the thousands of plugins and themes and differences in how millions of people use the software.</p>\n\n\n\n<p>Thank you to everyone who has contributed thus far towards testing and filing bugs to help make WordPress 5.9 a great release. WordPress 5.9 is slated for release in just two weeks on January 25, 2022. There&#8217;s still time to help! Since RC1 was released, <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.9&time=01%2F05%2F2022..01%2F12%2F2022&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\" target=\"_blank\" rel=\"noreferrer noopener\">six</a> bugs have been found and fixed. There were <a href=\"https://core.trac.wordpress.org/changeset/52551\">13 bug fixes backported from Gutenberg.</a></p>\n\n\n\n<h2 id=\"testing-the-release\"><strong>Testing the release</strong></h2>\n\n\n\n<p>You can test the WordPress 5.9 release candidate in three ways:</p>\n\n\n\n<p><strong>Option 1:</strong> Install and activate the<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"> <strong>WordPress Beta Tester</strong></a><strong> </strong>plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2:</strong> Direct download the beta version here (<a href=\"https://wordpress.org/wordpress-5.9-RC2.zip\"><strong>zip</strong></a>).</p>\n\n\n\n<p><strong>Option 3:</strong> When using WP-CLI to upgrade from Beta 1, 2, 3, 4, or RC1, on a case-insensitive filesystem, please use the following command sequence:</p>\n\n\n\n<p>Command One:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-RC2</code></pre>\n\n\n\n<p>Command Two:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-RC2 --force</code></pre>\n\n\n\n<p>Your help to test the second Release Candidate is vital: the more testing that happens, the more stable the release, and the better the experience for users and developers—and the entire WordPress community.</p>\n\n\n\n<p>Thank you to all of the contributors who tested the RC1 release and gave feedback. Testing for bugs is not just a critical part of polishing every release, it is also a great way to contribute to WordPress.</p>\n\n\n\n<h2 id=\"how-to-help\"><strong>How to Help</strong></h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/test/2021/11/30/help-test-wordpress-5-9-features/\">Help test WordPress 5.9 features</a> – a guide to how you can take part.</p>\n\n\n\n<p>Can you write in another language other than English? You can<a href=\"https://translate.wordpress.org/projects/wp/dev\"> help translate WordPress into more than 100 languages!</a> Release Candidate 1 marked the<a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\"> hard string freeze</a> point of the 5.9 release schedule. Thanks to every locale that is already involved with translations.</p>\n\n\n\n<p>Developers and those interested in more of the background to the features can find more in the <a href=\"https://make.wordpress.org/core/2022/01/10/wordpress-5-9-field-guide/\">Field Notes</a>. More developer notes will be added as the release progresses to its final stage. You can also follow the <a href=\"https://make.wordpress.org/core/5-9/\">5.9 development cycle</a> and timeline.</p>\n\n\n\n<p><strong><em>If you think you have found a bug</em></strong><em>, you can post the details to the</em><a href=\"https://wordpress.org/support/forum/alphabeta\"><em> </em><em>Alpha/Beta area</em></a><em> in the support forums.</em></p>\n\n\n\n<p><em>&nbsp;If you are comfortable writing a reproducible bug report, you can</em><a href=\"https://core.trac.wordpress.org/newticket\"><em> </em><em>file one on WordPress Trac</em></a><em>, where you can also check the issue against</em><a href=\"https://core.trac.wordpress.org/tickets/major\"><em> </em><em>a list of known bugs</em></a><em>.</em></p>\n\n\n\n<p><em>Props to: </em><a href=\"https://profiles.wordpress.org/psykro/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>psykro</a> and <a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a><em>, and </em><a href=\"https://profiles.wordpress.org/hellofromtonya/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>hellofromtonya</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a> and <a href=\"https://profiles.wordpress.org/marybaum/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>marybaum</a> <em>for final 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:\"Tue, 11 Jan 2022 20:43:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Jonathan Bossenger\";s: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:97:\"Post Status: Post Status Excerpt (No. 41) — WordPress Community Versions: Past, Present, 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:31:\"https://poststatus.com/?p=92231\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/41/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68552:\"<h3>&#8220;The Hippie times are going to end at some point.&#8221; —<strong>Bob Dunn</strong></h3>\n\n\n\n<p class=\"has-drop-cap\">In this episode of Post Status Excerpt, David has an honest and deep dive with Bob Dunn into the &#8220;versions&#8221; of the WordPress community — something Bob <a href=\"https://bobwp.com/are-we-in-wordpress-community-version-3-0/\">covered in a recent blog post</a> that has gotten some attention recently. They discuss what each &#8220;version&#8221; was like, how money can make a community act differently, and how people position themselves, for better or worse, in reaction to changes in the community.</p>\n\n\n\n<p><strong>Also: </strong>David asks Bob if certain changes are unavoidable once a community gets to a certain size and asks what is missing from the WordPress community today that existed in the early days.</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://bobwp.com/are-we-in-wordpress-community-version-3-0/\">Are We in WordPress Community Version 3.0?</a></li><li><a href=\"https://twitter.com/dimensionmedia/status/1476956055448006656\">Twitter Poll About WordPress Version/Generations</a></li><li><a href=\"https://poststatus.slack.com/archives/CHNM7Q7T8/p1640797603256400\">Conversation At Post Status</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://poststatus.com/planet/feed/poststatus.com/godaddy\">GoDaddy Pro</a></h3>\n\n\n\n<p>Manage your clients, websites, and tasks from a single dashboard with GoDaddy Pro. 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. GoDaddy Pro is free — and designed to make your life better.</p>\n\n\n\n<h2 id=\"h-transcript\"><strong>Transcript</strong></h2>\n\n\n\n<p><strong>David Bisset:</strong> [00:00:00] So as soon as I saw this particular post, which you did on November 23rd, it\'s called, are we in WordPress community version 3.0, as soon as I read this, first of all clicked with me and I knew I was going to talk to you about it, but you start off. It\'s a very simple post. It takes a minute to read it. If you are listening to this, now you should pull over to the side of the road, you know, stop watching your children.</p>\n\n\n\n<p>Stop paying attention to the world. Take five minutes to read this and then come back to this because this is basically all we\'re discussing. So I\'m going to allow you to, in your own words, to explain, I think the easiest would be version 1.0,</p>\n\n\n\n<p><strong>Bob Dunn:</strong> you know, as I thought about this and I\'ll just preface it a little bit.</p>\n\n\n\n<p>This was after listening to Cory Miller and Josh Strebel. Talk about the acquisition of Pagely so I\'ve listened to the podcast and they were talking about community. And I started thinking through, because I had thought about this before, so right away, I thought what version are, where app, because</p>\n\n\n\n<p><strong>David Bisset:</strong> and [00:01:00] version.You think version because we\'re into software, right?</p>\n\n\n\n<p><strong>Bob Dunn:</strong> I even do a change log for my website. I\'ve gotten into change logs. Cause I think they\'re so cool. And they can be more than four erotic</p>\n\n\n\n<p><strong>David Bisset:</strong> I do change logs for my kids, but I mean, that\'s another subject, but yeah.</p>\n\n\n\n<p><strong>Bob Dunn:</strong> Yeah. And I love that it\'s so I thought, okay, the version, the first version is, yeah, it\'s when WordPress, it was before my time, you know, cause I didn\'t get into it till 2017, but I thought there was app time that WordPress was new and it was doing its thing.</p>\n\n\n\n<p>It was you know, the little bit of glitter in Mullenweg\'s Eye. And you know, that was it. It was just as simple as that version. 1.0, is those first few years as this kind of found its legs</p>\n\n\n\n<p><strong>David Bisset:</strong> that would cover the years from about 2004, I think to about 2009. Yeah. Based on yours. And I use 2004. I don\'t know if anybody wants to go back earlier, but that\'s when [00:02:00] WordPress 1.0 was released 2004 to 2009 was the first generation.</p>\n\n\n\n<p>And I can tell you that I was, I came into WordPress maybe around 20, like encountering the software itself around the version when themes came out. So I\'m a little fuzzy on that. I was three, 1.3, 1.4. Maybe I\'m going to say 2005, maybe 2006, somewhere around there. And my dates could be off. So whatever I wasn\'t in the community, I was just by myself and I really didn\'t get into the community until maybe 2000.</p>\n\n\n\n<p>So I am kind of in the middle of that version 1.0, because word camp Miami was started. Like we got together in 2008, me, John James Jacoby, who was down here and a few other people got together 2008 is when we started rearing up WordCamp Miami, there was no foundation or anything like that. So version 1.0 was there was no WordPress foundation.</p>\n\n\n\n<p>There was maybe a couple of word camps going on at the end of 2009 work. Our first WordCamp Miami [00:03:00] would have been over by then, but we had no rules. We had people nationally would come because there were just so few word camps existing at the time. And you just expected the entire WordPress community.</p>\n\n\n\n<p>It wa it was that where it\'s like, are you going? It\'s basically there\'s nothing else to do for this month. Let me, let\'s get, let\'s go down to Miami. That\'s how I remember the WordPress community at the time. I remember any of the big contributors. There were very few names that you associate with WordPress contributions.</p>\n\n\n\n<p>There was mark Jake with um, he was a big name that you would talk about during contributorship at that time, but it was a really big pioneering days. I remember WP candy. I don\'t know if you remember WP candy, Brian, I believe I remember they covered our first WordCamp Miami, and they were just a bunch of people typing on laptops in the back.</p>\n\n\n\n<p>And I didn\'t know that I, if I, man, if I knew him at the time. And our first work in Miami actually had a lot of people from the internet community involved like people, you would probably not no longer see it eventual WordCamps because [00:04:00] it was just generally about blogging customization. I did my.first BuddyPress talk, but it was just a room, maybe of 50 people listening to my presentation, but there was the WordPress community at a time that was just so new young, you would probably anybody you saw at that camper, the fewer there\'s at that time, that was the WordPress community. In a nutshell, anyone else that was doing WordPress at the time was just fiddling with it. You could go up and literally ask someone about a core ticket and it would only be melt maybe a half a dozen people that you would go up to a recognize and ask about a core ticket.</p>\n\n\n\n<p>And they were co and there wasn\'t like a big committee back then, or a big, there was a team back then, but basically you\'re the, most of the team was sitting in the same room as you. There was no com contribution. There are no contributor days or anything. The people were actually committing code, I think, to WordPress during the conference, during the talks.</p>\n\n\n\n<p>So that\'s how like fly by the seat of the pants. It was. So that to me was word, press version 1.0. [00:05:00] Everybody kind of knew everybody else. It was like one giant meetup. Yeah. And a lot of the rules, the red tape or whatever it is you want to call it just simply didn\'t exist. Social didn\'t exist. Social networking really didn\'t exist.</p>\n\n\n\n<p>Friendster, I think was the hottest thing in social media at the time. And then in the iPhone, didn\'t come out 2007. One of the biggest things was just seeing your website on an iPhone or a mobile device back then, too. So that to me was version one. And thank you for allowing me to indulge you, Bob, because I thought you were part of that and I just didn\'t see you because I\'ve just taken it.</p>\n\n\n\n<p>I\'ve just assumed you\'ve always been around. I\'ve been feels that way. So version two, there is, so version two, according to your posts takes you from 2010 to 2018, and this is your Jen. This is your version, right?</p>\n\n\n\n<p><strong>Bob Dunn:</strong> Right. He is because when, so I started dabbling in WordPress in 2017 and. So I was coming from having run [00:06:00] a business, or I was still running a business.</p>\n\n\n\n<p>I was in the, I think 15th year of it, a marketing design business. And I was looking at WordPress for blogging, for creating sites, you know, building sites. Cause I wasn\'t a developer during that time. So I was involved with like the business community in those years, which was in real life.</p>\n\n\n\n<p>You know, you lived in the community and you related with other businesses. And in the early around that same time, there was a online site called dot com and it no longer exists, but it was a very unique one of the first endeavors in bringing people online and it started in Seattle and it actually grew nationally and was a bit international and it did a mix of in-person and online events and you\'d network and you\'d, you know, comment and talk to each other on it.</p>\n\n\n\n<p>And it grew quite a bit. Yeah, I\'m not getting the whole story of that, but that was where I started to learn more about, or actually delve more into [00:07:00] the online community. WordPress just segwayed into my life easily. Cause I was already, you know, thinking community, you know, there\'s some kind of community wherever you go, of course, open source is very different to me.</p>\n\n\n\n<p>And it was very embracing and it was like, wow, this is cool. You know, people are so different because it\'s not these chamber of commerce meetings. It\'s just a different feel to it. And I, you know, me I just started diving into it and by 2010 I said, okay, Totally closed down our other business and I\'m going to create this other brand that came up with Bob WP, which, you know, some people looked at me at that time said, you know, can I, why are you doing that?</p>\n\n\n\n<p><strong>David Bisset:</strong> It\'s like getting a tattoo. Right? It\'s like, listen, it seems cool now, but have you thought five years ahead?</p>\n\n\n\n<p><strong>Bob Dunn:</strong> And you know, I, when I [00:08:00] started WordPress I started WordPress at the age of 50. So I was kind of different, you know, I mean, I had a different perspective cause I was later on in life. So I was looking at something new and exciting.</p>\n\n\n\n<p>And I think that time I look back at it and I didn\'t realize it until later on in the years when I would talk to a lot of people that had been in the space at the same time. And I realized that they all were saying, yeah, you know, when I really got involved with WordPress was around 2009, 2010, or that\'s when I started.</p>\n\n\n\n<p>You know, there\'s all the big, you know, Yoast, gravity forums, all these ones that started around that period of time. And it just seemed like it was a time I came in at a prime time where there was this open innovation in WordPress where people were doing a lot of stuff and things are coming out left and right.</p>\n\n\n\n<p>And it was just, it was fascinating and themes were, you know, growing more and more. And [00:09:00] it just, I just dove into it and I thought I\'ve got to get into this community because it\'s just seems cool. I mean, the people, you know, who I\'ve related to. So I think my first, I don\'t know if I did a word camp in 2010 by now I was in Chicago in 2011 and I spoke at that and I, again, just went full force into it and went to these, the first word camp, I word camp, and thought, wow, this is really cool.</p>\n\n\n\n<p>Being able to, you know, meet these people. And there was such a natural I don\'t know what you want to call it, but everybody seemed together. It was like,</p>\n\n\n\n<p><strong>David Bisset:</strong> don\'t worry, we\'ll flesh it out. We\'ll flesh it out because this is part of the reason why I want to get into this overall, because I mean, I don\'t, you know, we\'ll go into each, we\'ll go into a little bit more depth on each one.</p>\n\n\n\n<p>I was just trying to make, you know, for somebody who hasn\'t read the post is not listening to me and reading this first. We have, so, and here\'s also about that time period of two. When we say [00:10:00] version two was around 2010 right before 2010 is when Sandhills development. Awesome motive started 2009 is actually when WP beginner was launched by Syed.</p>\n\n\n\n<p>So like we say, 2010. And I think that was a good cutoff time because I think in 2009, It needed a little bit of ramping up it didn\'t and a lot of other companies too, I\'m just picking -. It\'s amazing Sandhills and Awesome Motive and WP beginner started around that time in late, I think, late 2009s.</p>\n\n\n\n<p>So version 2.0, started in 2010. According to your post, it ran for about eight years, till 2018, which we\'ll get to why in a second. And between that time, like I said, it\'s when those companies that we, that the mergers that were acquisitions that we\'re hearing about today from quote unquote, big companies, a lot of them got their start at the beginning of the 2.0 era.</p>\n\n\n\n<p><strong>Bob Dunn:</strong> Yeah, exactly.</p>\n\n\n\n<p><strong>David Bisset:</strong> And yeah, so I think that\'s, that was a perfect time in your blog post to kind of, you know, make 2009, 2010, the next cutoff [00:11:00] point, because I think like earlier, when we just talked about everybody was just. If you had a problem with WordPress and people, weren\'t really starting to build really good businesses around WordPress in version 1.0, if you were building websites and if you were making good money, you usually just a big, good agency or you\'re just building websites.</p>\n\n\n\n<p>But then 2.0 era started with the companies actually building commercial products with plugins or for tutorial sites. And that\'s how I think, that\'s how I saw reflecting back because I was too ignorant to realize what was going on at the time. How 2.0 started in that kind of, like you said, when you got into the game 2016, 2017 near the closing of that particular era, it was going full force by then.</p>\n\n\n\n<p>I mean, there weren\'t really a lot of acquisitions happening in this era. It was just a lot of businesses being created.</p>\n\n\n\n<p>Right. And there was a lot of people that I\'ve met that weren\'t necessarily, you know, like. Doing the big business or doing the big [00:12:00] products, but they, I was still amazing. How many? Yeah, I started my agency around 2009, 2010.</p>\n\n\n\n<p>So that, just that number kept coming back at me and I thought, wow, I made a lot of sense because it\'s how I felt when I got into it. It was like, okay, something\'s happened in here, you know, and I seem to got into this at a really prime point in time</p>\n\n\n\n<p>that, that period too probably saw the biggest or maybe most noticeable jump in WordPress market share.</p>\n\n\n\n<p>Also at the same time you had web 2.0, kind of take off in that same time period. So between the social between the boom and like the overall span of tech and I think this was when other competition from WordPress started to get a little further in the rear view mirror too. I think movable type was by this time period, probably.</p>\n\n\n\n<p>Fading in terms, I believe, I can\'t remember exactly when they changed their business model, but I believe it was early during this time period where you had this other, you had your choices in Joomla and Drupal were still very strong in this era, but they were becoming, [00:13:00] it was becoming the big three in terms of CMS.</p>\n\n\n\n<p>As in, at that time they were all the top three, they were open source. So that\'s and WordCamps to exploded. I think once we got to 2012, 2013, that\'s when you saw a lot of first-time WordCamps, startup and WordCamp, I think by the time that WordCamp Miami got to its fourth or fifth year, that\'s when we had to start coordinating with other word camps, you know, around the same time period to make sure we didn\'t have the lap and all of that.</p>\n\n\n\n<p>So, and we had buddy camps and we had our first kids camp, I think it was in 2015 or something like that. So by the time that happened, And I forget what WordCamp Arizona. I think I went to my first word camp in Arizona was working in Phoenix. I believe that was in 2013. Maybe. I don\'t know.</p>\n\n\n\n<p>I have to Google ice Luiz WordCamp and figure out what I\'m really. I know. So that was 2.0, from 2010 to 2018. So Bob, when, tell us about what transition from version 2.0 to [00:14:00] 3.0 and your blog posts made you land on 2018.</p>\n\n\n\n<p><strong>Bob Dunn:</strong> You know, I think it was, there was a lot of, I mean, it revolved around, but we\'re pressing was doing technically, I mean, you know, Gutenberg 5.0, all that stuff, because there was that huge shift at that point.</p>\n\n\n\n<p>I think that people just started, I don\'t know. The climate changed and how people looked at it. And there was a little bit more, you know, yeah, people were anti this or they were, you know, reluctant of this. And is this changing for the best? I feel like things were changing in WordPress that affected the community in a lot of ways positively.</p>\n\n\n\n<p>And in some ways people were a little bit reluctant and things were starting to get more into that mix of at, you know, not the boom, like it is now with the acquisitions, but. We were starting to see, you know, let me explain it this way. And this is kind of a strange way to [00:15:00] explain it. Maybe people won\'t really get it.</p>\n\n\n\n<p>I always say I used to work in the real business world and that was outside of WordPress. And I\'m, it\'s a little bit of sarcasm there, but it\'s how, you know, regular business works, how it runs, how, you know, people get acquired corporations, all that stuff. I\'ve dealt with it in the past. I felt like that was a time that WordPress matured and thus the community had to start to accept that in the sense of this is becoming big business.</p>\n\n\n\n<p>Now, you know, this is becoming a bigger thing then. Sure. It\'s open source still. There\'s that community there\'s everything that WordPress is, but now more and more people are taking note of WordPress more and more people are wanting to get into WordPress and it just. From the, around that time, I think it\'s just as grown more and more that attitude, the you know, and it is it\'s a [00:16:00] lot of people have pivoted or changed their mind on WordPress during that time.</p>\n\n\n\n<p>And you saw more of that, I think, and maybe it always was happening, but it was just vocalized more as far as, you know, oh, I don\'t like the direction it\'s going now or, you know, I don\'t agree with it. And the, and that was cool. That was fine. I mean, everybody\'s got a right to, you know, do that. And also the other thing I think is this was when you think of all those people that started in 2009, 2010, that really started, this might be the moment they start thinking of different transitions as well, because they\'ve been in it for a while and that transition may be do an acquisition. They may be getting out of the space entirely moving on with their life in another direction. However, so I think we saw that bunch of people that were so in our view and in our, you know, that we saw them a day [00:17:00] in and day out, maybe after, you know, this period of eight years or nine years or whatever, they were ready to start slipping things a little bit in their own business or how they approach WordPress or how they approach their business.</p>\n\n\n\n<p><strong>David Bisset:</strong> Well, we\'re going to get into the community now more now that we know where, when we talk, we say version one, version two, version three, again, version one was from the beginning up to 2009 version. Two\'s kind of like 2010 to 2018 when Gutenberg was launched. And then version three is pretty much present quote unquote, present day.</p>\n\n\n\n<p>Right. And who knows we may talk about another version. We\'ll see what. I\'m going to open up our post status conversation we had in here, like a day or two ago too. But so let\'s talk about the community a little bit in terms of, and it sounds like to me, when you, when we, both of us are kind of old timers a little bit we\'re both remembering back when the businesses were just starting to get off the ground.</p>\n\n\n\n<p>Would you define version 3.0 [00:18:00] as, as basically more commercial,</p>\n\n\n\n<p><strong>Bob Dunn:</strong> you know, in a sense it is, and it\'s probably viewed as more commercial because of the nature of open source. So bringing bigger businesses, bringing the model of, you know, business growth, acquisitions, how normal, I almost say normal, but how businesses in the real world that exists and how they.</p>\n\n\n\n<p>Get together and how they merge now. They, you know, whatever direction they go. I think it\'s become a little bit more commercial, but I don\'t know if that\'s the exact word it\'s because it\'s, I think some people would say that I really think they would define maybe that and they would define it in the sense of a negative connotation to that commercial is become too commercial.</p>\n\n\n\n<p>And that\'s kind of in the eyes of the viewer, you know, before, [00:19:00]</p>\n\n\n\n<p><strong>David Bisset:</strong> let me play devil\'s advocate for a second, because once money gets involved, it\'s like, whenever it\'s, how do I explain this? Like, if I have a good friend, I, and if I have a laptop, I\'ll give him the laptop. I won\'t sell him the laptop. Why?</p>\n\n\n\n<p>Because he\'s my friend and I, if there\'s something goes wrong, I don\'t want anything to damage that relationship. So when money comes into the picture, closer relationships tend to get a little bit more complex in my experience. That\'s just my experience. So do you think part of the, and we\'ll get into the good old days slogan in a second here, but do you think part of the resistance or part of the, maybe just general uncomfortableness of this new version that you call it is because it is more commercial, therefore money, you know, money hiring acquisitions, all of that is together.</p>\n\n\n\n<p>So therefore when you go up and talk to someone at a WordCamp, or you don\'t, you know, you have to be careful what you say. You have to be careful of how you talk outside of a conference room. You [00:20:00] don\'t want to say the wrong thing or be viewed as this type of person, which makes it a little more awkward, which makes limits it a little bit of your freedom, which makes, again, goes back to you being a little bit more comfortable.</p>\n\n\n\n<p>Do you think that has anything to do with some people reactions?</p>\n\n\n\n<p><strong>Bob Dunn:</strong> You know, I think you, I think that\'s a. I think it\'s pretty spot on because it is it\'s, you know, there is that level of walking the thin line. Sometimes you don\'t want to, you know, you maybe felt you didn\'t have to walk that so much before you could be a little bit more open and now there\'s too many buyers that could ignite, I think the money.</p>\n\n\n\n<p>Yeah. When people see now, I don\'t remember ever back the valuation or what you would think of, you know, we don\'t know often what, how much these businesses are being bought for, but the reality is, yeah. Now we\'re seeing that there is some tied dollar value to these businesses that have done amazing stuff for, you know, close to a decade or less.</p>\n\n\n\n<p>[00:21:00] And yeah, that money kind of gets you like, whoa, you know, this is all feeling, not the same, you know, and it can be for some that it can be kind of a creepy feeling. You know, they feel like money is corporate and money is commercial and, you know, money talks and that\'s what drives everything.</p>\n\n\n\n<p>You know, lots of people are doing their businesses and that what drives them is to actually make a Duff to survive and have a decent life</p>\n\n\n\n<p><strong>David Bisset:</strong> or because, or somebody on stage talking about a certain subject because they have some sort of financial gain indirectly, perhaps, but even there. So sometimes I feel like some people don\'t take, I\'m trying to find the right words here.</p>\n\n\n\n<p>And I swear, I\'m not going to edit this part out because I want people to hear the awkwardness in this conversation. Exactly. It\'s well, that person is doing that or broadcasting that because they have a business to run or their business is doing this in the WordPress space. And you know, that.[00:22:00]</p>\n\n\n\n<p>You know, that can be understandable in other industries, but for WordPress, I think it\'s kind of new if you\'ve been around it a long if you\'ve been in since version one or the early days since version two I don\'t know. I\'ve heard it. We\'ll talk about offhand comments in a little bit, but I pieced together some of the comments from Twitter, some things I hear over my shoulder word camps and, you know, and it\'s a very fine and respectable group still, but I know that, you know, I put on working at Miami for years and sometimes I get questions, like, why is this person on at this time?</p>\n\n\n\n<p>Sometimes it\'s purely coincidental often it\'s purely coincidental, but I get asked, you have to be more conscious of that back now than you were 10 years ago. And because I think it all boils down to money and companies and expansion and all of that but, you know, and which kind of leads me to my next question for you, Bob, in terms of money, just, you know, even if you put money in.</p>\n\n\n\n<p>You know, we\'re both community managers not just with not just with me with [00:23:00] WordCamps, but you know, w my, my, my daughter and my wife, they hold other communities and I\'ve seen communities grow over the years. I handle the local meetups along with a few other people too. I\'ve seen things grow.</p>\n\n\n\n<p>I\'m also, I here\'s a side note for you. I use apple pro I use apple products. I wouldn\'t consider myself an apple super fan, but I\'ve used apple products for a long time. Like since I was in high school. And I\'ve done PC and windows over the years, but I mainly, I\'ve mainly been an apple person, but I\'ve noticed through the years, even before the iPhone came about, this was way before the iPhone apple came out with the iPhone when they were almost a bankrupt company, I\'ve been with them.</p>\n\n\n\n<p>But I noticed over the past decade as the company has gotten bigger, and this happens with other companies too, but in particular with apple, my experience they\'ve gotten, people have gotten more outspoken. More bold in their comments and click baity to an opinionated and whether or not that some of that is based on truth and you know, apple like any other company is not perfect, but [00:24:00] it seems like the bigger you get, the more criticism gets thrown at you in, regardless of what I can\'t think of a company that has gotten bigger over, you know, given enough time over the last 10 years, it has not had criticism leveled at them.</p>\n\n\n\n<p>And I feel that once you get to a certain size from a community standpoint, not really from a business company standpoint market share, but that obviously has a factor into it too. Once you get to, once a community gets to a certain size and grows and you start to see bad actors just because maybe it\'s the scale and it\'s, and maybe when it\'s smaller, they were always there, but there was just harder to see for them to blend into the mass.</p>\n\n\n\n<p>For example, and we\'ll take this, we\'ll take this as an example, bad actors. What do you mean by bad actors? There\'s always people that want to scam other people or users and in when the WordPress was in version one very few times, have you saw people trying to scam other people? Because the community was so small, right?</p>\n\n\n\n<p>The, it didn\'t seem to happen [00:25:00] very often. And in same thing for like apple and WordPress community, didn\'t seem to be a lot of people trying to take advantage of trying to steal this. And, you know, cause you know, windows was the big one durability. You want it to target cause a lot of people used it.</p>\n\n\n\n<p>I, so here\'s my question for you. Do you believe that any community wants to reaches a certain size is going to have certain problems? Like not just bad actors that want to scan, but just critics that just maybe feel like they need to, they feel like their job is to probably call. Accompany once it gets to a certain size, what do you think about that?</p>\n\n\n\n<p><strong>Bob Dunn:</strong> Oh, I think that\'s right on, I mean, is it\'s so obvious because it\'s like success breeds.</p>\n\n\n\n<p>I don\'t know if there\'s actually a saying, but success breeds craziness or something</p>\n\n\n\n<p><strong>David Bisset:</strong> I\'m gonna use that quote</p>\n\n\n\n<p><strong>Bob Dunn:</strong> yeah. Yeah. Success breeds crazy days because it does, the more you become the bigger you become, the more of a tar more touch points you have and [00:26:00] you become that target. You do. And more people are going to be attracted.</p>\n\n\n\n<p>Cause there\'s some people that they live for, that they live for the big names or the, they want to be in the limelight in that community, but in a different limelight as a backnet bad actor, because that is it just, you know, Reproduces itself is going to, it\'s going to attract people and all it takes us, you know, a few to start it and more and more are going to enter it.</p>\n\n\n\n<p>And that\'s what know, I I\'ve thought over the years is this is growing into what probably every community does grow into. It\'s huge. How can we not avoid? I think of, I could step back to the time when I was, you know, not online. I was in a business community that was a real life community town.</p>\n\n\n\n<p>And as that town grew bigger and bigger, more businesses moved in and there were more that early. [00:27:00] That were running businesses and we\'d come in and they would always be there at whatever meeting or something criticizing something. So it\'s not anything new. I think it\'s very, I don\'t want, I hate to use the word natural, but I think there\'s no way around it.</p>\n\n\n\n<p>I think with growth, you\'re just going to, that\'s going to happen and you have to know, the best you can do is it\'s, you know, as, as long as we, and you don\'t want to ignore, but you don\'t want to, I want to fire.</p>\n\n\n\n<p><strong>David Bisset:</strong> Right. And I want to make a good distinction here because not everything I say, negative things about WordPress all the time, too.</p>\n\n\n\n<p>In fact, I have created memes around certain things in WordPress. That\'s still annoying me to this very day. And you know, you know, like the number of admin notices on a dashboard has gotten me more likes on Twitter than I probably know what to do with. So. What, one of the natural things that comes when you, when your community grows is [00:28:00] that there is more to criticize.</p>\n\n\n\n<p>So there is, you know, it goes perfectly along with, yes, a lot of the criticism that\'s leveled against WordPress is legitimate. And everybody has different viewpoints in they\'re coming at it from certain angles. Somebody from this industry is obviously gonna feel stronger than someone who comes from this industry and so forth like that.</p>\n\n\n\n<p>But I just think that part of this, I think what has been a staple I\'ve I think in the version 3.0 is just the, has been maybe a little bit more cynicism than that I saw in the previous two versions. Exactly. Yeah. And as much, and like I told you, I think that comes with, I write that off as scale.</p>\n\n\n\n<p>Like I said, when you\'re dealing with. In terms of like, you know, they were just a bunch of people, friendly people helping each other out on forums and all of that back in the day, just like we were like in the very early days of WordPress. And now there are so many people and because I guess a lot of people [00:29:00] have so much writing on WordPress too, that sometimes naturally it does come off as well.</p>\n\n\n\n<p>If my entire business of my entire life is running off of WordPress or companies like automatic that in my mind influence WordPress to a certain degree, then I should be the one or I should be in a position to say what I want or be critical of this or that in terms of leadership and ownership and all of that.</p>\n\n\n\n<p>And I\'m not saying leadership and ownership, isn\'t a bad stuff in and of themselves, but it\'s not something that we saw in previous versions of WordPress.</p>\n\n\n\n<p><strong>Bob Dunn:</strong> Right. And I think we also look at WordPress where it came along in the, in history. I mean, you know, short history, but we are, if you think of back from 2010 to now, how social has brought on the aspect of being able to vocalize yourself and it has brought out peoples that wouldn\'t normally, you know, you would, I mean, I could [00:30:00] look back at again, I\'ll go back to way back, you know, at a chamber of commerce meeting, we\'re all sitting around in person, nobody\'s going to jump up from different table to table say, Hey, you know, that business sure does suck.</p>\n\n\n\n<p>Or, you know, why are they doing that? Or why did they buy them? Why is this all going on now? We\'re to a point where we\'re all</p>\n\n\n\n<p>behind journalists,</p>\n\n\n\n<p>we all got an opinion. And we got to, we got a place to make that opinion. So that has grown just historically in technology. I mean, you know, that has happened.</p>\n\n\n\n<p>So that then right along with it, WordPress has grown. So it\'s almost like this. There are both on the same level. Yeah, more people are able to get online and say exactly how they feel are most people are not shy about doing it.</p>\n\n\n\n<p>So what do you think here\'s a thinking question for your Bible. What do you think the WordPress community has today that it didn\'t have back in the early days?</p>\n\n\n\n<p>Boy, that\'s a, wow. That\'s a good question. I think there\'s [00:31:00] just more,</p>\n\n\n\n<p>Wow. That\'s a tough one because I think it has okay to two things. One is it has more voices in it and I\'m not seeing voices as far as negative and positive and neutral voices. I\'m talking about voices, worldwide diversity countries, all the different cultures that are coming in. I think that. Really has changed things. And I think it\'s changed for the better obviously.</p>\n\n\n\n<p>And again, kind of historically, you know, hopefully getting where there\'s more, you know, things are a little bit more equal. I know they\'re far from being equal, but</p>\n\n\n\n<p><strong>David Bisset:</strong> yeah, there\'s a table, right. Everybody gets to come to the table and hopefully that table has grown in size with more chairs available to fit.</p>\n\n\n\n<p><strong>Bob Dunn:</strong> Exactly. Yeah. I think it\'s that. And I think innovation, I think is just, I think people feel, even though sometimes we feel that it\'s, there\'s so much stuff go, you know, there\'s so many plug-ins how can we do more [00:32:00] plugins? How can we do this? But again, naturally over time, I think we have a lot more at our disposal as far as.</p>\n\n\n\n<p>Be more innovative with WordPress then, you know, back then, and that again is not necessarily the word press or the community is just how technology has evolved. So I think we, I think WordPress benefits from the time it\'s in, because of everything that keeps turning and sure we there\'s changes. And maybe some we don\'t like, and some we do, like, I think, you know, in the end they\'re still all going in the right direction.</p>\n\n\n\n<p>And now those changes are technically within WordPress should hopefully reflect on the community and they feel like, okay, we\'re going in the right direction because we got to continue to grow.</p>\n\n\n\n<p><strong>David Bisset:</strong> Okay. Was it, you said two things, was that both of them or do you remember?</p>\n\n\n\n<p><strong>Bob Dunn:</strong> It\'s really, it\'s kind of that feel of the community and the [00:33:00] diversity and that, and then it\'s an actual, more of innovation.</p>\n\n\n\n<p>I think the technology now we have the, I really feel like the opportunities are. More open to everybody in the WordPress space, even though, you know, we think it may be overcrowded. I think there\'s still a lot.</p>\n\n\n\n<p><strong>David Bisset:</strong> Okay. So here, I asked myself that same question in the shower for unluckily for me, it was a 45 minute shower cause I wasn\'t leaving until I got an answer.</p>\n\n\n\n<p>I think the communication from the quote unquote, the source has gotten better over the years. Unless you heard Matt Mullenweg speak from a word camp or in his blog, sometimes you were a bit, a little bit confused in the very on maybe late version 1.0 early 2.0 days in terms of heck maybe even further on to 2.0 days, what was happening with the project or what was happening with the direction of WordPress.</p>\n\n\n\n<p>And this was before Gutenberg. You know, there were improvements. You could talk to people on contribute, you know, charter contributors and all of that. And there were new [00:34:00] sites keeping up. But I think once we started getting into what you call the version three, once Gutenberg ramped up.</p>\n\n\n\n<p>But I think, especially, I think maybe I\'ll say six months, it seemed like six months after Gutenberg was launched. It seemed like the communication was improving. I think Josepha, I\'m not sure when she became, she took her role and Incorrectly state her role here, because I don\'t want to do that. But she is, she has acted like a director or a pro like an overall project manager.</p>\n\n\n\n<p>I\'m not saying that\'s her role, but she\'s been acting like that. She has been part of for a key part of the communication. Now for a while, in terms of trying to translate what the WordPress project is, the general direction of where it\'s going. And, you know, Matt did do that to a certain extent, but I don\'t think it was as often or as regular and as consistent as they\'re doing it now with the blog posts and Josepha, and there\'s even podcasts now with Josepha on them and so forth.</p>\n\n\n\n<p>So for me the communication and the openness about especially about [00:35:00] core is what we, I think we have today that really wasn\'t there too much in the early days, because there just wasn\'t enough time to talk about it. Now don\'t hate me. Oh, wait. There\'s a podcast is still young here. I\'m going to flip the question around.</p>\n\n\n\n<p>So what do you think is missing today from the WordPress community? But one looks back in the early days and say, oh, wow, that existed there. Or I even missed that. Fill in the blank. I</p>\n\n\n\n<p><strong>Bob Dunn:</strong> need a long shower for that one.</p>\n\n\n\n<p><strong>David Bisset:</strong> This is going to be weird. Intermission music, but sure, sure. So by, so maybe stalling you a little bit here, you know, when you buy a car and you get that new car smell.</p>\n\n\n\n<p>Yeah. Okay. So it\'s gone and then your car can still be exciting. It can be wonderful. There\'s that honeymoon period. But what, and I\'m not pushing you into a negative or positive territory here, [00:36:00] but what do you think was existed in the early days that you can remember the works community that you don\'t see.</p>\n\n\n\n<p>That you don\'t see today as much.</p>\n\n\n\n<p><strong>Bob Dunn:</strong> I miss a little bit of the and that I want to say it\'s the warm and fuzzy feeling. Cause that\'s not fair to say. It\'s kind of a little bit of the tighter community that was there when I first got into it. And what I mean by that is, and let me give you an example.</p>\n\n\n\n<p>This was very interesting and I get to bring up the, say the word smaller group. And I saw Matt Mullenweg in a different lens. At that event. He was walking around. I mean, it was a smaller group and he was really interacting with people and laughing. And he was kind of more in his element because he was with his eye.</p>\n\n\n\n<p>Sounds weird with his peeps. I mean, instead of this huge, you know, multi hundred or a thousand person conference, and sometimes I [00:37:00] miss that. And it\'s not an exclusive thing either, but those smaller times, I go back to a meetup. I remember the meetups I used to do in Seattle in the early two thousands.</p>\n\n\n\n<p>We\'d get like 70, 80 people and everybody was so happy and energized and it was fun. And you were meeting new people and there was this just constant energy that was going. And I think is just like probably anything in it\'s younger. I mean, even us as humans,</p>\n\n\n\n<p><strong>David Bisset:</strong> every time you go to a WordCamp, you\'d meet a ton of new people, a ton.</p>\n\n\n\n<p><strong>Bob Dunn:</strong> Yeah, you do. And I kind, kinda miss that and maybe it\'s, you know, it\'s just that smaller. I miss the meetups. Like they used to be. I, and I know that is just, I, and not even this put us COVID aside. It\'s not even that it\'s just that I miss that [00:38:00] smaller local community that used to thrive. I think a lot more, that\'s got segmented and it\'s been segmented just because of the growth and because of the community is so big.</p>\n\n\n\n<p>And there\'s so many people you\'re meeting, you know, another countries across the globe. There\'s a little bit of that I miss now, whether that could really come back. That\'s the thing, that\'s a big question. I don\'t know if it\'s really necessary to be needed, right. Again, but some I wish there was some way to still have those smaller groups and they don\'t have to be, you know, WordCamps on, I don\'t even know what they are, you know, and that would, of course would have to be, you know, when the time comes that you can actually do that, but there was something that was just a little bit different. That part of it, I miss, and I don\'t know there was there was the energy, maybe that was it.</p>\n\n\n\n<p><strong>David Bisset:</strong> It\'s kind of hard to put into words. You\'ve attempted to do that two days ago. I\'m going to share a link in the show notes for a slack conversation we [00:39:00] had. And I put up on purpose prior to this both Eric and Natalie said something about 2008, 2009, 2010. There was definitely. Definitely those were big years.</p>\n\n\n\n<p>There was some generations based on what people came into the community and what they were doing there. And then you said something around 2010 or so was very generational. There was huge pivots in the space around space, around growth during that time. And then someone responded and says that time was very unique.</p>\n\n\n\n<p>It felt like anyone with the ambition and drive could learn to create something special with WordPress. It wasn\'t something reserved for only a small group of corporations. And it looks like Eric made that comment there. So I guess it was you know, it was a gold rush period, but not just to make money, but also to make like relationships.</p>\n\n\n\n<p>And here\'s the key when you said that earlier and forgive me if I\'m mispronouncing your name. Dave is David Lutes who says, yep. The hippie times are over. And it\'s not meant in a bad way. In my opinion, this is him still talking quote. It already has started a few years before Gutenberg, when more and [00:40:00] more sponsored contributors raised up.</p>\n\n\n\n<p>Also people became paid from day one when they stepped brand new into the WordPress community. And like he said, it\'s not bad. It\'s an evolution. It\'s got all the way to it\'s. He says it\'s all got gotten. Translating here, all gotten too big to handle, and I have tremendous respect for the pure volunteers out there.</p>\n\n\n\n<p>So hippie times are over or according to Dave loots here. And we\'ll put all of those links in the show notes. And by the way, just to remind you what you said, a response, you said you could be very well, right? The last decade could easily have pushed out three instead of two versions when you get down to the nitty gritty.</p>\n\n\n\n<p>So, yeah. Wow. Yeah. Hippie times are over. So like I\'m always never, I\'m not that old to appreciate the hippie times of the sixties, but I\'ve read about it enough and I can see where there was a time I\'ve heard that phrase repeated elsewhere in terms of, okay, the hippie era is over and now I actually have to have a real job and a real business.</p>\n\n\n\n<p>And that whole time of peace and love was great, but we were young. And [00:41:00] do you think maybe that\'s part of what maybe is missing a little bit from WordPress</p>\n\n\n\n<p><strong>Bob Dunn:</strong> and it\'s that, yeah, it is that time of having that. It a freedom. I mean, and especially if you had the experience of it, you know, if you did, you were, you came in at some point there, it is nostalgic and I\'d love Dave\'s, everything you said in there because it\'s true.</p>\n\n\n\n<p>It\'s like anything. I mean, hippie times never, you know, except for some people that are stuck being hippies for their entire life or something they\'re going to end at some point and they\'re nostalgic and they\'re good. And you probably know it, won\'t go back to that. You know, you know that in your heart, but</p>\n\n\n\n<p><strong>David Bisset:</strong> seems like the harder you fight it.</p>\n\n\n\n<p>Yeah. The change is inevitable. And I think for the rest of those, I think for the rest of the lifetime of WordPress, there\'s going to be a healthy dose of criticism that follows it. So w so as WordPress grows is going to be scrutinized by some people for how it grows [00:42:00] and when the market share stops. Or there\'s less contributions or something noticeable starts to slow down.</p>\n\n\n\n<p>There\'ll be another round of WordPress criticism problem. You know, like the apple is doomed or WordPress is doomed by probably those same people. Right. Do you think people should accept the generational changes in the WordPress community? Or how should they look at it?</p>\n\n\n\n<p><strong>Bob Dunn:</strong> Yeah, I think it\'s really, I hate to say it\'s both ways.</p>\n\n\n\n<p>I mean, you got to accept it as globally. You got to accept that this is, you know, if he can\'t be a bit flux flexible, then you shouldn\'t be in any part of the tech space. You know, you got to have some flexibility and you\'ve got to not become the old grumpy man and saying, this is how it was and why we\'ll never be that way again, you know, so globally you need to accept it.</p>\n\n\n\n<p>In your own community, because how we\'re all defining communities is going to be different. How you define it. Maybe one way somebody else defines another way. Somebody may [00:43:00] have 200 people they think of as this is my WordPress community. You can still make changes within the smaller community that can blossom out into different ways into the bigger community.</p>\n\n\n\n<p>I mean, you\'re not, you know, if we\'re talking WordPress community, every builder, then that\'s a lot, every builder and user, then that\'s an exponentially a lot. So I think that you can make small changes and I don\'t think you should ever say, I\'m just going to roll over. And you know, if I don\'t think this is right, you know, you don\'t have to nag and moan and groan on Twitter day after day, but you can fight.</p>\n\n\n\n<p>Creative and useful ways to try to work towards, you know, if something really, if you think it needs to be changed, I would never say people should back down you know, unless it\'s really detrimental to the community, then that\'s maybe when you want to step back. Okay.</p>\n\n\n\n<p><strong>David Bisset:</strong> I, a lot of times the, [00:44:00] if there are people that rubbed me a little bit, the wrong way and listen, it\'s be honest.</p>\n\n\n\n<p>I mean, there are people that do that. It\'s human nature, right? It\'s not what they say is sometimes their approach to it. And I have a lot of experience sometimes working and talking with people because we\'re cam Miami has allowed me to be like, sometimes I would deliberately put people in WordCamp, Miami lineups to offer those opinions.</p>\n\n\n\n<p>And sometimes. It\'s just their personal nature. Sometimes it is you know, I, if I run a, if I wanted to write a tell all book, just on what I know about certain people on working in Miami, it would be controversial. A lot of people probably wouldn\'t like me, but that\'s fine. But there are some people that like, feel their message is so important.</p>\n\n\n\n<p>They, it boosts their ego or it boosts their, like, they feel like this message is so important. They need to get outside the lines to be able to tell it whether how effective that is or whether that strikes the right chords or not. I mean, go you do you, you know, that\'s not really my, you know, I\'m not in charge of WordPress messaging.</p>\n\n\n\n<p>But you know, if you want to, if you [00:45:00] feel something so important that you communicate it, I mean, as long as you\'re not hurting others, I mean, feel free to give it a shot, just watch on any reaction or reaction to that. But it\'s also funny too, that some people, when we talk about the WordPress community, some people says I\'m leaving WordPress, I\'m leaving the WordPress committee.</p>\n\n\n\n<p>Or they stop or stop using WordPress oftentimes in my experience, and this is over 10 years, this is not any particular case, but over the 10 years where people have said that you still see them on Twitter, or you still see them in the WordPress community, talking with the same people, almost like nothing ever happened.</p>\n\n\n\n<p>And I, and sometimes I think these people, whether the legitimate reasons or not you know, they\'re trying to make a statement. It says I\'m leaving WordPress, but they\'re not really leaving WordPress. WordPress is the community and of itself, regardless of like, maybe you\'re not using the software or you put your pretty much, nothing else has changed.</p>\n\n\n\n<p>So if you\'re using it to make a statement, whether you\'re using WordPress or not, congratulations, you\'ve made. Or maybe you\'re taking a break, you know, those people that make the big announcements, I\'m taking a break from Twitter and they\'re making a big hoo ha about it. Like maybe celebrities or something like [00:46:00] that.</p>\n\n\n\n<p>And you\'re like, okay, maybe you\'ll be back. Okay. You know, once, once it\'s died down or whatever, but I think some people like to have their cake and eat it too, where like, I\'m making this big statement, but I can\'t really, I don\'t really want to leave the community because there\'s some good things in it.</p>\n\n\n\n<p>Yeah,</p>\n\n\n\n<p><strong>Bob Dunn:</strong> exactly. And I think they\'re trying to stand up there. They think that, you know, it gives a, it shows the side of their strength. They want everybody to think that, oh yeah, they\'ve been there standing up for what they\'re really, you know, they\'ve kind of walking the talk. Finally, they\'d been saying all this, but then like you said, you see, oh yeah, they\'re still wandering around bed in there.</p>\n\n\n\n<p>I still see them popping up here and there. And it\'s like, you know, you\'re just. Kind of toned down a little bit maybe,</p>\n\n\n\n<p><strong>David Bisset:</strong> and you know what that is within the right to there. Like I said, however you want to get that message out is however you do. But I just think that\'s so interesting that the community of it itself is more, is stronger sometimes than the software.</p>\n\n\n\n<p><strong>Bob Dunn:</strong> Oh, it is. It is. And I think that\'s what most, I [00:47:00] agree with you with a lot of people saying, you know, oh I\'m going to leave the community, but you know, I couldn\'t quite leave this part of it or this part of it. And they\'re not saying they\'re not literally saying that, but they\'re doing that through actions.</p>\n\n\n\n<p>You can see that they\'ve gained a lot of great relationships with some people and they can\'t let go of that. And that relationship in turn still connects him with WordPress. So they, and connects them with the community. So, yeah it\'s interesting human. Nature\'s</p>\n\n\n\n<p><strong>David Bisset:</strong> interesting. Yeah. And of course there\'s always legitimate reasons.</p>\n\n\n\n<p>Like if there\'s, if you like, you\'ve people have felt like legitimately they\'ve been neglected, abused, all of that stuff. That\'s not really taking care of that part cause that\'s kind of a toll different, totally different ballgame. So yeah. So do you feel, so here comes, our, here comes as we close out this conversation, which has been fantastic by the way.</p>\n\n\n\n<p>I think we only mentioned WooCommerce only a few times. I haven\'t said it enough for something like WooCommerce to appear in a mirror or something like that [00:48:00] instead of three times, probably yet. But here\'s the two remaining questions I wanted to jam with you about one. What do you think version four would be?</p>\n\n\n\n<p>Has it happened? Is it happening now or do you think we\'re not, we haven\'t seen that yet.</p>\n\n\n\n<p><strong>Bob Dunn:</strong> You know, that\'s weird because I know you had warned me that you might ask about that.</p>\n\n\n\n<p>Yeah. And I have pondered on it a bit and I thought, you know, yeah, maybe I could have some, a wishlist of what I\'d like to see, but you know, I think it\'s going to be.</p>\n\n\n\n<p>Where this commercial part we\'ve talked about, becomes a little bit more leveled out. I think four is where we don\'t get all excited and, you know, acquisitions no longer are like the biggest news in WordPress. They Almaz say they become everyday normal things and people will still talk about them.</p>\n\n\n\n<p>But I think those moves that we\'ve been [00:49:00] making to where we see that it\'s becoming a bigger thing. And I also see that 4.0 is, and it\'s already, maybe it is already happening. I see a lot of attraction even more so I\'m more visibly from outside. Businesses, you know, that say, I want a piece of WordPress. I want a piece of WooCommerce.</p>\n\n\n\n<p>I mean, I get this a lot through conversations and companies that reach out to me, you know, they want to get in on it. They want to get in on the action. So that\'s almost like an, and however people view that, you know, that they view that as positive or negative is not really the point that, but I think that is becoming people are companies are being a bit more visible.</p>\n\n\n\n<p>And I think this will be part of 4.0 is in their interest in WordPress where it used to be WordPress is [00:50:00] open source and you know, it\'s not that big of a deal and stuff. And now it\'s like, they\'re flat out saying, Hey, we want in, how do we get in? We want to be, because</p>\n\n\n\n<p><strong>David Bisset:</strong> it\'s like we said, it\'s a little hot about the money.</p>\n\n\n\n<p><strong>Bob Dunn:</strong> Exactly.</p>\n\n\n\n<p><strong>David Bisset:</strong> Once you see these aquifers, I think, you know, like once you start seeing bigger acquisitions, they\'re taking headlights now in tech crunch, all these other things, people are starting to, I guess, pay attention. Oh wow. There is money to be made here. So I\'m yeah. I mean, I want to I, wouldn\'t thinking about the same thing and I don\'t have a year in mind yet.</p>\n\n\n\n<p>Of course, if I did, I\'d probably play the lottery or something, but what I see are four potential factors for version four, if you want to call it that, and maybe they all are playing. One, I think we\'re in, I think we\'re version three still includes the acquisitions craze that we\'re going through right now, because I think the acquisitions, if you look back a little bit far enough after Gutenberg, I think launched. To me, it just seemed a lot more common.</p>\n\n\n\n<p>It\'s really exploded the last couple of years. I don\'t think it\'s over, but I still think we\'re in the same general [00:51:00] time period acquisitions were happening before Gutenberg came out, but I think Gutenberg probably has triggered a lot of companies, smaller companies for, to be acquired by hosting companies and others because of the blocks, the themes and all of that.</p>\n\n\n\n<p>And of course, we\'re not even going to talk about theme, you know, WordPress themes at all, or we\'re not even about WooCommerce or e-commerce, I\'m not even going to talk about that stuff cause that\'s too much. But I think if I was to guess what a version four would be, and this is commute, this it\'s sad because I\'m not talking much about the community.</p>\n\n\n\n<p>I\'m just thinking of the, community\'s going to react to these things. And that becomes version for the community outside investments. How we react to that outside investments might mean more people coming in from the outside, even if it\'s just from a business standpoint, but they would be part of the community.</p>\n\n\n\n<p>I think too, it\'s possible than an aversion for maybe near the end of that. We will see acquisitions, maybe become normal, more normal. But I think we\'re also going to see market share eventually [00:52:00] level off. And that could be years from now. It\'s going to be hard to calculate it because they\'re shutting down Alexa, not that Alexa, the other Alexa next year.</p>\n\n\n\n<p>And we don\'t know exactly how we\'re going to be able to determine them at the market share metric because we\'ve kind of taken advantage and abuse it over the years. But I tend to see a general acquisitions being more of the norm market share, not as explosive as it used to be, because quite it\'s kind of like apple.</p>\n\n\n\n<p>It\'s kind of, again, I go back to apple, they were selling iPhones one year. That would, their total sales of iPhones for one year would be all of the sales for the previous years combined. And they had that kind of explosive growth. Then it stopped because you couldn\'t sell that many phones anymore. But look at them today.</p>\n\n\n\n<p>They\'re doing just fine. They\'re doing just fine. So I think that\'s going to be the way with WordPress. We\'re going to see market share slowed down because quite far, I mean, whether it gets to 50% or not, I don\'t care. It could be beyond that. It could be years from now, but eventually the market share has to slow down.</p>\n\n\n\n<p>And then I\'ll ask you a [00:53:00] question about market share in a second. I think acquisitions nor market share slows down. We\'re going to get more, you know, outside investments. We\'ll see those. And then I think matt\'s master plan. Maybe I\'m not sure what you would call this his plan of an open web.</p>\n\n\n\n<p>If you looked at the acquisitions and I\'m not sure if you had the read the piece by David Pierce yet on ma on mat, it was a click baity title. It was can Matt Mullenweg save the internet if you haven\'t read it because it basically folk you would think, oh, it\'s a piece about Matt WordPress and yes it is, but it goes along also the acquisitions automatic has taken over the past couple of years and individually by themselves were like, oh, that\'s neat. They have this little thing. But if you add them together, Matt is slowly accumulating like a collection of these technologies and these corners of the internet that I think needs to be maintained as open, like a diary app and a photos on creative commons.</p>\n\n\n\n<p>And there\'s analytics, statistics company that they acquired that I can\'t remember the name of, but it\'s like, he\'s collecting almost one of each or automatic is collecting one of each of [00:54:00] everything. And I think that is going to change. Maybe it\'s making the community more open source minded than WordPress minded maybe, but I think there\'s a cat there.</p>\n\n\n\n<p>There\'s going to be some change. There may be an, a version four, maybe a version five. However you want to split it where we\'re going to see, like we\'re going to be so more fighting for the open source or the open web. And WordPress is just going to be part of that. In fact, I think didn\'t Matt say that Gutenberg is going to be bigger than WordPress. Yeah. Yeah. That\'s a state of the word. So if I had to guess that\'s my version for, I don\'t know, that\'s it. And the</p>\n\n\n\n<p><strong>Bob Dunn:</strong> only other thing I\'d add, and this is more around the people side of things. I\'m really curious that by version four, if we will have a bigger turnover in who you really notice in the WordPress space.</p>\n\n\n\n<p>I mean, we got all these people that I\'ve, you know, kind of are the faces we\'ve been around forever. We\'ve seen them, is there going to be a new generation and a kind of influx of newer [00:55:00] people stepping up and taking over the roles in the bigger WordPress community. And some of the other people that have been in a while might be at that point in time.</p>\n\n\n\n<p>And maybe again, we can\'t get 4.0 will start, but will they be stepping back and maybe doing other things with their lives? And it\'ll be this. This whole new kind of, even though each one has been a generation in its own, that might be a more pivotable generation. That with, when you look at the kids and what your kids are doing, I mean, what so many of them are doing that they could come in and just, you know, barnstormed the place and ,</p>\n\n\n\n<p>, but you see it, like how many P how many original people of the original tech companies are still around Microsoft?</p>\n\n\n\n<p>No bill gates has gone even his can\'t remember his name now developers, guy has gone. The original owners are starters of Google aren\'t there anymore. All of in fact, I think an apple of course, has a leader. They\'ll probably transition like, like the only person left is Zuckerberg is still a [00:56:00] Facebook.</p>\n\n\n\n<p>Everyone else has had one or two leadership changes. Very recently, Jack is no longer Twitter. So we\'re seeing that, but also in the WordPress space you know, the advanced custom fields, Sandhill development these people that have been like the starters from day one, they\'re moving on, whether they\'re moving on retiring or they\'re moving on to other projects or other companies through acquisitions is up for debate or whether it\'s, they\'re doing, but we\'re seeing the same thing happen in the global tech community.</p>\n\n\n\n<p>So exactly. So, yeah, I, wow. This has been a really deep conversation about community, but I didn\'t think, but it was all because of your all because of your blog posts really. And that\'s really</p>\n\n\n\n<p>right. I wrote it and I wrote the, I titled it in a question because I thought, okay, this is just a little snap, a snapshot in my brain.</p>\n\n\n\n<p>And I want people to think about this and I love that you did this. And I loved hearing on slack and hopefully, you know, this might. Inspire some some blog posts, cause I\'d love to hear other ideas and stuff. [00:57:00] So, so, it did its job and that, that\'s what I wanted it to do. Get people thinking about</p>\n\n\n\n<p><strong>David Bisset:</strong> it. I know I\'ve taken too much of your time already talking about this.</p>\n\n\n\n<p>It\'s like, what else am I going to do? And we got to go out and do, let me direct you to one last thing earlier today, because I don\'t plan enough far enough in advance for half of our conversations. I put up a Twitter poll and that\'s going to run for another two days. So, while we\'ve been talking about here, strangely enough, we\'ve had at least 10 people vote on it and it\'s only been.</p>\n\n\n\n<p>Three or four hours since I put the vote up has been over 40 votes on it so far, but for a Twitter poll for me, that\'s on a new year\'s Eve. That\'s pretty good. So I asked based on your post, where do people feel they belong in terms of what WordPress generation and I we\'ve listed the version one version two, version three, and then whatever, if there\'s other than replying, the comments nobody\'s replied other yet.</p>\n\n\n\n<p>So they pick one or two or three. So after 41 votes, let\'s see, just making sure I got my numbers, right. [00:58:00] 41 votes. So 39% responded version one. This is 36% version two. So that\'s 2010 from 2018 and 24% said two to 2018 and above for version three. Interesting. So it\'s, you know, it\'s only 40 votes if it was more evenly split between thirds the last time I saw it, but you are getting a little bit more.</p>\n\n\n\n<p>A slightly older people are older versions. Yeah. So I just thought that was interesting. We\'ll link to this in the in the show notes as well. So by the time you hear this recording, this poll would have ended long ago. It should be interesting to see what it ends up being. Yeah.</p>\n\n\n\n<p>That\'s fantastic. Was there anything else that we didn\'t cover about that post that you think we should have?</p>\n\n\n\n<p><strong>Bob Dunn:</strong> No, I think we, we dove into a deep, yeah, we</p>\n\n\n\n<p><strong>David Bisset:</strong> killed, we deep dive and killed it, buried it. We used every part of the Buffalo. Yeah. Bobby could be</p>\n\n\n\n<p><strong>Bob Dunn:</strong> and now, everybody else can chime in and create their own posts and create their own tweets.</p>\n\n\n\n<p>And [00:59:00] then talk about this. Yeah. Yeah.</p>\n\n\n\n<p><strong>David Bisset:</strong> You know, besides Bob, other than my wife, you\'re the only adult I\'ve spoken to in the last couple of days. Anyway. So maybe it\'s nice to have a good conversation. We don\'t have WordCamps anymore. This is the type of conversations I\'d love to have. Right at word camps.</p>\n\n\n\n<p>And it\'s the parts that, that I miss the most, but we can still do them up to this point. And I\'m looking forward to that time where you and I can sit together and talking you know what? Version three is coming to a close, or maybe we\'ll say it probably a year after it\'s happened. Cause you know, retrospect is Einstein sights, 2021.</p>\n\n\n\n<p>Anyway, Bob tell us where people can find you or version two, but on the web.</p>\n\n\n\n<p><strong>Bob Dunn:</strong> Okay. I\'m version two. Best place I hang out a lot of on Twitter, you can either @BobWP or @dothewoo depending on what you want to do. Bob wp.com is I\'ve kind of revived that blog. I took all the WooCommerce stuff off and I\'m basically just talking about community.</p>\n\n\n\n<p>So these kinds of little thoughts come to me and that\'s what I\'m going to be putting there. And if you want [01:00:00] to, you know, again, woo commerce do the blue dot on.</p>\n\n\n\n<p><strong>David Bisset:</strong> Okay, great. Yeah, and like I said, check the show notes for this episode. We will throw Bob\'s link to his blog post in there, specifically this Twitter poll that I did and a few other tidbits as well.</p>\n\n\n\n<p>Bob, it has been awesome. Thank you very much for sharing all this thoughts with us. And I really hope this at least brings a couple of ideas and thoughts into people\'s heads, not just ones that have come into the WordPress community recently, but also the ones that have been around with it since version one, maybe, or version two, we\'ll see where the poll ends up.</p>\n\n\n\n<p><strong>Bob Dunn:</strong> Cool. Thanks, David. This has been a blast. Thank you.</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, 11 Jan 2022 04:55:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:107:\"WPTavern: WordPress Community Team Proposes Stricter COVID-19 Safety Protocols for In-Person Events in 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=128077\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordpress-community-team-proposes-stricter-covid-19-safety-protocols-for-in-person-events-in-2022?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-community-team-proposes-stricter-covid-19-safety-protocols-for-in-person-events-in-2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6953:\"<p>Mounting concerns about <a href=\"https://wptavern.com/wordcamp-birmingham-updates-covid-19-protocols-amid-omicron-surge-wordcamp-europe-still-planning-for-in-person-event\">loose safety protocols at upcoming WordPress events</a>, and the prevalence of the highly transmissible Omicron variant, have prompted the Community Team to be more explicit in its COVID-19 safety guidelines. The team is <a href=\"https://make.wordpress.org/community/2022/01/10/proposal-mandatory-safety-measures-for-in-person-wordpress-events-in-2022/\">proposing additional measures</a> previously not required.</p>\n\n\n\n<p>Currently, in-person attendees are required to be fully vaccinated, recently tested negative, or recently recovered from COVID-19. Every one of these requirements is vague and open to multiple interpretations. Recent spikes in infection in both vaccinated and unvaccinated populations has caused the Community Team to propose the following: </p>\n\n\n\n<ul><li>Mandatory masks for all attendees (even in regions that do not have a mask mandate at this time).&nbsp;</li><li>More prominent messaging in&nbsp;WordCamp&nbsp;websites, emails, and social media posts about COVID-19 safety guidelines.</li><li>Mandatory temperature checks for all attendees at the event (if permitted by local authorities).</li><li>Accessible hand sanitizing stations in the venue.</li><li>Maintaining social distancing practices during the event (Larger meeting rooms and seating arrangements with good spacing can be a good way to implement this).</li><li>Having a plan for contact tracing measures in case of infections (can be done using WordCamp registration data,&nbsp;meetups&nbsp;are a bit tricker).</li></ul>\n\n\n\n<p>One of the concerns with imposing more mandatory safety measures is enforcement. WordPress events are generally hosted by volunteers who would now need to go beyond simply facilitating an event to being ready to confront and remove those who don&#8217;t comply with safety protocols. In a community of people with diverse convictions, what happens if some members decide that WordCamp is a good place to protest pandemic restrictions? </p>\n\n\n\n<p>&#8220;I appreciate very much the heart behind wanting to keep the community safe, but have significant issue with how this is being proposed, and how it would be enforced, and how it shifts the burden of health and safety to a volunteer team of organizers who are not in any way trained or equipped to handle making medical decisions,&#8221; Ben Meredith said.</p>\n\n\n\n<p>&#8220;Further, there are many jurisdictions where the proposed changes (like a mask mandate) are specifically prohibited by local law or executive order.</p>\n\n\n\n<p>&#8220;Trying to make a policy from the international level (WordCamp central) that applies fairly and equitably to all local jurisdictions is a fool’s errand. What works in Los Angeles probably wont in Louisiana or Lagos. That’s why organizers are local.&#8221;</p>\n\n\n\n<p>If the WordPress community is fixed on hosting events at this time, then there are many more responsibilities organizers are now obligated to assume in order to ensure the safety of attendees. Participants in the discussion on the proposal raised dozens of questions about how these new safety measures might be implemented. </p>\n\n\n\n<p>&#8220;On temp checks, if someone reads high ( they may not even be aware) would we then refund their ticket to the event assuming we are talking a WordCamp?&#8221; Laura Byrne asked.</p>\n\n\n\n<p> WordCamp organizer and speaker David Ryan raised questions about masks, will the requirements outline what qualifies as a mask? (<em>&#8220;Does a plastic face shield qualify as a mask? Are masks with ventilation valves acceptable? A bandana?&#8221;</em>) Does the requirement include speakers while they are speaking? &#8220;This should be clear in advance for both speakers and attendees to make informed choices without surprises day-of,&#8221; Ryan said.</p>\n\n\n\n<p>He also asked if the masking policies extend to other venues, such as the official event hotel and after parties, the way the Code of Conduct applies.</p>\n\n\n\n<p>Refunds are another consideration. Will WordCamps refund people who test positive right before the event? Will the event refund if people arrive and are not comfortable or are asked to leave for not complying with the safety measures?</p>\n\n\n\n<p>&#8220;In addition to these proposed guidelines, I also recommend that we remove our existing guideline of allowing recent-recovered community members from attending a WordPress event <a href=\"https://www.who.int/news/item/28-11-2021-update-on-omicron\">since new COVID variants like Omicron are known to cause reinfection</a>,&#8221; Automattic-sponsored WordPress Community Wrangler Hari Shanker said in the proposal.</p>\n\n\n\n<p>Laura Byrne urged the Community Team to clearly define this guideline.</p>\n\n\n\n<p>&#8220;We are in for a boatload of trouble with the word &#8216;recent,\'&#8221; Byrn said. &#8220;In other words, something along the lines of, &#8216;anyone who has tested positive for COVID may not attend a WordPress event until X days after they are no longer testing positive.\'&#8221;</p>\n\n\n\n<p>Some participants in the discussion see the additional safety measures as an overreach for WordPress events. It&#8217;s easier and more straightforward to recommend organizers stick with local requirements for anything related to health safety. </p>\n\n\n\n<p>&#8220;Surely I’m not the only one thinking that the foundation shouldn’t be setting health guidelines at all?&#8221; Cameron Jones said. &#8220;Compliance with local regulations should be the only requirement.&#8221;</p>\n\n\n\n<p>The problem with this is that many locations and regions do not have any kind of precautions in place, due to political differences, or are slow in recognizing emerging threats. Lax local guidelines for large gatherings may leave the WordPress community vulnerable to outbreaks.</p>\n\n\n\n<p>&#8220;As a WordCamp organizer and speaker, and more personally as a recent cancer survivor and immunocompromised person, State of the Word was a troubling event to observe,&#8221; David Ryan said.</p>\n\n\n\n<p>&#8220;Local legal requirements were met, but not proven event practices that eliminated or greatly-reduced positivity rate at larger gatherings in 2021 compared to the results of SOTW (namely, masks and testing). Planning, day-of and response afterwards didn’t inspire confidence this community was prepared to run safer and inclusive events — so this is an encouraging step towards remedying concerns many have expressed.&#8221;</p>\n\n\n\n<p>Comments on the <a href=\"https://make.wordpress.org/community/2022/01/10/proposal-mandatory-safety-measures-for-in-person-wordpress-events-in-2022/\">proposal</a> are open until January 22, 2022. The Community team plans to assess the feedback and finalize the updated guidelines in time to publish them to the handbook in early February 2022.</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, 11 Jan 2022 04:27: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:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: Customizer Will Disappear for Some Block Theme Users With 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=128089\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/customizer-will-disappear-for-some-block-theme-users-with-wordpress-5-9?utm_source=rss&utm_medium=rss&utm_campaign=customizer-will-disappear-for-some-block-theme-users-with-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:5712:\"<p class=\"has-drop-cap\">Nine years ago, the customizer had a rocky start among theme authors and users. Despite this, it has become the standard for modifying the look and feel of a website. Developers have become comfortable with the API. Users have grown accustomed to adjusting colors, fonts, and even internal WordPress options through it. However, it will disappear for many once a block theme is activated.</p>\n\n\n\n<p>I began writing this post on the upcoming block-based theme system and site editor. However, I spent so much time explaining the customizer changes that I thought it best to focus on that aspect to let users know their options if they run into a snag.</p>\n\n\n\n<p>It is also a follow-up to a <a href=\"https://wptavern.com/ask-the-bartender-what-happens-to-the-customizer-when-a-block-theme-is-active\">post I published in October 2021</a> on the same subject. Since then, some things have changed.</p>\n\n\n\n<p>WordPress 5.9 will launch with several of the final components of Full Site Editing. The centerpiece of these features will be a new theme system, which allows themers to build designs entirely out of blocks. Once such a theme is active, users can edit their site&#8217;s front end via the site editor and global styles system.</p>\n\n\n\n<p>The site editor is, essentially, the next iteration of what the customizer aimed to do. The difference is that users can now customize every aspect of their site&#8217;s front-end and not just configure the options their theme author made available.</p>\n\n\n\n<p>For many block theme users, the disappearance of the customizer will be a non-issue. However, three missing options have no exact equivalent:</p>\n\n\n\n<ul><li>A partial site icon (favicon) solution exists but not for every scenario.</li><li>The custom CSS box is not available.</li><li>There is no draft process before switching to block theme.</li></ul>\n\n\n\n<p>Technically, the customizer is available via <code>/wp-admin/customize.php</code>. Even though no links to it are shown in the admin, any user with the requisite permissions can access it via that URL. At the very least, the first two issues can be mitigated by editing options in this way. It is not ideal, but it will work in a pinch.</p>\n\n\n\n<p>The Site Logo block has a &#8220;use as site icon&#8221; option. This is a quick and easy way to update the logo and favicon via the new site editor, assuming they use the same image.</p>\n\n\n\n<img />New “Use as site icon” option.\n\n\n\n<p>If they are different images or if the user does not use a logo, the only built-in way to change the site icon directly is through the <code>customize.php</code> URL trick mentioned above. The Site Logo block also adds a link to the customizer option.  Users can also opt for one of the dozens of <a href=\"https://wordpress.org/plugins/tags/favicon/\">favicon plugins</a>.</p>\n\n\n\n<p>A custom CSS solution in core WordPress is unlikely to be reimplemented in the site editor. The global styles panel and per-block design options are the future of styling. This makes many of the most common stylistic tasks much easier for non-coders. In the context of block-based themes, the average user is unlikely to need the CSS editor in the customizer.</p>\n\n\n\n<img />Custom CSS section in the customizer.\n\n\n\n<p>However, there are situations where custom CSS is necessary. Again, the easy answer is to access <code>customize.php</code> once again. For a more dedicated solution, there are <a href=\"https://wordpress.org/plugins/search/custom+css/\">numerous plugins available</a>.</p>\n\n\n\n<p>There is currently no solution for live previewing and customizing inactive block themes. With classic ones, users can test customizations before activation. In the customizer, block themes will appear with a warning message.</p>\n\n\n\n<img />Theme details with warning about customizer support.\n\n\n\n<p>Once a block theme is activated from the customizer, WordPress will return the user to the Appearance &gt; Themes page in the admin. They can then modify their site via the site editor.</p>\n\n\n\n<p>However, this can be problematic for some sites. Just about any theme change will mean there is at least some customization work in order, and most people will not want their visitors to see an unfinished site. Working from a dev or staging site before migrating the changes is ideal. However, that option is not always available or even easy to figure out for everyone.</p>\n\n\n\n<p>Another solution is to install a <a href=\"https://wordpress.org/plugins/search/maintenance+mode/\">maintenance-mode plugin</a> if working on a live site. This way, visitors will at least know some changes are happening under the hood and that they can return later. </p>\n\n\n\n<p>There is an open ticket for <a href=\"https://github.com/WordPress/gutenberg/issues/37201\">previewing and editing</a> inactive block themes. As ticket creator Anton Vlasenko wrote as the proposed solution, &#8220;It&#8217;s simple: we need to implement that feature.&#8221;  In the long term, this is a must-have feature.</p>\n\n\n\n<p>There is one situation where the customizer will still be accessible via the admin menu and toolbar. WordPress will <a href=\"https://github.com/WordPress/gutenberg/pull/35877\">automatically detect</a> when a plugin or theme hooks into the customizer and make links to it available.  I like to think that my first post covering block themes and the customizer <a href=\"https://github.com/WordPress/gutenberg/issues/30496#issuecomment-948276503\">raised awareness</a> of this issue. At the very least, we now have a fix in place.</p>\n\n\n\n<p>Assuming there are no other changes in the next two weeks, this is how the customizer will function when paired with an active block theme.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Jan 2022 00:22:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"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:138:\"Gutenberg Times: Gutenberg Changelog #58 – Gutenberg 12.2 and 12.3, WordPress 5.9 RC and DevNotes for Full-Site Editing and 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:53:\"https://gutenbergtimes.com/?post_type=podcast&p=19982\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-58-devnotes-for-full-site-editing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:60515:\"<p>Birgit Pauli-Haack and Grzegorz Ziolkowski  talk about WordPress 5.9 release and DevNotes for Full-site Editing and block themes, and  Gutenberg 12.2 and 12.3.</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/gutenberg-changelog-58-devnotes-for-full-site-editing#shownotes\">Show Notes </a>/ <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-58-devnotes-for-full-site-editing#transcript\">Transcript</a></p>\n\n\n\n<span id=\"more-19982\"></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=\"listener-questions\">Listener Questions</h2>\n\n\n\n<p><a href=\"https://twitter.com/jessicalyschik\">Jessica Lyschik</a> (<a href=\"https://twitter.com/jessicalyschik/status/1478785283889971200\">Question tweeted</a>)</p>\n\n\n\n<p id=\"paragraph-block-add-font-family-support\"><a href=\"https://github.com/WordPress/gutenberg/pull/37586\">[Paragraph Block] add font family support</a></p>\n\n\n\n<p><a href=\"https://twitter.com/adityakane\">Aditya Kane</a></p>\n\n\n\n<p>Thank you to Jessica and Aditya for your great questions!</p>\n\n\n\n<p class=\"has-small-font-size\">If you have questions about Gutenberg, Block Themes or Full-site Editing, email us changelog@gutenbergtimes.com or DM on Twitter <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes</a> or WP Slack. </p>\n\n\n\n<h2 id=\"state-of-the-word-videos-and-q-as\">State of the Word Videos and Q &amp; As</h2>\n\n\n\n<p><a href=\"https://wordpress.tv/2021/12/15/matt-mullenweg-2021-state-of-the-word/\">State of the Word 2021 on WordPress.tv</a></p>\n\n\n\n<p><a href=\"https://wordpress.tv/2021/12/15/matt-mullenweg-state-of-the-word-2021-qa/\">Q &amp; A after State of the Word on WordPress.tv</a></p>\n\n\n\n<p><a href=\"https://josepha.blog/2022/01/04/state-of-the-word-2021-qa/\">Josepha Haden: State of the Word 2021 | Q&amp;A</a></p>\n\n\n\n<h2 id=\"wordpress-5-9-release-devnotes\">WordPress 5.9 Release + DevNotes</h2>\n\n\n\n<p>About Themes</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/01/07/theme-focused-changes-and-filters-in-wordpress-5-9/\">Theme-focused changes and filters in WordPress 5.9</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/07/state-of-the-customizer-with-block-themes-in-wordpress-5-9/\">State of the Customizer with block themes in WordPress 5.9</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/05/bundled-theme-updates-with-wordpress-5-9/\">Bundled theme updates with WordPress 5.9</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/04/block-themes-a-new-way-to-build-themes-in-wordpress-5-9/\">Block themes, a new way to build themes in WordPress 5.9</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/08/updates-for-settings-styles-and-theme-json/\">Updates for Settings, Styles, and theme.json</a></li></ul>\n\n\n\n<p>Block Building and extending Gutenberg</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/01/04/new-api-to-access-global-settings-styles/\">New API to access global settings &amp; styles</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/04/miscellaneous-block-editor-changes-in-wordpress-5-9/\">Miscellaneous block editor changes in WordPress 5.9</a></li><li><a href=\"https://make.wordpress.org/core/2021/12/28/take-more-control-over-inner-block-areas-as-a-block-developer/\">Take more control over Inner Block Areas (as a block developer)</a></li><li><a href=\"https://make.wordpress.org/core/2021/12/15/using-multiple-stylesheets-per-block/\"></a><a href=\"https://make.wordpress.org/core/2021/12/15/using-multiple-stylesheets-per-block/\">Using multiple stylesheets per block</a></li><li><a href=\"https://make.wordpress.org/core/2021/12/13/posts-post-types-and-taxonomy-changes-in-wordpress-5-9/\">Posts, Post types and Taxonomy changes in WordPress 5.9</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/08/locking-blocks-in-wordpress-5-9/\">Locking Blocks in WordPress 5.9</a></li></ul>\n\n\n\n<p>New Blocks</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/01/07/the-new-navigation-block/\">The new Navigation block</a></li><li><a href=\"https://make.wordpress.org/core/2021/08/20/gallery-block-refactor-dev-note/\">Gallery Block Refactor Dev Note</a></li></ul>\n\n\n\n<p>If you need additional reading or if those are too developer centered for your taste, Birgit collected additional resource to a <a href=\"https://gutenbergtimes.com/whats-new-in-wordpress-5-9-a-reading-list-on-full-site-editing-and-block-themes/\">Reading List</a> for developers, designers, site builders and content creators. </p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2022/01/wordpress-5-8-3-security-release/\">WordPress 5.8.3 Security Release</a> Update Now! </p>\n\n\n\n<h2 id=\"gutenberg-plugin-releases-versions-12-2-and-12-3\">Gutenberg Plugin releases versions 12.2 and 12.3</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2021/12/22/whats-new-in-gutenberg-12-2-22-december/\">What’s new in Gutenberg 12.2? (22 December)</a> </li><li><a href=\"https://wptavern.com/gutenberg-12-2-focuses-on-user-experience-improvements\">Gutenberg 12.2 Focuses on User Experience Improvements</a>.</li></ul>\n\n\n\n<p></p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/01/05/whats-new-in-gutenberg-12-3-5-january/\">What’s new in Gutenberg 12.3? (5 January)</a></li><li><a href=\"https://wptavern.com/gutenberg-12-3-introduces-new-blocks-design-options-and-a-complete-core-blocks-reference\">Gutenberg 12.3 Introduces New Blocks, Design Options, and a Complete Core Blocks Reference</a></li></ul>\n\n\n\n<p>What&#8217;s in the Works or Discussed?</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2022/01/05/proposal-changes-to-javascript-coding-standards-for-full-prettier-compatibility/\">Proposal: Changes to JavaScript Coding Standards for Full Prettier Compatibility</a></p>\n\n\n\n<p><strong>January 17, 2022 8 pm ET / 1:00 am UTC</strong> <br /><strong><a href=\"https://www.meetup.com/BoulderWP/events/282792359\">What&#8217;s coming in WordPress 5.9</a></strong> Panel discussion w/ Brian Gardner, Courtney Robertson and Birgit Pauli-Haack via WordPress Meetup Boulder, Co</p>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-container-61e57eb3bbc62 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 class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hello, and welcome to our 58th episode of the Gutenberg Changelog podcast, the first podcast of 2022. Happy New Year, everyone.&nbsp;</p>\n\n\n\n<p>In today&#8217;s episode, we will talk about Gutenberg 12.2, 12.3 and even more features to customize sites, WordPress 5.9 release candidate and the available Gutenberg related developer notes for the upcoming release, and probably more. I&#8217;m Birgit Pauli-Haack curator of the Gutenberg times and developer advocate at Automattic. And I&#8217;m here with my co-host Grzegorz Ziółkowski, JavaScript developer at Automattic and WordPress School contributor. Happy new year to you, Grzegorz. How are you today?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Happy new year, Birgit. I wish you and all of our listeners a lot of exciting experiences with the Gutenberg blog during the 2022 year. I personally immensely enjoyed the slower pace at work in the last weeks when so many more WordPress contributors took well deserved, extended time off. And you were one of them. How was your vacation?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, yeah, I&#8217;ve been very well spending the holidays with dear friends in Vancouver, and a short trip to Whistler in British Columbia. We had -21 degrees Celsius and beautiful weather in Whistler on the second day. So we went up with the gondola to the mountain peak and yeah, what breathtaking view. It&#8217;s not something we see ever in Florida, where the highest peak is the I-75 overpass. I&#8217;m so glad to talk to you again, dear listeners, and Grzegorz. It&#8217;s been almost four weeks and we have a great show for you. Let&#8217;s dig in.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, there is a lot to cover today, so let&#8217;s start right away.</p>\n\n\n\n<h3 id=\"listener-questions-1\"><strong>Listener Questions</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. We first have listener questions that we picked up on Twitter and from the email. Jessica Lyschick is a German front end developer and was part of the WordPress 5.6 release squad, tweeted the other day, &#8220;Is it correct that in WordPress 5.9, it is still not possible to change the font family for a paragraph on a per-block basis? I know it&#8217;s possible in the styles and theme JSON, but only globally and not for the individual block.&#8221;</p>\n\n\n\n<p>Well our answer, indeed. Yes, it&#8217;s not yet possible with WordPress 5.9, but it&#8217;s already available in Gutenberg 12.3. It&#8217;s the PR 37586 in our change log today, if you want to look it up. The change helps site owners and content creators to handle paragraph-related topography and font family. One caveat is that the theme needs to provide a list of allowed font families, otherwise the settings will just follow back on the system font. Jessica, thank you so much for your question. And when you get a moment, play around with it, we&#8217;ll have the Gutenberg 12.3 plugin, and see if that matches your needs. And if there&#8217;s something quirky, please let the developers know via GitHub Issue, or just ping me again on Twitter.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, I think we will also cover the changes to the group block, which also added the same functionality. So that will give you a fuller depth. So if you have several paragraphs and you don&#8217;t want to change every one of them one by one, you&#8217;ll be able to do it in the Gutenberg plugin on the group level.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, that&#8217;s awesome. Yeah, I haven&#8217;t seen that yet. Thanks putting that in.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. And we have a second question from Aditya Kane and she wrote, &#8220;While full site editing is already very exciting and we are looking at some cool things happening around it, and I do think it will start to become a viable product to pitch to clients after WordPress 5.9 release. But at what point do you see it measuring to the level where WordPress agencies could feel more comfortable pitching it to very large enterprise-level clients? Are there any great resources or places someone should watch or follow other than of course, Gutenberg Times?&#8221;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well hi, Aditya. Thank you for sending us your question. Yes, it&#8217;s a very good one and it gets the obligatory &#8220;it depends&#8221; answer. So from what I see, the foundations for full site editing are in. That means the minimally viable product with a user interface, it&#8217;s only in the first version. I would not start pitch until 6.0 is out. That hopefully settles the interface quirks some more. I probably would even wait building sites based on FSE until the fourth quarter of 2022.</p>\n\n\n\n<p>However, and I have been known to be a risk taker, so take this with a grain of salt, but however, if your clients don&#8217;t need site editing interface for most of their workflows, the theme JSON improvement for controlling the theme and the block editor is solid. And it allows for disabling many, many features a client might, with many members on the editorial staff, definitely won&#8217;t need, or don&#8217;t want. And you should be able to start working with it in the second quarter in 2022, considering that large projects have a long on-ramp time. So by the time you&#8217;re finished, maybe in late 2022, or even early 2023, it might have a much more solid base for you. So yeah, take it with a grain of salt. I think it&#8217;s moving fast, but it&#8217;s also something that everybody needs to get accustomed to. Grzegorz, what do you think?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, I&#8217;m still processing that, because full site editing means a lot of things. And as you already mentioned, theme JSON and all the capability gives to the site owners or even content creators. So definitely you will see a lot of new blocks if you enable a block theme. However, if you only are concerned about editing content, you still will receive a lot of enhancement and new features to all blocks. Like this global styles, this is something that you can control on the block level. And with the theme JSON you mentioned, you can fine tune to your needs.</p>\n\n\n\n<p>So definitely you should check out those global styles features on the block level first and see how that works for you. And wait maybe a couple of weeks to, and I&#8217;m talking about enterprise, which is like, we talk about big money here. So in that case, it&#8217;s better to wait a few weeks and see how the committee responds to that. And definitely in the meantime you should try block themes that are showing up, and every week we see something new, exciting, and you will follow it closely and you definitely will have a recommendation for people if they want.</p>\n\n\n\n<p>So, yeah. I mean, it&#8217;s very exciting and I&#8217;m personally more optimistic and I don&#8217;t think that we need to wait so long for everything, but I&#8217;m a developer and I like to live on the bleeding edge of technology, so.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So yeah, I really like that. So you got two optimists on that answer. Take it on a grain of salt, Aditya. Thank you for your question. And you had a second question in there, is where to follow along with all the changes. It definitely is the Make Blog Core where all the updates will show up with the release notes for every Gutenberg plugin. It definitely will help you gauge all the good things if you follow along with Gutenberg plugin and test things out.</p>\n\n\n\n<p>Of course, thank you for the shout on the Gutenberg Times. We&#8217;ll keep you up to date on any changes that are significant for agencies and others. You will also find a few shout outs to plugin developers that also work on the workflows for site builders. Yeah, and also there is a series going on that Ryan Welcher and Daisy Olson, they are just starting with their live streams, taking a theme from zero to block. And that&#8217;s certainly something. And of course we will have the links in the show note. That&#8217;s certainly something to watch and share with your developers so they can get accustomed to it.</p>\n\n\n\n<p>Now, listeners, if you have questions about Gutenberg blocks or full site editing, feel free to connect with us on Twitter, the WordPress slack, or via email. It&#8217;s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. It&#8217;s changelog@gutenbergtimes.com. We&#8217;ll answer right away if we know the answer. And if we don&#8217;t, we&#8217;ll find someone who knows the answer and we will share the question and answer with all our listeners. So don&#8217;t be shy. We know that if you have a question, that many others might want to hear the answer as well, as they have secretly asked themselves the same question. So it&#8217;s definitely worth doing it and it helps us be a little bit more, or even more streamlined for your needs. That&#8217;s what we all want to do. Yeah. It&#8217;s kind of help you with the Gutenberg adoption.</p>\n\n\n\n<p>Speaking of Q&amp;A…</p>\n\n\n\n<h3 id=\"announcements\"><strong>Announcements</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, so if you missed it, the new State of the Word talk by Matt Mullenweg and the live Q&amp;A recording are now up on the WordPress TV. And Josepha Haden, the executive director of the open source project also posted on her blog answers to questions they didn&#8217;t get to during the event. You will also find the array of questions people sent in or posted in the YouTube livestream. Not all have answers yet, but the comments are filling up. And we will share all the links, of course, in the show notes. And yeah, now let&#8217;s go to the committee contributions.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Which we don&#8217;t have.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Oh, yeah. Right.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So let&#8217;s go to What&#8217;s Released, right?</p>\n\n\n\n<h3 id=\"what-s-released\"><strong>What’s Released</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: And with that, let&#8217;s go the What&#8217;s Released section. Birgit, can you share the updates?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes. So there were quite a few things going on. So WordPress release candidate 1 for 5.9 was released on Tuesday, January 4th. And that signaled a hard string freeze. That&#8217;s when the translators go to work and prepare the release for hundreds of languages. It&#8217;s also the time to where developers start publishing the developer notes for the new version. And the block related dev notes are….</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: There is a lot of them.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: There&#8217;s a lot of them, yeah. It&#8217;s about the block theme, and it&#8217;s about new APIs. Even miscellaneous block editor changes that are not going into a full post. There&#8217;s a very interesting dev notes also on how to control the inner block areas for the block editor, on how to use multiple styles each for blocks, the post type and taxonomy changes. One dev note that has already been published in August is the gallery block refactor. Dev notes were listed again. And there are still dev notes in the works.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, at least today just before we started recording, there was a navigation block in WordPress 5.9 post published with all the explanations. And I think there are two more coming, and you should know more about them.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. It&#8217;s the theme related changes and the updated for the setting styles on theme JSON. But also I found in the Make Blog a post about WordPress 5.9 performance improvements. Do you want to talk briefly about that?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Oh yeah, sure. So that&#8217;s something that summarizes the work that was done over several WordPress major releases. So the post was by Anne McCarthy, but it was contributed by many more people from the community. And it was mostly about the performance related to the block editor, but also so related to how that translates to the front end. And there is an interesting table there that shows the features of the block editor and how all those metrics changes starting from WordPress 5.6, up to the upcoming WordPress 5.9 release. And in many of these places, we can see significant improvements. And with the highest peak, for instance, for the inserter opening that is faster. Like the metrics that has been reduced by over 70%, which is like mind blowing.</p>\n\n\n\n<p>But yeah, the goal of the post is just to show that it&#8217;s something that is constantly on the radar. And the goal is to arrive in future releases at even lower numbers. So it&#8217;s not like a one-time initiative. It&#8217;s something that we strive for the better future and for the better performance of websites. And definitely some of the dev notes we mentioned about, one of them is, for instance, about style sheets. And so there are multiple projects that are interconnected.</p>\n\n\n\n<p>So one of the things that with the block themes that come to WordPress 5.9, we have now this way of serving only CSS for the blocks that are actually rendered on the page, which was never a possibility. Like theme authors, they could add CSS styles and you wouldn&#8217;t say if that is needed or not, but it had to be always included. Now we can control that, and that&#8217;s another great improvement that the block paradigm allows. So definitely check this post to see how many benefits the Gutenberg Project brings. And all the work that people are doing on this, which is like&#8230; I would like to thank everyone for getting involved in the work and do that, and for all the people that help to summarize all that, which is like a lot of work.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I imagine it was a lot of work. Speaking of a lot of work for Anne McCarthy, she just posted this week ahead of the release, user documentation for end users about the new features so you can share them with your team, clients and content creators, about the new features that come in and can read up about how they&#8217;re supposed to function. Sometimes iteration misleads us, and sometimes we need to take up the manual.</p>\n\n\n\n<p>At our household, we have a two-prong approach. Every time we get a new device, my husband disappears with the manual and I start pressing buttons. And sooner or later I&#8217;ve come to the end of my knowledge because, yeah, there is a whole new feature there that I don&#8217;t even know how it&#8217;s supposed to work. So having the user end documentation is a huge step forward. And we didn&#8217;t see that in the last four years. End user documentation was always behind the fast paced releases on the block editor. But for this release, there was this urgent need, and I&#8217;m so glad that it happened. That we have some of the end user documentation already there.</p>\n\n\n\n<p>All right. So that&#8217;s, for now, all we have for you around the upcoming WordPress 5.9 release. The reading list is quite long for everyone and we are probably just 90 minutes ahead of you. But we had another release, right?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, there is more. So I think it was yesterday, or on Wednesday, right? On Wednesday. So on Wednesday we had WordPress security release. So we have now WordPress 5.8.3, which is the latest version. And the same changes were applied back to WordPress 3.7, which is what happens usually. And I checked the changes in the release. I didn&#8217;t notice anything related to the block editor, but there were a couple of changes fix it. So yeah, make sure you update your website to the latest one. I hope you already have auto-updates enabled because we asked you for it for so many times.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And if you don&#8217;t patch your site as soon as possible, we urge you. It&#8217;s a security release, so it&#8217;s definitely urgent that you do that.</p>\n\n\n\n<p>Well, there were also two Gutenberg plugin releases during the holiday break. WordPress never sleeps. So we are all going to talk about it now. It&#8217;s not going into WordPress 5.9. Only features from Gutenberg plugins up until 11.9 made it into WordPress 5.9. And only a few bug and interface fixes from later versions have been back-ported to the WordPress 5.9 release. So when we talk about features and new blocks and everything, it&#8217;s not going to be in 5.9. It will be in 6.0. So Grzegorz take us into Gutenberg 12.2. I know you also worked on the new post comment blocks, a major feature to complete the blocks available for themes.</p>\n\n\n\n<h3 id=\"gutenberg-12-2\"><strong>Gutenberg 12.2</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, that&#8217;s right. So first let me say that the Gutenberg 12.2, it was released on December 22 and the release was led by Antoine Vlasenko. And as you mentioned already, there is ongoing work on the still experimental comments query block. And in that release, we added support for pagination, which is the same concept that if you are familiar with the query block, that allows you to display a list of posts. So here it&#8217;s the same concept and it brings the pagination so you can split here. Or if you have a lot of comments, you can split them into pages, and then the navigation. The numbers are just the way of navigating between pages.</p>\n\n\n\n<p>And the other work that was done for the same blog was adding support for nested comments, which some sites they can decide whether you can have threaded responses to comments, to have more granular discussions on some topics. So in general, this feature is now also included, which is the major difference between the query loop, which is just a simple list. And yeah, that&#8217;s something that was added and….</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Mm-hmm. I really like that that is now coming to WordPress, because comments, there was no granular control ever for a site owner for the comments except a few features on and off, and the bad word list kind of thing. But how to handle it with the pagination, with the nested or non-nested way, it definitely gives more control to the site owner that&#8217;s never been there for WordPress before. So thank you for working on that.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. So there&#8217;s a full team working actually. They are a team, so the component that they work on their own framework. All those great folks, they are now working on bringing the interactivity for comments into the WordPress Core, which is amazing. They are doing great job.</p>\n\n\n\n<p>And one more thing that I wanted to mention in here is that you mentioned that the styling for comment, that was really hard. And extending them. There are a lot of filters and functions and helpers, but the way I see that everything, they had to redo it from scratch, and like write their own PHP implementation. And it will give a lot of flexibility for creators.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. So another feature was that the team refactored the handling of the padding for the group and the columns blocks, which it&#8217;s a major improvement, especially for designers and theme developers, because now this refactor kind of lowers the&#8230; It&#8217;s a little bit technical, I&#8217;m sorry, but I think it&#8217;s helpful for the theme developers who are looking at using groups and column blocks in patterns. It lowers the specificity for the CSS, and now you can control padding for both blocks very easily by overriding the CSS in your theme. And an example of that is in the PR. It&#8217;s the PR 37356, if you want to look it up. 37356. The specificity for blocks CSS has always been one of the pain points of nested blocks and more complex blocks, so this definitely reduce it.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, there is also, if you talk technical, there is a change to the template part and there are now filters that allow you to change the loading behavior. Because as you know, like for template part, you can provide with the theme an HTML file, but it&#8217;s something that you can also override so it&#8217;s stored in the database. So this allows plugging authors to change how it behaves and provide their own workarounds, or like improvements.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And it seems that those hooks are also back-ported to 5.9. So that&#8217;s one of the features that made it into the release because it started very, very early in the release.</p>\n\n\n\n<p>All right. The next thing we want to talk about, and believe me, there is a lot of port requests in the changes, so we are really cherry picking things. So the border controls are now how displayed in the tool panel to make it available to the site editor to control all the borders around things. And with this release, switching it to the tools panel, it makes it easier to put it into&#8230; The tool panels were introduced in Gutenberg in 11.3 and they offer a so-called progressive discovery options for all the block supports features. And they&#8217;re still working on improving the user experience. And I like it that it&#8217;s now not all in one display, but you can have sections. So one is the border controls, one is the typography, the other one is appearance or colors. And then there&#8217;s a slide out that gives you then the additional controls for that. So it&#8217;s a much better experience and you are not looking at all the controls all the time. Only when you need them. So that&#8217;s certainly part of it. And the border controls were wanted for so long from the community.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yes. And they also changed the font size picker. So this component has so many enhancements over time. I think like a fifth version of how it behaves. So now we have a change if there is like a bigger number of labels, it shows now numbers. Like 1, 2, 3, 4, 5, and it&#8217;s like when you hover over it, then it shows the name. But the idea is that you can now simplify changing between them because you just move between numbers and just, you see how it looks like. And yeah, I don&#8217;t know how you feel about that as like something you need to test and see how it works for you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I think it&#8217;s important to have end users or content creators look at that again and send us the feedback, because at one point it&#8217;s certainly easier to say, &#8220;Okay, I want the first level, second level, third level, fourth level, fifth level,&#8221; kind of in a&#8230; But it has, the numbers have nothing to do with the size of it in the pixel size. But it&#8217;s definitely easier to understand the hierarchy than the earlier ones with &#8220;small, large, huge, very large,&#8221; kind of where the labels were a bit arbitrary, but the hierarchy wasn&#8217;t really particularly clear. Yeah. It&#8217;s definitely a work in progress and it could use some user feedback there, definitely. Yeah.</p>\n\n\n\n<p>Another feature enhancement was that most components are now iterated in getting to reducing the sidebar clutter, also in the tools panel includes now the custom color implementation that takes advantage of the new dropdown-based color picker. And it seems to be improving the UI quite a bit. And I like it very much. And now many of the components, many of the blocks are actually using that. And so we&#8217;ll see about that. That&#8217;s why it&#8217;s released in the plugin and not yet in WordPress, because the developers definitely need some user feedback in if it makes life easier and how to improve it.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. There are also some changes to the site editor. And if you weren&#8217;t aware, so when you have the block theme enabled, then you won&#8217;t see the customizer link in the appearance menu. However, there are some plugins that require that feature. Like woo commerce is one of them. So the change was to detect that case and show back this link to the customizer when it&#8217;s very necessary. I&#8217;m not sure if that was a big part of the WordPress 5.9. Yeah. I commented on the PR, so we&#8217;ll find out about that soon. But yeah, it seems like something that was missed in the process.</p>\n\n\n\n<p>The other change is that before when you would like to switch between templates when being undecided. So for instance, when you were on the single post template and you wanted to go to the home template, then you would have to click and go to like have a full page refresh, go to another page, then load the list of templates, pick your template, it will refresh again, reload everything. Now it was vastly improved because it uses a client-side routine, so everything happens with JavaScript, which like speeds up the process a lot and is much more user friendly, in my opinion, at the moment.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, thank you. And so there was also a change in the scripts to enact fast refresh for the block development. I saw that and I thought that was also part of the changing how re-render from upon changes the components and the block editor work. Is that a fair assessment or am I missing something?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: No, it&#8217;s purely for blog development and that is still not published to NPM to the WordPress scripts tool and should happen in the upcoming days. But the idea is, because this is the feature that was implemented for react, which basically it&#8217;s a mix of few techniques. And the idea is that when you change something in your source code and you have built in the watch mode, so that means that it picks up all your changes from the code when they are saved. This allows you to, in the browser, to update the code on the fly and you don&#8217;t have to refresh anything. You will see all the changes immediately. And that applies to JavaScript, but also to CSS, which brings a really nice experience that, blog developers should take advantage of in the new future.</p>\n\n\n\n<p>So yeah, I&#8217;m really excited about that one. And yeah, I can see for the feedback from people and how they like it, and how it should evolve.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Yeah. So increasing the developer experience is definitely a good way to, now that all the foundations are in, to get that even more prominent.&nbsp;</p>\n\n\n\n<h3 id=\"bug-fixes\"><strong>Bug Fixes</strong></h3>\n\n\n\n<p>And then there were a ton of bug fixes in the release 12.2. And we only wanted to point out one that is coming to the query loop, or that came to the query loop, that uses a used block preview component. And that fixes the alignment of the query loop block editor. So the block preview is that when you hover over the patterns in the placeholder, that you actually see how it all works and it&#8217;s now implemented for the query loop.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: So yeah, but this is something like, this is a place where there was a code reuse. The feature is excerpt from the inserter, but also in other places. And this particular it&#8217;s the query loop, so when you have a list of posts. And the issue was that sometimes when you had multiple inner blocks and that selecting them would have some bad side effects. In this particular, the alignment wouldn&#8217;t be properly applied. So when you would like pick for your query loop, wide alignment, but the parent alignment would be different, it didn&#8217;t quite work well. So that&#8217;s fixed now and this is going to be in the WordPress 5.9 release as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh good. Good, good.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Actually, there&#8217;s one more thing I want to talk about, which is in the site editor, there was an issue with the order of including templates. In the case when you would have a child theme, so it became a bit complex because you could have the case when your parent theme would have HTML template in the block theme, but your child theme would override that with a PHP file, like in the classic theme. So now it&#8217;s fixed that if your theme defines this PHP file, it will take precedence over the HTML, which is like, when you have a block theme, it&#8217;s the opposite. Like the HTML take precedence. So it&#8217;s like some complex edge case, but fortunately it was fixed sometime.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Excellent. Yeah. Thanks for pointing that out. And then I think there&#8217;s another one in the block editor where the team fixed the content loss when ungrouping template parts or reusable blocks. So there was some edge cases where content was lost when you changed the order of blocks, or make a group block disseminated into the single blocks. The same with reusable blocks. So that is definitely fixed and a lot of users will probably issue a sigh of relief for that, finally.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. You could always use undo button, but it&#8217;s always the worst experience when your content disappears suddenly and you don&#8217;t know why.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. It&#8217;s heart attack inducing. Yeah. Or at least adrenalin shots. Yeah. There was quite a few documentation updates. Nothing really stood out, but definitely go through the list. If you are missing some documentation, it might have been already issued. And I&#8217;m just only skipping over that because we have another release to go to and we are pressed for time in this.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah I think we can go.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Scrolling, scrolling, scrolling. Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: There is so big. I think we can go to Gutenberg 12.3, because we could spend a lot more time on that.</p>\n\n\n\n<h3 id=\"gutenberg-12-3\"><strong>Gutenberg 12.3</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, definitely. And so Gutenberg 12.3 was released on Wednesday, January 5th and the release was led by Luis Herranz. And he also published a new post. And I know that you were also working more on the Gutenberg 12.3, Grzegorz. Do you want to start out with the new features there?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, sure. So this release was much smaller, mostly because as I mentioned at the beginning, so many people were away from keyboard, enjoying some time with friends and family. But still there was a couple of interesting features added. So some of them you know already, if you are listening to our podcasts. So to the group block, which also has the variation for the row, there was added gap support. Which gap support is the space that you can control between several blocks that are inside this block.</p>\n\n\n\n<p>And the other feature is typographic support that I mentioned when we were answering the questions. So yeah, that is now possible. It&#8217;s quite nice. I like that. Especially the typographic ones. Like you can like change the typography for a couple of blocks and that applies not only to paragraphs, but to other things that support typography.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And one note is that the new gap setting is also available to the row variation of the group block, which was added in 11.5. But it&#8217;s added horizontally instead of vertically, so it gives you a lot more options to customize your layout. Then there was a new block. It&#8217;s the new author name block, and it&#8217;s part of the effort to split the post author block and to separate blocks to allow even more granular layout options for themes. And theme developers were kind of complaining that there wasn&#8217;t enough flexibility there, and it now has been released. This means you have extra options to customize the author name to your liking.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. And there is a plan to add author bio and author avatar, so that will give like more options. And this one was also inspired by the implementation of the comments query block, which got another two blocks which are related to the pagination. And one of them is next, and obviously the other one is previous. Although they might be renamed to &#8220;older&#8221; and &#8220;newer&#8221; because this is how you usually see them in the existing classic themes. And that was a very exciting milestone because that means that all blocks that were planned for this block are already in place and you can test all of them.</p>\n\n\n\n<p>However, I just want to mention that it&#8217;s still experimental. It means that some of the features, especially for settings for the sites that exist already in WordPress are still being applied. And it&#8217;s quite complex task, so I expect that it might take some more time. However, it&#8217;s like the most important part, which is how to style those blocks is already there. So definitely check it out. If you don&#8217;t like the block that it&#8217;s called post comments block that is already there, that eventually will be replaced with the new one.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Yeah. Yeah, there is also a tracking issue available on GitHub with the upcoming changes. So there is the new and older that you mentioned name for the pagination blocks, forwards and backwards. And then also how the pagination is handled with comments with replies, that&#8217;s still in the works. There&#8217;s also something in the works for the block placeholders that will be created similar to the query loop. So you have different combinations that you can get out of the box. And a few bug fixes. So yeah, it&#8217;s definitely the first version. It&#8217;s a working version, but nothing is perfect and it can always be improved on.</p>\n\n\n\n<h3 id=\"enhancements\"><strong>Enhancements</strong></h3>\n\n\n\n<p>So in the 12.3, there were also enhancements to the block library. And I want to point out the one for the site logo. And the site logo block now has an option to also set the site icon from the site logo block settings. That&#8217;s one of the features that actually were coming through the customizer and it&#8217;s very important to get some parity with it. Site icons, just in case you&#8217;re not aware of it, all the little icons that you see in browser bookmarks, or in tabs, or within the mobile app. So it&#8217;s quite of identify the site in open tabs. Which I have now open, I don&#8217;t know, 30 per window, and now having a site icon definitely helps me find the right one.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, this one is a little bit surprising for me the way it&#8217;s implemented, because this is a toggle button that is inside the sidebar. So when Luis was working on the release post, we discussed that one because we couldn&#8217;t quite understand how it works exactly. I mean, it makes a lot of sense how it ended up being implemented. But the confusing part was that when someone changes the site icon in a different place and that&#8217;s&#8230; You need to refresh the page to see that it&#8217;s no longer set as the default one. So that&#8217;s something that might confuse some people.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Yeah, I can see that that&#8217;s happening. It&#8217;s always the time when you have the synchronization issues kind of….</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, between the classic and the new block editor. And I think there&#8217;s a similar problem, I would say, with the navigation block. When you have existing menus that coming into the navigation block, when you change them, it&#8217;s not going to change the existing one. It&#8217;s creating a new record and all that. I think there is no really good way to do this, but it will be at first a little bit confusing to some users. The same when you go back from block editor to classic editor in your post. It doesn&#8217;t work switching back and forth. So once you decide going one way, might want to stick to it.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. But because like, from my perspective, the biggest challenge is that when you see toggle, you expect that once you toggle it, it will remain like in this state, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Mm-hmm.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: However, it&#8217;s not the case here.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Yeah. And you can change it through the customizer again, and then it&#8217;s not showing up on the side logo block. Yeah, that is a disconnect there.</p>\n\n\n\n<p>The next feature, we already talked about. That&#8217;s the paragraph to add font family support. Again, shout out to Jessica who raised the question on Twitter. And I was so happy that we could point to this pull request.</p>\n\n\n\n<p>Then the next one is the comments template now has also comments pagination. That&#8217;s all part of the comments query block in a template. So there&#8217;s, I don&#8217;t think more to talk about that what you already told us.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, I think when you insert the comments query loop, it&#8217;ll just show you all the available inner blocks. That&#8217;s the biggest change here. And in the future, I would expect that it&#8217;ll look more like the query loop, that you have this option to pick one of the existing quick templates, or just go to the pattern selector and just see whatever is there and pick the one that suits you best.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s wonderful. Thank you. And then one of the most popular blocks is the spacer block, and it now has custom units for height and width. So you can do it in EMs, in REMs. You can do it in viewport width and viewport heights. So a lot of people asked for that, especially theme builders or site builders that control their site through the interface and are not working with code.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I&#8217;m curious what&#8217;s the future of this block, because now we have all those spacing options that you could pick like top margin or bottom margin, and then this block might not have the future at all.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, I think it does because it&#8217;s an easy way to, so you don&#8217;t have to space out both of it. Yeah, you&#8217;re just going to put a space and continue working on your content. Just because when you&#8217;re having two blocks bump up against each other, you don&#8217;t have to think about which one do I have to change, and where do I change it? So you just going to put the space out block in there. It has a default of I think 40 pixels. You can change the default to 20 pixels, and then every time you use the spacer block, it&#8217;s the same.</p>\n\n\n\n<p>So I think it has a future for fast power users that got accustomed to it. The custom units for height and width definitely help you also for the theme JSON to have default values for that. But other than that, a content creator definitely seems to love that because they&#8217;re not always in control of the theme. Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I know that is highly popular block. Like when I saw some stats a few months back, it was on the seventh place from the most popular blocks. Which was quite surprising, but now I get your point.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I was surprised when I saw that too, but that has been for the last four years. So it definitely is good that padding and margin controls are in, but they only came in in 2021. So that&#8217;s where also a lot of muscle memory is in there to use the spacer block just instead.</p>\n\n\n\n<h3 id=\"bug-fixes-1\"><strong>Bug Fixes</strong></h3>\n\n\n\n<p>So, there are quite a few other enhancements. We will, however, jump over them and go to one of the bug fixes that restrict the navigation permission and show the UI warning if it cannot create it. So there was one in the testing of WordPress 5.9 that came out that the navigation block or menu is actually restricted for non-admin users, but the block editor wouldn&#8217;t behave well for that. And now it&#8217;s definitely clear that only admins can create navigation menus. And there is, instead of just a loading spinner that doesn&#8217;t go anywhere, it now has a UI warning that the permissions are not the right ones. So that&#8217;s definitely&#8230; and that was also patched back to WordPress 5.9, if I&#8217;m not mistaken.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. It would give you a false feeling that you can do too much, but it looks like&#8230; And more like the approach they took, that it only allows you to pick one of the existing menus is pretty nice.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Yeah. What else do we want to pick out from there? So there is an update in the multi-editing saving. Do you have any more information about that? On the post editor?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: No.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, when the publish button was clicked and not always the multi-editing. When multi-editing saving needs to happen, it wouldn&#8217;t then go further to the post publish panel to actually publish a post. It would just save the multi-editing, but not publish a post. I think that was a problem. Or when you want to switch off saying, &#8220;Oh, I changed the header. I didn&#8217;t want to do this.&#8221; And then you check it off in the multi-editing saving, and still wanted to publish it. I think that was a problem.</p>\n\n\n\n<h3 id=\"documentation\"><strong>Documentation</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. And that brings us to the documentation section. And here we have a new page that was other than that one is for Core block. So now we have a new tool in place that generates some basic characteristics for all Core blocks that exist there. So that&#8217;s good for theme authors because now they can check all the blocks, and they can easily look for the features they have. Like all these block supports, like typography, spacing, borders, whatever. And yeah, I expect that this page will get much better over time, because this is just the beginning. But now that we have, feedback from everyone would be very much appreciated because it will help to shape that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And I can see that it&#8217;s not only usable for theme developers. Plugin developers are absolutely happy about that too, because they also see all the attributes that come with each block and can decide right there how the extensions would work if they want to extend existing blocks. And can have a complete, and I think that&#8217;s the operating, or the executive kind of word there. Complete block reference of all the Core blocks coming from the block JSON file in the block. So it&#8217;s definitely an improvement of the documentation.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. Now that we have that, it also would be great to include that information when block was included in WordPress Core. So people can have a good expectation, because some of those blocks are still in experimental phase. Some of them, they&#8217;re becoming new WordPress 5.9. And some of them exist from the very beginning.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Exactly. Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. And there was also a change in the handbook. So there is a lot of code examples, and so far they had two versions. One of them was called ES.Next and the other one was called ES5. And that has changed now, because the distinction that existed before was mostly because IE 11, it could support only older version of JavaScript. And these days, all the browsers that work with supports, they work with ES.Next, so this wasn&#8217;t working well. So now the distinction is between JSX, which also translates to the code examples that require a build step. And then other one is called plain, which basically you can copy and paste into your browser some of those examples, and they should just work. So, yeah.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, definitely. Yeah. Excellent. Yeah. So it lowers the barrier of entry for someone who&#8217;s not yet completely familiar or comfortable with JSX to see other code examples here. But JSX is mostly coming from the React framework, but you can also write blocks in plain vanilla JavaScript, as it&#8217;s called. I think that was the name I was trying to find. Okay.</p>\n\n\n\n<p>So I think that concludes our dive into the change log of the 12.3 Gutenberg plugin release from this week.&nbsp;</p>\n\n\n\n<h3 id=\"what-s-in-active-development-or-discussed\"><strong>What’s in Active Development or Discussed</strong></h3>\n\n\n\n<p>We&#8217;re coming to the section of what&#8217;s in active development. And I just wanted to give a shout to your proposal, Grzegorz, on changing&#8230; You were the one who published the proposal, but of course it comes from the Core JavaScript group, on changing the JavaScript coding standards. So Prettier, and can be used also out of the box instead of using the WordPress own version of it. Do you want to explain a little bit more about that?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. So first of all, Prettier, this is the tool that we use in the Gutenberg project to format the code so it looks the same no matter what your style preference is. So that helps us a lot to decrease the number of changes in the PRs that were purely about wide spaces or stuff like that. And also improve the speed of code review because now you can focus on the code. And, the thing is that it was, I think two years ago, when we introduced this tool. We couldn&#8217;t use the official one that is big open source project and is widely used by the JavaScript community because WordPress has different opinions about spacing around brackets and parents. So we respected that and we used form that automatic was maintaining.</p>\n\n\n\n<p>But in the last year there were not any updates. And in the meantime, we started using that tool because it&#8217;s so powerful. It also works with CSS, markdown, XML, JSON, and the list is so long. There is even experimental version for PHP. We don&#8217;t want to go in the PHP route. Like it&#8217;s too much, but for other things, we started applying that and it&#8217;s so fantastic. Like makes everything so much easier. And for me, the biggest, the most like powerful thing is that when you format markdown files, it also can edit CSS, snippets, JavaScript snippets, and it applies formatting to them according to the rules you specify for this language. So it&#8217;s like, wow. So it can do that.</p>\n\n\n\n<p>So yeah, we just need to use the full power of the tool. But it&#8217;s a hard decision because like nobody wants to change the coding styles that&#8230; I, myself, I&#8217;m familiar with this existing coding style for nearly seven years. And I&#8217;m fine with that. I&#8217;ve been using them for so long, so it&#8217;s not that I want that. It&#8217;s just like the benefits, in my opinion. And as far as the feedback goes so far, for many people the benefits are much bigger than, the need to change those styles and reformatting many projects. But it&#8217;s a hard decision, so we are waiting for the feedback from the community before we take any further steps.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes. And if you want to get even more detailed, we will have the link to it in our show notes. And also, yeah, comment and let the team know what you think about that. I find it, yeah, if it&#8217;s inclusion more JavaScript and gets WordPress more into what the bigger JavaScript community is doing, it&#8217;s one thing. It also takes care of TypeScript, I understood. And some of the underlying code of Gutenberg is written in TypeScript, so it helps also new contributors coming to the project.</p>\n\n\n\n<p>Although I&#8217;m not that into that coding, but Prettier is definitely a nice tool, especially for beginners to make sure that your code is right, and to find all the quirks and syntax problems that you inadvertently introduced before you have a build done. So yeah, definitely all for it. And I need to add my comments to that as well. But yeah, so that is in the works. And how long is the comment? It&#8217;s about three weeks, I think. The comment time for that.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Okay. So initially I set the deadline for three weeks. However, there was a comment from Google that it should extended. And I&#8217;m fine with that. It&#8217;s like, whatever the committee decides. Let&#8217;s say a few weeks from now to make the decision.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Yeah. All right, so this concludes our Gutenberg Changelog episode 58. It&#8217;s 5.8. No, it&#8217;s 58, sorry. And I want to remind everyone there is actually, if you want to learn more about full site editing and what&#8217;s coming to 5.9, the meetup of Boulder, Colorado has a panel discussion coming up on Monday the 17th at 6:00 PM Mountain Time. That&#8217;s 8:00 PM Eastern, and 1:00 AM, sorry Europeans, UTC. And of course we have the link in the show notes. But the panel is Brian Gardner from WP Engine, developer advocate, and a theme developer by heart. Courtney Robertson, she is a developer advocate at GoDaddy Pro, and she&#8217;s also part of the WordPress training team that brings you all those nice new courses and workshops and social learning spaces. And yours truly. And I will be on the panel too.</p>\n\n\n\n<p>So if you want to join us and get your questions answered, panel discussion, WordPress Meetup, Boulder, Colorado. January 17th at 6:00 PM, Mountain time, 8:00 PM Eastern, and 1:00 AM UTC. And if you have any things that you&#8217;re not able to go there because of the late night, just have your question or so in the comments on the meetup page, and we&#8217;ll take it in onto our panel.</p>\n\n\n\n<p>Shout to Angela Bowman, who is the meetup organizer of that meetup. And I thank her for the invitation and the preparation for that. All right. Do you have anything that you want people to know, Grzegorz, off the top of your head?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: No, just when you said 5.8, a piece of number, just like I told that next in two weeks, we will be very close to WordPress 5.9 and we will be recording Gutenberg Changelog number 59, which is quite a nice coincidence.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s awesome. Yeah, you&#8217;re right. I didn&#8217;t realize that. So our next recording will be on January 21st. So that&#8217;s about four days before WordPress 5.9 is going to be released. All right.</p>\n\n\n\n<p>So as always, if you listen to the shows and you like it, it would be really helpful to have a review on the places where you&#8230; like Stitcher, or iTunes, or Google. If you write us a review, it will be really fantastic because it also helps us with the distribution of the podcast. And we always want to get in contact with you.</p>\n\n\n\n<p>Again, if you have questions, ping and Grzegorz on Twitter, or myself, or Gutenberg Times. @gutenbergtimes on Twitter. Or send us your questions or suggestions or news to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. The show notes will be on gutenbergtimes.com/podcast. And this is, as we mentioned, episode 58.</p>\n\n\n\n<p>So thank you, Greg, for another great show. We covered a lot, and I hope you have a wonderful next two weeks. And I will get back to Florida to the warmer weather, which I really like, and I really long for.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I can only imagine, yeah. So thank you everyone. Thank you, Birgit. And hopefully we see in two weeks, so we don&#8217;t have to wait so long to record the next episode.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right, you all take care. Bye-bye now.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Bye.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 08 Jan 2022 20:00:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:150:\"Gutenberg Times: Block Template for Custom Post Types, Reading list for WordPress 5.9, Grainy Gradient block and so much more – Weekend edition #198\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=19918\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://gutenbergtimes.com/block-template-for-custom-post-type-weekend-edition-198/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:28374:\"<p><strong>Happy New Year!&nbsp;</strong>🎆 🙌 🎉🥂</p>\n\n\n\n<p>I hope you all had wonderful time over the Holidays and you didn&#8217;t have to work. And if you had to work, that it was quiet time for reflection, catch-up and strategic planning. At Whistler, we encountered -21&nbsp;°C (-5.8&nbsp;°F) weather and this Florida Weather wimp had to put on about 15 pounds (ca. 7 kg) of layered clothes to feel warm enough to go outside. It is easy to forget what Real Winter feels like. I also was pretty amazed how fast one can adapt to anything, given enough time.</p>\n\n\n\n<p>After a day and a half, we were ready to head up to the top of the mountain and all the suffering was definitely worth it. Look at the view! </p>\n\n\n\n<img />Whistler &#8211; View from the Top (Photo by Birgit Pauli-Haack)\n\n\n\n<p>Before I get out of the way of the curated list of fabulous Gutenberg content,  I want to express my wishes for you and the New Year: Good health, stay safe, prosperity, lots of laughter and loads of love for you and yours. </p>\n\n\n\n<p>Yours, 💕<br />Birgit </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\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/#block-editor-related-devnotes-for-wordpress-5-9\">Block Editor related DevNotes for WordPress 5.9 </a></li><li><a href=\"https://gutenbergtimes.com/feed/#gutenberg-plugin-12-2-and-12-3\">Gutenberg Plugin 12.2 and 12.3</a></li><li><a href=\"https://gutenbergtimes.com/feed/#developing-for-gutenberg-and-block-building\">Developing for Gutenberg and Block Building</a></li><li><a href=\"https://gutenbergtimes.com/feed/#updates-for-designers-and-theme-developers\">Updates for Designers and Theme Developers</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#getting-started-with-block-theme-development\">Getting Started with Block Theme development</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#tools-for-site-builders-and-content-creators\">Tools for Site Builders and content creators</a></li><li><a href=\"https://gutenbergtimes.com/feed/#upcoming-wordpress-events\">Upcoming WordPress Events</a></li></ul></div>\n\n\n\n\n<p>In the <a href=\"https://poststatus.com/excerpt/39/\"><strong>39th episode of the Post Status Excerpt Podcast</strong></a> guest <strong>Anne McCarthy</strong> talked with <strong>David Bisset</strong> about the delay of WordPress 5.9, Automattic, COVID’s impact on contributors, Full Site Editing, and the future of the Customizer.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>There&#8217;s a new <strong>Hallway Chats</strong> episode! <a href=\"https://hallwaychats.com/episodes/episode-156-a-chat-with-tammie-lister/\"><strong>Topher and Cate DeRosia sat with Tammie Lister</strong></a>, Senior Product Designer at XWP, and talked about what it means to be a web designer these days, as well as how Gutenberg and the WordPress editor are changing and growing.</p>\n\n\n\n<h2 id=\"block-editor-related-devnotes-for-wordpress-5-9\">Block Editor related DevNotes for WordPress 5.9 </h2>\n\n\n\n<p>About Themes</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/01/07/theme-focused-changes-and-filters-in-wordpress-5-9/\">Theme-focused changes and filters in WordPress 5.9</a> </li><li><a href=\"https://make.wordpress.org/core/2022/01/07/state-of-the-customizer-with-block-themes-in-wordpress-5-9/\">State of the Customizer with block themes in WordPress 5.9</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/05/bundled-theme-updates-with-wordpress-5-9/\">Bundled theme updates with WordPress 5.9</a> </li><li><a href=\"https://make.wordpress.org/core/2022/01/04/block-themes-a-new-way-to-build-themes-in-wordpress-5-9/\">Block themes, a new way to build themes in WordPress 5.9</a> </li><li><a href=\"https://make.wordpress.org/core/2022/01/08/updates-for-settings-styles-and-theme-json/\">Updates for Settings, Styles, and theme.json</a></li></ul>\n\n\n\n<p>Block Building and extending Gutenberg</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/01/04/new-api-to-access-global-settings-styles/\">New API to access global settings &amp; styles</a> </li><li><a href=\"https://make.wordpress.org/core/2022/01/04/miscellaneous-block-editor-changes-in-wordpress-5-9/\">Miscellaneous block editor changes in WordPress 5.9</a> </li><li><a href=\"https://make.wordpress.org/core/2021/12/28/take-more-control-over-inner-block-areas-as-a-block-developer/\">Take more control over Inner Block Areas (as a block developer)</a> </li><li><a href=\"https://make.wordpress.org/core/2021/12/15/using-multiple-stylesheets-per-block/\"></a><a href=\"https://make.wordpress.org/core/2021/12/15/using-multiple-stylesheets-per-block/\">Using multiple stylesheets per block</a></li><li><a href=\"https://make.wordpress.org/core/2021/12/13/posts-post-types-and-taxonomy-changes-in-wordpress-5-9/\">Posts, Post types and Taxonomy changes in WordPress&nbsp;5.9</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/08/locking-blocks-in-wordpress-5-9/\">Locking Blocks in WordPress 5.9</a></li></ul>\n\n\n\n<p>New Blocks</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/01/07/the-new-navigation-block/\">The new Navigation block</a></li><li><a href=\"https://make.wordpress.org/core/2021/08/20/gallery-block-refactor-dev-note/\">Gallery Block Refactor Dev Note</a> </li></ul>\n\n\n\n<p>WordPress 5.9 Release Candidate was released on Tuesday, January 4th, 2022 and the version is on schedule to be released on January 25, 2022. </p>\n\n\n\n<p>If you have a some spare time, <strong>Anne McCarthy </strong>has great instructions and topics on how you can <a href=\"https://make.wordpress.org/test/2021/11/30/help-test-wordpress-5-9-features/\">Help test WordPress 5.9 Features</a>. It&#8217;s a huge release and test can help. </p>\n\n\n\n<p><em>A <a href=\"https://gutenbergtimes.com/whats-new-in-wordpress-5-9-a-reading-list-on-full-site-editing-and-block-themes/\"><strong>full reading list</strong> </a>about the Block editor updates for WordPress 5.9 for developers, site builders and content creators is in the works. <a href=\"https://gutenbergtimes.com/whats-new-in-wordpress-5-9-a-reading-list-on-full-site-editing-and-block-themes/\">You can start reading here.</a></em><br /></p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<h2 id=\"gutenberg-plugin-12-2-and-12-3\">Gutenberg Plugin 12.2 and 12.3</h2>\n\n\n\n<p>Only Gutenberg features and enhancements until version 11.9 made it into the WordPress 5.9 version. Only Bug and UI fixes to existing features of later Gutenberg plugin version were backported to WordPress 5.9 </p>\n\n\n\n<p><strong>Anton Vlasenko </strong>published the release notes: <a href=\"https://make.wordpress.org/core/2021/12/22/whats-new-in-gutenberg-12-2-22-december/\">What’s new in Gutenberg 12.2? (22 December)</a>&nbsp;and points out as highlight the following: </p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2021/12/22/whats-new-in-gutenberg-12-2-22-december/#seamless-navigation-between-the-site-editor-and-the-template-list\">Seamless navigation between the Site Editor and the Template List</a></li><li><a href=\"https://make.wordpress.org/core/2021/12/22/whats-new-in-gutenberg-12-2-22-december/#improvements-to-post-comments\">Improvements to post comments</a></li><li><a href=\"https://make.wordpress.org/core/2021/12/22/whats-new-in-gutenberg-12-2-22-december/#a-new-home-for-border-controls\">A new home for border controls</a></li><li><a href=\"https://make.wordpress.org/core/2021/12/22/whats-new-in-gutenberg-12-2-22-december/#new-font-sizes-in-the-fontsizepicker-component\">New font sizes in the&nbsp;<code>FontSizePicker</code>&nbsp;component</a></li><li><a href=\"https://make.wordpress.org/core/2021/12/22/whats-new-in-gutenberg-12-2-22-december/#improved-color-picker\">Improved color picker</a></li><li><a href=\"https://make.wordpress.org/core/2021/12/22/whats-new-in-gutenberg-12-2-22-december/#preview-for-block-styles-in-the-widget-editor\">Preview for Block Styles in the Widget Editor</a></li></ul>\n\n\n\n<p>Justin Tadlock gave it a whirl in his post <a href=\"https://wptavern.com/gutenberg-12-2-focuses-on-user-experience-improvements\"><strong>Gutenberg 12.2 Focuses on User Experience Improvements</strong></a>. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><a href=\"https://twitter.com/luisherranz\"><strong>Luis Herranz</strong></a> released Gutenberg 12.3 and published the release notes on January 5th, 2021: <a href=\"https://make.wordpress.org/core/2022/01/05/whats-new-in-gutenberg-12-3-5-january/\"><strong>What’s new in Gutenberg 12.3? (5 January)</strong></a>. </p>\n\n\n\n<p>Highlighted PRs are listed as follows. </p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/01/05/whats-new-in-gutenberg-12-3-5-january/#new-blocks-to-build-with\">New blocks to build with</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/05/whats-new-in-gutenberg-12-3-5-january/#more-controls-to-customize\">More controls</a> for Spacer and Group Blocks</li><li><a href=\"https://make.wordpress.org/core/2022/01/05/whats-new-in-gutenberg-12-3-5-january/#set-your-site-icon-using-the-site-logo-block\">Set your site icon using the Site Logo block</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/05/whats-new-in-gutenberg-12-3-5-january/#restrict-navigation-menu-creation-for-non-admin-users\">Restrict Navigation Menu creation for non-admin users</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/05/whats-new-in-gutenberg-12-3-5-january/#core-blocks-reference\">Core Blocks Reference</a></li></ul>\n\n\n\n<p>The last bullet point references the new Handbook page Core Block Reference and it is a big step forward to a complete and updated documentation of the core blocks. The blocks&#8217; block.json information feeds into this page automatically. </p>\n\n\n\n<p><strong>Justin Tadlock</strong> wrote about it in <a href=\"https://wptavern.com/gutenberg-12-3-introduces-new-blocks-design-options-and-a-complete-core-blocks-reference\"><strong>Gutenberg 12.3 Introduces New Blocks, Design Options, and a Complete Core Blocks Reference</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Grzegorz Ziolkowski</strong> and I recorded the <strong><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-58-devnotes-for-full-site-editing/\">58th Gutenberg Changelog</a></strong> episode on Friday, January 7th, 2022. We talk about WordPress 5.9 release and DevNotes for Full-site Editing and block themes, and Gutenberg 12.2 and 12.3. We also, answered listener questions, this time by <a href=\"https://twitter.com/adityakane\">Aditya Kane</a> and <a href=\"https://twitter.com/jessicalyschik\">Jessica Lyschik</a>. </p>\n\n\n\n<h2 id=\"developing-for-gutenberg-and-block-building\">Developing for Gutenberg and Block Building</h2>\n\n\n\n<p>For those among us, who still rely on ACF for site data handling, <strong><a href=\"https://twitter.com/Joey_Farruggio\">Joey Farruggio</a></strong> built a command line tool to streamline the ACF blocks creation. You can read more about the context and the making of the CLI and what you can delegate to a script. <a href=\"https://github.com/joseph-farruggio/create-acf-block\">The <strong>Create-ACF-Block CLI code</strong> </a>is available on GitHub. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Speaking of scaffolding blocks, the <strong>official WordPress create-block</strong> received and update, too. Once you are done with developing your plugin, you can automatically assemble the plugin.zip that you can upload to WordPress or share with other users via the plugin directory. Here is a short blog post about it: <a href=\"https://icodeforapurpose.com/run-plugin-zip-for-create-block/\"><strong>Run plugin.zip for create-block</strong></a>. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In his <a href=\"https://twitter.com/ryanwelcher/status/1478737187738894339\">tweet</a>, <strong><a href=\"https://twitter.com/ryanwelcher\">Ryan Welcher</a></strong> pointed to the most recent Block Plugin Checker updates. When you submit your single block plugin to the directory, the Plugin Checker now validates against the block.json schema and also has a check for unique plugin namespaces as well. You can read about the details in this trac ticket: <strong><a href=\"https://meta.trac.wordpress.org/ticket/5303\">Block plugin validation tool UI improvements</a></strong>. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Only tangentially related to the block editor, <strong><a href=\"https://twitter.com/gziolo\">Grzegorz Ziolkowski</a></strong> published for the Core JavaScript team a proposal on <a href=\"https://make.wordpress.org/core/2022/01/05/proposal-changes-to-javascript-coding-standards-for-full-prettier-compatibility/\"><strong>Changes to JavaScript Coding Standards for Full Prettier Compatibility</strong></a>. Several contributor and developers have already commented. Let you opinion heard. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In his post, <a href=\"https://carlosbravo.blog/2021/01/07/how-advanced-custom-fields-handle-blocks/\"><strong>How Advanced Custom Fields handle&nbsp;blocks</strong></a>, <strong><a href=\"https://twitter.com/c4rl0sbr4v0\">Carlo Bravo</a></strong>, discusses how you can create blocks with ACF (the plugin Advanced Custom Fields), what advantage is has and what downsides are for the users of such blocks. If you try to decide to invest in learning how to create dynamic blocks or ACF Blocks it&#8217;s a great article to start the process. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><a href=\"https://twitter.com/CometMarie\"><strong>Marie Comet</strong></a> explains in her post <a href=\"https://mariecomet.fr/en/2021/12/14/adding-options-controls-existing-gutenberg-block/\"><strong>Adding options and controls to an existing Gutenberg block</strong></a>, how to extend core blocks with an additional button in its Toolbar or  more option controls in the sidebar. Sometimes extending existing blocks is faster than recreating features via Custom Blocks. </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=\"updates-for-designers-and-theme-developers\">Updates for Designers and Theme Developers</h2>\n\n\n\n<p>Apart from the list of developer notes and reading list, <strong><a href=\"https://twitter.com/angelasjin\">Angela Jin</a></strong> published a <a href=\"https://make.wordpress.org/core/2022/01/03/proposal-approving-block-pattern-directory-submissions/\"><strong>Proposal for Approving Block Patterns Submissions to the directory</strong></a>. If you are a designer, or theme developer it might be interesting for you, and you might have an opinion how submissions should be curated on the official WordPress repository. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Speaking of the WordPress repository, <strong><a href=\"https://twitter.com/m_munirkamal\">Munir Kamal</a> </strong>created his idea of a Theme directory via the Gutenberg Hub: <a href=\"https://gutenberghub.com/re-imagined-wordpress-themes-directory/\"><strong>Re-Imagined WordPress themes directory</strong></a>. I really like the way how themes details on color schema, typography, and block styles can be surfaced to a Theme directory page. Kamal was right when he wrote: &#8220;This makes it much easier to find the theme that’s right for you without having to download and test multiple themes.&#8221; </p>\n\n\n\n<p><strong>Justin Tadlock</strong> at the WPTavern also took a look and wrote: &#8220;In the dawn of the block theme era, the WordPress theme directory could use a reimagining.&#8221; <a href=\"https://wptavern.com/gutenberg-hub-launches-a-block-based-wordpress-theme-directory\">The rest of the article is ready for your purusal</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/carolinapoena\">Carolina Nymark</a>,</strong> write and developer on Fullsiteediting.com has a tutorial for you on <a href=\"https://fullsiteediting.com/lessons/creating-block-templates-for-custom-post-types/\"><strong>how to use a php template to create a block template for Custom Post Type</strong></a>. Given how often I see the question on what about Custom Post Types, this is a very timely tutorial for Theme Developers. Nymark wrote: &#8220;The main pain point is that people are expecting to be able to create this type of template via the new&nbsp;<strong>Site Editor</strong>&nbsp;interface. This is a reasonable expectation, unfortunately&nbsp;<a href=\"https://github.com/WordPress/gutenberg/issues/37407\">the feature is not complete yet</a>&nbsp;and not included in WordPress 5.9.0.&#8221;. In her post she shows you a viable workaround, that doesn&#8217;t leave you with too much technical debt. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/carlodaniele\">Carlo Daniele</a></strong> took a <a href=\"https://kinsta.com/blog/twenty-twenty-two-theme/\"><strong>Deep Dive into Twenty Twenty-Two and WordPress Block Themes</strong></a> for Kinsta. The article describes the upcoming new WordPress default theme, that will be the first default block Theme. Kjell Reigstad and Jeff Ong worked on the design and development. The Theme will come out bundled with WordPress 5.9 </p>\n\n\n\n<h3 id=\"getting-started-with-block-theme-development\">Getting Started with Block Theme development</h3>\n\n\n\n<p>If you like to get started on block theme development, there are a few choices depending on how you want to learn. </p>\n\n\n\n<p>The <strong>Developer Handbook on WordPress.org</strong> hold all the documentation about <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/themes/block-theme-overview/\">Block Themes</a>. You start at the  Overview page, then walk along the <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/themes/create-block-theme/\">Create a Block Theme </a>tutorial to learn more about the templates, template parts, template hierarchy and all necessary files. A primer on theme.json enables you to control the feature set and setting for Global Styles. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Marcus Kazmierczak</strong>&#8216;s Devnote <a href=\"https://make.wordpress.org/core/2022/01/04/block-themes-a-new-way-to-build-themes-in-wordpress-5-9/\"><strong>Block themes, a new way to build themes in WordPress 5.9</strong></a> catches you up on the latest updates. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Another opportunity to is the Twitch live stream series by <strong>Ryan Welcher</strong> and <strong>Daisy Olsen Creating a block-based theme</strong>. <a href=\"https://www.twitch.tv/videos/1254807465?t=00h14m32s\">Part 1 is available on Twitch</a>, and will later be posted on  YouTube. The start was a bit wonky with some audio issues that cleared up at the timestamp 14:32. The next session will be next week, Thursday at 10:30 am ET / 15:30 UTC</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>On January 12th, <strong>Daisy Olsen</strong> and <strong>Sarah Snow</strong> present the first installment of another series: &#8220;<a href=\"https://www.meetup.com/wordpress-social-learning/events/283103474\"><strong>Zero to Block Theme Series: Foundations&#8221;</strong></a> at 1pm ET / 18:00 UTC. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Kelly Choyce-Dwan</strong>, core contributor on the meta team,  takes you along her journey while <a href=\"https://ryelle.codes/2021/12/switching-to-a-block-based-theme\"><strong>switching to a block based theme</strong></a>. She shares with you her process and her challenges and how she overcame them. Choyce-Dwan also surfaced a few things that are bugs and some have already been fixed. She also noticed that there is no way to give buttons or links hover state/colors, and CSS is your fallback. In conclusion, she wrote: &#8220;It was a fun experiment to refresh this site, and I really see the promise of block-based themes for easy site building. It’s a new framework to get used to, and sure there are bumps to work through, but it’s going to be great.&#8221;</p>\n\n\n\n<h2 id=\"tools-for-site-builders-and-content-creators\">Tools for Site Builders and content creators</h2>\n\n\n\n<p>In her latest YouTube video <a href=\"https://www.youtube.com/watch?v=n5fbGuTdPKw\"><strong>Connecting The Dots: Level up with Query Loop</strong></a> block, <strong>Anne McCarthy</strong> is showing off a real-world example of the Query Loop block, and she demonstrates how it saves her time. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In his review <a href=\"https://wptavern.com/anariel-design-releases-bricksy-its-third-wordpress-block-theme\"><strong>Anariel Design Releases Bricksy, Its Third WordPress Block Theme</strong></a>, Justin Tadlock gives Ana Segota, designer at Anariel Designs, and her theme high marks on beauty and versatility. It sports 32 Block patterns and also supports WooCommerce. Certainly, worth checking out. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Alexandra Yap</strong> introduced you to a new feature from the team at Stackable: Their plugins now gives you the option to start your design process directly in the Site editor. <a href=\"https://wpstackable.com/blog/how-to-wireframe-a-website-using-gutenberg/\"><strong>Learn how you can use Gutenberg to wireframe a website.</strong></a> </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Although the block editor can handle Markdown in and of itself, it&#8217;s not the most convenient Markdown editor. The <a href=\"https://wordpress.org/plugins/markup-markdown/\"><strong>MarkUp MarkDown</strong></a> plugin seems to change that although it gives me unwanted flashback to pre-block editor times. In his review, <a href=\"https://wptavern.com/new-wordpress-plugin-offers-a-markdown-editor-solution\"><strong>New WordPress Plugin Offers a Markdown Editor Solution</strong></a> Justin Tadlock, is of other opinion, so it was a worth a read for me. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Speaking of Flashback, read <a href=\"https://wptavern.com/a-throwback-to-the-past-retro-winamp-block\"><strong>A Throwback to the Past: Retro Winamp Block</strong></a> by <strong>Justin Tadlock</strong> on his take on the block plugin that allows you to embed a Winamp player and skin into your 21st-century website.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/phil_webs\">Phil Webster</a></strong> created the <a href=\"https://wptavern.com/a-throwback-to-the-past-retro-winamp-block\"><strong>Newspaper Column </strong></a>block, and interesting approach to have this block automatically display text  over three or four columns automatically. It works best with paragraph and lists. Webster also plans to work on Accessible Block Collection to offer additional accessibility features for core blocks and build blocks that are missing for instance an Accordion block.  </p>\n\n\n\n<p>As a sidenote, <a href=\"https://twitter.com/phil_webs/status/1479242474304552960\">here</a> is a twitter exchange with Webster about <a href=\"https://twitter.com/phil_webs/status/1479242474304552960\">what is best for the user: Single purpose blocks or bock collections.</a> What has been the better experience been for you? And would you pay for a single block premium plugin? And more. I found it quite insightful. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Good news for site owners looking for high-quality block themes: <a href=\"https://wptavern.com/wp-engine-acquires-brian-gardners-frost-opens-it-to-the-public\"><strong>WP Engine Acquires Brian Gardner’s Frost, Opens It to the Public</strong></a> &#8211; now available for free. <strong>Justin Tadlock</strong> has the skinny for you. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Kelly Choyce-Dwan</strong> released &#8216;a souped-up Spacer-type block&#8217;. With the <a href=\"https://wordpress.org/plugins/grainy-gradient-block/\"><strong>Grainy Gradient Block</strong></a> plugin end-users can decorate the area with various gradient backgrounds and spruce up their content with interesting forms and color combinations. <a href=\"https://wptavern.com/decorating-web-pages-with-the-grainy-gradient-block\">Justin Tadlock took it for a spin</a> and shared ways he experimented with with the block on the WPTavern.</p>\n\n\n\n<img />\n\n\n\n<h2 id=\"upcoming-wordpress-events\">Upcoming WordPress Events</h2>\n\n\n\n<p><strong>January 12, 2022, 1 pm ET / 18:00 UTC</strong><br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/283103474\"><strong>Zero to Block Theme Series: FoundationsJoin this space</strong></a> via WordPress Social Learning Spaces<br /><br /><strong>January 14, 2022</strong> <strong>1pm ET / 18:00 UTC</strong> <br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/283051937/\"><strong>Demo: All About Colors with Full Site Editing</strong></a> with Roxy Kohilakis via WordPress Social Learning Spaces</p>\n\n\n\n<p><strong>January 17, 2022 3pm ET / 20:00 UTC</strong><br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/282772979\">Advanced Layouts with the Block Editor</a></strong> with Wes Theron via WordPress Social Learning Spaces</p>\n\n\n\n<p><strong>January 17, 2022 8 pm ET / 1:00 am UTC</strong> <br /><strong><a href=\"https://www.meetup.com/BoulderWP/events/282792359\">What&#8217;s coming in WordPress 5.9</a></strong> Panel discussion w/ Brian Gardner, Courtney Robertson and Birgit Pauli-Haack via WordPress Meetup Boulder, Co</p>\n\n\n\n<p><strong>January 20, 2022 &#8211; 7 pm ET / 00:00 UTC</strong><br /><a href=\"https://www.meetup.com/SF-WordPress-Users/events/283096780/\"><strong>WordPress &#8220;Mega Meetup&#8221;: Block Patterns, WordPress 5.9</strong></a><br />South Florida WordPress Meetup Group</p>\n\n\n\n<p><strong>January 26, 2022, 6:00 pm ET / 23:00 UTC</strong><br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/282773311/\"><strong>Intro to Templates and Template Parts (Full Site Editing)</strong></a> with Wes Theron via WordPress Social Learning Spaces</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\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 08 Jan 2022 08:50:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:67:\"WPTavern: Microsoft Bing Releases New IndexNow Plugin for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=128014\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:179:\"https://wptavern.com/microsoft-bing-releases-new-indexnow-plugin-for-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=microsoft-bing-releases-new-indexnow-plugin-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3501:\"<p>In July 2020, Bing <a href=\"https://wptavern.com/bing-launches-url-submissions-plugin-for-wordpress\">released its first official plugin</a> for WordPress that allowed site owners to submit URLS and get their content indexed immediately, instead of waiting for the search engine to crawl the site. The IndexNow API, which <a href=\"https://blogs.bing.com/webmaster/october-2021/IndexNow-Instantly-Index-your-web-content-in-Search-Engines\">debuted in October 2021</a>, is the next evolution of the <a>Bing URL submissions API</a>, created by Microsoft Bing and Yandex. </p>\n\n\n\n<p>Bing Webmasters has released a new <a href=\"https://wordpress.org/plugins/indexnow/\">IndexNow plugin for WordPress</a> sites to take advantage of this new protocol. It makes it possible for websites to notify participating search engines whenever content is created, updated, or deleted, so that the site is indexed faster for updated search results. The Microsoft Bing Webmaster Tools team anticipates that it will minimize the need for crawling:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>IndexNow is an initiative for a more efficient Internet: By telling search engines whether an URL has been changed, website owners provide a clear signal helping search engines to prioritize crawl for these URLs, thereby limiting the need for exploratory crawl to test if the content has changed. In the future, search engines intend to limit crawling of websites adopting IndexNow.</p><p>IndexNow is also an initiative for a more open Internet: By notifying one search engine you will notify all search engines that have adopted IndexNow.</p></blockquote>\n\n\n\n<p>The IndexNow WordPress plugin tracks changes in content and automatically submits the URLS in the background. It comes with a few basic features and configuration options: </p>\n\n\n\n<ul><li>Toggle the automatic submission feature.</li><li>Manually submit a URL to IndexNow.</li><li>View list of recent URL submissions from the plugin.</li><li>Retry any failed submissions from the recent submissions list.</li><li>Download recent URL submissions for analysis.</li><li>Status on recent successful and failed submissions</li></ul>\n\n\n\n<p>The IndexNow protocol is supported by Microsoft Bing and Yandex. <a href=\"https://searchengineland.com/google-is-testing-the-indexnow-protocol-for-sustainability-375932\">Google is testing the protocol</a> to see if it makes sense for a more sustainable approach to indexing the web.</p>\n\n\n\n<p>Bing Principal Program Manager Fabrice Canel <a href=\"https://core.trac.wordpress.org/ticket/52900\">proposed WordPress core integrate the IndexNow protocol</a> but contributors suggested Microsoft keep it as a plugin until it&#8217;s more widely adopted by major search engines and proves that it has a positive effect on reducing the need for crawling. </p>\n\n\n\n<p>&#8220;By releasing this plugin, we aim not only to benefit right away WordPress websites adopting it, but also learn, tweak as needed to someday release IndexNow in WordPress core to benefit all websites and all existing and upcoming search engines adopting IndexNow,&#8221; Canel said on the ticket.</p>\n\n\n\n<p>The <a href=\"https://wordpress.org/plugins/indexnow/\">IndexNow plugin</a> already has 800 active installs but it&#8217;s a long road for Microsoft to prove that its API is effective at streamlining indexing for search engines. If Google agrees to support it after testing, the protocol may gain enough momentum to attract other search engines&#8217; support.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 08 Jan 2022 03:14: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: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:61:\"WPTavern: Decorating Web Pages With the Grainy Gradient 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:30:\"https://wptavern.com/?p=128020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/decorating-web-pages-with-the-grainy-gradient-block?utm_source=rss&utm_medium=rss&utm_campaign=decorating-web-pages-with-the-grainy-gradient-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:3198:\"<p class=\"has-drop-cap\">Yesterday, Kelly Choyce-Dwan released a souped-up Spacer-type block. However, instead of just empty space on the screen, end-users can decorate the area with various gradient backgrounds.</p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/grainy-gradient-block/\">Grainy Gradient Block</a> is just the type of plugin that I look forward to tinkering with. It is not complex. It stays in its lane. And, it is just plain fun to use.</p>\n\n\n\n<p>The block was inspired by the grainy gradient trend <a href=\"https://css-tricks.com/grainy-gradients/\">touted by CSS-Tricks</a> in 2021. Now, users can use them directly in the WordPress editor.</p>\n\n\n\n<p>The plugin&#8217;s single block has four variations, as shown in the following screenshot:</p>\n\n\n\n<img />\n\n\n\n<p>The variations are:</p>\n\n\n\n<ul><li><strong>Default:</strong> Noisy/Grainy texture.</li><li><strong>Horizontal Grain:</strong> Horizontal lines.</li><li><strong>Vertical Grain:</strong> Vertical lines.</li><li><strong>Blob Grain:</strong> An effect similar to lava lamps.</li></ul>\n\n\n\n<p>After far too much time attempting new design ideas with the plugin, I finally landed on something that I liked. I pulled a <a href=\"https://wordpress.org/photos/photo/52761c1391/\">sunset image</a> from WordPress Photos by Mark Westguard and used it within a cover block. Then, I applied a couple of different Grainy Gradient blocks over it.</p>\n\n\n\n<img />Grainy sunset over a lake.\n\n\n\n<p>The goal was to give it an old, worn painting feel. I was happy with how it and several other variations I worked through turned out.</p>\n\n\n\n<p>I wanted to see what I could do with some real-world art &#8212; I had paintings on my mind at that point. So, I grabbed a photo of a piece I completed a week or two ago and began anew.</p>\n\n\n\n<p>This time, I used a similar process. I wrapped everything in a Cover block and applied a duotone filter over the image. Then, I placed the Grainy Gradient block inside and switched it to the Horizontal Grain variation.</p>\n\n\n\n<img />Horizontal grain over an image.\n\n\n\n<p>It turned out similar to a poor photocopy of a hand-drawn piece. Essentially, it was better than my original artwork.</p>\n\n\n\n<p>Do not let my imagination fool you into thinking this plugin is limited to just a handful of ideas. There are 1,000s upon 1,000s of variations users can create. For example, just dropping it in a column next to a text-heavy section can spruce up a page&#8217;s design a bit:</p>\n\n\n\n<img />Blob gradient next to text column.\n\n\n\n<p>If I had one request, it would be to add grainy gradient backgrounds to the Group and Cover blocks. Both allow for gradients but not of the <em>grainy</em> variety. The effect is created via an SVG filter, which is how the duotone feature in core works. There seems to at least be some <a href=\"https://github.com/WordPress/gutenberg/pull/35359\">appetite for other filter types</a>. Maybe we will see a more broad list of such options in the future.</p>\n\n\n\n<p>For now, I think I will continue playing around with Grainy Gradient Block.</p>\n\n\n\n<p>The development version of the plugin is also <a href=\"https://github.com/ryelle/grainy-gradients\">available via GitHub</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, 08 Jan 2022 00:35:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"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: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:104:\"Gutenberg Times: What’s new in WordPress 5.9 – a Reading list on Full-Site Editing and 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:35:\"https://gutenbergtimes.com/?p=19945\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://gutenbergtimes.com/whats-new-in-wordpress-5-9-a-reading-list-on-full-site-editing-and-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:11092:\"<p>WordPress 5.9 Release Candidate 1 was released on Tuesday, January 4th, 2022 and the version is on schedule to be released on January 25, 2022.</p>\n\n\n\n<p>The WordPress 5.9 release mostly introduces Full Site Editing to WordPress user. It&#8217;s the biggest release since the roll-out of the block editor in December 2018.  The umbrella term Full-site Editing covers a multitude of editing features. </p>\n\n\n\n<p>This reading list covers the latest publication of Developer Notes and User Documentation related to the Block Editor. </p>\n\n\n\n<ul><li>The <a href=\"https://gutenbergtimes.com/feed/#block-editor-related-devnotes-for-wordpress-5-9\">DevNotes</a> are for extenders, plugin, and theme developers.</li><li><a href=\"https://gutenbergtimes.com/feed/#user-documentation-for-site-builders-and-content-creators\">End User documentation</a> is for site builders and content creators.</li></ul>\n\n\n\n<p>Also, see the <a href=\"https://make.wordpress.org/core/2022/01/10/wordpress-5-9-field-guide/\"><strong>WordPress 5.9 Field Guide</strong></a> with all DevNotes for the upcoming release. </p>\n\n\n\n<p><strong>Table of Content</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#block-editor-related-devnotes-for-wordpress-5-9\">Block Editor related DevNotes for WordPress 5.9 </a></li><li><a href=\"https://gutenbergtimes.com/feed/#user-documentation-for-site-builders-and-content-creators\">User Documentation for Site Builders and Content Creators</a></li><li><a href=\"https://gutenbergtimes.com/feed/#block-based-themes-ready-for-full-site-editing\">Block-Based Themes, ready for Full-Site Editing. </a></li><li><a href=\"https://gutenbergtimes.com/feed/#courses\">Courses</a></li><li><a href=\"https://gutenbergtimes.com/feed/#social-learning\">Social Learning</a></li></ul></div>\n\n\n\n<h2 id=\"block-editor-related-devnotes-for-wordpress-5-9\">Block Editor related DevNotes for WordPress 5.9 </h2>\n\n\n\n<p>About Themes</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/01/07/theme-focused-changes-and-filters-in-wordpress-5-9/\">Theme-focused changes and filters in WordPress 5.9</a> </li><li><a href=\"https://make.wordpress.org/core/2022/01/07/state-of-the-customizer-with-block-themes-in-wordpress-5-9/\">State of the Customizer with block themes in WordPress 5.9</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/05/bundled-theme-updates-with-wordpress-5-9/\">Bundled theme updates with WordPress 5.9</a> </li><li><a href=\"https://make.wordpress.org/core/2022/01/04/block-themes-a-new-way-to-build-themes-in-wordpress-5-9/\">Block themes, a new way to build themes in WordPress 5.9</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/08/updates-for-settings-styles-and-theme-json/\">Updates for Settings, Styles, and theme.json</a></li></ul>\n\n\n\n<p>Block Building and extending Gutenberg</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/01/04/new-api-to-access-global-settings-styles/\">New API to access global settings &amp; styles</a> </li><li><a href=\"https://make.wordpress.org/core/2022/01/04/miscellaneous-block-editor-changes-in-wordpress-5-9/\">Miscellaneous block editor changes in WordPress 5.9</a> </li><li><a href=\"https://make.wordpress.org/core/2021/12/28/take-more-control-over-inner-block-areas-as-a-block-developer/\">Take more control over Inner Block Areas (as a block developer)</a> </li><li><a href=\"https://make.wordpress.org/core/2021/12/15/using-multiple-stylesheets-per-block/\"></a><a href=\"https://make.wordpress.org/core/2021/12/15/using-multiple-stylesheets-per-block/\">Using multiple stylesheets per block</a></li><li><a href=\"https://make.wordpress.org/core/2021/12/13/posts-post-types-and-taxonomy-changes-in-wordpress-5-9/\">Posts, Post types and Taxonomy changes in WordPress&nbsp;5.9</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/08/locking-blocks-in-wordpress-5-9/\">Locking Blocks in WordPress 5.9</a></li></ul>\n\n\n\n<p>New Blocks</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/01/07/the-new-navigation-block/\">The new Navigation block</a></li><li><a href=\"https://make.wordpress.org/core/2021/08/20/gallery-block-refactor-dev-note/\">Gallery Block Refactor Dev Note</a> </li></ul>\n\n\n\n<p>Learn more about the progress on performance improvement efforts coming to <a href=\"https://make.wordpress.org/core/2022/01/05/wordpress-5-9-performance-improvements/\">WordPress 5.9 Performance Improvements</a> </p>\n\n\n\n<h2 id=\"user-documentation-for-site-builders-and-content-creators\">User Documentation for Site Builders and Content Creators</h2>\n\n\n\n<p><strong><a href=\"https://wordpress.org/support/article/site-editor/\">Site editor</a></strong></p>\n\n\n\n<p>It is only available to content creators who are using a Block theme. When you are using the Site Editor, most changes here are made across your entire site.</p>\n\n\n\n<p><a href=\"https://wordpress.org/support/article/block-themes/\"><strong>Block Themes </strong></a></p>\n\n\n\n<p>A block theme is a theme that uses blocks for all parts of a site, including navigation menus, header, content, and site footer.</p>\n\n\n\n<p><a href=\"https://wordpress.org/support/article/styles-overview/\"><strong>Styles Overview</strong></a>  </p>\n\n\n\n<p>This is a new feature in WordPress 5.9 that comes included in&nbsp;Block themes&nbsp;that allows you to customize your site as much as you’d like with different colors, typography, layouts, and more</p>\n\n\n\n<p><a href=\"https://wordpress.org/support/article/navigation-block/\"><strong>Navigation block</strong></a></p>\n\n\n\n<p>The&nbsp;<em>Navigation Block</em>&nbsp;is an advanced block in WordPress 5.9 that enables you to edit your site’s navigation menu, both in terms of structure and design. The&nbsp;<em>Navigation block</em>&nbsp;can be used with a&nbsp;block theme&nbsp;or a theme that has support for&nbsp;template editing.</p>\n\n\n\n<p><strong><a href=\"https://wordpress.org/support/article/template-part-block/\">Template part block</a> </strong></p>\n\n\n\n<p>The&nbsp;<em>Template Part block</em>&nbsp;is an advanced block introduced in WordPress 5.9 that can be used with a block theme or a theme that supports&nbsp;template editing.</p>\n\n\n\n<h2 id=\"block-based-themes-ready-for-full-site-editing\">Block-Based Themes, ready for Full-Site Editing. </h2>\n\n\n\n<p>Ready to Test? To date, you&#8217;ll find 34 block Themes already in the WordPress repository that are prepared for Full-Site Editing. </p>\n\n\n\n<p>I often get the question: &#8220;What are the few themes you like?&#8221; Here is my list: </p>\n\n\n\n<p>I received similar questions at meetup gatherings. Here are the themes of my response.</p>\n\n\n\n<ul><li><a target=\"_blank\" href=\"https://wordpress.org/themes/tove/\" rel=\"noreferrer noopener\">Tove by Anders Noren</a></li><li><a target=\"_blank\" href=\"https://wordpress.org/themes/ona/\" rel=\"noreferrer noopener\">Ona by DeoThemes</a></li><li><a target=\"_blank\" href=\"https://wordpress.org/themes/clove/\" rel=\"noreferrer noopener\">Clove by Anariel Design</a></li></ul>\n\n\n\n<p>All three are from trusted theme designers, and were reviewed by Justin Tadlock at the WPTavern.</p>\n\n\n\n<ul><li><a href=\"https://wptavern.com/tove-a-block-based-wordpress-theme-by-anders-noren\" target=\"_blank\" rel=\"noreferrer noopener\">Tove: A Block-Based WordPress Theme by Anders Norén</a></li><li><a href=\"https://wptavern.com/ona-by-deothemes-just-raised-the-bar-for-wordpress-block-theme-design\" target=\"_blank\" rel=\"noreferrer noopener\">Ona by DeoThemes Just Raised the Bar for WordPress Block Theme Design</a></li><li><a href=\"https://wptavern.com/clove-a-showcase-of-block-patterns-by-anariel-design\" target=\"_blank\" rel=\"noreferrer noopener\">Clove: A Showcase of Block Patterns by Anariel Design</a></li></ul>\n\n\n\n<p><strong>Automattic</strong> also published a set of themes, all focused on blogging and writing: </p>\n\n\n\n<ul><li><a href=\"https://wordpress.org/themes/quadrat/\">Quadrat&nbsp;</a></li><li><a href=\"https://wordpress.org/themes/geologist/\">Geologist&nbsp;</a></li><li><a href=\"https://wordpress.org/themes/videomaker/\">Videomaker</a>&nbsp;</li><li><a href=\"https://wordpress.org/themes/zoologist/\">Zoologist</a>&nbsp;</li><li><a href=\"https://wordpress.org/themes/seedlet-blocks/\">Seedlet Blocks</a>&nbsp;</li></ul>\n\n\n\n<p>I am also a huge fan of the first WordPress default block theme, called Twenty-Twenty-Two. Carlo Danielle did a <a href=\"https://kinsta.com/blog/twenty-twenty-two-theme/\"><strong>deep dive into the inner workings</strong></a> for Twenty-Twenty two.  and takes you along for the ride in his post for Kinsta. Designer-developers Kjell Reigstad and Jeff Ong worked on it with other contributors. It will be released with WordPress 5.9. New WordPress site will activate it out of the box. </p>\n\n\n\n<p><em>Share in the comments if you find a block-based theme that you like or built. </em></p>\n\n\n\n<h2 id=\"courses\">Courses</h2>\n\n\n\n<p>At <strong>Learn.WordPress.org</strong> the course <a href=\"https://learn.wordpress.org/course/simple-site-design-with-full-site-editing/\"><strong>Simple Site Design with Full Site Editing</strong> </a>is now available online. It&#8217;s part 1 in a series of 2 or 3 courses to come out soon. It&#8217;s free of charge</p>\n\n\n\n<p>At <strong>Fullsiteediting.com</strong>, Carolina Nymark, contributor on the WordPress theme team prepared two courses</p>\n\n\n\n<ul><li><a href=\"https://fullsiteediting.com/courses/full-site-editing-for-theme-developers/\"><strong>For theme developers</strong></a></li><li><strong><a href=\"https://fullsiteediting.com/courses/full-site-editing-for-site-creators/\">For Site Creators</a></strong></li></ul>\n\n\n\n<p></p>\n\n\n\n<h2 id=\"social-learning\">Social Learning</h2>\n\n\n\n<p>Social Learning events around the new features. Register on Meetup.com</p>\n\n\n\n<ul><li>Wednesday, January 12, 2022, 10:00 am (UTC-08:00)<br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/283103474\"><strong>Zero to Block Theme Series: FoundationsJoin this space</strong></a></li><li>Friday, January 14, 2022, 10:00 am (UTC-08:00)<br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/283051937\"><strong>Demo: All About Colors with Full Site Editing</strong></a></li><li>Wednesday, January 26, 2022, 3:00 pm (UTC-08:00)<br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/282773311/\"><strong>Intro to Templates and Template Parts (Full Site Editing)</strong></a></li></ul>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-background has-accent-background-color has-accent-color is-style-dots\" />\n\n\n\n<p><strong>Featured Image:</strong> <a href=\"https://www.flickr.com/photos/17751217@N00/2558304478\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Mitchell Library, Sydney (#24)&#8221;</a>&nbsp;by&nbsp;<a href=\"https://www.flickr.com/photos/17751217@N00\" target=\"_blank\" rel=\"noreferrer noopener\">Christopher Chan</a>&nbsp;is licensed under&nbsp;<a href=\"https://creativecommons.org/licenses/by-nd-nc/2.0/jp/?ref=openverse&atype=rich\" target=\"_blank\" rel=\"noreferrer noopener\">CC BY-NC-ND 2.0</a> found on <a href=\"https://wordpress.org/openverse\">OpenVerse</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, 07 Jan 2022 21:36: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: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:77:\"WordCamp Central: Call For Speakers for WordCamp Europe 2022 in Porto is Open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3143943\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://central.wordcamp.org/news/2022/01/07/call-for-speakers-for-wordcamp-europe-2022-in-porto-is-open/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:813:\"<p>Call For Speakers for WordCamp Europe (2-4 June, Porto, Portugal) is open and <a href=\"https://europe.wordcamp.org/2022/call-for-speakers/\">we are inviting you to apply</a>!</p>\n<p>Whether you have given thousands of talks in front of a large audience or you have moderate experience in public speaking, if you have the practical knowledge to share — please, do it, <a href=\"https://europe.wordcamp.org/2022/call-for-speakers/\">apply to speak</a>!</p>\n<p>WordCamp Europe organizers will soon be hosting an online Q&amp;A session where you can ask questions and get guidance on how to raise the chance for your application to be selected. Keep an eye out <a href=\"https://europe.wordcamp.org/2022\">on the WCEU website </a>to be notified of the same.</p>\n<p>We look forward to seeing your application soon!</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, 07 Jan 2022 07:32: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:\"Sabrina Zeidan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"Post Status: Post Status Excerpt (No. 40) — Post Status from 2021 to 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:31:\"https://poststatus.com/?p=92232\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/40/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:27913:\"<h3>&#8220;In 2022 at Post Status&#8230; we will be together and make the most of our online experiences.&#8221; —<strong>Cory Miller</strong></h3>\n\n\n\n<p class=\"has-drop-cap\">In this episode of Post Status Excerpt, David and Cory chat about the key events for Post Status in 2021, including Cory\'s acquisition of Post Status from Brian in May, <strong>StellarWP</strong>&#8216;s sponsorship of <strong>Post Status Slack</strong> to go pro, and the acquisition tracker. Cory also explains how his understanding of Post Status has changed since acquiring it.</p>\n\n\n\n<p><strong>Also: </strong>David and Cory also discuss what they hope Post Status can become in early 2022.</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><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/acquisitions/\">Post Status Acquisition Tracker</a></li><li><a href=\"https://poststatus.com/open-web-manifesto/\">Post Status Open Web Manifesto</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=\"http://poststatus.com/godaddy\">GoDaddy Pro</a></h3>\n\n\n\n<p>Manage your clients, websites, and tasks from a single dashboard with GoDaddy Pro. 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. GoDaddy Pro is free — and designed to make your life better</p>\n\n\n\n<h2 id=\"h-transcript\"><strong>Transcrip</strong>t</h2>\n\n\n\n<p></p>\n\n\n\n<p><strong>David Bisset:</strong> It may seem like [00:01:00] yesterday, but you know, we started 2021 with Brian\'s still at the helm of Post Status. You were a partner, but that changed in the middle of the year, around may or June and where you are fully acquired Post Status. So you remember that still.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Oh yeah.</p>\n\n\n\n<p>Vividly. We were just kind of prepared for this. It was just pulling me back and going. It\'s really good to reflect, you know, and review what\'s going on. And I don\'t take enough time for this instead of member huddle, but, you know, we didn\'t really talk about this linking back for posts specifically on, remember how that on some, I\'m glad to do it because.</p>\n\n\n\n<p>I think if I look back, it was me taking over full-time with Post Status going from what was kind of a part-time gig and a really fun gig to a very busy gig. And because we\'re growing the vision and it just I think there was, you know, if I can look back on the year related to Post Status for me, it was.</p>\n\n\n\n<p>This light bulb moment of like, I can do anything. I want, not that I couldn\'t with Brian, it was just like, okay, I\'ve got [00:02:00] full control of this. I don\'t know if a lot of people realize David, but at I themes, I actually wasn\'t the majority owner. And I start when I started in 2008, I met two, my, my two partners and they gave me some initial funding.</p>\n\n\n\n<p>To to get started with iThemes. And so, I had partners all along and there\'s many pluses to that, by the way. But this magical moment that happened to me was over that summer and just realizing one day. This is all mine. Not to sound very selfish about it. You know, Dave, because I\'ve tried to be very collaborative and share everything we\'re doing, but I go, I can do anything I want, what do I want to do?</p>\n\n\n\n<p>Oh, wow. Like, yeah. And again, not that brian was holding me back at all. It was just, it was this moment of going, this is mine. And then another day, wake it up and go on everything I want to do I can do here. So those are huge light bulb moments for me looking back in this year.</p>\n\n\n\n<p>And I hope everybody can see that my energy, like we\'re we were a [00:03:00] bunch of part-timers David you\'re part time Dan\'s part-time more or less. I was part time. Brian was part-time like, when we all we said, and I gather, we probably have a couple of full-time people here. But this was just different fitting for me this next adventure spirit Post Status.</p>\n\n\n\n<p>And I\'m, really pumped about it.</p>\n\n\n\n<p><strong>David Bisset:</strong> So obviously you saw potential in Post Status when you first joined Brian, I\'m going to say sometime in 2020.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yes, January 2020, right before the pandemic. And he came out and we had a lot of cool plans that we\'re now gonna start doing, starting in February. Some of our in-person things, very small groups now with omicron going on and we\'ll see how everything goes, but we\'re going, we\'re pushing forward with our first in-person meetup.</p>\n\n\n\n<p>Our partner summit in February in Oklahoma city. But yeah, that was pre printed. January, 2020. It\'s crazy to think our fastest.</p>\n\n\n\n<p><strong>David Bisset:</strong> So you cruise through and then May 2021 you acquired. [00:04:00] So what is the difference between how you\'re looking at Post Status and your goals when you acquired it from Brian then versus now, like what\'s changed in your mind?</p>\n\n\n\n<p>What goals have changed? What potential are you realizing?</p>\n\n\n\n<p><strong>Cory Miller:</strong> You know, being very honest and reflective about all of this David it\'s just going we\'ll maintain cool stuff. That process was already doing. That was the previous mindset. The mindset today is now we\'re going to grow. We\'re going to do 10 times what we\'ve done in the past.</p>\n\n\n\n<p>We\'re going to take community to a whole new level. We\'re going to really blow out what we\'re doing at post-test and truly become and be, and showcase. We are the professional community of the open web. That WordPress leads in that we, as WordPress leaders are a part of that bigger ecosystem, but the whole point of we are Post Status.</p>\n\n\n\n<p>It\'s an energizing, shared vision that rallies all of us together. And that\'s why I\'m so energized about all of this, because it\'s, what I [00:05:00] love to do is help bring people together. And it\'s just funny, the artificial boundaries and barriers we\'ve put on ourselves, but that\'s what I had. Previously, when I took over, I thought I will maintain this awesome community.</p>\n\n\n\n<p>That was my, that was pretty much my vision. I\'ll do cool stuff. Get to work with cool people, get the, hang out with all of my friends. You know, now it\'s even a bigger vision and I\'ve had a lot of. With that Jonathan Wald, yourself, Dan, or editor-in-chief Michelle Frechette. My wife Lindsay is always my number one partner in anything I do.</p>\n\n\n\n<p>She\'s always there to help and support me. Now we have Felicia on full-time to take over operations here. Our first full-time employee. I don\'t know, I guess technically second, because you can count Brian in the past. So, Yeah. It\'s spark. You just got me all excited, just thinking about that, but that was on this truth.</p>\n\n\n\n<p>That was, as far as I could see at that point, you know, was let\'s make them this cool thing. Let\'s don\'t do anything to break it, [00:06:00]</p>\n\n\n\n<p><strong>David Bisset:</strong> right? Yeah. When you inherit something precious, the first thing I do is like, don\'t break anything. Don\'t don\'t mess up. And then eventually you\'re like, okay, how can I expand this without breaking it?</p>\n\n\n\n<p>Now I wrote down, you know, Your better journalist and I am, but what I did was I wrote down, I tried to write down the top three Post Status moments of the past year. And frankly, I think palpably, since you took over, I think has before, you know, with everything going on, I can barely remember the last six minutes, let alone six months.</p>\n\n\n\n<p>So we\'re starting from you, acquiring from may have going forward. So one of those was actually something you touched on before, and I think it caught a few people, maybe not delight, surprise, but something that, what is this. You, you mentioned an open source manifesto, or you talk to, you mentioned about seeing Matt and talking about open source, the open source manifestos on our site right now at poststatus.com/open-web-manifesto.</p>\n\n\n\n<p>And it says Post Status seeks to grow WordPress economy in three [00:07:00] ways, guide, connect, and elevate. Was this an idea that you and the in the team had, you know, when you acquire Post Status or when did this come into real clear picture? They feel like, oh, I know I\'m going to talk to Matt about it.</p>\n\n\n\n<p>Oh, I\'m going to, we\'re going to put this together, put on our website and what, you know, what was the, what was, what were you trying to get out of this by posting this Manifesto?</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, that was you know, everything I do it\'s just a collaboration and I try never to take credit for things to that.</p>\n\n\n\n<p>I don\'t do I work so much better in a band or an orchestra or whatever, like with other people. And this was a vision that Jonathan Walton. You know, crystallized in my head he shared the vision of the open web, what she\'s talked about and blogged about prolifically on his own site. And then he shared that with me and I asked him questions and clarify, like, okay, what do we mean when we say that?</p>\n\n\n\n<p>How does WordPress fit into all of that? And super got energized by that vision shared vision [00:08:00] that, that really is it connects all of us here at Post Status in the bigger ecosystem of WordPress. And so, And I just like, I love building community, a little blood pulling people together. And I know that one way to do that is to have a shared vision that energizes us just like WordPress is the shared vision of democratizing publishing for postage.</p>\n\n\n\n<p>The open web, we are builders and makers of the Oakland web, you know, crux guard did a shirt like that back in the day. And I thought it was the coolest thing. I\'d seen a, I make the internet or something like that was the shirt that we\'re going to bring back by the way. So this has been, this is not a new vision necessarily.</p>\n\n\n\n<p>It\'s a clarification of one, but so much of what we\'re doing today is what was built with the bedrock of what Brian did. And then you David and Dan. And now me and now Michelle, now Jonathan NA AIG. Now all these different people that we\'ve got on our contributing team to build something cool. But the open web manifest is sometimes just want to keep [00:09:00] ringing the bell.</p>\n\n\n\n<p>When they think of Post Status. I want them to think open web. We are the makers of the open web.</p>\n\n\n\n<p><strong>David Bisset:</strong> Yeah. Cause it says here we offer guidance on how to think and where to focus. Businesses, we help our members get connected with each other and we grow businesses or growing businesses need support. And we\'re committed to doing what needs to be done to help our members grow.</p>\n\n\n\n<p>So that actually fits into something that you mentioned. You\'ve been one message you have been repeating in some form more or less, I\'d say you fully took over in may or June is that Post Status is not a news site. So if somebody came up to you and said, is Post Status a new site, how would you respond to.</p>\n\n\n\n<p><strong>Cory Miller:</strong> We\'re not there\'s variations of that. We happen to break news. We happen to commentate on these, but I\'m a purist as a journalist and I go, true news is, should be balanced. It should be fair. It should be. Objective as possible within our humans feces about we can be, and that\'s just not what we do here.</p>\n\n\n\n<p>We serve and support WordPress professionals and WordPress businesses. [00:10:00] That\'s what we do. So we\'re not a journalistic outlet. We are ho what can we do that serves and supports our members and makes our life better? How do we help think ahead for them? How do we think, like one of the stalwarts of post as for you.</p>\n\n\n\n<p>With Brian and you and Dan later on, was that too long? Didn\'t read email. I got every week and I would sit and read that and go, okay. I can\'t keep up with drama press sometime. I can just scroll through my email and go &#8220;here\'s the interesting things. I should probably pay attention,&#8221;. And so that\'s the guide part as part of our mission guide connected elevate.</p>\n\n\n\n<p>And so the we\'ve been doing that for years. That\'s a legacy that Brian has a huge fingerprint on going forward from forever here at Post Statuses. We should give he, I loved his thought analysis pieces his commentary and his insights. And I pushed our team and brought in more contributors to say, don\'t just say this.</p>\n\n\n\n<p>It doesn\'t, that\'s a headline they can get anywhere. That [00:11:00] doesn\'t help people. It just shoves a headline in your face. But if it says, how does this, what does this mean for me in a couple of lines succinctly, which is hardware, by the way, that\'s what we want to be doing at Post Status is saying the too long didn\'t read. Here we can help you say brain processing power and keep up with all the stuff going on that you can\'t within this amazing ecosystem called WordPress and the open web. So that\'s the way I see our content. What we publish here is everything that just helps our members think about, get ahead, stay ahead of what\'s going on in their world.</p>\n\n\n\n<p><strong>David Bisset:</strong> Yeah, good. Cause you know, I can\'t stop giving my 2 cents on anything. So that kind of fits well with the analysis part of it. All of it. One of the things we did do that seemed, I mean, I think may have, seemed like news in the beginning, but we kept one of the top three, I think highlights of my personal highlights of post status over the past year is we started the acquisition tracker. You [00:12:00] know, you can look at that as news. I kind of look at it as more of a guide for all of WordPress to look at because now I think whenever there is an acquisition. Either me or Dan get pinged on Twitter or in post that a stock that somebody else randomly reset the calories at the counter or some other podcasts goes, this is where, and you can see now it\'s a very useful tool for now, for me personally, even though we\'re the ones who put it together, that wow, you can look, I was reading article about Matt Mullenweg the other day about his role in trying to push the open web. And in order to do that, he needs he through automatic. For the most part, we\'re making these certain acquisitions in certain categories and you\'re reading the article and you go, well, I, you know, you look at, and then look at the acquisition page and you see all the acquisitions, automatic is put together.</p>\n\n\n\n<p>You begin to see, wow, this is starting to make sense. It\'s like, you know, the over not to get into a story about Matt and the acquisitions, but you begin to see. Wow. This particular journalism app has been acquired this particular photo, you know, the creative comments thing has been acquired or [00:13:00] absorbed into the project and you begin to see a grander picture and, you know, embarrassed.</p>\n\n\n\n<p>I am to probably have read I think it was David Pearce\'s article or something on this, but you can go back and look at a nice orderly list, like the acquisition tracker and we\'ll have more stuff next year, probably to go along with that. So I thought that was a real. Good thing for us post status people to put up because everybody seems to use it.</p>\n\n\n\n<p>And, you know, I like putting up stuff. That\'s actually useful to people.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Again, we should be giving those type of tools for people it\'s not about, it\'s not about breaking news. It\'s about which we happen to do with the Pagely announcement. But like, that was a member longstanding member of our community who wanted it of the two that news to be broken through post status, which he in.</p>\n\n\n\n<p>Lovely wife has, co-founders have supported for years here. And that\'s why we broke that news. But yes, it comes down to those tools. Like how can we help our members? You know, keep up. We have a set of members that are founders here. We want to help them [00:14:00] move up, take the next level and things like that.</p>\n\n\n\n<p>And yeah, that all just kind of gets me excited. Cause that\'s what I want to be doing more and more of here at post status and to</p>\n\n\n\n<p><strong>David Bisset:</strong> be clear our own community is adding. List as well. They\'re not waiting for us to read stuff and update their they\'re just sending us stuff to update. So to me now it\'s more of like a.</p>\n\n\n\n<p>Borderline Wiki page at this point.</p>\n\n\n\n<p><strong>Cory Miller:</strong> But this is why I love the word collaboration, because there is no way I can do it by myself, no way. And it\'s so obvious that I love it because then we can say like, I don\'t know whose idea was the tracker, but it wasn\'t mine. And when that, then I was like, yes, we, but when I heard that deal, I was like, absolutely this fits perfectly. We should do that. And then we got it out and it has been a community collaboration because I know we miss things. We\'re not in a news, you know, watch Doug and financial.</p>\n\n\n\n<p><strong>David Bisset:</strong> We\'re not a news site as you\'re saying well, so, so here\'s the last thing on my list. And I wanted, I want to talk to you about stellar WP [00:15:00] provided us a sponsorship that allowed our post status slack to be fully upgraded to I guessing the pro version, which means you get access to all of the past conversations and a lots of other bells and whistles as well.</p>\n\n\n\n<p>Weeks before that announcement was made publicly. You were talking about that internally with us as a possibility, and you were very excited about that possibility. Can you tell me why it was so important for you to, with stellar WP to pursue this particular upgrade and what it means for the post status community?</p>\n\n\n\n<p><strong>Cory Miller:</strong> I had heard from a number of people, you know, this is the hallway track. This is the in between times where we see each other, you know, team. Meet all the time, see each other all the time, but we have so many amazing community members that are on different teams. And hosts has, is the glue is the hub.</p>\n\n\n\n<p>And I had heard from so many members over the two years of being a part of post status now. And that issue would be [00:16:00] nice. Well, when I asked, I was like, okay, a pressing increase right now is not going to is probably not going to work or fund us, you know, for the foreseeable future. So I valued the preservation of memories and conversations and things like, particularly in the DMS, our stats say it every single week.</p>\n\n\n\n<p>It\'s just conversations don\'t happen in public, on Prestos. They haven\'t happened in the DMS and then you lose track of the conversation. You and I might have had five years ago, Dave, and you know, and now we get it back and we can kind of retrace that. I think that\'s valuable because there\'s so many best practices, tips, cool stuff that we share with each other, and it just needed a better way to be preserved.</p>\n\n\n\n<p>And this is my short term solution. I think, you know, you and I\'ve talked and our team has talked about how. Going forward. When I talked to Matt Mullenweg in San Francisco, a couple in back in where was it? December? Earlier this month when I mentioned we\'re going to paid slack he mentioned an open source project [00:17:00] that I don\'t think is ready for the prime time just yet, but that they were looking to use for the.org project.</p>\n\n\n\n<p>And I was like, okay, that\'s interesting. But really the premise is just maintaining that hub. To connect with each other. That\'s the essence of why we did, why I sought out a sponsorship, but then out into the universe. And then our friends at seller WP said, we\'ll take it. We\'d love to be that sponsor.</p>\n\n\n\n<p>And I\'m so thankful for Hazel and her team and core course, Michelle Frechette and her new role over at seller WP and being a huge part of our culture contributing team here at Post Status is pretty awesome. So synergy, can I use that?</p>\n\n\n\n<p><strong>David Bisset:</strong> You can use whatever word you want. As long as it\'s family friendly.</p>\n\n\n\n<p>That\'s my only thing for this show. Cause my kids listened to this. Believe it or not. Yeah. They really need to get them a Disney plus subscription they\'re going into from now. well, Olivia, my 17 year old daughter It\'s getting to be more of a [00:18:00] production type oriented type of person, probably a lot more professional than me.</p>\n\n\n\n<p>So she actually listens and tells me when I mispronounced things and when I could have done better. So what do you, so we\'ve kind of covered what was the quickly the big, exciting moments of post status last year. And I don\'t want to put you too much on the spot, cause I think we can probably.</p>\n\n\n\n<p>Do a whole other episode about what\'s coming in 2022, but what are you most excited about maybe generally speaking, whether involves post status or not, as we kind of get into the first quarter of 2022 what Scott what\'s on your radar in terms of things that are interesting you the most in this.</p>\n\n\n\n<p><strong>Cory Miller:</strong> For process specifically it\'s small group cohort type meetings that we\'re going to be starting posters. So like we\'ll be starting January 12th. I think it is on the Wednesday, our first 2022 member huddle each week. We\'ll do that on slack. There\'s a channel there for that. So I like more than. We went, you know, finishing the year, getting to be with Matt Mullenweg and [00:19:00] awesome members like Aaron Campbell, and Jordan, Michelle Frechette and a different people in person for state of the word was freaking awesome.</p>\n\n\n\n<p>We, we missed the human. We have so much miss that human component in a recognize that in lieu of being able to do that. And we\'re going to try to do that in 2022 is be together, is if we can\'t, you know, in person we\'ll make the most of our online experiences. And so that\'s what I\'m most excited for the first quarter at Post Status.</p>\n\n\n\n<p><strong>David Bisset:</strong> Oh, great. I, again, I go back to the manifesto that was published and beyond the open web, again, there, there is a, the post status credo. Is embedded in, into growing the WordPress economy. And then by and by that, we mean growing the businesses that need the support, the individuals too, that also need that support a rising tide lifts all the boats.</p>\n\n\n\n<p>So in order for WordPress [00:20:00] to like eventually market share is not going to matter anymore. It\'s either, we\'re going to be able to lose the ability for the reporting of it or something else will take its place or the market share. From a certain metric is going to stop. I\'ve always said that\'s not really a good measure of how WordPress is doing. That\'s just an easy number to pluck off you know, in, in sticking in a sticker or stick it in a headline, stick it in a tweet, but the best way for, to judge the growth of WordPress in my opinion has always been the community, the strength of the community, because you can have software. Without the community.</p>\n\n\n\n<p>But you can\'t, there\'s not really much, you\'re going to be able to do with it. You\'re not going to enjoy using it. You\'re not going to look forward to using it with other people. And I think what you\'re discussing here is more than just centering around WordPress, the software. Once you have this community and slack and Post Status slack, you\'re talking to people about running your business.</p>\n\n\n\n<p>You\'re talking to these, all these great people and it\'s just, WordPress becomes just a thinner line that connects everybody into one. Great, huge. Community. And I\'m really looking forward, like you to see [00:21:00] how this expanded slack goes, how this more interactive ability, like some people will use, we use Post Status and just like they\'ll drop into slack, have a few conversation, reads things and leave.</p>\n\n\n\n<p>But I think now, especially going to 2022 is whether or not we\'re trying to judge carefully how to step back into the public, you know, however way that is and wherever we live. We need to be able to take advantage of having this collective community bonding together and meeting together regularly.</p>\n\n\n\n<p>Because sometimes even though you may not feel like it, sometimes you really need to have to talk to someone or be coached by someone or be enlightened, be refreshed, be relaxed by someone. And sometimes being people around that digitally even is better than nothing you don\'t want to be alone. I don\'t think for very long in this space emotionally or.</p>\n\n\n\n<p>Financially or business-wise either. So I think that\'s one of the best things of appreciating. Our direction at Post Status. It\'s not just like you said, we\'re not a new site. We\'re offering commentary, but what I\'m most excited, [00:22:00] what I saw you especially talk about is we\'re trying to get people to have conversations together.</p>\n\n\n\n<p>And, you know, on my end too, I\'m putting out a stage on Twitter spaces. For example, people communicating together their ideas because our community isn\'t going to be strong unless we\'re continuing the exchange of idea. And thoughts and advice. So that\'s awesome. Corey, that your vision, it kind of goes along that same path to.</p>\n\n\n\n<p>You know, I don\'t want to, I mean, it\'s not the, it\'s not the alcohol talking right now because it\'s still too early for that, but I do appreciate what you\'re doing. And so, yeah, so we\'ll, I\'m going to wish you a good year because there\'s only two more days left of it. So I mean, what could possibly go wrong?</p>\n\n\n\n<p>We\'ll talk next year. Yep. And I\'ll see you then and best to the family.</p>\n\n\n\n<p><strong>Cory Miller:</strong> You bet. Thanks so much for what you do, David. Your commitment to the WordPress community and also post status</p>\n\n\n\n<p><strong>David Bisset:</strong> and our team and our team. You know, our team deserves our team. The team itself deserves [00:23:00] all the praise we can get, especially in these in these times confusing times.</p>\n\n\n\n<p>So yes, we thank them as well.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yep.</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, 07 Jan 2022 05:00: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: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:64:\"WPTavern: New WordPress Plugin Offers a Markdown Editor Solution\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=127968\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:173:\"https://wptavern.com/new-wordpress-plugin-offers-a-markdown-editor-solution?utm_source=rss&utm_medium=rss&utm_campaign=new-wordpress-plugin-offers-a-markdown-editor-solution\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4955:\"<p class=\"has-drop-cap\">Earlier today, a new editor plugin named <a href=\"https://wordpress.org/plugins/markup-markdown/\">Markup Markdown</a> landed in the WordPress directory. It replaces both the classic and block editors with a Markdown solution. It is the first plugin by an author simply known as Peter, or @peter202202.</p>\n\n\n\n<p>As someone who almost always writes in Markdown, I did not think twice about downloading, installing, and activating it. I was pleasantly surprised to find a decent editor that I enjoyed &#8212; after making a few changes, at least.</p>\n\n\n\n<p>The plugin is not complicated to use. If you are familiar with writing in Markdown, you need to only activate it. There are no settings. Markup Markdown replaces the editor for all post types with its own.</p>\n\n\n\n<img />Markup Markdown editor.\n\n\n\n<p>The plugin relies on the <a href=\"https://parsedown.org/\">Parsedown</a> PHP library to handle front-end output, turning the Markdown into HTML. On the backend, it uses the <a href=\"https://easy-markdown-editor.tk/\">EasyMDE</a> script for a JS-based editor.</p>\n\n\n\n<p>While I am generally a fan of option-less plugins, this one could use a few. At the very least, users should get to choose which editor they prefer via their profile. On a multi-author site like the Tavern, not having this option means the plugin is a non-starter. I would also like to choose between editors for individual posts. It does not make sense for one already written in blocks to be edited in Markdown.</p>\n\n\n\n<p>The biggest issue I ran into with the plugin&#8217;s editor was that the font size was far too small and the content area too wide for comfortable writing. Therefore, I made a few CSS adjustments to make it more to my liking.</p>\n\n\n\n<img />Custom CSS adjustments.\n\n\n\n<p>Without these adjustments, I genuinely liked the plugin. However, the older I get, the more crucial readable typography becomes. My eyes prefer the change.</p>\n\n\n\n<p>In the future, I would like to see the plugin author at least use the theme-defined content width to set the writing area. With <code>theme.json</code> files becoming standard, I would pull typography-related styles in too. It does not need to do much &#8212; no need to try to go for a WYSIWYG experience.</p>\n\n\n\n<p>An alternative would be to add a few design options for configuring the editor. A handful of settings would go a long way in creating a more user-friendly experience.</p>\n\n\n\n<p>For the most part, I enjoyed tinkering with Markup Markdown. If this were five years ago, I would already have it on all my sites. And, it is likely an ideal solution for many Markdown lovers today.</p>\n\n\n\n<p>I still prefer the overall interface of the modern post-editing screen. I feel like I am traveling through time whenever I encounter the classic version. It is jarring enough that I doubt I would seriously use this plugin today. I would prefer a Markdown solution built on top of the block system.</p>\n\n\n\n<p>One downside of the plugin is that it may not work alongside some block themes. Some rely solely on <code>theme.json</code>-generated styles at the block level to handle their design. This means that valid HTML output not generated by the block system may be left unaccounted for.</p>\n\n\n\n<p>For example, the following <code>&lt;img&gt;</code> (image) tag wrapped inside <code>&lt;p&gt;</code> (paragraph) blows out of the layout when using Twenty Twenty-Two:</p>\n\n\n\n<img />Twenty Twenty-Two fails to contain large image.\n\n\n\n<p>There is nothing wrong with the HTML, and it is the standard way Markdown outputs images. This mistake is from the theme, not the plugin. The design is not accounting for large images when not output by a block. This is something that nearly all classic themes handle.</p>\n\n\n\n<p>A theme that covers all its bases will show the following:</p>\n\n\n\n<img />Custom theme that contains image.\n\n\n\n<p>I love block themes, but this is something to watch out for if using one alongside this plugin. Most of those I tested did not handle this scenario. This same problem could affect content written in the classic era or custom HTML.</p>\n\n\n\n<p>While on the subject of images, the plugin sticks with pure Markdown output. It has a button for pulling up the media library, but there is no way to insert anything but the full-sized image. Alignment classes are not available either.</p>\n\n\n\n<p>The latter problem could be solved if the plugin bundled <a href=\"https://parsedown.org/extra/\">Parsedown Extra</a>, a Parsedown extension that supports <a href=\"https://michelf.ca/projects/php-markdown/extra/\">Markdown Extra</a>. The specification allows &#8220;special attributes.&#8221; As someone who routinely writes in Markdown, I almost exclusively use this feature to add classes to images.</p>\n\n\n\n<p>Overall, the plugin is a solid solution for those looking for a Markdown-based editor. With it being a 1.x release, I look forward to seeing where it goes in the future.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Jan 2022 01:11: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: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:127:\"WPTavern: WordCamp Birmingham Updates COVID-19 Protocols Amid Omicron Surge, WordCamp Europe Still Planning for In-Person Event\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=127922\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:297:\"https://wptavern.com/wordcamp-birmingham-updates-covid-19-protocols-amid-omicron-surge-wordcamp-europe-still-planning-for-in-person-event?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-birmingham-updates-covid-19-protocols-amid-omicron-surge-wordcamp-europe-still-planning-for-in-person-event\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10040:\"<p>WordCamp organizers are responding to community concerns this week, as the more highly transmissible Omicron variant surges in many locations around the world. With WordCamp Birmingham less than a month away, the event&#8217;s COVID precautions came under greater scrutiny this week, as organizers work to adapt to the changing pandemic landscape. </p>\n\n\n\n<p>Yesterday, <a href=\"https://web.archive.org/web/20220105003454/https://birmingham.wordcamp.org/2022/faq/\">the event&#8217;s masking policy</a> stated &#8220;Masks are required for entry and preferred throughout the event,&#8221; setting off a heated conversation on Twitter.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I see wordcamp central is following the cdc laissez -faire style of recommendations…. “Masks are required for entry and preferred throughout the event.” Are you freakin kidding?? This is totally irresponsible. <a href=\"https://twitter.com/hashtag/wpyall?src=hash&ref_src=twsrc%5Etfw\">#wpyall</a></p>&mdash; Lucy Beer (@webtw) <a href=\"https://twitter.com/webtw/status/1478514593399861248?ref_src=twsrc%5Etfw\">January 4, 2022</a></blockquote>\n</div>\n\n\n\n<p>WordCamp Birmingham has since updated its <a href=\"https://birmingham.wordcamp.org/2022/covid-19-safety-protocols/\">COVID-19 safety protocols</a> to require masks inside the venue except when eating or drinking: </p>\n\n\n\n<ul><li>Stay at home if you feel even a tiny bit sick.</li><li>Temperature checks for entry on both days.</li><li>Masks will be required while inside our venue except when actively eating or drinking.</li></ul>\n\n\n\n<p>Attendees are also required to be vaccinated, or have recovered from COVID-19 within the last 3 months, or have recently tested negative. It doesn&#8217;t state any specific timeframe for having tested negative.</p>\n\n\n\n<p>&#8220;Our original masking recommendations were published prior to Omicron really taking hold and were based on our local laws, local health regulations, our venue&#8217;s input, and direction from WordPress Community Support,&#8221; WordCamp Birmingham lead organizer Ryan Marks said. &#8220;Since Omicron has become more prevalent, we are monitoring the situation and have evolved our guidelines as a result.&#8221;</p>\n\n\n\n<p>In what seemed to be an attempt to woo vaccine-hesitant Americans, the <a href=\"https://www.nbcnews.com/health/health-news/cdc-plans-drop-mask-requirements-fully-vaccinated-people-n1267249\">CDC removed indoor masking requirements</a> for those who were fully vaccinated in May 2021, when vaccines were working well. Since that time, coronavirus variants have emerged that evade both vaccine and virus-induced immunity. However, many gatherings and indoor event organizers have been slow to change their COVID-19 protocols in response to the latest developments. </p>\n\n\n\n<p>WordCamp Europe tweeted an update recognizing the recent discussions and changeable nature of the current threat, linking to a <a href=\"https://europe.wordcamp.org/2022/wordcamp-porto-and-covid-planning/\">post</a> on COVID planning from November 2021.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">We see a lot of discussions regarding COVID and <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a>. As a lot of things still can change in 5 months, we\'re planning for a safe event. More on this:<a href=\"https://t.co/4K23m5eCk7\">https://t.co/4K23m5eCk7</a></p>&mdash; WordCamp Europe (@WCEurope) <a href=\"https://twitter.com/WCEurope/status/1478723175844356096?ref_src=twsrc%5Etfw\">January 5, 2022</a></blockquote>\n</div>\n\n\n\n<p>Nilo Velez, one of the lead organizers for <a href=\"https://sevilla.wordcamp.org/2021/\">WordCamp Seville</a>, which took place in mid-December 2021, <a href=\"https://twitter.com/NiloVelez/status/1478727316679372805\">responded</a> to WCEU organizers with some advice.</p>\n\n\n\n<p>&#8220;I&#8217;ve been organizing in-person events during the last few months (including WordCamp Sevilla, with zero positives so far),&#8221; Velez said. &#8220;My top two take aways: 1) Airflow is your friend: plan for well-ventilated spaces and use CO2 meters on high people concentration areas.</p>\n\n\n\n<p>&#8220;2) Enforce the use of face masks indoors, always. Enforce as in &#8216;Put a f*cking mask on or go home&#8217; Excessive? State of the Word proves otherwise.&#8221;</p>\n\n\n\n<p>Velez referenced the recent incident at the State of the Word 2021 event where attendees were not required to wear masks indoors. <a href=\"https://wptavern.com/multiple-state-of-the-word-attendees-test-positive-for-covid-19\">Multiple attendees reported infections</a> following the event, which generated exposure notices for all in attendance. Attendees were left to make their own choices regarding indoor masking, and the resulting lack of masks was alarming to many onlookers as Omicron was spreading rapidly through New York City. Prospective attendees for future in-person WordCamps shared their reservations about the lax protocols on Twitter and said they are reconsidering WordCamps as a result. </p>\n\n\n\n<p>&#8220;In my opinion, masks are not a choice but a must,&#8221; Velez told the Tavern. &#8220;In Seville, the precautions we took were simple:</p>\n\n\n\n<ul><li><em>Absolutely everyone was required to (correctly) wear a mask when indoors. That included, organizers, sponsors, staff&#8230; even the catering workers. The only exception were the speakers and only on stage.</em></li><li><em>No food or drinks were allowed indoors. If you wanted to have a coffee or smoke, you had to get outside</em></li><li><em>The WHO advises 11 cubic meters of air per person. We had only 100 attendees on a huge room to get 20 cubic meters per person.</em></li><li><em>We had a very short schedule, only 5 talks with long (outdoor) breaks every hour</em>&#8220;</li></ul>\n\n\n\n<p>Velez said his team had a streaming option for those who aren&#8217;t ready for in-person WordCamps and they were ready to switch to an entirely online event if necessary.</p>\n\n\n\n<p>&#8220;We also have had three in-person meetups with no reported cases so far,&#8221; Velez said. &#8220;Weather helps a lot. Today at noon (5th of January) we were at 20ºC (68ºC). That allows you to stay indoors only during the talks and have all the social activities outside.&#8221;</p>\n\n\n\n<p>WordCamp Birmingham attendees have posted about how excited they are to attend the event, no matter what the protocols, after two years away from their WordPress friends. On the other hand, there are others who hold the opinion that organizing any kind of in-person event at this time while, hospitals are becoming overwhelmed, is premature and irresponsible.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/hashtag/Omicron?src=hash&ref_src=twsrc%5Etfw\">#Omicron</a> is surfing world-wide. Hospitals are at the breaking point already. Organizing an in-person conference in the next several months is irresponsible and puts not just the attendees but their communities at risk. <a href=\"https://twitter.com/hashtag/wpyall?src=hash&ref_src=twsrc%5Etfw\">#wpyall</a> <a href=\"https://t.co/C0hcrnvELs\">https://t.co/C0hcrnvELs</a></p>&mdash; Morten Rand-Hendriksen (@mor10) <a href=\"https://twitter.com/mor10/status/1478790408482164737?ref_src=twsrc%5Etfw\">January 5, 2022</a></blockquote>\n</div>\n\n\n\n<p>After speaking with WordCamp Europe&#8217;s lead organizers this morning, they are closely monitoring the situation and believe that a safe in-person event is still possible.</p>\n\n\n\n<p>&#8220;WordCamp Seville was a successful and safe event,&#8221; co-organizer Bernhard Kau said. &#8220;Some of our organizers went there. Also, the Web Summit in Lisbon with more than 42,000 had excellent measures. Those are events we see as&nbsp; examples.&#8221;</p>\n\n\n\n<p>Organizers are eager to host the first in-person WordCamp Europe in three years but are willing to move to alternatives if new pandemic threats emerge in the next five months.</p>\n\n\n\n<p>&#8220;At the moment our plan is to go for an in-person event but there will always be a plan B or C,&#8221; WCEU Public Relations team leader Evangelia Pappa said. &#8220;We wouldn’t want people to get in danger in any way. These people are our friends and family. They’re not just attendees or sponsors, speakers, volunteers. Keeping safe means also keeping our beloved safe when we get back home.&#8221;</p>\n\n\n\n<p>Pappa said the team plans to follow all local regulations for in-person events with more than 1,000 attendees in a closed space. The regulations keep changing but for now they are requiring the following:  </p>\n\n\n\n<ol><li>Proof of vaccination AND proof of negative lab test is mandatory when entering Portugal</li><li>Masks are compulsory to enter the venue or remain inside</li><li>Maintain the basic guidelines (1.5 m distance, hand sanitizing, ventilate, face mask)</li></ol>\n\n\n\n<p>&#8220;Since we’re keeping constantly an eye on this, we may enforce other regulations on top of these, but it depends on the gravity of the situation,&#8221; Pappa said. </p>\n\n\n\n<p>&#8220;Our aim is to get back to seeing our people, have a great in-person event, but when everyone goes back home, we’re all safe, our families are safe and we get to remember the WCEU 2022 as an amazing experience.&#8221;</p>\n\n\n\n<p>WordPress&#8217; Community Team has been <a href=\"https://wordpress.slack.com/archives/C037W5S7X/p1641471764024000\">discussing new ideas for supporting the safety of in-person events in 2022</a> and plans to share more in a blog post next week. One safety measure suggested is mandatory masks for all attendees (even in regions that do not have a mask mandate at this time). WordCamp Central has agreed to cover the budget for additional safety measures like free masks and hand sanitization stations. Contributors plan to engage this sensitive topic with a larger discussion next week.</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, 06 Jan 2022 22:14: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: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:52:\"WordPress.org blog: WordPress 5.8.3 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11999\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2022/01/wordpress-5-8-3-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3679:\"<p>This security release features four security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.8.3 is a short-cycle security release. The next major release will be version <a href=\"https://make.wordpress.org/core/5-9/\">5.9</a>, which is already in the Release Candidate stage.</p>\n\n\n\n<p>You can update to WordPress 5.8.3 by downloading from WordPress.org or visiting your Dashboard → Updates and clicking 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 id=\"security-updates\">Security Updates</h3>\n\n\n\n<p>Four security issues affect WordPress versions between 3.7 and 5.8. If you haven’t yet updated to 5.8, all WordPress versions since 3.7 have also been updated to fix the following security issue (except where noted otherwise):</p>\n\n\n\n<ul><li>Props to Karim El Ouerghemmi and Simon Scannell of <a href=\"https://www.sonarsource.com/\">SonarSource</a> for disclosing an issue with stored XSS through post slugs.</li><li>Props to Simon Scannell of <a href=\"https://www.sonarsource.com/\">SonarSource</a> for reporting an issue with Object injection in some multisite installations.</li><li>Props to ngocnb and khuyenn from <a href=\"https://giaohangtietkiem.vn/\">GiaoHangTietKiem JSC</a> for working with <a href=\"https://www.zerodayinitiative.com/\">Trend Micro Zero Day Initiative</a> on reporting a SQL injection vulnerability in WP_Query.</li><li>Props to Ben Bidner from the WordPress security team for reporting a SQL injection vulnerability in WP_Meta_Query (only relevant to versions 4.1-5.8). </li></ul>\n\n\n\n<p>Thank you to all of the reporters above for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>. This gave the security team time to fix the vulnerabilities before WordPress sites could be attacked. Thank you to the members of the WordPress security team for implementing these fixes in WordPress.</p>\n\n\n\n<p>For more information, check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-8-3/\">5.8.3 HelpHub documentation page</a>.</p>\n\n\n\n<h3 id=\"thanks-and-props\">Thanks and props!</h3>\n\n\n\n<p>The 5.8.3 release was led by <a href=\"https://profiles.wordpress.org/desrosj/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>desrosj</a> and <a href=\"https://profiles.wordpress.org/circlecube/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>circlecube</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.3 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, and <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</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, 06 Jan 2022 21:02: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: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: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:100:\"WPTavern: Gutenberg 12.3 Introduces New Blocks, Design Options, and a Complete Core Blocks Reference\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=127924\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:241:\"https://wptavern.com/gutenberg-12-3-introduces-new-blocks-design-options-and-a-complete-core-blocks-reference?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-12-3-introduces-new-blocks-design-options-and-a-complete-core-blocks-reference\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6363:\"<p class=\"has-drop-cap\">The first <a href=\"https://make.wordpress.org/core/2022/01/05/whats-new-in-gutenberg-12-3-5-january/\">Gutenberg plugin release</a> of the year contains loads of features. Developers should enjoy a completed core blocks reference. Group block spacing controls offer more layout flexibility, and a new Post Author Name block has arrived on the scene. Overall, the site editing experience is shaping up.</p>\n\n\n\n<p>The latest release adds a couple of nice-to-have design options. The Group block now <a href=\"https://github.com/WordPress/gutenberg/pull/37456\">supports typography options</a>. This should make it easier for users and theme designers to change the font size, family, and more for all child blocks at once. The Spacer block <a href=\"https://github.com/WordPress/gutenberg/pull/36186\">supports custom units</a>, so users are no longer restricted to pixels. Paragraphs now have a <a href=\"https://github.com/WordPress/gutenberg/pull/37586\">font-family option</a>.</p>\n\n\n\n<p>Theme authors can now register <a href=\"https://github.com/WordPress/gutenberg/pull/37410\">&#8220;nameless&#8221; font sizes</a> to support the core sizes. They also have new Comments Pagination <a href=\"https://github.com/WordPress/gutenberg/pull/36912\">Previous</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/36562\">Next</a> blocks for handling paged comments.</p>\n\n\n\n<p>Users without the <code>edit_theme_options</code> capability (Administrators by default) can <a href=\"https://github.com/WordPress/gutenberg/pull/37454\">no longer create nav menus</a> via the site editor. However, they can select an existing one via the Navigation block. This returns menu creation to its original restrictions.</p>\n\n\n\n<p>Let us dive right into some of the big features.</p>\n\n\n\n<h2 id=\"complete-blocks-reference\">Complete Blocks Reference</h2>\n\n\n\n<p class=\"has-drop-cap\">While the average user may never look at it, the <a href=\"https://developer.wordpress.org/block-editor/reference-guides/core-blocks/\">Core Blocks Reference</a> in the editor handbook should be a welcome sight to developers. It is almost impossible to remember all the blocks and everything about them.</p>\n\n\n\n<p>The data is automatically generated. Each block in the reference displays the following information:</p>\n\n\n\n<ul><li>Name</li><li>Category</li><li>Supports</li><li>Attributes</li></ul>\n\n\n\n<p>I would love for WordPress.org to automatically display this for all block plugins in the future. The data is standardized through <code>block.json</code> files, so there is no reason it should not be possible. Otherwise, individual plugin authors would need to recreate this to share their own references.</p>\n\n\n\n<h2 id=\"use-site-logo-as-favicon\">Use Site Logo as Favicon</h2>\n\n\n\n<p class=\"has-drop-cap\">Users can now save the image used for the <a href=\"https://github.com/WordPress/gutenberg/pull/35892\">Site Logo block as their site icon</a> (favicon) via the site editor. This is a step in the right direction now that the customizer is disappearing for block theme users. They will need an easy way to set this.</p>\n\n\n\n<img />New &#8220;Use as site icon&#8221; option.\n\n\n\n<p>There are two downsides to this solution. The first is that this option is enabled by default. If a user does not notice it, they could be overwriting their existing site icon without knowing. Logos and icons do not always match. The WP Tavern website shows a prime example of this.</p>\n\n\n\n<p>The second issue is that we need a dedicated site icon option. Adding it to one of the available settings screens in the admin would be a simple solution. That would give time to figure out how to eventually work it into the site editor.</p>\n\n\n\n<h2 id=\"post-author-name-block\">Post Author Name Block</h2>\n\n\n\n<p class=\"has-drop-cap\">Gutenberg 12.3 introduces a new <a href=\"https://github.com/WordPress/gutenberg/pull/36001\">Post Author Name block</a>. As its name suggests, it displays a post&#8217;s author.  It is something so seemingly simple, but when you have been waiting ages for it &#8212; well, <a href=\"https://github.com/WordPress/gutenberg/issues/24952#issuecomment-840994975\">since May 2021</a>, technically &#8212; it feels monumental. To show how happy I am to see this block, I made five custom styles for it.</p>\n\n\n\n<img />Tinkering with custom Post Author Name block styles.\n\n\n\n<p>This is a part of an effort to <a href=\"https://github.com/WordPress/gutenberg/issues/35596\">split the original Post Author block</a> into smaller components. Currently, it can display the author name, avatar, bio, and custom byline text. If a theme designer needs just the author text in a one-line meta area, a user enabling those other elements via the site editor usually blows the entire thing up.</p>\n\n\n\n<p>Separate Post Author Avatar and Post Author Bio blocks are planned. When these next two land, it will give theme authors more flexibility.</p>\n\n\n\n<h2 id=\"group-block-spacing-control\">Group Block Spacing Control</h2>\n\n\n\n<p class=\"has-drop-cap\">I feel like a kid in a toyshop to see more than one of my long-time gripes taken care of in this release. The Group block now <a href=\"https://github.com/WordPress/gutenberg/pull/37459\">supports the Block Spacing control</a>. This allows users and theme authors to define the margin between its child blocks.</p>\n\n\n\n<p>One of the primary use cases for this is collapsing margins between similar elements. For example, a user might want to group three File blocks together without any whitespace between them, as shown in the following screenshot:</p>\n\n\n\n<img />Stacked blocks.\n\n\n\n<p>Typically, these blocks would have the standard top margins between each. By setting the block spacing to <code>0</code>, users can wipe them out.</p>\n\n\n\n<p>&#8220;Zeroing out&#8221; margins has been one of the most frustrating problems to solve for some themers, especially when dealing with wide or full-aligned blocks. The WordPress editor&#8217;s HTML markup does not match the front-end in those cases. A block spacing control on the Group block solves this issue for several scenarios.</p>\n\n\n\n<p>Of course, it is not all about getting rid of margins between blocks. It is also possible to create even more space.</p>\n\n\n\n<p>When using the Row variation of the Group block, the spacing is horizontal. This should also take care of a lot of theme layout 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, 06 Jan 2022 01:14:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:60:\"WordPress.org blog: The Month in WordPress – December 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=11972\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2022/01/the-month-in-wordpress-december-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:13055:\"<p>December was a busy month for the WordPress community. In the<a href=\"https://wordpress.org/news/2021/12/episode-22-a-carol-of-thanks/\"> latest episode of the WP Briefing podcast</a>, WordPress Executive Director Josepha Haden Chomphosy shares a carol of thanks and shows her gratitude to all the people who make the WordPress project a success.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>(&#8230;) I know that we have gotten so much done together in the last few years. And I am equally sure that we’re going to get so much done in the years to come. And so thank you all so much for your continued work with WordPress and the way that you just bring your best at all times.</p><cite>Josepha Haden, Executive Director of the WordPress project</cite></blockquote>\n\n\n\n<p>We said goodbye to 2021 with the annual State of the Word, along with the release of WordPress 5.9 Beta 4, among many other exciting updates. Read on to learn more about the latest community achievements.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 id=\"wordpress-5-9-the-first-release-candidate-just-landed\">WordPress 5.9: The first release candidate just landed</h2>\n\n\n\n<ul><li>Following the<a href=\"https://wordpress.org/news/2021/12/wordpress-5-9-beta-3/\"> Beta 3</a> and<a href=\"https://wordpress.org/news/2021/12/wordpress-5-9-beta-4/\"> Beta 4</a> releases in December, the first <a href=\"https://wordpress.org/news/2022/01/wordpress-5-9-rc-1/\">release candidate for WordPress 5.9</a> is now out and available for testing.</li><li>With less than three weeks to go until the final release, this version continues the work from last year and marks the hard<a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\"> string freeze point</a> of the 5.9 release schedule.</li><li>Follow the <a href=\"https://make.wordpress.org/core/tag/5-9+dev-notes/\">5.9 developer notes</a> to learn more about the <a href=\"https://make.wordpress.org/core/2022/01/04/miscellaneous-core-changes-in-wordpress-5-9/\">changes</a> and updates coming with this release.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Are you interested in contributing to WordPress core?</strong> 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>. 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\">8 PM</a> UTC.</p></blockquote>\n\n\n\n<h2 id=\"gutenberg-releases-versions-12-1-and-12-2-are-here\">Gutenberg releases: Versions 12.1 and 12.2 are here</h2>\n\n\n\n<p>The Core Team launched two new versions of Gutenberg last month. Both come with new features, code quality improvements, and bug fixes.</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2021/12/08/whats-new-in-gutenberg-12-1-8-december/\">Gutenberg 12.1</a> marks the return of the template List View and includes several Navigation block enhancements, new global styles features, an improved developer experience for block themes, and more.</li><li>The<a href=\"https://make.wordpress.org/core/2021/12/22/whats-new-in-gutenberg-12-2-22-december/\"> Gutenberg 12.2</a> release focuses on user experience improvements and brings the block styles preview to the Widgets Editor, among other new features.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Want to get involved in developing Gutenberg?</strong> Follow <a href=\"https://make.wordpress.org/core/\">the Core Team blog</a>, contribute to Gutenberg on <a href=\"https://github.com/WordPress/gutenberg/\">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>. Follow the <a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">#gutenberg-new</a> tag for details on the latest updates.</p></blockquote>\n\n\n\n<h2 id=\"highlights-from-state-of-the-word-2021\">Highlights from State of the Word 2021</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2021/12/highlights-from-state-of-the-word-2021/\">State of the Word 2021</a>, the annual keynote address delivered by WordPress co-founder Matt Mullenweg, was livestreamed from New York City on December 14, 2021. The event gathered WordPress enthusiasts at 29 watch parties around the world.</li><li>Matt shared his thoughts on the progress of the WordPress project and made announcements regarding its future in 2022. The presentation was followed by a Question and Answer session.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>If you missed the event’s livestream, you could watch the </strong><a href=\"https://wordpress.tv/2021/12/15/matt-mullenweg-2021-state-of-the-word/\"><strong>State of the Word recording</strong></a><strong> and the </strong><a href=\"https://wordpress.tv/2021/12/15/matt-mullenweg-state-of-the-word-2021-qa/\"><strong>Q&amp;A session</strong></a><strong> on WordPress.tv.</strong></p></blockquote>\n\n\n\n<h2 id=\"team-updates-2022-major-release-timings-new-team-rep-announcements-and-more\">Team updates: 2022 major release timings, new team rep announcements, and more</h2>\n\n\n\n<ul><li>The Core Team opened a discussion on <a href=\"https://make.wordpress.org/core/2021/12/17/discussion-2022-major-release-timing/\">the release dates for 2022</a> and the possibility of having four major WordPress releases this year.</li><li>The following teams announced their team representatives for 2022: <a href=\"https://make.wordpress.org/themes/2021/12/03/introducing-new-themes-team-representatives/\">Themes</a>, <a href=\"https://make.wordpress.org/support/2021/12/agenda-for-the-december-9-support-meeting/\">Support</a>, <a href=\"https://make.wordpress.org/polyglots/2021/11/08/call-for-polyglots-team-representatives/#comment-293358\">Polyglots</a>, and <a href=\"https://make.wordpress.org/community/2022/01/03/announcement-team-representatives-for-2022/\">Community</a>.</li><li>In 2021, 2572 people contributed to WordPress source code using Trac, including 305 first-timers. Check out <a href=\"https://make.wordpress.org/core/2021/12/29/a-year-in-core-2021/\">A Year in Core – 2021</a> for more interesting stats on WordPress Core contributions.</li><li>The Diverse Speaker Training Group (#WPDiversity) shared its accomplishments from last year in this<a href=\"https://make.wordpress.org/community/2021/12/14/diverse-speaker-training-group-wpdiversity-2021-year-end-report/\"> 2021 year-end report</a>.</li><li>The Training Team<a href=\"https://make.wordpress.org/training/2021/12/07/december-2021-team-sprint/\"> planned a sprint</a> to audit and revisit the Learn WordPress content for the WordPress 5.9 release.</li><li>The Design Team summarized some of the key changes behind the<a href=\"https://make.wordpress.org/design/2021/12/17/redesign-of-openverse/\"> Openverse redesign</a>.</li><li>The December 2021 editions of the <a href=\"https://make.wordpress.org/polyglots/2021/12/20/polyglots-monthly-newsletter-december-2021/\">Polyglots Monthly Newsletter</a> and the<a href=\"https://make.wordpress.org/community/2021/12/14/meetup-organizer-newsletter-december-2021/\"> Meetup Organizer Newsletter</a> are out.</li><li>The latest edition of<a href=\"https://wordpress.org/news/2021/12/people-of-wordpress-collins-agbonghama/\"> </a>People of WordPress features <a href=\"https://wordpress.org/news/2021/12/people-of-wordpress-collins-agbonghama/\">Collins Agbonghama</a> from Nigeria.</li><li>The Core Team <a href=\"https://make.wordpress.org/core/2022/01/05/proposal-changes-to-javascript-coding-standards-for-full-prettier-compatibility/\">announced a proposal</a> to change the JavaScript coding standards for complete Prettier compatibility.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Are you looking for some 5.9 resources to share with your local community? </strong>Check out the <a href=\"https://make.wordpress.org/community/2021/12/10/wordpress-5-9-talking-points/\">WordPress 5.9 Talking Points for Meetup Organizers</a> post.</p></blockquote>\n\n\n\n<h2 id=\"feedback-testing-requests-contribute-by-testing-or-translating-wordpress-5-9\">Feedback/Testing requests: Contribute by testing or translating WordPress 5.9</h2>\n\n\n\n<ul><li>Your feedback on WordPress 5.9 release candidates is still needed and appreciated! If you haven’t tried this version yet, you can find instructions on testing 5.9 features <a href=\"https://make.wordpress.org/test/2021/11/30/help-test-wordpress-5-9-features/\">in this post</a>.</li><li>Do you speak a language other than English? The Polyglots Team announced that <a href=\"https://make.wordpress.org/polyglots/2021/12/16/wordpress-5-9-ready-to-be-translated/\">WordPress 5.9 is also ready to be translated</a>.</li><li>Version 18.9 of WordPress for<a href=\"https://make.wordpress.org/mobile/2021/12/14/call-for-testing-wordpress-for-android-18-9/\"> Android</a> is available for testing.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><a href=\"https://make.wordpress.org/test/2021/11/30/help-test-wordpress-5-9-features/\"><strong>Share your feedback</strong></a><strong> on WordPress 5.9.</strong></p></blockquote>\n\n\n\n<h2 id=\"apply-to-speak-or-host-a-workshop-at-wordcamp-europe-2022\">Apply to speak or host a workshop at WordCamp Europe 2022</h2>\n\n\n\n<ul><li>WordCamp US 2022 is currently looking for<a href=\"https://us.wordcamp.org/2022/are-you-ready-to-be-a-2022-organizer/\"> organizers</a>.</li><li>The WordPress community celebrated its first in-person WordCamp after 21 months in<a href=\"https://sevilla.wordcamp.org/2021/\"> Sevilla (Spain)</a> on December 11-12, 2021.<a href=\"https://taiwan.wordcamp.org/2021/\"> WordCamp Taiwan</a> was held online the same weekend.</li><li>The Test Team organized the Hallway Hangout titled <a href=\"https://make.wordpress.org/test/2021/12/21/hallway-hangout-lets-talk-about-wordpress-6-0/\">Let’s talk about WordPress 6.0</a> on December 21, 2021. The team also shared a wrap-up of the <a href=\"https://make.wordpress.org/test/2021/12/16/fse-program-site-editing-safari-summary/\">Site Editing Safari</a> as part of the <a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/\">FSE Outreach Program</a>.</li><li>The Training Team hosted several WordPress Social Learning Meetups last month, and there will be many more in <a href=\"https://www.meetup.com/wordpress-social-learning/events/\">January 2022</a>.</li><li>Last year the WordPress Foundation made significant progress in its mission to educate the public about open source software. Learn more about it in this <a href=\"https://wordpressfoundation.org/news/2021/looking-back-at-2021/\">2021 recap</a>.</li></ul>\n\n\n\n<p>Don’t miss the following upcoming WordCamps: <a href=\"https://birmingham.wordcamp.org/2022/\">WordCamp Birmingham, Alabama 2022</a>,<a href=\"https://vienna.wordcamp.org/2022/\"> </a><a href=\"https://geneve.wordcamp.org/2022/\">WordCamp Genève 2022</a><a href=\"https://vienna.wordcamp.org/2022/\">, WordCamp Vienna 2022</a>, and <a href=\"https://europe.wordcamp.org/2022/\">WordCamp Europe 2022</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>The</strong><a href=\"https://europe.wordcamp.org/2022/call-for-sponsors/\"><strong> Call For Sponsors</strong></a><strong> and </strong><a href=\"https://europe.wordcamp.org/2022/call-for-speakers/\"><strong>Call For Speakers</strong></a><strong> for WordCamp Europe 2022 are open! </strong>Read <a href=\"https://europe.wordcamp.org/2022/a-sneak-peek-at-wceu2022/\">this post</a> to learn more about the Organizing Team&#8217;s plans for the first in-person WordCamp Europe in three years.</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/\"><strong><em>this form</em></strong></a><strong><em>.</em></strong></p>\n\n\n\n<p><em>The following folks contributed to December 2021’s Month in WordPress: <a href=\"https://profiles.wordpress.org/anjanavasan/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>anjanavasan</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/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/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a></em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Jan 2022 19:03: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:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:74:\"WPTavern: Anariel Design Releases Bricksy, Its Third WordPress 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=127820\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"https://wptavern.com/anariel-design-releases-bricksy-its-third-wordpress-block-theme?utm_source=rss&utm_medium=rss&utm_campaign=anariel-design-releases-bricksy-its-third-wordpress-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:4675:\"<p class=\"has-drop-cap\">Yesterday, Anariel Design&#8217;s third block theme, <a href=\"https://wordpress.org/themes/bricksy/\">Bricksy</a>, went live in the WordPress.org directory. Ana Segota, the co-founder and self-proclaimed &#8220;creative motor&#8221; of the company, has almost become a master at block-based theme design at this point, and this project is just her showing off her skills.</p>\n\n\n\n<p>I actually took the theme for a spin over the weekend when I saw it was waiting in the review queue, so I have had a few days to play around with it. Despite a few trivial issues, it has quickly become one of my favorite block themes.</p>\n\n\n\n<img />Bricksy blog page design.\n\n\n\n<p>While I have generally liked Anariel Design&#8217;s two previous block themes, <a href=\"https://wptavern.com/anariel-design-launches-naledi-a-block-based-wordpress-theme\">Naledi</a> and <a href=\"https://wptavern.com/clove-a-showcase-of-block-patterns-by-anariel-design\">Clove</a>, I could not see myself installing them on a real-world project. They were simply not my personal style. However, Bricksy is a theme I would definitely use if I had a project for it at the moment.</p>\n\n\n\n<p>One of my favorite design elements is the cursive handwriting for the site logo, which is also used across various patterns.</p>\n\n\n\n<img />Team Alternative pattern with cursive header image.\n\n\n\n<p>The downside is that these are images, so they are not easily recreated by end-users without Photoshop chops. I would like to see the team reconsider using a handwriting-style font &#8212; maybe <a href=\"https://fonts.google.com/?category=Handwriting\">one from Google Fonts</a> &#8212; that allows users to add custom text directly from the editor.</p>\n\n\n\n<p>Bricksy has, hands down, some of the most beautifully-designed patterns I have seen in a block theme yet. In total, there are 32.</p>\n\n\n\n<img />Bricksy&#8217;s general block patterns.\n\n\n\n<p>It is making an early bid for my favorite theme of 2022, but I will not get ahead of myself. We still have almost an entire 12 months to go before I make that call.</p>\n\n\n\n<p>It even includes a custom social links layout. More and more themes are bundling their own takes on this pattern, but Bricksy&#8217;s color scheme and default Cover block image stand out.</p>\n\n\n\n<img />Social Links block pattern.\n\n\n\n<p>With 32 patterns, I could dedicate an entire post to them all, but I am limited on time. For the most part, they are layout-focused rather than industry-focused patterns. This means they can be used on a vast range of sites. However, the pricing tables and team sections make sense for small businesses. Bricksy also supports WooCommerce.</p>\n\n\n\n<p>The most striking thing about each pattern is that they all seem to fit within the theme&#8217;s overall design. Often, when themes include dozens of block patterns, some of them can feel like an additional option simply for the sake of adding one more thing in. And, that never feels like the case with Bricksy.</p>\n\n\n\n<p>For long-form content, the theme is decent. However, it could be better. Its 720px content width and 18px font size can quickly grow hard to read. Cutting the width anywhere from 80px to 120px makes it much more comfortable. Bumping the font size up a couple of extra pixels works too.</p>\n\n\n\n<p>When I first activated the theme, I thought it was utterly broken. I had wondered how it managed to slip through the review system. The theme&#8217;s header was outputting seemingly random demo content. But, it was also familiar. I was positive it was a test post from my install.</p>\n\n\n\n<img />Nav menu showing a blog post&#8217;s content.\n\n\n\n<p>The issue was tough to hunt down. After everything from deactivating plugins to scrubbing templates from the database, I finally found it. The <code>ref</code> key for the Navigation block in the theme&#8217;s <code>header.html</code> template part was the culprit. Bricksy pointed to a specific post ID in the code:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!-- wp:navigation {\"ref\":4790,\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--&gt;</code></pre>\n\n\n\n<p><code>4790</code> is the ID of a literal post on my test install, so the Navigation block showed its content instead of a menu. Most likely, this was directly copied or exported from the site editor. Theme authors need to watch out for specific ID references in their code when building from the editor, making sure to remove them before shipping.</p>\n\n\n\n<p>Aside from a couple of trivial issues and a single <em>OMGBBQ</em> one after activation, I enjoyed using the theme. It has found its place in my recommended-themes list.</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, 04 Jan 2022 23:42:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"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:84:\"WPTavern: Yoast Moves Outside of Open Source Platforms to Launch SEO App for Shopify\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=127863\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:213:\"https://wptavern.com/yoast-moves-outside-of-open-source-platforms-to-launch-seo-app-for-shopify?utm_source=rss&utm_medium=rss&utm_campaign=yoast-moves-outside-of-open-source-platforms-to-launch-seo-app-for-shopify\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7617:\"<p>After 10 years in the WordPress ecosystem as one of the most popular plugin businesses, Yoast is branching out with a new <a href=\"https://yoast.com/yoast-seo-is-coming-to-shopify/\">SEO app for the Shopify market</a>. The app will offer Shopify merchants a set of optimizations for search results and Google Shopping, automatically add structured data, and allows users to optimize for desired keyphrases. It will launch in the Shopify app store on January 18, 2022.</p>\n\n\n\n<p>&#8220;An app on the Shopify platform is a huge business opportunity,&#8221; Yoast CEO Thijs de Valk said. &#8220;Shopify is growing fast. It makes sense to build an app and profit from the growth of that specific platform.&#8221;</p>\n\n\n\n<p>Shopify is the second-fastest growing CMS, according to <a href=\"https://w3techs.com/blog/entry/web_technologies_of_the_year_2021\">W3Techs&#8217; 2021 data</a>, used on 4.4% of websites, up from 3.2% last year. The next closest contender, Wix, passed up Joomla and Drupal in 2021, furthering a trend of hosted, closed source software platforms burying open source CMS&#8217;s. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>In his biannual <a href=\"https://joost.blog/cms-market-share/\">CMS market share analysis</a>, Yoast founder Joost de Valk observed WordPress&#8217; slowed growth as compared to earlier in the pandemic and commented that the platform does not appear to be heading towards  50% market share as he would have projected based on the numbers a year ago. </p>\n\n\n\n<p>&#8220;Shopify continues to show amazing growth, in some months in the last 6 months it even managed to match the growth of WordPress in absolute numbers,&#8221; de Valk said. &#8220;Similarly, Wix has stepped up the pace and is growing rapidly.&#8221; He projects Shopify&#8217;s market share will be over 5% within the next six months.</p>\n\n\n\n<div class=\"wp-block-image\"><img />Joost de Valk&#8217;s <a href=\"https://joost.blog/cms-market-share/\">CMS market share analysis</a> &#8211; December 2021</div>\n\n\n\n<p>&#8220;The growth of Yoast (up until now) has been highly dependent on WordPress,&#8221; Thijs de Valk said. &#8220;That makes us a bit vulnerable. When deciding to build the Shopify&nbsp;app, we were not acquired by&nbsp;Newfold&nbsp;Digital yet. The decision to build that app was also one of risk-diversification. Having an app&nbsp;or plugin&nbsp;on multiple platforms just makes sure that our company can&nbsp;grow sustainably.&#8221;</p>\n\n\n\n<p>Breaking into a new market, de Valk said the experience so far is very different. </p>\n\n\n\n<p>&#8220;Shopify is a different ecosystem, much more commercialized than WordPress,&#8221; he said. Product pricing for the hosted platform is higher than what users might pay monthly for a plugin in the WordPress ecosystem. The <a href=\"https://yoast.com/shopify/apps/yoast-seo/\">Yoast SEO app</a> is starting out on the Shopify App Store at $29/month, which de Valk says is competitively priced.</p>\n\n\n\n<p>&#8220;That makes the Shopify market attractive to extend to,&#8221; de Valk said. &#8220;We have big dreams to grow our company further (in and outside of WordPress) and success in Shopify would make that a lot easier.&#8221;</p>\n\n\n\n<p>Unlike the WordPress plugin repository, the Shopify App Store doesn&#8217;t publish numbers of users for each app, so it&#8217;s not easy to see who Yoast SEO&#8217;s main competitors will be. <a href=\"https://apps.shopify.com/search?q=SEO\">SEO apps for Shopify</a> are already a someone crowded space and many apps, such as <a href=\"https://apps.shopify.com/seo-king\">SEO King</a>, have more features, a free plan, more competitive pricing, and hundreds of positive reviews already. Yoast SEO will have a challenge ahead, entering a market with many established competitors. </p>\n\n\n\n<p>de Valk said Yoast has not hired any Shopify developers but is relying on the current employees&#8217; skills.</p>\n\n\n\n<p>&#8220;Most of what was needed we already knew, or learned on the job, as we do,&#8221; he said. The company has had internal discussions about the fact that employees are now asked to write closed source software.</p>\n\n\n\n<p>&#8220;We’re breaking with our tradition to only release Yoast SEO software to open-source platforms,&#8221; de Valk said. &#8220;Shopify is closed source. We had a lot of conversations about that because at Yoast we’re&nbsp;<a href=\"https://yoast.com/open-source-story/\">open-source fanboys and girls</a>. At the same time,&nbsp;<em>making the web better</em>&nbsp;is also something very dear to our heart. And we think that Shopify is making the web better.&#8221;</p>\n\n\n\n<p>de Valk confirmed that all Yoast employees were on board with developing closed source software and none of them moved on as a result of the change. The company&#8217;s more nebulous &#8220;making the web better&#8221; mission trumped its commitment to open source software in this case. </p>\n\n\n\n<p>In 2021, <a href=\"https://make.wordpress.org/core/2021/12/29/a-year-in-core-2021/\">Yoast was one of the biggest contributors to WordPress core</a> through its <a href=\"https://wordpress.org/five-for-the-future/pledge/yoast/\">Five for the Future pledge</a>. The company plans to continue its commitments to WordPress and will be expanding its charitable giving  from the expected Shopify profits. Yoast is calling this new initiative &#8220;Five for the web.&#8221; This strikes me as an odd choice, as the intention of the Five for the Future program is to avoid the &#8220;<a href=\"https://en.wikipedia.org/wiki/Tragedy_of_the_commons\">tragedy of the commons</a>&#8221; scenario, which affects open access resource systems like open source software. This is clearly outlined on Yoast&#8217;s website in the <a href=\"https://yoast.com/open-source-story/#open-source-or-not\">section on open source</a> where it states, &#8220;At Yoast, it’s at the heart of what we do.&#8221;</p>\n\n\n\n<p>&#8220;With the money we make in Shopify, we want to give back as well,&#8221; de Valk said. &#8220;We’re going to give that money back to initiatives that make the entire web better. We’re already doing some things there. Yoast is a member of the&nbsp;<a href=\"https://www.w3.org/\">W3C</a>, and our very own Jono Alderson is in the&nbsp;<a href=\"https://amp.dev/\">AMP advisory board</a>.&nbsp;We’re planning to grow our efforts and initiatives to make the web better and give 5% of our Shopify revenue back to the web.&#8221;</p>\n\n\n\n<p>Yoast&#8217;s intention to support the <a href=\"https://wptavern.com/amp-has-irreparably-damaged-publishers-trust-in-google-led-initiatives\">controversial AMP project</a> with a portion of its 5% profits is a curious choice, as the initiative is already heavily financially backed by Google and doesn&#8217;t appear to be soliciting donations. When asked what kind of influence or accountability the company is bringing to the AMP Advisory Board, de Valk said their primary goal is to offer advice.</p>\n\n\n\n<p>&#8220;AMP is just one of the things we do, we also support w3c, we make tools for PHP testing, and we’ll be supporting a lot more,&#8221; he said. &#8220;We put time into the AMP advisory committee with the goal to provide advice to the Technical Steering Committee. And in that way we try, as I said, to make the open web as strong as possible.&#8221;</p>\n\n\n\n<p>Yoast will be hosting an <a href=\"https://yoast.com/yoastcon/\">Online Yoastcon – Shopify Edition</a> on January 20, which will kick off with a product demo. The event is free and attendees can expect to hear from SEO industry experts and learn how to improve their online stores. </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, 04 Jan 2022 22:38:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:38:\"WordPress.org blog: WordPress 5.9 RC 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11948\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/news/2022/01/wordpress-5-9-rc-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5479:\"<p>The first Release Candidate (RC1) for <a href=\"https://make.wordpress.org/core/5-9/\">WordPress 5.9</a> is now available!&nbsp;</p>\n\n\n\n<p>Thank you to everyone who has contributed to reach this important milestone in the community’s progress towards a WordPress 5.9 release.</p>\n\n\n\n<p>“Release Candidate” means the new version of the software is ready for release. It helps the community check that nothing is missed, given the thousands of plugins and themes and differences in how millions of people use the software.</p>\n\n\n\n<p>WordPress 5.9 is slated for release on January 25, 2022. This is just three weeks to go&nbsp; &#8211; and there’s still time to help!</p>\n\n\n\n<h2 id=\"testing-the-release\">Testing the release</h2>\n\n\n\n<p>You can test the WordPress 5.9 release candidate in three ways:</p>\n\n\n\n<p><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"><strong>WordPress Beta Tester</strong></a><strong> </strong>plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2:</strong> Direct download the beta version here (<a href=\"https://wordpress.org/wordpress-5.9-RC1.zip\"><strong>zip</strong></a>).</p>\n\n\n\n<p><strong>Option 3:</strong> When using WP-CLI to upgrade from Beta 1, 2, 3 or 4 on a case-insensitive filesystem, please use the following command sequence:</p>\n\n\n\n<p>Command One:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-RC1</code></pre>\n\n\n\n<p>Command Two:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-RC1 --force</code></pre>\n\n\n\n<p>Your help to test the RC1 is vital: the more testing that happens, the more stable the release, and the better the experience for users and developers—and the entire WordPress community.</p>\n\n\n\n<p>Thank you to all of the contributors who tested the Beta releases and gave feedback. Testing for bugs is not just a critical part of polishing every release; it is also a great way to contribute to WordPress.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/test/2021/11/30/help-test-wordpress-5-9-features/\">Help test WordPress 5.9 features</a> &#8211; a guide to how you can take part.</p>\n\n\n\n<h2 id=\"what-is-in-wordpress-5-9-release-candidate\">What is in WordPress 5.9 release candidate?</h2>\n\n\n\n<p>This will be the first release of 2022 and continues the work towards 5.9 from last year. It features the latest advances of the block editor and is the first version of full site editing in Core.</p>\n\n\n\n<p>WordPress 5.9 also brings more refinements to the developer experience. To keep up with the latest updates and discover more about how the community works to continually improve the software, please subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a>. In particular, the <a href=\"https://make.wordpress.org/core/tag/5-9+dev-notes/\">developer notes tag</a> will keep you up to date on changes that might affect your products or how you use the software.</p>\n\n\n\n<h2 id=\"plugin-and-theme-developers\">Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.9 and update the <em>Tested up to</em> version&nbsp; to 5.9 in your readme file. If you find compatibility problems, please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so volunteers and developers can help you figure them out before the final release.</p>\n\n\n\n<p>The WordPress 5.9 Field Guide will be out very shortly. It will give you a deeper dive into the major changes.</p>\n\n\n\n<h2 id=\"how-to-help\">How to Help</h2>\n\n\n\n<p>Do you speak a language that is not English? You can <a href=\"https://translate.wordpress.org/projects/wp/dev\">help translate WordPress into more than 100 languages!</a> Release Candidate 1 marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 5.9 release schedule. Thanks to every locale that is already involved with translations.</p>\n\n\n\n<p><strong><em>If you think you have found a bug</em></strong><em>, you can post to the </em><a href=\"https://wordpress.org/support/forum/alphabeta\"><em>Alpha/Beta area</em></a><em> in the support forums.&nbsp; If you are comfortable writing a reproducible bug report, you can </em><a href=\"https://core.trac.wordpress.org/newticket\"><em>file one on WordPress Trac</em></a><em>, where you can also check the issue against </em><a href=\"https://core.trac.wordpress.org/tickets/major\"><em>a list of known bugs</em></a><em>.</em></p>\n\n\n\n<p>Props to <a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a> for the post and to <a href=\"https://profiles.wordpress.org/marybaum/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>marybaum</a> <a href=\"https://profiles.wordpress.org/hellofromtonya/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>hellofromtonya</a> <a href=\"https://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a> <a href=\"https://profiles.wordpress.org/davidbaumwald/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>davidbaumwald</a> <a href=\"https://profiles.wordpress.org/estelaris/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>estelaris</a> <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a> for final review. </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, 04 Jan 2022 20:43: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: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: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:116:\"WPTavern: WordPress 5.9 to Fix Lazy Loading Performance Regression, Resulting in 30% Faster Page Loads in Some Cases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=127830\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:273:\"https://wptavern.com/wordpress-5-9-to-fix-lazy-loading-performance-regression-resulting-in-30-faster-page-loads-in-some-cases?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-9-to-fix-lazy-loading-performance-regression-resulting-in-30-faster-page-loads-in-some-cases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3361:\"<p>WordPress sites may soon see a slight performance improvement on page loads, thanks to a fix for a performance regression in the core lazy loading feature. An <a href=\"https://web.dev/lcp-lazy-loading/\">analysis</a> published in July 2021 showed that lazy loading applied too aggressively can have a negative impact on performance and that it&#8217;s better to eagerly load the images within the initial viewport.</p>\n\n\n\n<p>WordPress&#8217; default of lazy loading all images was causing slower performance on the <a href=\"https://web.dev/lcp/\">Largest Contentful Paint metric (LCP)</a> metric, which Google defines as &#8220;the render time of the largest <a href=\"https://web.dev/lcp/#what-elements-are-considered\">image or text block</a> visible within the viewport, relative to when the page <a href=\"https://w3c.github.io/hr-time/#timeorigin-attribute\">first started loading</a>.&#8221;</p>\n\n\n\n<p>Google-sponsored WordPress contributors wrote a fix that avoids lazy-loading images above the fold and thoroughly tested it as part of their efforts to evaluate the impact of various past performance initiatives. The delayed LCP will be fixed in WordPress 5.9.</p>\n\n\n\n<p>&#8220;This can be improved by skipping addition of <code>loading=\'lazy\'</code> for the first content image or iframe, which in the vast majority of cases will appear within the initial viewport,&#8221; Felix Arntz said in the <a href=\"https://make.wordpress.org/core/2021/12/29/enhanced-lazy-loading-performance-in-5-9/\">dev note</a>. &#8220;WordPress can only make educated guesses around that and not be 100% certain, but an analysis taking into account 50 popular themes showed that the enhancement brought LCP improvements across the board, up to 30% faster page load.&#8221; </p>\n\n\n\n<p>In the future, this implementation may be able to drill down further into the block content on the page and eagerly load whatever images the theme identifies as being within the viewport.</p>\n\n\n\n<p>&#8220;Have you thought about how we could have more precise heuristics going forwards that can take the semantics and structure of blocks into account to get a sense for what is actually deferrable?&#8221; Matias Ventura commented on the ticket in process. &#8220;For example, an image block or a site logo used in a header template part would be strong indicatives of being above the fold. &#8216;The first image of the content&#8217; seems instead like a rudimentary measure, that varies a lot depending on preceding layout. With block themes we should have some ahead-of-time awareness of layout which we can use to produce more meaningful instructions.&#8221;</p>\n\n\n\n<p>Felix Arntz said he already has detecting the header template part on his radar and is willing to refine the implementation as the world of block themes expands.</p>\n\n\n\n<p>&#8220;The refinement of the lazy-loading implementation should notably improve LCP performance for most sites that rely on it, while not having adverse effects for sites where the default heuristics described above do not apply to,&#8221; Arntz said. &#8220;That is only a solid starting point though. In the future, specifically with the more semantic content specification that block-based themes will facilitate, we will be able to further fine tune the lazy-loading implementation by using the available block information.&#8221;</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, 04 Jan 2022 03:48:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: Gutenberg Hub Launches a Block-Based WordPress Theme Directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=127764\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/gutenberg-hub-launches-a-block-based-wordpress-theme-directory?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-hub-launches-a-block-based-wordpress-theme-directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4808:\"<p class=\"has-drop-cap\">In the dawn of the block theme era, the WordPress theme directory could use a reimagining. That is what Munir Kamal set out to do before WordPress 5.9 launches later this month. He <a href=\"https://gutenberghub.com/re-imagined-wordpress-themes-directory/\">announced</a> an <a href=\"https://themes.gutenberghub.com/\">alternative theme directory</a> on the Gutenberg Hub website earlier today. It lists all the block themes that are officially hosted on WordPress.org.</p>\n\n\n\n<img />Gutenberg Hub&#8217;s theme directory.\n\n\n\n<p>The interface and experience are similar to the official theme directory and for a good reason. Kamal is pushing for changes on WordPress.org.</p>\n\n\n\n<p>&#8220;I noticed the lack of info the official theme directory provides,&#8221; he said. &#8220;I want to initiate a discussion around this to fix it, and thus created this as a concept/experiment. Now that it&#8217;s an era of the new generation of WP themes (Block Themes), the themes directory needs to be reimagined. Block themes are all about colors, typography, block styles, patterns, and templates. As a WP user, I wish to see all that info related to a theme when I explore themes in the directory. I need to choose without installing and testing multiple themes.&#8221;</p>\n\n\n\n<p>Single theme pages in this reimagined directory include more data than the official directory. Instead of merely a screenshot and description, each page displays the theme&#8217;s color palette, provides typography examples and info, and previews several content blocks.</p>\n\n\n\n<img /><a href=\"https://themes.gutenberghub.com/octane\">Octane</a> theme page.\n\n\n\n<p>One thing that makes modern themes unique is their included <code>theme.json</code> file. This file allows theme authors to register settings and add styles that work in both the editor and the front-end. This level of standardization did not exist until WordPress 5.8 rolled around last year.</p>\n\n\n\n<p>It also allows developers like Kamal to build new tools on top of it. When nearly all the data related to a theme is in a standard format, it is easy to pull out and experiment with it.</p>\n\n\n\n<p>For example, because there is a specific key in the <code>theme.json</code> file for colors, anyone can grab and display them via code. Gutenberg Hub&#8217;s directory displays these as a palette alongside each theme. Users can even click to copy them.</p>\n\n\n\n<img />Copying a theme color.\n\n\n\n<p>This would have been practically impossible in the past because WordPress did not have a way for themes to define something as simple as a color palette.</p>\n\n\n\n<p>The directory also auto-generates social images for each of the themes. The following for <a href=\"https://themes.gutenberghub.com/mebae\">Mebae</a> and <a href=\"https://themes.gutenberghub.com/pacer\">Pacer</a> both show their description, fonts, colors, and screenshot.</p>\n\n\n\n\n<img />\n\n\n\n<img />\n\n\n\n\n<p>For years, WordPress.org theme previews have been plagued by sub-par demo system. Today, the live demo can show starter content if a theme provides it. However, there is no current FSE support for the feature. Gutenberg Hub displays the same live preview as shown in the official directory.</p>\n\n\n\n<p>Kamal has partially addressed this issue by adding a &#8220;Content&#8221; button. Clicking it allows users to see dozens of blocks in action.</p>\n\n\n\n<img /><a href=\"https://themes.gutenberghub.com/tove\">Tove</a> theme content preview.\n\n\n\n<p>This provides a general overview of what the theme looks like, but the preview experience is still lacking. A handful of featured images would add some visual <em>oomph</em> to the home/blog and archive pages.</p>\n\n\n\n<p>Kamal has plans to incorporate theme templates and patterns into the preview in the future. Those additions would make theme demos more useful.</p>\n\n\n\n<p>He does not plan on stopping there. &#8220;Other plans include providing a super useful search and filter functionality that makes it easier to trim down the result to the closest needs of a user,&#8221; he said. &#8220;And maybe a comparison tool that a user can use to compare two themes side-by-side with practical elements to decide between the two, rather than reviews, downloads, etc.&#8221;</p>\n\n\n\n<p>The work Kamal has put in so far looks promising. There is still much that could be improved if we had an entire community effort behind this. With the block theming feature launching with WordPress 5.9, there is no reason to stick to the old theme preview system when so much more is possible.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-tavern-separator\" />\n\n\n\n<p>If I had one extra wish for Gutenberg Hub or WordPress.org, it would be for all child themes to be listed on their parent theme&#8217;s page. But, I will take this redesigned directory first.</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, 03 Jan 2022 23:03:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: Celebrate by Writing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=55257\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://ma.tt/2022/01/celebrate-by-writing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1965:\"<p>My <a href=\"https://ma.tt/category/birthday/\">birthday</a> is coming up soon so it&#8217;s that time of the year when friends start reaching out and asking where they should fly to and how we&#8217;re going to celebrate.</p>\n\n\n\n<p>After a good run in the post-vaccinated-and-boosted part of 2020 that felt relatively &#8220;normal&#8221;, including traveling almost 200k miles, I&#8217;m going back into a pretty locked-down state of things. Omicron has just been catching too many friends and loved ones, even with fairly careful measures and testing. So what&#8217;s happening on January 11th?</p>\n\n\n\n<p><strong>What I&#8217;m asking for my birthday is for people to blog!</strong></p>\n\n\n\n<p>Whether professionally on <a href=\"https://wordpress.com/\">WP.com</a>, socially on <a href=\"https://tumblr.com/\">Tumblr</a>, or privately journaling with <a href=\"https://dayoneapp.com/\">Day One</a>, there&#8217;s never been a better time to stop being a passive consumer of the internet and join the class of creators.</p>\n\n\n\n<p><a href=\"https://ma.tt/2014/01/intrinsic-blogging/\">Write for a single person</a>. Share something cool you found. Summarize your year. <a href=\"https://wordpress.com/blog/2021/07/13/blogging-reminders-push-notifications-wordpress-apps/\">Set a blogging goal with reminders</a>. Get a Gutenberg-native theme and play around with building richer posts. Start a nom de plume. <a href=\"https://help.dayoneapp.com/en/articles/3750565-daily-writing-prompts\">Answer daily prompts on Day One</a>. Forget the metaverse, let&#8217;s hang out in the blogosphere. <a href=\"https://wordpress.com/domains/\">Get your own domain</a>!</p>\n\n\n\n<p>If you&#8217;re a close friend that feels intimidated by the software at all or that you don&#8217;t know where to start, I&#8217;m happy to hop on a Zoom to go through everything on a screen share. That will also be a great learning for me for places we can improve things, which is also a fantastic gift!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 02 Jan 2022 22:22: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:43:\"WPTavern: WP Tavern’s 2021 Year in Review\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=127766\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://wptavern.com/wp-taverns-2021-year-in-review?utm_source=rss&utm_medium=rss&utm_campaign=wp-taverns-2021-year-in-review\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13867:\"<img /><a href=\"https://wordpress.org/photos/photo/94661cc6f3/\">Abstract Lights</a> by <a href=\"https://wordpress.org/photos/author/mkaz/\">Marcus Kazmierczak</a>\n\n\n\n<p class=\"has-drop-cap\">A friend prompted me to fix an issue with the WP Tavern <a href=\"https://wptavern.com/archives\">archives page</a> a few days ago. Not all of 2021&#8217;s posts were visible. As I glanced over the updated list, I realized our team put in a lot of work for the year.</p>\n\n\n\n<p>In the day-to-day mix of things, it is easy to forget how much you have written during the year. Some of the articles are memorable and stick with you for a while. Much passes by in a blur. But, I felt a sense of pride in the work our team has put in as I scrolled through the posts.</p>\n\n\n\n<p>These year-in-review posts tend to take about two days&#8217; worth of work, gathering up all of the stats and notes and formatting them so that they are presentable. However, they are always one of my favorite articles to put together every year.</p>\n\n\n\n<p>We should always take some time to remind ourselves where we have been on this journey. This makes sure we are better informed before taking our next steps. At the Tavern, that means paying attention to what content people are reading and how they are engaging with it.</p>\n\n\n\n<p>So, let us just dive right into some of the 2021 highlights.</p>\n\n\n\n<h2 id=\"the-year-in-wordpress\">The Year in WordPress</h2>\n\n\n\n<p class=\"has-drop-cap\">WordPress <a href=\"https://wptavern.com/happy-18th-birthday-wordpress\">turned 18 years old</a> in 2021. That is a massive feat for any software, especially a CMS that consistently faces competition from newer web technologies.</p>\n\n\n\n<p>Unlike last year&#8217;s three, the platform only saw two major releases this year. WordPress 5.9 was initially slated to land in early December, but it was <a href=\"https://wptavern.com/wordpress-5-9-revised-release-date-confirmed-for-january-25-2022\">postponed until January 25, 2022</a>. This should give contributors more time to smooth out several wrinkles with new features.</p>\n\n\n\n<ul><li><a href=\"https://wptavern.com/wordpress-5-8-tatum-introduces-block-widgets-duotone-media-filters-new-emoji-support-and-more\">WordPress 5.8 &#8220;Tatum&#8221;</a> introduced block widgets, duotone media filters, and new emoji support.</li><li><a href=\"https://wptavern.com/wordpress-5-7-introduces-drag-and-drop-for-blocks-and-patterns-streamlined-admin-color-palette-and-one-click-migration-from-http-to-https\">WordPress 5.7 &#8220;Esperanza&#8221;</a> added drag-and-drop for blocks and patterns, a streamlined admin color palette, and one-click HTTPS migration.</li></ul>\n\n\n\n<p>The Gutenberg plugin was a consistent force, driving new features that would eventually make their way into core WordPress. We have <a href=\"https://wptavern.com/tag/gutenberg\">covered its releases</a> throughout the year here at the Tavern.</p>\n\n\n\n<p>Matt Mullenweg recorded his <a href=\"https://wptavern.com/state-of-the-word-2021-wordpress-passes-43-market-share-looks-to-expand-the-commons-through-openverse\">annual State of the Word</a> before a live audience in New York City in mid-December. The address focused on WordPress&#8217;s growth in the past year, a decentralized web, and version 5.9 features. He also focused on contributing to the commons. He <a href=\"https://wptavern.com/creative-commons-search-is-now-openverse\">introduced Openverse</a>, formerly Creative Commons Search, and noted the beta launch of the <a href=\"https://wptavern.com/the-wordpress-photo-directory-is-the-open-source-image-project-we-have-long-needed\">WordPress photo directory.</a></p>\n\n\n\n<h2 id=\"favorite-plugin\">Favorite Plugin</h2>\n\n\n\n<img />Newsletter Glue&#8217;s theme designer.\n\n\n\n<p class=\"has-drop-cap\">One of the best things about writing for WP Tavern is covering a <a href=\"https://wptavern.com/category/plugins\">range of new plugins</a> every year. Unfortunately, we cannot get to them all. However, there are always a few projects that stand out in the crowded field.</p>\n\n\n\n<p>Maybe it was <a href=\"https://wptavern.com/newsletter-glue-pro-my-first-foray-into-journalism-and-new-ideas\">nostalgia for a bygone era</a> of printed family newsletters. Perhaps it is just a neat idea, but my favorite plugin of the year is <a href=\"https://wordpress.org/plugins/newsletter-glue/\">Newsletter Glue</a>.</p>\n\n\n\n<p>It showcases how a small team can get a complex project off the ground via the block editor. Newsletter Glue is just over a year old, and Lesley Sim and Ahmed Fouad have created a solid product.</p>\n\n\n\n<h2 id=\"favorite-theme\">Favorite Theme</h2>\n\n\n\n<img />Eksell theme homepage\n\n\n\n<p class=\"has-drop-cap\">This should come as no surprise to Tavern readers. I have touted its <a href=\"https://wptavern.com/compatibility-is-not-enough-the-eksell-wordpress-theme-creates-art-with-blocks\">well-rounded design and architecture</a> on multiple occasions. <a href=\"https://wordpress.org/themes/eksell/\">Eksell</a> by Anders Norén is my favorite theme of the year. Twenty Twenty-Two would be a close second, but it has not officially launched yet. Maybe it will reign in the year to come.</p>\n\n\n\n<p>I have been on the lookout for a block theme to win this for the entire year, but none of them quite lived up to Eksell. Not even Noren&#8217;s own attempt with Tove.</p>\n\n\n\n<p>Eksell plays well with blocks, supporting all current, stable advancements in WordPress theming. It is far more modern than many other classic-supported themes. And, it is just beautiful.</p>\n\n\n\n<h2 id=\"wp-tavern-stats\">WP Tavern Stats</h2>\n\n\n\n<p class=\"has-drop-cap\">Over the past couple of years, we have increased our content output. Engagement via published comments is down, but &#8220;likes&#8221; continue climbing. The following is a table of the past three years of stats. <em>Note that averages are per post.</em></p>\n\n\n\n\n        <table>\n                <thead>\n                        <tr>\n                                <th class=\"pad\"></th>\n                                <th>2021</th>\n                                <th>2020</th>\n                                <th>2019</th>\n                        </tr>\n                </thead>\n                <tbody>\n                        <tr>\n                                <th>Total Posts</th>\n                                <td>443</td>\n                                <td>406</td>\n                                <td>382</td>\n                        </tr>\n                        <tr>\n                                <th>Total Comments</th>\n                                <td>3,151</td>\n                                <td>3,699</td>\n                                <td>2,864</td>\n                        </tr>\n                        <tr>\n                                <th>Avg. Comments</th>\n                                <td>7.1</td>\n                                <td>9.2</td>\n                                <td>7.5</td>\n                        </tr>\n                        <tr>\n                                <th>Total Likes</th>\n                                <td>4,508</td>\n                                <td>3,589</td>\n                                <td>2,676</td>\n                        </tr>\n                        <tr>\n                                <th>Avg. Likes</th>\n                                <td>10.2</td>\n                                <td>9.0</td>\n                                <td>7.0</td>\n                        </tr>\n                        <tr>\n                                <th>Total Words</th>\n                                <td>324,842</td>\n                                <td>317,231</td>\n                                <td>225,117</td>\n                        </tr>\n                        <tr>\n                                <th>Avg. Words</th>\n                                <td>733</td>\n                                <td>791</td>\n                                <td>589</td>\n                        </tr>\n                </tbody>\n        </table>\n\n\n\n\n<p>Of course, we moderate comments here at WP Tavern. We could let things run wild for a bump in commenting stats, but we want to continue creating an environment where people feel welcome to participate.</p>\n\n\n\n<p>I am the champion of comments this year with a total of 81. I would still like to engage a bit more. That is something I will work on in the new year.</p>\n\n\n\n<p>Props to the five people next in line for total comments in 2021:</p>\n\n\n\n<ul><li>Miroslav Glavić</li><li>Eric Karkovack</li><li>Andrew Starr</li><li>Steven Gliebe</li><li>Paul Lacey</li></ul>\n\n\n\n<p>Without you and other readers, there would be no Tavern. I hope to see more of you all and others in 2022.</p>\n\n\n\n<h2 id=\"top-10-most-viewed-stories\">Top 10 Most Viewed Stories</h2>\n\n\n\n<p class=\"has-drop-cap\">Sarah Gooding pretty much single-handedly broke our all-time daily views record in January, a record that had stood since 2015. It now stands at 24,887. <em>I contributed a bit</em>, but her coverage of WordPress.com&#8217;s website building service did the heavy lifting. And, it was not even the overall most-viewed story of the year.</p>\n\n\n\n<p>The following are the articles Tavern readers viewed the most in 2021:</p>\n\n\n\n<ul><li><a href=\"https://wptavern.com/wix-takes-a-jab-at-wordpress-with-bewildering-new-marketing-campaign\">Wix Takes a Jab at WordPress with Bewildering New Marketing Campaign</a></li><li><a href=\"https://wptavern.com/wordpress-com-rattles-freelancer-community-with-new-website-building-service-launch\">WordPress.com Rattles Freelancer Community with New Website Building Service Launch</a></li><li><a href=\"https://wptavern.com/matt-mullenweg-unveils-gutenberg-roadmap-at-wceu-wordpress-agencies-and-product-developers-sprint-to-prepare\">Matt Mullenweg Unveils Gutenberg Roadmap at WCEU, WordPress Agencies and Product Developers Sprint to Prepare</a></li><li><a href=\"https://wptavern.com/disable-over-a-dozen-wordpress-features-with-the-no-nonsense-plugin\">Disable Over a Dozen WordPress Features With the No Nonsense Plugin</a></li><li><a href=\"https://wptavern.com/amp-has-irreparably-damaged-publishers-trust-in-google-led-initiatives\">AMP Has Irreparably Damaged Publishers’ Trust in Google-led Initiatives</a></li><li><a href=\"https://wptavern.com/wixs-negative-advertising-campaign-falls-flat-with-wordpress-developers-and-professionals\">Wix&#8217;s Negative Advertising Campaign Falls Flat with WordPress Developers and Professionals</a></li><li><a href=\"https://wptavern.com/biden-white-house-sticks-with-wordpress-for-website-relaunch\">Biden White House Sticks with WordPress for Website Relaunch</a></li><li><a href=\"https://wptavern.com/elementor-raises-eyebrows-with-google-ads-targeting-full-site-editing\">Elementor Raises Eyebrows with Google Ads Targeting Full-Site Editing</a></li><li><a href=\"https://wptavern.com/gutenbergs-faster-performance-is-eroding-page-builders-dominance\">Gutenberg’s Faster Performance Is Eroding Page Builders&#8217; Dominance</a></li><li><a href=\"https://wptavern.com/getting-to-know-the-upcoming-wordpress-5-8-template-editor\">Getting To Know the Upcoming WordPress 5.8 Template Editor</a></li></ul>\n\n\n\n<h2 id=\"top-10-most-commented-stories\">Top 10 Most Commented Stories</h2>\n\n\n\n<p class=\"has-drop-cap\">You would think that our most-read articles are those that receive the most comments. However, that is not always the case. While there is some crossover between the two lists, our readers sometimes need to be vocal on a particular topic.</p>\n\n\n\n<p>Here are the top 10 most-commented posts of 2021:</p>\n\n\n\n<ul><li><a href=\"https://wptavern.com/profilepress-rebrands-and-repurposes-wp-user-avatar-now-a-membership-plugin-users-revolt-via-the-wordpress-review-system\">ProfilePress Rebrands and Repurposes WP User Avatar, Now a Membership Plugin, Users Revolt via the WordPress Review System</a> <em>(100 comments)</em></li><li><a href=\"https://wptavern.com/wordpress-classic-editor-support-extended-for-at-least-another-year\">WordPress Classic Editor Support Extended for at Least Another Year</a> <em>(100 comments)</em></li><li><a href=\"https://wptavern.com/wp-tavern-is-sporting-a-new-website-design\">WP Tavern Is Sporting a New Website Design</a> <em>(50 comments)</em></li><li><a href=\"https://wptavern.com/is-wordpress-development-really-all-that-hard-to-get-into-today\">Is WordPress Development Really All That Hard To Get Into Today?</a> <em>(45 comments)</em></li><li><a href=\"https://wptavern.com/elementor-to-roll-out-significant-pricing-hike-for-new-customers\">Elementor to Roll Out Significant Pricing Hike for New Customers</a> <em>(41 comments)</em></li><li><a href=\"https://wptavern.com/gutenbergs-faster-performance-is-eroding-page-builders-dominance\">Gutenberg’s Faster Performance Is Eroding Page Builders&#8217; Dominance</a> <em>(38 comments)</em></li><li><a href=\"https://wptavern.com/why-did-you-start-using-wordpress\">Why Did You Start Using WordPress?</a> <em>(38 comments)</em></li><li><a href=\"https://wptavern.com/yes-comments-are-still-relevant-but-we-need-a-better-system\">Yes, Comments Are Still Relevant, But We Need a Better System</a> <em>(37 comments)</em></li><li><a href=\"https://wptavern.com/disable-over-a-dozen-wordpress-features-with-the-no-nonsense-plugin\">Disable Over a Dozen WordPress Features With the No Nonsense Plugin</a> <em>(37 comments)</em></li><li><a href=\"https://wptavern.com/wixs-negative-advertising-campaign-falls-flat-with-wordpress-developers-and-professionals\">Wix&#8217;s Negative Advertising Campaign Falls Flat with WordPress Developers and Professionals</a> <em>(36 comments)</em></li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-tavern-separator\" />\n\n\n\n<p>I look forward to another year of delivering stories to all of our readers. The Tavern staff will see you all in 2022 for the next steps on this journey.</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, 31 Dec 2021 04:11:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:59:\"WordPress.org blog: People of WordPress: Collins Agbonghama\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=11923\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/12/people-of-wordpress-collins-agbonghama/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7730:\"<p>In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better. This month we feature a website builder from Nigeria, who uses the open source WordPress platform to support his family and to share learning with others in his home country and beyond.</p>\n\n\n\n<img src=\"https://i2.wp.com/wordpress.org/news/files/2021/12/fimg_collins-agbonghama.jpg?resize=632%2C318&ssl=1\" alt=\"Collins Agbonghama\" class=\"wp-image-11919\" width=\"632\" height=\"318\" />\n\n\n\n<h2 id=\"creating-a-life-in-the-wordpress-ecosystem\"><strong>Creating a life in the WordPress Ecosystem</strong></h2>\n\n\n\n<p>Collins Agbonghama started his journey to becoming a web developer by reading the football news headlines on a friend’s mobile phone. His fascination with development and learning continued to grow, and he now makes a living using WordPress and the web.</p>\n\n\n\n<p>Read on to discover his story, which shows with creativity and determination you can create products and make a living using WordPress.&nbsp;</p>\n\n\n\n<h2 id=\"starting-web-building-on-a-phone\"><strong>Starting web building on a phone</strong></h2>\n\n\n\n<img width=\"350\" height=\"426\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/12/collins-agbonghama1.jpg?resize=350%2C426&ssl=1\" alt=\"Collins Agbonghama headshot photo\" class=\"wp-image-11920\" />\n\n\n\n<p>Collins began his exploration of the internet while attending Secondary School in Nigeria, or High School as it is known in some other countries.&nbsp;</p>\n\n\n\n<p>A friend at the school had a simple mobile phone which could browse the internet. Collins had his first introduction to the World Wide Web through access to this device. He became hooked by reading headlines on a sports site about a famous English Premier League Football Club, Chelsea, a soccer team which he has long supported.</p>\n\n\n\n<p>“Being a very inquisitive person, I wanted to learn how the web works as well as have my own website. I was able to buy a classic mobile phone through the menial jobs I did after school,” he said.&nbsp;</p>\n\n\n\n<p>His first website was a wapsite or Wireless Application Protocol site optimized for mobile devices.&nbsp;</p>\n\n\n\n<p>He took to Google to learn how to actually build a site. He discovered he needed something called an ‘email address’ to sign-up for site builders. Google Search came to the rescue again, and he created the first email account for his first website.</p>\n\n\n\n<p>A desire for a website was the catalyst for further learning, starting with HTML and CSS from an online provider. His interest in building sites with more advanced tools grew, and then he came across WordPress.&nbsp;</p>\n\n\n\n<p>Using his savings, he bought the cheapest hosting plan from a local Nigerian web host. He installed WordPress and started writing tutorials for a mobile device platform. He built the site, created the lessons, and started his entry into WordPress all on a mobile phone.&nbsp;</p>\n\n\n\n<p>This led to him having the confidence to start building sites for others, and he was able to earn a small income from that.&nbsp;</p>\n\n\n\n<p>Collins said: “I couldn’t go to the university because of my precarious financial situation. I continued to do menial jobs during the day and started learning PHP in the evenings and at night using my mobile phone via online learning platforms.”</p>\n\n\n\n<p>He was later able to get an old laptop, which helped him access ebooks to learn more and practice his coding.&nbsp;</p>\n\n\n\n<p>Keen to share this learning, he started blogging about what he was learning on his website.&nbsp;&nbsp;</p>\n\n\n\n<p>Collins said: “I later took up a job teaching children at a school primarily because I got tired of the menial jobs and wanted to earn enough to take care of my internet data plan. After a while, I became fairly proficient in PHP and even took up a job to build a school management system.”</p>\n\n\n\n<h2 id=\"using-wordpress-to-make-a-living\"><strong>Using WordPress to make a living</strong></h2>\n\n\n\n<p>Collins’ blog wasn’t making money through advertisements, but he discovered opportunities to write tutorials for other platforms.&nbsp;</p>\n\n\n\n<p>“I started writing PHP and WordPress development tutorials and got paid a few hundred dollars per article. In Nigeria, that’s quite a lot of money. I was able to improve the life and wellbeing of my family and myself,” he said.</p>\n\n\n\n<p>After getting into a higher education program to study computer science, his life dramatically changed. He decided to stop writing and began to focus on building and selling WordPress plugins.&nbsp;His first one was a user and profile plugin for WordPress sites.</p>\n\n\n\n<p>“Thankfully, after a year, it started making enough revenue for me to live pretty comfortably here in Nigeria because the cost of living here is relatively low,” he said</p>\n\n\n\n<p>Today, Collins has several plugins which have given him a sustainable source of income. He’s also a Core and Translation volunteer contributor to the WordPress.org Open Source project. </p>\n\n\n\n<blockquote><p>I am thankful for WordPress because without it, I’m really not sure I would have been able to live a decent quality life. <br />Who knows what would have become of me?</p><cite>Collins Agbonghama</cite></blockquote>\n\n\n\n<p>“I am also thankful for the community. I have made lots of friends that have been very supportive and helpful in my journey.”</p>\n\n\n\n<p>He added: “I tell people, life won’t give you what you want. You demand from life what you want. You make these demands by being determined and never giving up on your dreams and aspirations.</p>\n\n\n\n<p>“If you are poor, perhaps because you came from a humble and poor background, it is not your fault. You can’t go back in time to change things. I implore you to be strong, determined, and work hard.” </p>\n\n\n\n<p></p>\n\n\n\n<p><strong>Meet more WordPress community members in our <a href=\"https://wordpress.org/news/category/interviews/\">People of WordPress series</a>.</strong></p>\n\n\n\n<h2 id=\"contributors\">Contributors</h2>\n\n\n\n<p>Thanks to Michael Geheren (<a href=\"https://profiles.wordpress.org/geheren/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>geheren</a>), Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>), for writing this feature, to @MeherBala (<a href=\"https://profiles.wordpress.org/meher/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>meher</a>) for follow-ups and photo-editing, and to Chloe Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>) and Nalini Thakor (<a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>nalininonstopnewsuk</a>) for the final proofing. Thank you to Collins Agbonghama (<a href=\"https://profiles.wordpress.org/collizo4sky/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>collizo4sky</a>) for sharing his Contributor Story.</p>\n\n\n\n<p><em>Thanks to Josepha Haden Chomphosy&nbsp;(@<a href=\"https://profiles.wordpress.org/chanthaboune/\">chanthaboune</a>), Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) and others for their support </em>of this initiative. </p>\n\n\n\n<p><em>The People of WordPress feature is inspired by an essay originally published on&nbsp;</em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia, which highlights people in the WordPress community who have overcome barriers.&nbsp;</em></p>\n\n\n\n<p>#HeroPress #ContributorStory</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, 30 Dec 2021 22:45: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: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: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:83:\"Post Status: Post Status Comments (No. 5) — The First Annual WordPress News Draft\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=91900\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/comments/5/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:76553:\"<h3>&#8220;This story reminded me that big company, big money doesn\'t mean just more profit but can also mean big contributions.&#8221; —Aurooba Ahmed</h3>\n\n\n\n<p class=\"has-drop-cap\">It\'s the first-ever Post Status WordPress News Draft! The initial group of news &#8220;avengers&#8221; in this episode are <strong>Aurooba Ahmed</strong>, <strong>Jason Cosper</strong>, <strong>Daniel Schutzsmith</strong>, <strong>Robert Jacobi</strong>, and <strong>Lesley Sim</strong> — with <strong>David Bisset</strong> hosting. In three rounds of draft picks, this group assembled the most noteworthy or influential WordPress news stories of 2021.</p>\n\n\n\n<p><strong>Also: </strong>There was also a final &#8220;quick link&#8221; round with some interesting choices the guests brought to the table. </p>\n\n\n\n\n\n\n\n<p class=\"has-background\"><strong>Post Status Comments</strong> <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f4ac.png\" alt=\"💬\" class=\"wp-smiley\" /> provides a stage for WordPress professionals to exchange ideas and talk about recent topics and trends.<br /><br /><a href=\"https://poststatus.com/podcast/comments/\">Browse past episodes</a> and subscribe to <a href=\"https://poststatus.com/podcasts/\">our podcasts</a> on&nbsp; <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 get them by <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f399.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://wptavern.com/wordpress-5-9-delayed-until-january-2022\">WordPress 5.9 Release</a> (Aurooba Pick #1)</li><li><a href=\"https://wpengine.com/blog/wp-engine-adds-frost-to-open-source-wordpress-project/\">Frost being acquired and made open source</a> (Aurooba Pick #2)</li><li><a href=\"https://twitter.com/stubbornella/status/1471213109767405568\">Stubbornella utilities classes twitter thread</a> (Aurooba Pick #3)</li><li><a href=\"https://wptavern.com/profilepress-rebrands-and-repurposes-wp-user-avatar-now-a-membership-plugin-users-revolt-via-the-wordpress-review-system\">WP User Avatar &gt; Profile Press Debacle</a> (Daniel Pick #1)</li><li><a href=\"https://thewpminute.com/blocks-boards-fishing-reels-how-gutenberg-has-divided-wordpress/\">Blocks, Boards & Fishing Reels – How Gutenberg has Divided WordPress</a> (Daniel Pick #2)</li><li><a href=\"https://9to5mac.com/2021/07/16/podcast-app-pocket-casts-acquired-by-wordpress%E2%80%A4com-owner-automattic/\">Podcast app Pocket Casts acquired by WordPress․com owner Automattic</a> (Daniel Pick #3)</li><li><a href=\"https://make.wordpress.org/core/2021/10/12/proposal-for-a-performance-team/\">WordPress Performance Team</a> (Jason Pick #1)</li><li><a href=\"https://wordpress.org/news/2021/07/configuring-theme-design-with-theme-json/\">theme.json drops with WordPress 5.8</a> (Jason PIck #2)</li><li><a href=\"https://make.wordpress.org/core/2021/04/18/proposal-treat-floc-as-a-security-concern/\">Google’s FLoC and WordPress</a> (Jason Pick #3)</li><li><a target=\"_blank\" rel=\"noreferrer noopener\" href=\"https://yoast.com/exciting-news-yoast-joins-newfold-digital/\">Exciting news: Yoast joins Newfold Digital</a> (Robert Pick #1)</li><li><a target=\"_blank\" rel=\"noreferrer noopener\" href=\"https://wordpress.org/news/2021/05/welcome-to-openverse/\">Welcome to Openverse</a> (Robert Pick #2)</li><li><a target=\"_blank\" rel=\"noreferrer noopener\" href=\"https://www.reuters.com/legal/transactional/american-airlines-sues-online-publisher-host-over-fake-website-2021-08-09/\">American Airlines sues online publisher and host over fake website</a> (Robert Pick #3)</li><li><a href=\"https://getellipsis.com/blog/am-marketing-machine/\">AM Marketing Machine</a> (Lesley Pick #1)</li><li><a href=\"https://www.joincolossus.com/episodes/6786509/mullenweg-the-past-present-and-future-of-the-internet?tab=transcript\">Founder\'s Field Guide Podcast: Matt Mullenweg &#8211; The Past, Present, and Future of the Internet</a> (Lesley Pick #2)</li><li><a href=\"ttps://www.amazon.com/dp/0578675862/\">Working in Public: The Making and Maintenance of Open Source Software, Nadia Eghbal</a> (Lesley Pick #3)</li><li><a target=\"_blank\" rel=\"noreferrer noopener\" href=\"https://www.protocol.com/matt-mullenweg\">Can Matt Mullenweg save the internet?</a> (David\'s Pick #1)</li><li><a href=\"https://poststatus.com/news/awesome-motive-has-acquired-sandhills-development/\">Awesome Motive Has Acquired Sandhills Development </a>(David\'s Pick #2)</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://poststatus.com/gravity\" 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>\n\n\n\n<h2 id=\"h-transcript\"><strong>Transcript</strong></h2>\n\n\n\n<p>[00:00:00] David Bisset: All right. Welcome to the first and maybe even last news draft for post status. My name is David White screen Bisset, I\'ll be your host this evening. We have some great panelists here this evening. Let me explain to you the concept of what\'s going on first. So there are sports drafts where people pick players within a group.</p>\n\n\n\n<p>And at the end of the draft, these people pick the players they want, and they form these teams. Well, we are basically doing that except for WordPress news. So we have five panelists plus myself here this evening. There\'ll be introducing themselves in a second. They all have their top WordPress stories of 2021.</p>\n\n\n\n<p>I asked what WordPress stories of 2021. They think we\'re the most important or the most influential that meant the most to them. So in a draft, there is an order. We have our order set. The only two rules, I think are one. You obviously can\'t repeat another pick once it\'s out. So you have go to your [00:02:00] alternate picks and you have to be specific in your pick.</p>\n\n\n\n<p>So it can\'t be just acquisitions. It has to be a specific news story. So X acquired Y and I think there is also one more rule where it\'s about the story, not where it\'s posted from. So if X acquired, Y was taken from the Tavern, the next person can\'t pick the same story just because it was the new story there.</p>\n\n\n\n<p>The link that they\'re sharing is from another source Post Status. So if we\'re all good on that, let\'s , introduce our panel and the order that was picked by random.org. Ruba, why don\'t we start off with you</p>\n\n\n\n<p>Aurooba Ahmed: I\'m Aurooba, I\'m a WordPress developer, and I\'m excited to be here,</p>\n\n\n\n<p>David Bisset: Daniel, your name, occupation, and rank.</p>\n\n\n\n<p>Daniel Schutzsmith: Daniel\'s Schutzsmith. I\'m a web developer and get to work on things like WP live streams, directory.</p>\n\n\n\n<p>David Bisset: Yeah. And next is Jason Cosper, not Cooper Cosper.</p>\n\n\n\n<p>Jason Cosper: Hey, what up everybody? This is Jason Cosper, AKA fat Mullenweg. I am the [00:03:00] WordPress product advocate over at DreamHost and also I cohost WP water cooler with my friends Jason Tucker and Steve Zynga,</p>\n\n\n\n<p>David Bisset: Robert Jacoby. You\'re up next. How\'s it going?</p>\n\n\n\n<p>Robert Jacobi: And grade what a wonderful way to end the sort of year Robert Jacobi director of WordPress at cloud ways, a WordPress cloud manage hosting service.</p>\n\n\n\n<p>David Bisset: And you go the way of the clouds last, but certainly not least. Leslie, tell us a little bit about your.</p>\n\n\n\n<p>Lesley Sim: Hey, it\'s Leslie SIM I\'m co-founder of newsletter glue.</p>\n\n\n\n<p>It\'s a WordPress newsletter plugin and also a big Post Status fan.</p>\n\n\n\n<p>David Bisset: Oh, okay. Well, that\'s not going to get you anywhere, but the the nice remark is appreciated. All right, let\'s start off with Aurooba, what is your first pick?</p>\n\n\n\n<p>Aurooba Ahmed: I apologize to everyone, but it\'s that 5.9 was delayed. This was really, really big.</p>\n\n\n\n<p>I [00:04:00] remember at the beginning of this year, complaining and complaining about 5.8 being released with half-baked features and, for developers who were working on products for clients, this was a really frustrating time. So on 5.9 was delayed because some of the features were not as you know, still needed some issues fixed in them.</p>\n\n\n\n<p>That felt like we were hurt a little bit. And this was setting a precedent of never doing. A release with half big features and maybe even a president of never doing a release around December holidays. Like maybe this will just shift the whole cycle. That would be really nice. And I mean, I remember someone said that deadlines are not arbitrary and they\'re not, but meeting a deadline for the sake of meeting a deadline is also not a valid approach.</p>\n\n\n\n<p>And I hope that we can have more discussions around that with WordPress release cycles.</p>\n\n\n\n<p>David Bisset: This was not on my list, but because I only have like five or six items on my list, but I agree that this is a bit of a change. I mean, five nine would have come out. It would have come out. Guess when it [00:05:00] would have come out? On state of the word night.</p>\n\n\n\n<p>Yeah, I don\'t know. It\'s certainly affecting next year somewhat because I think the schedule they\'re trying to talk about next year as a potential four release schedule, or at least two of the four or two of the three we\'ve never had. I don\'t think we\'ve had a release in January. I think that\'s potential.</p>\n\n\n\n<p>That\'s a very good first round pick. I don\'t know if anybody got that, but so far I\'m safe, but I think that\'s a very good pick. And that\'s one of those picks that\'s going to be by like maybe middle of the year next year, we\'re going to look back on here and say, this is how much this decision made in terms of change.</p>\n\n\n\n<p>And I think it was good decision to . All right. Let\'s see Daniel, you\'re up. What\'s your first pick?</p>\n\n\n\n<p>Daniel Schutzsmith: This happened this year and I didn\'t even realize it was this year was the whole profile press WP user avatar debacle. They had a. 400,000 active installs at the time. And basically I believe what happened was the company got taken over basically and renamed the plug-in [00:06:00] overnight to which it was a bit different than when it used to be.</p>\n\n\n\n<p>And for those who didn\'t use WP use avatar, it was basically a kind of a one function type of plugin. But all of a sudden you had this profile press, which was much more involved. And it basically changed the user interface of everything. I had a few clients using it, so it was a bit of a shock. And uh, since then, I\'ve, I believe on all those, we just got rid of it and just did something else instead.</p>\n\n\n\n<p>But to me, I was looking back then, you know, what happened in the past year and 2021 and this stuck out right away. Once I realized it did happen in 2021. Yeah. Well, Collins Collins is the owner of profile press and he\'s a developer and owner and really nice guy. There\'s actually a great interview with him over on the WP minute.</p>\n\n\n\n<p>That was also done around the same time. So it wasn\'t a malicious intent at all. I think it was just, you know, just a misstep basically in in best business practices.</p>\n\n\n\n<p>David Bisset: And just goes to show you the like, I think now as we get further, along in the WordPress ecosystem, how, like, if that would\'ve happened, maybe.[00:07:00]</p>\n\n\n\n<p>Maybe with less users, maybe like four years ago. I think it wouldn\'t have been such a magnified or a focus type of issue. Right. So as WordPress plugins go on, you know, and people have to be really, even more careful because the audiences are getting bigger. The stakes are getting bigger. My headache medications getting bigger.</p>\n\n\n\n<p>All right. But that\'s okay. Great. Excellent pick. So profile press debacle, unintended debacle, but debacle was Daniel\'s pick. And thank you very much. So, Jason what\'s your first pick? Yeah.</p>\n\n\n\n<p>Jason Cosper: So, Aruba took my pick naturally. Yeah.</p>\n\n\n\n<p>David Bisset: We have our first snipe.</p>\n\n\n\n<p>This is awesome. This is like the first night.</p>\n\n\n\n<p>I didn\'t really think we\'d have one tonight.</p>\n\n\n\n<p>Jason Cosper: Yeah. well, I mean, she\'s in the catbird seat. She is basically you know, there, first up so I applaud you for grabbing that one. So I\'ve got to go with what was going to be my second pick, which is the WordPress performance team.</p>\n\n\n\n<p>David Bisset: Ah, [00:08:00] I got sniped.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>Jason Cosper: Yeah, there we go. So I snipe with a snipe. Perfect. So as somebody who has been focused on WordPress performance through a pretty significant portion of my time in WordPress making WordPress faster, I think that it is great that we are finally seeing a focus for this on core and the people who are throwing their names in till Cruz Henry Helvetica a few other you know, just really amazing people and just the amount of activity that\'s happening in the performance channel or when they have their weekly team meetings is just phenomenal to me.</p>\n\n\n\n<p>And it was kind of a late in the year thing, but I\'m really excited to see it grow in 2022.</p>\n\n\n\n<p>David Bisset: I honestly had doubts in the beginning when I first read it, that it was going to be a thing. It was a proposal when I read it first. And I\'m not saying that nobody cares about performance, but it was just, I don\'t know.</p>\n\n\n\n<p>[00:09:00] It\'s one of those things where I guess maybe it was too good to be true. Right. You know, one of those, one of those deals it\'s being Frank here, my views and opinions don\'t reflect those of any collective or individual Post Status and Post Status team can incorporate. Well, that\'s a great first. Okay.</p>\n\n\n\n<p>That\'s a great first pick word, press performance team. And yes, I would. I would admit I was sniped on that. So Robert Jacobi, please leave me with a list I can share</p>\n\n\n\n<p>Robert Jacobi: with the 2017 first pick the Chicago bears choose Mitch Trubisky.</p>\n\n\n\n<p>David Bisset: That sounds like a great clam chowder too</p>\n\n\n\n<p>Robert Jacobi: Rochelle wrong show.</p>\n\n\n\n<p>David Bisset: Oh, that\'s been wrong year. Good Lord. Oh, wrong team.</p>\n\n\n\n<p>Robert Jacobi: I\'m going to snipe. Everyone\'s acquisition. Want to be. Drafts and say that the biggest acquisition news of the year was Yoast being acquired by new fold. Digital</p>\n\n\n\n<p>David Bisset: hard to ignore that one.</p>\n\n\n\n<p>Robert Jacobi: It\'s I think it\'s important [00:10:00] because everyone knows Yost from like, you know, community hardcore folk to end your end users and users almost got ghosted by Yoast. And I think it really shows what the WordPress economy is evolving into and no opinions here, but it\'s changing. And when you have a huge, acquisition by someone like new fold slash blue host, for all intents and purposes of Yoast I think it really sent up flares economic flares throughout.</p>\n\n\n\n<p>WordPress ecosystem</p>\n\n\n\n<p>it very few long old-school WordPress plugin companies left. And that way I think on a lot of people\'s lists was the first one they thought of. Yeah. I\'m not going to mention the other ones, because if I say it three times, maybe like Candyman there\'ll be acquired or they\'re already acquired or they\'re already in the works for all I know for all we know.</p>\n\n\n\n<p>Right. I think it was the suddenness of it too. [00:11:00] That was a quick one. Right. I think with the like advanced custom fields, you could see it a little bit coming, or you wondered in the back of your mind one lazy day on wonder what\'s. I wonder if they\'re ever going to be acquired some day, but I personally never felt that way with Yoast.</p>\n\n\n\n<p>It\'s just the yellow steel was approximately nine to 12 months in the works.</p>\n\n\n\n<p>David Bisset: Yeah. Which, you know, obviously for that good, you keep a secret, right? Yeah. But yeah. So, okay. Well our first acquisition pick off the tape. Fortunately for us, we\'ve got 85,000 more acquisitions on the table. So that may be a popular one, but it\'s not the</p>\n\n\n\n<p>Robert Jacobi: I\'m following all the acquisitions with that one.</p>\n\n\n\n<p>David Bisset: Oh, it\'s going to be a long night. So Leslie, maybe you can what\'s your pick first round?</p>\n\n\n\n<p>Lesley Sim: So my I\'m going with an acquisition related topic and it\'s extending insight Awesome Motives self-perpetuating marketing machine. So I think like this post was inspired because of Awesome Motives acquisition of [00:12:00] Pippins plugins, but it\'s called something else.</p>\n\n\n\n<p>It\'s not called that. And so what I liked about this article was kind of how it mapped out the huge fast SEO machine that Awesome Motive is building and how Sandhills and all their plugins kind of fits into that and how it kind of, yeah, just like creates this big content marketing machine, which is hard to replicate on a smaller scale.</p>\n\n\n\n<p>And I guess like people often talk about WordPress from a developer point of view. I think like most of you here are, you know, developer centric. And so I wanted to bring in marketing the marketing side of things and, you know, like talk about how begin and WP and all of the automotive blog assets plays such a big part in the WordPress ecosystem.</p>\n\n\n\n<p>Like anyone who\'s not a WordPress professional, if they\'re coming into WordPress for the first time, it\'s likely that [00:13:00] Awesome Motives blogs will be the first point of contact into WordPress. And I think like that\'s really interesting to consider and also what that looks like going forward as well for the ecosystem.</p>\n\n\n\n<p>David Bisset: They have a very good content management strategy I used to work there. So I can tell you if they\'ve got a nice well-oiled machine over there and that in your right. I don\'t, I, you know, maybe it\'s just the circles that I travel with or the circles that allow me to travel with them, if you want to look at it that way.</p>\n\n\n\n<p>But I don\'t think that gets a lot of attention, so, so great job,</p>\n\n\n\n<p>Robert Jacobi: David. I think Syed likes it that way.</p>\n\n\n\n<p>David Bisset: Let\'s quickly move on to my pick. So this was my first pick and it\'s a pick from the Tavern and it\'s specific it\'s Tavern. It\'s partly the subject material, but also because Sarah Gooding just did an excellent job.</p>\n\n\n\n<p>It\'s amp has irreparably damaged publisher\'s trust in Google led incentives. This got on hacker news, which appeals to a broader audience than beyond WordPress, which is one reason why I [00:14:00] picked it. The other is if anybody remembers how amp was I\'m going to say promoted at word camps. And I remember one word camp, it probably it\'s either 2018 one or the 19 one. Like I think it was in giant letters. Google had a huge, and they were advertised. There was other things being promoted there. But I remember all of the discussion and the effort that went into convincing developers to contribute to the amp project. I remember discussions about.</p>\n\n\n\n<p>Well, it\'s the old automatic contribution controversy that some people like to bring up, like, you know, like it\'s open source, but there\'s so many people from this company working on it, that they have a certain level of control that is unfair or is unwarranted and so forth. And people made that case for the Google and people again, to, in that project, regardless of where, which site you fell on that.</p>\n\n\n\n<p>Cause I ultimately, in the end, I think that discussion never [00:15:00] really reached an official conclusion or closure. There was a lot of talk and this kind of, regardless of how many developers were aware of what Google was doing, their trust there has been broken and it\'s broken today. It\'s going to take a very long time for Google, I think, to come into the WordPress community and open project or not, and not be looked at with a mark of suspicion, even if the developer, and I\'m not even saying the developers involved with NAMP knew everything that was going on or what, or whatever was brought up. It\'s an excellent article by Sarah on that. And I thought it was fair and it got picked up by a wider audience. And it does address, not just Google, but you know what happens when we have companies, larger companies that are in the news because of the, you know, of antitrust or because of their worker policies or whatever, what far extent do you trust them?</p>\n\n\n\n<p>Knowing that not everybody in the [00:16:00] company has the same evil intentions, what you think are evil, but how far do you trust them when it comes to the, you know, WordPress and open source projects? And I think that\'s a good question. And I think everybody has the right to have a different answer. So I thought it was a very thought provoking article.</p>\n\n\n\n<p>So that was my first pick there.</p>\n\n\n\n<p>Robert Jacobi: Even if I may, you snipe me. That was my number three pick, but I actually came at it from a different way. It was the Jeremy Keith blog post about resigning from the amp advisory committee.</p>\n\n\n\n<p>David Bisset: Okay. That\'s another good one. Yeah. And what did you think about what stood out from you on that one?</p>\n\n\n\n<p>I\'ll throw you a bone.</p>\n\n\n\n<p>Robert Jacobi: That\'s what I think I\'ve been I\'m not an eight amp. Let\'s just call it an amp because that\'s what everyone else calls it. I\'m not an amp fan in the first place. I don\'t like public content being made proprietary. And I think for Justin, all the reasons that he left are the exact reasons no one should be using amp in the first place.</p>\n\n\n\n<p>I think it\'s bad tech for band.</p>\n\n\n\n<p>David Bisset: It\'s a shame too. Cause I know some people that were, you had some people [00:17:00] for and against it, but in the end that I think that article combined with Sarah\'s excellent evaluation of it. Just really it\'s hard to get a lot of positive. Again, this is my opinion.</p>\n\n\n\n<p>This is not an opinion of anybody else. So that was my pick. I thought it was very thought provoking and it went beyond the WordPress industry. Ruba. What is your second we\'re in the second round pick? What\'s your second pick?</p>\n\n\n\n<p>Aurooba Ahmed: So I had a different second pick, but then something happened today that made me change my second pick.</p>\n\n\n\n<p>And that was frost being acquired by WP engine. So the reason I had to choose this as my pick is because as a developer and as a person who use WordPress a lot and seeing all these acquisitions happen, I am wary of acquisitions. I wonder how good these bigger companies are going to be as stewards of these plugins and where are they going to take it next?</p>\n\n\n\n<p>And when co when plugins and smaller companies get acquired, I tend to think, oh, okay, now this is going to [00:18:00] be more profit heavy, more money-making, less contribution, less being part of the community. But then WP engine did this thing where they acquired a commercial thing and they made it open source.</p>\n\n\n\n<p>And it reminded me that big company, big money doesn\'t have to mean only more profits and more sales. And in fact you can have big money that brings big contributions back to the community as well. If they choose to. And it made me look at WPS. In a more positive light. So I think that was a great marketing move on their end.</p>\n\n\n\n<p>David Bisset: In fact, I didn\'t have a chance to absorb it a lot, but I know they refunded. Everybody bought a copy, so yeah. Which in all honesty, no, I probably that was jumped, changed the engine, but I think that\'s a Goodwill, both there.</p>\n\n\n\n<p>Robert Jacobi: Who created frost again?</p>\n\n\n\n<p>David Bisset: Brian Gardner</p>\n\n\n\n<p>Robert Jacobi: and Diego. That\'s it. Where does where\'s Brian work [00:19:00] now</p>\n\n\n\n<p>Aurooba Ahmed: at WP engine?</p>\n\n\n\n<p>Jason Cosper: Where does Nick also work now</p>\n\n\n\n<p>David Bisset: WP engine.</p>\n\n\n\n<p>Daniel Schutzsmith: There\'s something to be said too, though, for Brian Garner has a formula down for doing this because before he had studio press, that also went to</p>\n\n\n\n<p>Robert Jacobi: WP engine. Oh, and PS. I love Brian Gardner he\'s. He\'s a local. WordPress supergroup because he\'s in the Chicago community. So that\'s amazing.</p>\n\n\n\n<p>But you know, I don\'t think it\'s an accident that frost followed Brian to WP engine. . If you know Brian up at some other place, frost may have wound up at that other place. That\'s all I\'m saying</p>\n\n\n\n<p>David Bisset: Frost isn\'t even a year old or is it, I think it\'s barely a year old or,</p>\n\n\n\n<p>Robert Jacobi: yeah, I I don\'t if it came out.</p>\n\n\n\n<p>Yeah. I thought it came out in 21. Yeah.</p>\n\n\n\n<p>David Bisset: Yeah. Okay. Well, good. That\'s another great acquisition picks. So new off the presses. So new and [00:20:00] still at time, Daniel. Let\'s see. What\'s your round two.</p>\n\n\n\n<p>Daniel Schutzsmith: Yeah, mine\'s more an editorial.</p>\n\n\n\n<p>David Bisset: Thank goodness. So,</p>\n\n\n\n<p>Daniel Schutzsmith: so this was Paul Lacey had done rather lengthy post about his stance on WordPress, how he was going to leave in the community for a little while.</p>\n\n\n\n<p>You know, I think he\'ll probably come back, but but it was also, you know, truly about his feeling of Gutenberg and the dichotomy between WordPress foundation and automatic and reflections on him, fishing with his father. I mean, it took you for a roller coaster and it\'s probably one of the most beautiful reads I had of the year in the WordPress space, which was really odd because usually we\'re talking about technology more than anything, and this was a little bit more human felt.</p>\n\n\n\n<p>So it, you know, in, you know, everyone should really take a look at it and he voices some really good concerns. You know, concerns of again, of, what\'s the role of different companies and what we\'re doing, what\'s their own Gutenberg and kind of pushing forward and how that\'s going to reflect, you know, making websites in the future.[00:21:00]</p>\n\n\n\n<p>And how do we bring people into the fold that might be having more difficulty with adopting Gutenberg or, traditionally want to be able to use page builders more often and feel like they\'re getting neglected or pushed out of the community? Personally aside, I mean, I think page builders are here to stay.</p>\n\n\n\n<p>I don\'t think it\'s a, this or that. I think it\'s just an added additional kind of quality aspect that people can use, you know, to use an element or use you know, ocean\'s WP or something like that or oxygen. But it was a really good article and it spread like wildfire through the community.</p>\n\n\n\n<p>So you actually saw a lot of people doing blog posts or other posts that were reflecting similar things and, you know, referring back to the specific posts they\'re over on the WP minute.</p>\n\n\n\n<p>David Bisset: Okay. Great pick. Yeah. And that\'s why we have the people we have here tonight, because I didn\'t, I w I was hoping to get diverse collection of articles and not just a name, as many acquisitions as we can in the next hour.</p>\n\n\n\n<p>So, but yeah, it\'s the heart of, and if it impacts you in a heart impacted a [00:22:00] lot of people emotionally, then that\'s definitely a good pick. So, Jason, what\'s your outreach around to here? Yeah.</p>\n\n\n\n<p>Jason Cosper: I\'m maybe gonna pull a Babe Ruth pointed the bleachers and call the shot that round two is going to be pretty Gutenberg heavy because my second pick is a theme dot Jason shipping with WordPress five point eight.</p>\n\n\n\n<p>I think this is a really a huge deal for folks. I know that you\'re kind of when it comes to custom CSS and stuff like that you can either wear in CSS or json it\'s not really necessarily the easiest switch to make. Like if you present somebody who is a little less experienced with code however I just think that the impact of this or the amount of things that it can control with blocks is going to be massive.</p>\n\n\n\n<p>And the next few versions of WordPress when five nine finally drops when you know, as [00:23:00] things mature. I just think that theme json really is going to make a huge impact on how themes are built, how child themes are belts, how like all of that basically</p>\n\n\n\n<p>David Bisset: Who\'s doing the theme. I know that more than one person is doing it, but who\'s is David. Somebody is doing the theme .Json generator. Has anybody seen that? Yep. Yeah. David, what\'s the last name I keep forgetting. Yeah. I mean, it\'s looking pretty good, remember when. We had themes and then the underscore generator came out and there was another generator whose name escapes my mind right now, but it seems once we get these generators going, things accelerate.</p>\n\n\n\n<p>But I think that\'s a really great pick because obviously theme .json is something that can be turned into a builder or tool or a companion there\'s so much you can do because Jason\'s practically human readable. That\'s the point of it. So I think that\'s, yeah, I think that\'s an excellent technological we\'ll, we\'ll look back in a couple of years and say, is it, you know, if we [00:24:00] have a thousand themes or variations, is it because of the theme .json and I would venture a guess.</p>\n\n\n\n<p>It\'s going to have a heck of a lot to do with it. So that\'s an excellent.</p>\n\n\n\n<p>Daniel Schutzsmith: And it\'s also setting itself up for good expansion in the future, too, of what the capabilities will be</p>\n\n\n\n<p>like.</p>\n\n\n\n<p>David Bisset: So it could have been hopefully extensibility. Yeah, because it could have been that could have gone a different way and not a easily readable editable, text file kind of way either.</p>\n\n\n\n<p>So in fact, there\'s probably some things in Gutenberg that are, you know, that you have to know some deep knowledge on that. I wish they could just make it like that magically somehow as easy as adding a file. So. Excellent. Excellent pick. Okay, Robert, you\'re up. What\'s your round number two pick.</p>\n\n\n\n<p>Robert Jacobi: I\'m going with the, I want to extend the extensibility with open verse.</p>\n\n\n\n<p>Welcome to the open verse. Now we\'re not adding just the code. We\'re extending all the media that comes in contact with work. And the acquisition [00:25:00] technically by automatic of CC search. I think part of the state Matt\'s state of the word is going to insanely impact what every single, you know, day-to-day user can do with audio video and who knows what else will wind up in the open verse?</p>\n\n\n\n<p>David Bisset: Okay. So what is the difference between for our listeners and for maybe me, but our listeners? What is the difference between open verse and wordpress.org/photos?</p>\n\n\n\n<p>Robert Jacobi: wordpress.org/photos will be a curated, subset of open verse. As I understand it from the state of the word and that\'ll, you know, have audio and video at some point, but let\'s not say it\'s going to be tomorrow.</p>\n\n\n\n<p>So that\'ll be. Family-friendly the open-source friendly, the community friendly version of what open verse is because open verse will probably encapsulate a lot more content than probably wp.org can. [00:26:00]</p>\n\n\n\n<p>David Bisset: Well, yeah, it\'s spot from creative comments. Right? So creative commons looks like they didn\'t have the support financially or structurally to be able to have that library automatic acquired it, brought it into the open source.</p>\n\n\n\n<p>Robert Jacobi: Correct. So the library technically still exists. The creative comments, it\'s the whole search engine and all the infrastructure around that, because that\'s the hard part. Right. I could have a billion photo albums that are creative commons license zero. But if you can\'t find the folder, you\'re looking for, if you\'re looking for that flower or that bird, you know, you can\'t find it unless there\'s a tool to do it.</p>\n\n\n\n<p>And that\'s the one that takes all the you know, the hit on performance. Yeah, just getting stuff done. So, I mean, that\'s the bigger deal at the end of the day. And I think that\'s where they were creative commons was having problems running that on a day-to-day basis. And you know, I\'m going to give automatic and frankly, Matt kudos for that.</p>\n\n\n\n<p>I mean, I think that really changes the conversation [00:27:00] about what open source means. Now it\'s not a geeky code thing, like GPL this GPL that now it\'s like, oh, I can put up a website and I can click the photos button and I\'m not going to get sued for, you know, this picture of a walrus.</p>\n\n\n\n<p>Aurooba Ahmed: Keep in mind that creative con open verse still has non CC zero images as well.</p>\n\n\n\n<p>That\'s the difference between slash photos and open verse because the one on photos will only have</p>\n\n\n\n<p>Robert Jacobi: CTCs. Exactly. Thanks so much Aruba. Yup. Yup. I mean, that\'s a huge difference. So yeah, on the open verse side, Deal with the licensing voodoo, whereas photos that\'s done, you can use it. Commercial pers personal edit, no attribution, whatever.</p>\n\n\n\n<p>Yeah. You can do whatever you want with it. So it\'s become the free version of of Getty for all intensive purposes. Oh,</p>\n\n\n\n<p>David Bisset: and we all know how the, how another site that rhymes with bee splash started that. And Matt likes to, [00:28:00]</p>\n\n\n\n<p>Robert Jacobi: the good part is it\'s not being called WP slash</p>\n\n\n\n<p>David Bisset: Unsplash.</p>\n\n\n\n<p>Robert Jacobi: I trust Matt and automatic with what he said, state of the word, you know, about making sure open is open</p>\n\n\n\n<p>David Bisset: and automatic had to be involved because they\'re the ones with the money in the infrastructure.</p>\n\n\n\n<p>So automated the actual acquisition. And I think they had to, because it\'s not, it can\'t be just mad. It has to be in it. It needs to be a company privately.</p>\n\n\n\n<p>Robert Jacobi: Well, there is a WordPress foundation, but they don\'t have the money to acquire anything.</p>\n\n\n\n<p>David Bisset: Then you\'re starting to get into, there\'s probably reasons why legally and why it did, why I did what I had to do, but I\'m just glad it\'s back the word they just said it was contributing it back to the, you know, they use the words contributing back to the open source project.</p>\n\n\n\n<p>I mean, for all intents and purposes, I like you, I trust Matt and I trust them that the fact is they\'re not trying to make a buck off of this. They\'re not trying to take what Getty did with that certain website and turn it into something it wasn\'t originally intended for.</p>\n\n\n\n<p>Robert Jacobi: Oh no, everyone\'s going to make a buck out of this.</p>\n\n\n\n<p>This is the best part about of [00:29:00] even photos. It\'s the fact that any one can integrate this. It\'s Matt said it stated the word. It is open. It\'s an open API. Wix can use this.</p>\n\n\n\n<p>David Bisset: Careful. We can only say that three times.</p>\n\n\n\n<p>Robert Jacobi: What if I use the alternative, if I say Squarespace and Weebly.</p>\n\n\n\n<p>David Bisset: Oh crap. There, it goes two more.</p>\n\n\n\n<p>No, but you\'re right. Anybody can use, and they are the ones, but it\'s not it\'s like creative commons, like you said, they can do anything with it. They\'re just ones to maintaining the database. So I can\'t wait to see what like with apple, I can\'t wait to see what your, what you\'ll do with it.</p>\n\n\n\n<p>And I just feel the only thing I don\'t like about open versus that it sounds like something else, but Matt Mullenweg thought of the name probably before mark Zuckerberg did announced it anyway.</p>\n\n\n\n<p>So anyway, Leslie let\'s get to your number two pick. We\'ve got some great choices here. I have you been sniped.</p>\n\n\n\n<p>Lesley Sim: I have not I feel like I actually picked my picks to avoid being sniped. So I hope</p>\n\n\n\n<p>David Bisset: your\'e so [00:30:00] smug, I like that, it\'s going to be easier to take you down next round.</p>\n\n\n\n<p>Lesley Sim: So my next pick is a podcast. It\'s called the founder\'s field guide and they interview met Mellon wig. The host is Patrick O\'Shaughnessy. And it\'s it\'s just I\'m not sure how many, sorry. I\'m like flipping between zoom and the sites. I don\'t know if any of you listen to the podcast, but it\'s super cool.</p>\n\n\n\n<p>And it talks. So, basically it\'s an hour long interview and we learn about Matt\'s kind of approach to WordPress. And, you know, he\'s talked a lot about this in the past, but it was nice to just kind of hear it in one hour long podcast. He talks about one day to work on WordPress for the rest of his life and his approach to making WordPress the open source platform or operating platform that also happens to be open source for the web and how he sees, you know, kind of the law [00:31:00] of platforms being.</p>\n\n\n\n<p>As a company that\'s building a platform, you can only profit 5% off of the platform being built. And that\'s kind of like a good gauge of a thriving platform. So he uses Microsoft as an example, like he says that Microsoft benefits 5% and the platform that they built, you know, everyone else that builds on top of it gets the 95% yeah.</p>\n\n\n\n<p>Profit. And I thought that was a really cool approach. I never heard him talk about that before and that, and you know, it really kind of expands your mind in terms of what he thinks is possible and what he wants, you know, like it\'s not going to be a cash grab, you know, at the end of the day, which and that kind of, I guess, leads into what he\'s doing with open verse and what we just talked about.</p>\n\n\n\n<p>It really, you know, Makes you feel like you can trust the future of WordPress because he\'s trying to build it towards this 5%. I\'m trying not to like [00:32:00] add into many different you know, the salsas as well, because then I\'m going to accidentally snake other people. But you know, he\'s always talking about avoiding the tragedy of the comments and he\'s always talking about Firefox for the future and how you know, he wants more people to contribute.</p>\n\n\n\n<p>And I think understanding that this is kind of where he\'s coming from, like wanting work has to be a platform I want to only ever have take 5% of the profit of the platform. I think that\'s like, yeah, just like a really good once you understand that you can make a lot of business decisions from there and be comfortable in those decisions.</p>\n\n\n\n<p>David Bisset: Didn\'t he say and say to the word that ratio is that 5% ratio is how five of the future was five. I got that. I- if we accidentally sniped someone\'s specific article on that specific mention of the ratio, then I guess we\'ve done that. But, there\'s, if somebody still has something to share for five for the future I\'ll I\'ll hear it, but that\'s yeah.</p>\n\n\n\n<p>I think that\'s a great pick two and I haven\'t [00:33:00] had a chance to listen to the podcast, man. To do now, if everybody\'s comfortable with it, I\'d like to go through one more quick round, which means share your pick and maybe give a minute explanation.</p>\n\n\n\n<p>And then once we go through that, we\'re basically we\'re basically at that point going to just share real quickly in a fourth round, just basically throwing out. At that point, you don\'t need to explain them. They were just going to blow through it. So we\'re going ever perpetually faster toward the singularity rubella.</p>\n\n\n\n<p>You\'re up next? What is, what quick now is your third and third pick and real quick, why?</p>\n\n\n\n<p>Aurooba Ahmed: Oh, okay. This is not from a news place, but it\'s something that made a really big impact on me. I\'m going to post this. It\'s a Twitter thread by Nicole Sullivan, where she\'s talking about how she doesn\'t want to be erased when talking about a utility classes and you know, tailwind, for example, is like a library of utility classes.</p>\n\n\n\n<p>And it made me think about in our own community and we\'re press who we choose to [00:34:00] amplify who are the kinds of people that we choose to listen to and share more from and how that impacts. What we understand about the kind of work everyone\'s doing. So for example, Nicole is talking about this because people were asking, Hey, who started this whole trend?</p>\n\n\n\n<p>And people are playing to all these men. And it\'s like, hi, I was doing this before the men, but nobody went, nobody\'s sharing that because lots of people chose to amplify the men and not the women doesn\'t mean the women aren\'t doing good work. It means that they\'re just not being amplified. It made me think a lot about like, there was a thread also on Twitter about, Hey, who are all the people like involved in all of these acquisitions?</p>\n\n\n\n<p>I don\'t remember who put out this post Leslie matting but it was like all men. It\'s like, you know, there\'s women involved in this situation too. Let\'s talk about and be more mindful of who we\'re thinking of and who we\'re involving and sharing about. And that\'s you know, it\'s a topic close to [00:35:00] heart.</p>\n\n\n\n<p>Cool.</p>\n\n\n\n<p>David Bisset: So two things first you gave out a Twitter thread. I did not think of that. I\'m we\'re going to go for it. It\'s it\'s I think Twitter is news it\'s okay. Twitter is news. And second of all, I forgot about me. I skipped myself. So real quick, remember I was at the world with that,</p>\n\n\n\n<p>Robert Jacobi: Dave. We\'re all good.</p>\n\n\n\n<p>David Bisset: Yes. But like my wife, you still have to endure me so real quick.</p>\n\n\n\n<p>I\'m just going backwards a little bit. I actually have a brand new pick that actually has been ma it\'s only been online since December 21st. So it\'s only been online for two days and it actually took an acquisition. I had an acquisition pick ready, but it\'s moved it down in terms of it\'s. It\'s a thought piece.</p>\n\n\n\n<p>It\'s actually, I think it\'s a thought piece. Cause I don\'t he did talk with Matt, but it\'s not an interview. It is from protocol written by David Pierce called, and this has a click baity title, but it\'s the only thing that I didn\'t like about the article. It was. Can Matt Mullenweg [00:36:00] save the internet?</p>\n\n\n\n<p>I think it\'s a really catchy I can see now probably the more I get into it, like sometimes writers don\'t get to pick their titles. Sometimes the editors or whatever\'s do. I thought it was a little click baity. Dan David responded by Twitter. He says, yeah, that\'s I, you know, I\'ll take that judgment then that\'s fine.</p>\n\n\n\n<p>But as you go through that, this is not just another profile on Matt Mullenweg. At least I don\'t think so. The more I get into it, it is about, it does start in the beginnings where Matt was a young guy, they have a photo of him. He did upgrade parties instead of whatever kids his age were doing at that time.</p>\n\n\n\n<p>And which I thought was really cool, but it really kind of lays the impression that, you know, we\'re in this phase right now of such closed walled gardens from Google, from Apple, from Microsoft, from all the big players, right. And even the stuff that is coming up front of all the web three technologies and the promises of that being open and ownership, there\'s still some controversy in that regarding how that\'s going.</p>\n\n\n\n<p>I didn\'t, you know, once you realize [00:37:00] that automatic has been buying, basically one of everything it\'s been acquiring it, I\'m going to forget some names here because I\'m being put on. I didn\'t put, I put myself on the spot, but it\'s acquired that journal app. It is a quiet. Yep. It has. We talked about already how the creative comments things was basically acquired slowly, but surely it seems like Matt through automatic is acquiring one, like one piece of something that should always remain open source from various different kinds of categories.</p>\n\n\n\n<p>I\'m trying to remember, there\'s an analytics. If you go to poststatus.com/acquisition, she could probably just look at the automatic parsley. Yeah. So that\'s an acquisition type of fleet. So it looks like he, if you look at it and this article mentions that, but it hides it in like a history and talks about Matt and how he uses WordPress and how he will continue to use WordPress for his full-time career, or at least that\'s how he hopes.</p>\n\n\n\n<p>But once you start reading this, you begin to realize what, and I [00:38:00] think Matt\'s state of the word kind of hinted that more this year than any other year, In terms of where WordPress is like Gutenberg, he says going to be bigger than he considers Gutenberg bigger than WordPress. Not just because it\'s a product, but because of the openness at other people can use it.</p>\n\n\n\n<p>Gutenberg in of itself is in my mind. Now I\'m thinking of it more like a parsley or more day one is a day one, the app I\'m thinking of, it\'s another piece of this family of products that kind of cover what you would want to maintain an open presence on the web. Maybe social network is one thing that it hasn\'t been touched yet maybe, but I think maybe wordpress.org could be that too.</p>\n\n\n\n<p>Who knows? But if you, so anyway, that was my more lengthier number to pick. I think that if you give it a good and fair read sometimes articles really put Matt on a pedestal in terms of things. But I think if you take a step back and realize the and tumbler too. Yes. Somebody mentioned tumbler.</p>\n\n\n\n<p>Yes. That\'s a big one too. And we may not see all of the pieces right away, but once you read this and appreciate the acquisitions automatic [00:39:00] has been doing, I think it starts to give you at least a little bit of a different perspective. And that\'s why I liked it. It wasn\'t just another interview piece about Matt.</p>\n\n\n\n<p>It was really well done. So anyway, that was my number two, epic. Sorry I got skipped. Daniel, what\'s your quickie number three? Oh, God, don\'t get it. Don\'t take that out of context either. All right, thanks. Sorry, go ahead.</p>\n\n\n\n<p>Daniel Schutzsmith: I gotta tell you, you\'re making me nervous. I\'m sweating bullets over here.</p>\n\n\n\n<p>Cause he just started rattling off all the different acquisitions. Oh no, we got a good one. I think I got a good one.</p>\n\n\n\n<p>David Bisset: You can mention some</p>\n\n\n\n<p>Daniel Schutzsmith: pocket casts being acquired by automatic. To me, this was a pretty big one. This was actually on the nine to five Mac blog slash easing. That\'s just, you know, podcasts is a great podcast application kind of a competitor to apple podcasts and things like that.</p>\n\n\n\n<p>So, you know, that\'s literally what I listen to on my podcast, but but they have a nice web interface to which most don\'t have. And so that\'s really, you know, been a key thing for me, being able to kind of listen to those while I\'m working and during the day.</p>\n\n\n\n<p>David Bisset: Okay. Yeah. And that\'s another thing.</p>\n\n\n\n<p>Yeah, [00:40:00] like you said, that\'s just adding to all these, like the article I was previously talking about. Yeah. That even adds even more to it. Robert, which. At this point,</p>\n\n\n\n<p>Robert Jacobi: Mr. Cassper is ahead of me.</p>\n\n\n\n<p>David Bisset: Oh, I\'m sorry. I\'m sorry. Jason, do you switched zoom? I had my zoom windows set appropriately. Go ahead, sir. I mean,</p>\n\n\n\n<p>Jason Cosper: I had to mute my video for a second to get my standout and on my apple watch.</p>\n\n\n\n<p>David Bisset: I\'m very sorry. Oh God, we\'re going through hell right now, sir, but what\'s your quickie?</p>\n\n\n\n<p>Jason Cosper: So yeah the quick one I have is Google\'s flock and the federated learning of cohorts. Yeah. So, flock was a fairly large thing back in. I wanna say April may that had the electronic frontier foundation up in arms, a lot of privacy advocates up in arms.</p>\n\n\n\n<p>Basically like we\'re replacing cookies with this like federated learning cohorts. There\'ve been a few other proposals as well. But [00:41:00] the interesting and the WordPress spin on this is that there was a post up on the make blog about basically like, Hey, let\'s treat flock. Like it\'s a security concern.</p>\n\n\n\n<p>We, we don\'t want people who visit our sites to be tracked. So, it seems like Google took its foot off the gas a little bit in part because of large projects like WordPress saying, Hey, hold</p>\n\n\n\n<p>David Bisset: up. Yeah. And WordPress, I mean, that decision is not made by one person. Right. So Google would have, or at least Google views that as a decision made by a committee or a party or the project or the contributors.</p>\n\n\n\n<p>So it\'s kind of hard to predict if that will go through. It\'s kind of hard to push that through. Right. So, yeah, I think that\'s an XII I\'ve actually forgotten about that. I forgotten about flock. How can I forget such an acronym? It was a long year it\'s. Okay, man. I had some flock last night with my chicken was delicious, but to Google\'s flux just [00:42:00] doesn\'t need to go.</p>\n\n\n\n<p>Robert, what is your, what\'s your quickie three.</p>\n\n\n\n<p>Robert Jacobi: Gosh. I\'m so like jealous of Jason\'s pick for flock. I even wrote about this in April and I, how did I miss that one? I called it flock. Is cash a centralized analytics of segmented humans because that\'s really what it was. It was just another, no, I gotta write that</p>\n\n\n\n<p>David Bisset: down.</p>\n\n\n\n<p>Robert Jacobi: My number three is. It\'s technically not a WordPress thing. Oh, that\'s a loud, I\'m gonna, you know, upset the apple cart. I want to talk about the American airlines lawsuit of open source matters and an associated hosting company open source matters is the holding company for JeWella. As we know from the state of the word, the second largest, and really the only other top five content management system [00:43:00] you know, that\'s being really utilized out there.</p>\n\n\n\n<p>American airlines ha earlier this year, sued open source matters because someone slash someone, created a fishing site with a joomla.com name. Because that was being light. You know, it gets an all into all that.</p>\n\n\n\n<p>David Bisset: Am I drawing a blank on this? Oh my goodness.</p>\n\n\n\n<p>Robert Jacobi: Oh, that\'s, you know, draw, it happens, you know, the WordPress space, but</p>\n\n\n\n<p>David Bisset: my medication, it\'s not a hundred percent,</p>\n\n\n\n<p>Robert Jacobi: but this is a big deal actually, because this will impact how, you know, I think at the end of the day, what happens when you license a domain name to a third party to utilize for revenue or whatever, and this is where this comes to.</p>\n\n\n\n<p>So yeah, this happened the lawsuit was announced in August of this year, but actually I think some of the nitty-gritty was happening much earlier.</p>\n\n\n\n<p>David Bisset: Wow. That\'s an, oh, well, I\'ll be reading this right [00:44:00] afterwards. This is news. If I saw this man, I went right by it. This is pretty, very good pick. Very good pick.</p>\n\n\n\n<p>Robert Jacobi: Well, I\'ll be doing a deep dive of it next week.</p>\n\n\n\n<p>David Bisset: Okay. Well, come up for air. Let me know when you come up for air, let\'s save Leslie. You\'re at the bottom of the three here bef before me anyway, what\'s your third quickie. I got to stop saying that.</p>\n\n\n\n<p>Lesley Sim: My pick is broadly the introduction of the F S E outreach program that started this year. I think it was talked about last year, but it started for reals this year. And yeah, and McCarthy\'s been doing an amazing job. One of the things that I find constantly interesting and maybe a tiny bit irritating is how many millions of people use WordPress, but like, think of WordPress as something that happens to them, like</p>\n\n\n\n<p>David Bisset: a traffic accident?</p>\n\n\n\n<p>Lesley Sim: Like, you know, like when Gutenberg comes up and they\'re like, oh, I hit it.</p>\n\n\n\n<p>You know, this [00:45:00] sucks and all that. Right. But like it\'s open source so everyone can have their say even, I mean, I get the people who have their essay and then get ignored. But the people who just kind of sit back and just wait for Gutenberg to happen to them or for stuff to happen to them. I\'m not such a fan of that.</p>\n\n\n\n<p>And so I like the FSE outreach program because it kind of goes out and tries to get people involved. It does a much better job at communicating the things that are happening next. It encourages people to do testing, like the amount of times I\'ve seen and kind of reach out to different people in different platforms.</p>\n\n\n\n<p>Just trying to get someone, anyone to come and test the next video. This is like, I don\'t ever want to do her job. And I\'m always constantly surprised by how few people come and help tests. I think 10, definitely under 20 people is the kind of typical number which is, [00:46:00] it said right. So, so hopefully, you know, me talking about this gets more people interested in going to do it.</p>\n\n\n\n<p>But yeah it\'s a cool thing. I like Alex seeing the livestream she\'s been doing and like, seeing it, like she puts out the first time I tried to do on the tests following all the instructions was it was tough. Like I realized it wasn\'t actually that easy to test. And I think like that\'s gotten better over time as well.</p>\n\n\n\n<p>And yeah, so it\'s just kind of a cool project that I hope to see it continue next year as well.</p>\n\n\n\n<p>David Bisset: Great. Well, I agree. I, like I said, I\'d like to see more testing as well. So my third quickie pick is actually an acquisition one. Very quick. It was basically Awesome Motive acquired</p>\n\n\n\n<p>sorry, dribble. I\'m sorry. Do a blank. I wanted to make sure I got this right. It got easy digital downloads some out of acquired WP, simple pay affiliate WP. And it basically grabbed all those assets and I\'m dropping the actual article is from DVB beginner, but there\'s also another article. A few there\'s few people covered this as well, but [00:47:00] I thought it was just if I had to pick one acquisition, I think this was the biggest one.</p>\n\n\n\n<p>I think Sand Hills development, I know was another with bread not on Pippin, sorry. With Pippin basically short term retiring and or another old school, one there all of those products going to automotive I thought was probably the biggest shift. If I had to pick one acquisition that had a big shift, that would be definitely in my top three.</p>\n\n\n\n<p>Somebody already picked one and somebody probably will also pick the other one I have in mind too. So, yeah, a lot of products underneath one, one company. I thought that was significant on multiple levels, which I won\'t have time to go into. So that was my third round pick. Now comes our last round, which has been called by other podcasts and I\'ll stick with it and see if it sticks for our first round here, it\'s called the, bring out your dead round, where we are not going to give any explanations.</p>\n\n\n\n<p>Just simply read what you have left and let us know if anybody, if including, if you got sniped by anybody else, if you haven\'t mentioned already Ruba, what have you got left [00:48:00] real quick listed out for us.</p>\n\n\n\n<p>Aurooba Ahmed: I got a snipe when you talked about Pippin retiring. The other thing I had was MailChimp\'s sail and the public draft release of cascade layers, which is going to be really big in CSS.</p>\n\n\n\n<p>The gravity forms 2.5 release, which was, and ECF being acquired by delicious brains and the element tours, pricing update.</p>\n\n\n\n<p>David Bisset: Oh, yeah, you got lots of good ones in there. I can\'t pick just one to critique on Daniel. What is your-</p>\n\n\n\n<p>Robert Jacobi: element or cloud or whatever they\'re calling it today.</p>\n\n\n\n<p>Daniel Schutzsmith: Let\'s see. I got sniped on the protocol article about Matt. Also got sniped on the uh amped thing there. The ones I had left were let me just bring it up. Yeah. Oh, I got snapped on the frost one too. That\'s right. And the man I got,</p>\n\n\n\n<p>David Bisset: you got sniped a lot for being somebody who was number two on the list.</p>\n\n\n\n<p>Daniel Schutzsmith: I do have a good one here though, which was our future together at post status, which was coordinator\'s post about taking over post status. And I had just joined Post Status, I think maybe a month before that. [00:49:00] And so that was a pretty transitional thing for me.</p>\n\n\n\n<p>David Bisset: Right. Pretty good. Yeah. That obviously had impact for me for me as well.</p>\n\n\n\n<p>That seemed like so long ago, but a yes, at the beginning of this year, Brian Cross guard was still owner of Post Status. So, Jason, I have, I think you\'re up next.</p>\n\n\n\n<p>Jason Cosper: That\'s correct. Yeah. So, let\'s just get through my small handful of other articles automatic acquiring frontier. And having their founders working full-time on Gutenberg, like, Hey fantasy, like, you know, you\'re a cool looking project, but get out of here.</p>\n\n\n\n<p>We need you for Gutenberg.</p>\n\n\n\n<p>David Bisset: Yeah. They gave up their rest. They gave up what they were working on to the open source community, which basically means this is your problem then.</p>\n\n\n\n<p>Jason Cosper: Yeah. It dead.</p>\n\n\n\n<p>David Bisset: Well, I\'m not going to say dead. Well, I mean, they gave it up to the open source community. It\'s kind of like leaving food out for the bears.</p>\n\n\n\n<p>It\'s like, just don\'t look back and you\'ll just pretend the bears had a. [00:50:00]</p>\n\n\n\n<p>Jason Cosper: Well, I guess to keep in the theme with the, bring out your dead it\'s, I\'m not dead yet.</p>\n\n\n\n<p>Aurooba Ahmed: It\'s just a fresh of stewards and they\'re gone and there\'s no transitioning team. It\'s dead.</p>\n\n\n\n<p>Jason Cosper: So, also dropping support for internet Explorer 11 that happened this year.</p>\n\n\n\n<p>Wow. Yeah. Out of self-interest WP, watercooler turned nine years old this year. 400 episodes. You know, we\'ve been at it for awhile. I came along within the past, like four or five years. So I\'ve only been a row along for part of that ride, but you know, it\'s just you run into a lot of WordPress podcasts that don\'t stick around that maybe only put out like 10 or 20 episodes</p>\n\n\n\n<p>David Bisset: or 300 episodes is only that much, but yeah.</p>\n\n\n\n<p>Right.</p>\n\n\n\n<p>Jason Cosper: And the last one, a weird pick Matt Mullenweg backing open insulin open source insulin back in July. And he kind of, put his money behind [00:51:00] that. And I think that is, I mean, it\'s not necessarily a WordPress thing for the people who are in the WordPress community affected by type one diabetes.</p>\n\n\n\n<p>It\'s a huge thing. But just the fact that he did that I thought was super cool.</p>\n\n\n\n<p>David Bisset: Yeah. I think I remember hearing about that, but yeah I, it just, so went along with Matt personality and his view of the open web, that it wasn\'t a surprise when I heard about it, even if it wasn\'t WordPress related, but it is so nice to hear something when it comes to man, and it\'s not WordPress related because sometimes that\'s rare when it comes to our radar.</p>\n\n\n\n<p>Robert bring out your dead.</p>\n\n\n\n<p>Robert Jacobi: I\'m going to lead with open source is broken by Christine. Daughdrill this, I liken the shaking the up and down nods of approval on this one. It I\'ve been in the open source space for almost 20 years. And I know that open [00:52:00] source contributors are treated less than dirt until something completely explodes, cough log for J.</p>\n\n\n\n<p>Then the folks all like four of them who are supporting this thing for free get yelled at for destroying the internet for like three days. And that\'s ridiculous. What is the, you know, the mindset of, you know, folks who have worked their tails off to make this stuff. And yeah, it\'s their fault because no one wants to pay them to make sure that, you know, there\'s, you know, syntax error somewhere keeps running.</p>\n\n\n\n<p>Yeah. So look at it, look at our lives, everyone here, certainly on this calls. And certainly everyone listening to this is wholly dependent on a million billion pieces of code written by [00:53:00] folks who did it for fun for dinner, for, you know, testing the bounds of tech trying to solve a bigger puzzle, WordPress Linux, Apache, DNS, every, I mean, we could go on and on.</p>\n\n\n\n<p>And the support for these communities is crap and yeah, that, you know, that\'s going to be. Whether it\'s the it\'s a story that no one cares about because if they cared about they\'d already paying into it. So yeah. Support your open source project. Yeah, I like it. Cause it runs every minute of your day.</p>\n\n\n\n<p>David Bisset: I got, when I tweeted something, once it was about like a company saying we have, we make tons of money off open source. We linked to support the open source community and the open source community says pay us. And the company says, but not like that. I like that.</p>\n\n\n\n<p>Robert Jacobi: Yeah. I mean that, that\'s the problem.</p>\n\n\n\n<p>David Bisset: All right.</p>\n\n\n\n<p>Well, very good. We\'ll just, I\'ll put a pour one out for the open source contributors tonight, ladies and gentlemen, [00:54:00] as we move to our final. Leslie, what\'s your bring out your deads or mostly dead.</p>\n\n\n\n<p>Lesley Sim: So I\'m going to piggyback on what Robert just talked about. So one of my picks is Nadia. I\'m going to pronounce her last name, wrong her book called working in public, the making and maintenance of open source software.</p>\n\n\n\n<p>I think that might have come out last year, but let\'s pretend the chemo this year.</p>\n\n\n\n<p>Yeah. So it\'s kind of, the same as what Robert talked about. It looks into open source, how it\'s all structured, the, you know, tiny bits of code that, that run so much of our platforms today. And interestingly, it talks also about the communities that maintain it and how different open source projects have different, have evolved to have different styles.</p>\n\n\n\n<p>So for example, some. Some [00:55:00] maintainers like to be contacted on Twitter, for example, and others such as WordPress express, the city don\'t ever contact us on Twitter because that\'s not how we\'re able to communicate. And it just talks to about the size and the scale and the scope of open source projects and how they\'re all so different.</p>\n\n\n\n<p>And it, it kind of actually sent us around, get hub and talks also about how much get hub has changed, how open source is run and operated any team these days. So yeah, a really good book. How do you recommend it? So that\'s one of my picks and I\'d quickly just go through the other two. The next one is Wix.</p>\n\n\n\n<p>David Bisset: The second one here, second mention. The</p>\n\n\n\n<p>Lesley Sim: WP Tevin article title is &#8220;Wix takes a jab at WordPress with bewildering new marketing campaign,&#8221;.</p>\n\n\n\n<p>David Bisset: I got you. Snake me, sniped him. One of my, when my, my, one of my dead ones here.</p>\n\n\n\n<p>Lesley Sim: Yeah. So wix going taking a snipe at [00:56:00] WordPress. It\'s those army headphones though in know a bunch of people who\'ve got them and we were just really confused.</p>\n\n\n\n<p>And the last pick that I had was the white house. So I\'m not American, but the white house.gov website being rebuilt in like crazy short amount of time maybe a month and completely rebuilt going from Jupiter back to WordPress and being built in Gutenberg, which I thought was really cool.</p>\n\n\n\n<p>So yeah, those are my picks.</p>\n\n\n\n<p>David Bisset: Yeah. And Helen actually gave a pretty good presentation of how all that went down during the word camp Europe know WordCamp US a couple of months ago she gave the full story. Well, as much as she can reveal, and the fact that they turned it around that fast was mind-boggling. That was also a snipe.</p>\n\n\n\n<p>You, you pretty much slept the rest of my dad. Leslie there I had white house runs on WordPress. I also had things like proposed WordPress performance team gets Greenlight that was also taken I had the Wix one as [00:57:00] well, the marketing campaign. How could you forget that? I think the only one I have left that wasn\'t touched by anybody here is the WordPress economy drives more than half a trillion revenue, which was a report reported, or it was a report authored by WP engine.</p>\n\n\n\n<p>And since our WordPress market share Alexa is being not the Alexa the device, but Alexa company, they supply the numbers for w three texts, market share numbers, which is where we get all of our 43%, 40%, were a little over 43% right now that shuts down in may. So if that shuts down, our ability for that market share number is going to be, I don\'t know if anything will take its place, but in my opinion, relying on the market share number, especially when it\'s going to stop.</p>\n\n\n\n<p>Eventually at some point it\'s not a good way to, it\'s not a good, real quick way to tell WordPress is a success in terms of growth, in terms of all of this, we ha we relied on that number because of as easy. And, but I think what we should start doing now is looking at other places [00:58:00] to determine the strength of a WordPress the community and all of that.</p>\n\n\n\n<p>And one of it is money. I thought this article really kind of, it was the first time I\'ve think I\'ve seen half a trillion in revenue in terms of the entire WordPress space, not just somebody like Automattic is we\'re 7.4. Or some which also I think was news this year. So I thought that was a pretty critical article that other people now can start to build off of and, or add to their collection of how they can tell how the WordPress ecosystem is moving along because market share, it was kind of a poor metric to begin with.</p>\n\n\n\n<p>And it\'s, you know, the closer you get, the higher you go up, whether we\'re presses growth slows or not in terms of market share, it\'s kind of like the iPhone market share doubled every year. You know, I phoned for so more than all the I-phones previous years put together iPhone five, the same thing, but eventually that iPhone market share slowed.</p>\n\n\n\n<p>But it\'s still making record profits. It\'s still doing all of these wonderful things today. And I think that\'s where the WordPress economy [00:59:00] is going to be. You won\'t see that market share number, go up, even if we have a market share number, but you\'re going to see all these other factors. And that\'s why I think the.</p>\n\n\n\n<p>Article from WP engine is a good article to start thinking like that. Well, that was fantastic. Thank you everybody. I I think we had a very wonderful, diverse set. Some surprises, some things I never even read before. Let me see if I can look in slack right now. This may be Barra, edit something out.</p>\n\n\n\n<p>Okay. So if you can go ahead right now and just paste the, I only need the top three. I\'ll get the others later. If you haven\'t put your top three in slack, just all you need to do is just drop the link. I\'ll be able to figure it out from there. And then what I\'ll do is I\'ll go through everyone, read it off, and then we\'ll be done.</p>\n\n\n\n<p>Since I\'m editing this part out anyway, and I\'m waiting for Jason and Daniel, you put it in there. So we\'re rating waiting on Robert. Leslie. Ruba needs to just update slack real quick. This podcast episode will probably be out next [01:00:00] week. It\'s hard to say near the end of the year, cause we have a lot of end of year stuff going on, but I\'ll let you know about that.</p>\n\n\n\n<p>I need a picture from every one of you at some point in the next couple of days to put in graphics for promotion for this. And I\'ll try to keep you updated in terms of anything else I might need from you. But I think that\'s basically it because we should have all the links in slack. I can order them and all of that.</p>\n\n\n\n<p>If this goes well, we were hoping to get a second episode out of this with some other people who couldn\'t make it for this time zone too, but you are the first congratulations, no longer a draft versions, as they say, well, I should probably shouldn\'t use that word. Okay. Strike it. New word, newbs noobs.</p>\n\n\n\n<p>There we go. This is why I have, this is why I have producers. They have poo-pooed my ideas so often. And I didn\'t really, I didn\'t say poopoo in the beginning, but they told me to say that word instead. I\'m calling</p>\n\n\n\n<p>Robert Jacobi: Corey right now.</p>\n\n\n\n<p>David Bisset: Oh, you can come, please. It probably thinks of</p>\n\n\n\n<p>Daniel Schutzsmith: you. Oh, also too. If you want to spice [01:01:00] up the podcast, you should throw in some more combat stuff like bonus round</p>\n\n\n\n<p>David Bisset: finish. Well, that\'s why you, we should deal with the end. We should just finish it. Alright. Let\'s see what we got. All right. Jeff is still alive that he\'s only in slack. We should\'ve just brought him on. He could have just listened. All right. So here we go. Running through the top three here. Ruba.</p>\n\n\n\n<p>Yours is up there we go. Yours was the WordPress 5.9 release. It was frost being acquired and made open source and stubborn Nella utilities classes, Twitter thread. That was your three picks. Excellent picks. Daniel, your picks were you w the WP user avatar tobacco with profile press.</p>\n\n\n\n<p>That was how Gutenberg has divided WordPress. That\'s what the article was titled. Remind me of the author again on that.</p>\n\n\n\n<p>Robert Jacobi: Let</p>\n\n\n\n<p>Daniel Schutzsmith: me see. I</p>\n\n\n\n<p>David Bisset: don\'t remember. It\'s a long night. I\'ll edit this. Hopefully [01:02:00] don\'t worry. It\'s from the WP minute. I\'m just remembering who policy. Okay. Thank you very much. He deserves the credit and then finally podcast app podcast acquired by automatic again, another great one of those. Acquisitions that you may not have thought of at first in 2021, but I think definitely fits into a grand scheme of things.</p>\n\n\n\n<p>Let\'s see Jason, your top three, the WordPress performance team. That was an excellent one. The theme digests on another great one with 5.8 and Google\'s flock and WordPress they\'re pretty good. Solid picks. Robert yours were the Yoast joins the new phone, digital acquisition, the open verse announcement and the American airlines, Susan sues online publisher and host over fake website involving Joomla, which is something I\'ll be reading right after this.</p>\n\n\n\n<p>And Leslie you\'re top three was the marketing machine blog post from the get elliptics.com. It was the the article about the past, the present of the future with Matt mullenweg\'s. And that was from my [01:03:00] podcast. Joined Colossus that the name of the podcast, or that\'s at least the URL where we\'re pointing out.</p>\n\n\n\n<p>And then your last pick was the waking of, excuse me, working in public, the making in maintenance of open source software. I won\'t try to pronounce the author\'s name, but it is a book on amazon.com published in August of 2020. I thought that was a very excellent pick as well on our first book pick. So,</p>\n\n\n\n<p>Lesley Sim: and also the FSC outreach program.</p>\n\n\n\n<p>David Bisset: Yes. And that too, I don\'t know. I can\'t remember if that was in your quickies or your deads definitely need to be renamed. My, my final three or my big three was the amp was, has a rapidly damaged publisher\'s trust. And half of the credit goes to the subject matter. Half of it goes to Sarah Gooding\'s writing on that piece.</p>\n\n\n\n<p>Ken saved the internet from the David from the protocol. Article written by David Pierce and the acquisition of automotives acquisition of easy digital downloads, [01:04:00] WP, simple pay affiliate WP, and all of that stuff from Sandhills development as well. I think that was my one acquisition pick, which I I\'m surprised nobody got to Pagely, but that\'s fine.</p>\n\n\n\n<p>They\'ll they? I managed</p>\n\n\n\n<p>Robert Jacobi: chat, but it\'s just, you know, it happened so recently. And there\'s just so many other things that</p>\n\n\n\n<p>David Bisset: I have to say it once, because it\'ll show up in the transcript. It\'ll just make everybody feel good. Yeah. We\'ve only said Wix twice. Oh, crap.</p>\n\n\n\n<p>Robert Jacobi: Well, let\'s say go daddy mode. What happens when you say GoDaddy three times?</p>\n\n\n\n<p>David Bisset: I get a coupon in the, in my email for free months. I was thinking, so why do so ever? I know what I do on the first of.</p>\n\n\n\n<p>Robert Jacobi: It\'s like a Sinatra. I\'m going to give him a shout out for that.</p>\n\n\n\n<p>David Bisset: It should, he should. It\'s a lots of companies did a lot of hard work this year. I will. So I want to thank my panelists and I\'m going to go on the order of which they were delivered.</p>\n\n\n\n<p>And please let me know as you\'re closing off here, where people can find you on the internet, let\'s start with Aurooba.</p>\n\n\n\n<p>Aurooba Ahmed: I\'m a [01:05:00] Aurooba.com or twitter.com/aurooba, Aurooba. Thanks for having me.</p>\n\n\n\n<p>David Bisset: No, thank you for having us. I think you were one of the first people that said yes. It\'s very rare. Yes. When it comes to this podcast.</p>\n\n\n\n<p>Yes. At least anyway Daniel where people can find you.</p>\n\n\n\n<p>Daniel Schutzsmith: Yeah. Danielschutzsmith.com. You know, I do a lot of different projects, but really just find me on Twitter. So it\'s S C H U T Z S M I T H.</p>\n\n\n\n<p>David Bisset: Great. And Jason Cosper, where can we find you? Yeah.</p>\n\n\n\n<p>Jason Cosper: You can find me at Jason.Cosper.ME or on Twitter at B as in boy, O G as in girl, a H</p>\n\n\n\n<p>David Bisset: like, Ooh.</p>\n\n\n\n<p>Yeah, it sounds like I, yeah, something I should yell in the middle of the Costco\'s and see what happens. Robert trying</p>\n\n\n\n<p>Robert Jacobi: to spell Jason\'s Twitter handle. Hold on. I\'ll be there. I\'ll be back in a minute. When I figure out all</p>\n\n\n\n<p>David Bisset: the letters well, admire your a mustache in the meantime. [01:06:00] Go ahead.</p>\n\n\n\n<p>Robert Jacobi: You can always reach me somewhere at cloudways.com but on Twitter at Robert Jacobi spelled like it\'s sounds except it\'s an I at the end and Robertjacobi.com.</p>\n\n\n\n<p>Well, there\'s Jason, you know, we\'ve got triple J who\'s got the Jacoby with the.</p>\n\n\n\n<p>David Bisset: Yes. Yes.</p>\n\n\n\n<p>Robert Jacobi: It\'s really supposed to be an eye.</p>\n\n\n\n<p>David Bisset: I\'m just telling you, we don\'t want to get you too mixed up. That\'s right. Definitely not different facial hair at the very least. And finally, Leslie, my darling, Leslie, where can people find you?</p>\n\n\n\n<p>Lesley Sim: You can find me on Twitter. I\'m there too much. I\'m only second to you. And your means stated you can find me on Twitter at lesley_pizza, L E S L E Y underscore pizza. And you can find my plugin at newsletters new.</p>\n\n\n\n<p>David Bisset: Yes, that\'s right. And if you need a newsletter and a plugin form, put her on the list and definitely I [01:07:00] want to thank you all for coming this evening.</p>\n\n\n\n<p>This was the first time we did this first time I\'ve done this. I think it went really well. I, we there\'s a lot of people doing into the year roundups. In about two weeks, you\'ll see everybody doing the predictions for 2020 twos. That\'s your, if I\'ll be able to do anything differently there, but I wanted to close out the year what our best picks were in a format.</p>\n\n\n\n<p>That was we\'ll show these off on post status.com as our, as kind of like our teams, you know, this is, these are the picks that represent us and what we thought. And I think we got a really great mixture. Thank you for not turning this into acquisition. Allie, really appreciate that. I probably will be our invite by five VCs on next time.</p>\n\n\n\n<p>And, you know, I\'ll just sit here and just, you know, watch Seinfeld or something while they rattle off all their acquisition acquisitional hires. But thank you very much for coming. And I hope you guys have a good night and I wait a minute. Let\'s back up. Let me re edit that. I hope all you people have a good [01:08:00] night.</p>\n\n\n\n<p>All right. Thank you.</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, 30 Dec 2021 17:30:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:42:\"WordPress Foundation: Looking back at 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:41:\"https://wordpressfoundation.org/?p=206345\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpressfoundation.org/news/2021/looking-back-at-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:6647:\"<p class=\"has-drop-cap\">As 2021 is coming to an end, it is time to look back at the year that was. 2021 was a challenging year for the world due to the continued spread of the COVID-19 pandemic. However, despite all the challenges, the WordPress Foundation was able to make excellent progress in its mission of educating the public about open source software and serving the public good &#8211; thanks to our global team of spirited volunteers and contributors.</p>\n\n\n\n<p>Read on to find out about our various programs in 2021.</p>\n\n\n\n<h2 id=\"do-action-charity-hackathons\">do_action charity hackathons</h2>\n\n\n\n<p>One of our focuses this year was to <a href=\"https://wordpressfoundation.org/news/2021/do_action-hackathons-and-open-source-workshops-in-2021/\">revamp our do_action program</a>. Thanks to our hard work, do_action organizers now have a dedicated <code>location@doaction.org</code> email ID powered by Google Workspace for Non profits, which will help them in their initiatives. We also kick-started discussions to organize a <a href=\"https://make.wordpress.org/community/2021/09/01/proposal-centralized-global-do_action-charity-hackathons/\">global do_action charity hackathon held fully online</a>, and we are all set to execute this idea in 2022. We also announced <a href=\"https://wordpressfoundation.org/news/2021/announcement-in-person-do_action-hackathons-are-back/\">the return of in-person do_action hackathons</a> after nearly 18 months of online events!</p>\n\n\n\n<p>We had two do_action charity hackathons planned this year: <a href=\"https://doaction.org/event/karnataka-2021/\" target=\"_blank\" rel=\"noreferrer noopener\">do_action Karnataka </a>and <a href=\"https://doaction.org/event/nigeria-2021/\">do_action Nigeria</a>. do_action Karnataka was held in August 2021, where 12 volunteers worked hand-in-hand to create websites for three non profits. You can read more about the event here: </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpressfoundation.org/news/2021/do_action-karnataka-2021-a-report/\">do_action Karnataka 2021: A report</a></blockquote>\n</div>\n\n\n\n<p>While <a href=\"https://doaction.org/event/nigeria-2021/\">do_action Nigeria had to be canceled</a> due to unforeseen circumstances, the local WordPress community &#8211; led by WordPress Community Deputy <a href=\"https://profiles.wordpress.org/mariaojob\">Mary Job</a>, is doing a phenomenal job on the ground by uplifting women and children <a href=\"https://uwani.org/\">through their own charitable initiatives</a> using WordPress.</p>\n\n\n\n<h2 id=\"introduction-to-open-source-workshops\">Introduction to Open source workshops</h2>\n\n\n\n<p>Last year, during the COVID-19 pandemic, we <a href=\"https://wordpressfoundation.org/news/2020/open-source-workshops-november-2020-report/\">brought back</a> our <a href=\"https://wordpressfoundation.org/news/2018/call-for-organizers-introduction-to-open-source-workshops-for-2018/\">Introduction to Open source workshops</a> as a way to re-engage the community and to reinforce our core mission of promoting open source software to the community. At the start of this year, we <a href=\"https://wordpressfoundation.org/news/2021/do_action-hackathons-and-open-source-workshops-in-2021/\">announced our plans to continue these workshops in 2021</a>.</p>\n\n\n\n<p>At the time of writing this post, we have had 11 Global Introduction to Open source workshops, which have had a total of 233 RSVPs so far. We also have our <a href=\"https://www.meetup.com/wordpress-social-learning/events/282952546/\">final Introduction to Open source workshop</a> for the year scheduled for tomorrow (December 31) as well!</p>\n\n\n\n<h2 id=\"learn-wordpress\">Learn WordPress</h2>\n\n\n\n<p>Learn WordPress (<a href=\"https://learn.wordpress.org\">learn.wordpress.org</a>) &#8211; a cross-team initiative led by the <a href=\"https://make.wordpress.org/training/\">Make WordPress Training team</a> was launched in December 2020. The initiative serves to democratize and support WordPress learning by providing high-quality WordPress learning content in different formats. At the time of publishing this post, the platform had published the following content in 2021 alone:</p>\n\n\n\n<ul><li>39 <a href=\"https://learn.wordpress.org/workshops/\" target=\"_blank\" rel=\"noreferrer noopener\">video workshops</a></li><li>2 new text/video based <a href=\"https://learn.wordpress.org/courses/\">courses</a></li><li>20 <a href=\"https://learn.wordpress.org/lesson-plans/\">lesson plans</a></li><li>134 <a href=\"https://learn.wordpress.org/social-learning/\">social learning spaces</a></li><li>4367 RSVPs for <a href=\"https://learn.wordpress.org/social-learning/\">social learning spaces</a>. </li></ul>\n\n\n\n<p>The contributor teams working on this project have some amazing plans for the project, and the WordPress Foundation will continue to support their work in the best way possible. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>Several individuals contributed generously to the WordPress foundation this year. We would like to extend our heartfelt gratitude to <a href=\"https://wordpressfoundation.org/donors/\">all our donors</a> who supported us in sustaining the foundation this year. Special mention to the following individuals who went above and beyond in supporting us in 2021:</p>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<h3 id=\"sustainer-1000-per-year\">Sustainer &#8211; $1000 per year</h3>\n\n\n\n<ul><li>10up</li><li>Human Made</li><li>Jetpack</li><li>Matt Mullenweg</li><li>Multidots, Inc</li><li>Sujay Pawar</li><li>Wordfence</li><li>InMotion Hosting</li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<h3 id=\"sustainer-200-per-year\">Sustainer &#8211; $200 per year</h3>\n\n\n\n<ul><li>Donavon Guyot</li><li>Eric Kuznacic</li><li>Ellen and Karl Olinger</li><li>Pippin Williamson</li><li>W4</li><li>René Hermenau / WP Staging</li></ul>\n</div>\n</div>\n\n\n\n<p>The WordPress Foundation has several ambitious plans for 2022, none of which would be possible without your help. If you would like to support the WordPress Foundation and contribute to our mission of serving the public good and educating the public about open source software, please consider donating to the WordPress Foundation. Your donation goes a long way in keeping the web open. Please use the link below to donate. </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>Thank you for your continued support of the WordPress Foundation. Here&#8217;s wishing you all an excellent holiday season and a happy 2022!</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, 30 Dec 2021 12:48: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: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: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:53:\"WPTavern: A Throwback to the Past: Retro Winamp 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:30:\"https://wptavern.com/?p=127752\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:149:\"https://wptavern.com/a-throwback-to-the-past-retro-winamp-block?utm_source=rss&utm_medium=rss&utm_campaign=a-throwback-to-the-past-retro-winamp-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:4112:\"<p class=\"has-drop-cap\">In mid-November, I happened upon a block plugin called <a href=\"https://wordpress.org/plugins/retro-winamp-block/\">Retro Winamp Block</a>. As many of our readers know, I am always on the lookout for those WordPress extensions that remind me of the era when I first started using computers and exploring the web.</p>\n\n\n\n<p>The plugin seemed to fit the bill. It had &#8220;retro&#8221; in the title, so it had already piqued my interest without even installing it. It had been years since I used Winamp. The media player was first released in 1997 for Microsoft Windows and grew in popularity through the early 2000s. By the time I arrived on the scene, it had already built a massive user base. It was the best option available for creating music playlists at the time, and it was skinnable.</p>\n\n\n\n<p>Winamp was popular back when the world wide web felt more alive. I still look upon it as the golden era of user creation and the blossoming of fandom. Where else could you find a collection of Brad Pitt skins for your computer&#8217;s media player? Or, <em>One Piece</em>? Even <em>Super Mario</em>?</p>\n\n\n\n<p>I did not hesitate to install this throwback plugin. Unfortunately, it errored out whenever I attempted to add an audio file. So, I set it aside with a note to look at it down the road.</p>\n\n\n\n<p>A few weeks later, I read WordPress lead developer Helen Hou-Sandí&#8217;s <a href=\"https://helen.blog/2021/12/its-so-hard-to-say-goodbye-to-yesterday/\">goodbye announcement to 10up</a>, the company she had been with for a decade. With the help of Mel Choyce, co-workers Jeff Paul, Darin Kotter, and Tung Du created the Retro Winamp Block in her honor.</p>\n\n\n\n<p>I checked back in on the plugin. There was an update, and the change log noted a fix for the error I had encountered. In minutes, I was able to once again experience the glory of one of the first media players I had used on my old Gateway laptop.</p>\n\n\n\n<img />Retro Winamp Block in the editor.\n\n\n\n<p>Retro Winamp Block has does not have many options. Actually, it only has one customization that users will be interested in: the player skin. They can enter any URL for it, and over 83,000 are available via the <a href=\"https://skins.webamp.org/\">Winamp Skin Museum</a>.</p>\n\n\n\n<img />Winamp Skin Museum.\n\n\n\n<p>The museum is hosted by <a href=\"https://github.com/captbaritone/webamp\">Webamp</a>, a project that implements an HTML5 and JavaScript of the old Winamp 2.9. 10up used it for its own Retro Winamp Block plugin.</p>\n\n\n\n<p>Since installing the latest version 1.0.1 of the plugin, I have only hit one issue. The live preview in the editor is partially broken. The player floats in the same spot instead of scrolling with the page..</p>\n\n\n\n<p>If I had one wish for this plugin, it would be to see the addition of Milkdrop, the popular Winamp visualizer add-on.</p>\n\n\n\n<img />Winamp with Milkdrop add-on.\n\n\n\n<p>Mostly, I simply enjoyed this jaunt down memory lane. I even went as far as installing the latest Winamp on my computer. The original player still has a thriving community if its forums are any indication. The UI is practically unusable on my laptop, so I dropped it after listening to an old Ashlee Simpson album.</p>\n\n\n\n<p>While I enjoyed the nostalgia of the old player, I want to see modern-day implementations of these types of features for WordPress. Instead of a throwback to Winamp, where is the skinnable audio block?</p>\n\n\n\n<p>I put together a quick pattern to test out some ideas (<a href=\"https://gist.github.com/justintadlock/a38e129326dfdbeff4498999130aeee8\">code on Gist</a>):</p>\n\n\n\n<img />Cover + Audio + Social block pattern.\n\n\n\n<p>The <a href=\"https://wordpress.org/photos/photo/63161c1f1d/\">background is by Jeff Golenski</a> from WordPress Photos (this directory is already coming in handy). A few adjustments later, I had a custom-styled audio layout. However, I could not modify the audio player itself. It is just the browser default. There is no equalizer, track info, or visual flair. Just a clean, boring player that longs for someone to sprinkle a little pizazz 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:\"Thu, 30 Dec 2021 02: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: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:101:\"Post Status: Post Status Excerpt (No. 39) — WordPress 5.9: Delays, the Customizer, and Contributing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=91867\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/39/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59922:\"<h3>&#8220;Too many things were interrelated and we didn’t have enough people who were looking across…&#8221; —<strong>Anne McCarthy</strong></h3>\n\n\n\n<p class=\"has-drop-cap\">In this episode of Post Status Excerpt, David has an informative chat with <strong>Anne McCarthy</strong>. Anne is a <strong>Developer Relations Wrangler</strong> for <strong>Automattic</strong> and (among other things) has been responsible for many of the recent videos showcasing the features of <strong>Full Site Editing</strong> and <strong>WordPress 5.9</strong>. David and Anne talk about what decisions led to the delay of WordPress 5.9, her start with <strong>Automattic</strong>, COVID\'s effect on core contributions, and how polished Full Site Editing might be by the end of January 2022.</p>\n\n\n\n<p><strong>Also: </strong>David asks Anne what the future of the WordPress Customizer will be in a world of Full Site Editing.</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://make.wordpress.org/core/2021/11/22/wordpress-5-9-revised-release-schedule/\">WordPress 5.9 Revised Release Schedule</a></li><li><a href=\"https://nomad.blog/2021/11/23/why-i-voted-to-delay-wordpress-5-9/\">Why I Voted To Delay WordPress 5.9</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://poststatus.com/gravity\" 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>\n\n\n\n<h2 id=\"h-transcript\"><strong>Transcript</strong></h2>\n\n\n\n<p><strong>David Bisset:</strong> I didn\'t go to the state of the word, obviously, w it was, it would take too much time away from me, tweeting fun, little memes and remarks. So I decided to stay home and it hurt your</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> Twitter</p>\n\n\n\n<p><strong>David Bisset:</strong> game. Yeah. Twitter didn\'t ban me. So, you know, I must be on the good list. But yeah, it was, I thought it was you.</p>\n\n\n\n<p>Did you did you watch it?</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> I did watch it, but I will admit that I was helping with the slides that day. So what I did actually watch, I was pretty fried by the time I actually watched it.</p>\n\n\n\n<p><strong>David Bisset:</strong> How did you help with the slides?</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> Just from afar. There were some demos that needed some voiceovers and designers had done two wonderful demos, but there was just no con like voiceover to explain what was actually happening.</p>\n\n\n\n<p>So I jumped in to do some of those and just kind of fill filling gaps with the</p>\n\n\n\n<p><strong>David Bisset:</strong> bar.</p>\n\n\n\n<p>I knew that voice sounded familiar.I mean, not every voice cause I\'m like, wow, you must have had a lot of cigarettes that day for that for that voice. But no I forget his name, but we, there was a voice that I remember for one of the [00:02:00] demos that previously did, like a whole bunch of WordPress demos and he has an accent and I can\'t think of his name right now, but I will later&#8230;</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> Oh, you\'re probably thinking Michael Peck.</p>\n\n\n\n<p><strong>David Bisset:</strong> Yes, that\'s probably</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> yes, he did the 5.9 voiceover demo. And that\'s actually like, I don\'t know if you\'ve seen a YouTube video, but there\'s a awesome YouTube video. That group has worked on. A WordPress YouTube channel. And he did the voice over for that. And it\'s like a really cool kind of throwback to the early days where he would do release videos and he like knocked it out of the park.</p>\n\n\n\n<p>Pretty sure.</p>\n\n\n\n<p><strong>David Bisset:</strong> What does he do besides does all he do is voiceovers. What does he do?</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> No, he works for automatic. Now. He\'s mainly focused, I think on a combination of probably. Brand and design stuff or a purse.com. So</p>\n\n\n\n<p>we got them on loan.</p>\n\n\n\n<p><strong>David Bisset:</strong> I said, he must have, you must have been in some virtual cafeteria, regular cafeteria back then in the here.</p>\n\n\n\n<p>And you\'re like, oh, that voice, I must have that voice.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> It\'s very impressive. I have a friend who has a really good radio voice. I\'m always really [00:03:00] jealous. I want him to record my voicemail at some point.</p>\n\n\n\n<p><strong>David Bisset:</strong> Oh yes. Anybody with an accident? I wanted to be good. I want it on mine. My parents said I always had a great face and voice for books.</p>\n\n\n\n<p>So let\'s talk about, let\'s actually talk a little bit, the videos. How did the I know you\'re involved in them now. I, you seem to be in the. We\'re going to have our IC a video. Most of the time, outside of the state of the word, it looks like you, that you are pushing them. Are you primarily the one that makes those.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> Yeah, for the YouTube videos. I have some on my personal channel that I do, I did help with the 5.9 video, mainly from a logistics wrangling, like figuring out script actually did an initial voiceover that got nixed and be like, Michael police come in here. I was very sick and Michael very graciously hopped it at the last minute, but mainly I just kind of help out in terms of.</p>\n\n\n\n<p>Coming up with ideas. So sometimes with learn WordPress folks, I\'ll also share some like review what they\'re working on, but a lot of the YouTube videos on my channel are [00:04:00] just things that I find interesting or that I anticipate with the next release. We just need to get some content out there and I\'m fortunate to be so.</p>\n\n\n\n<p>So the project that I can share things early and from there I can then send them to folks who actually have real followings and be like, Hey, I know you\'re probably going to create content, but the navigation block, here\'s like a rundown of all the features. Here\'s how I\'m presenting it, like do your thing.</p>\n\n\n\n<p>So it actually started that way where I was just creating content as a way to actually demonstrate something for other people to kind of just. Get the word out about something new that was coming and it was easier to communicate, especially from afar using videos. I had no aspiration. It helps a lot.</p>\n\n\n\n<p>Yeah. And I have zero aspirations to be like a YouTuber. I just like, I don\'t think I\'m, you know, have the equipment or the ability to be very good at it. Like some folks are in the WordPress community, but it is fun. It\'s cool. I guess to have it\'s very visual.</p>\n\n\n\n<p>It\'s very visual. I know a lot of people really appreciate the, like, just give me the heads up [00:05:00] in two to three minutes.</p>\n\n\n\n<p>Cause I remember when I think after Gutenberg was launched, we really appreciated those two or three minute demos that was at Marcus did during the state of the words or during presentations at work camp us or something like that, where you sat down in two minutes or three minutes when you got basically.</p>\n\n\n\n<p>All you needed to know. And it was, there was a wow factor there. They, you know, they look at time and space by doing this. I think that\'s a very good idea and I hope you continue. Yeah, I plan to, so</p>\n\n\n\n<p>yeah, I appreciate that because I\'ve got a lot of encouragement from Paul AC and Nathan Wrigley, and they were both like, you should do it, but you\'d be fine.</p>\n\n\n\n<p>And I was like, I don\'t know, like, I don\'t think I have the time or I don\'t think it\'s like saying that I would be very good at. And I\'ve gotten good feedback where people are kind of like what you\'re saying was like, I need to see the visual and also. Who is so close to the project on a day-to-day basis.</p>\n\n\n\n<p>It\'s like, give me the little details. Like, I don\'t want to just see it at a high level. Give me the like bells and [00:06:00] whistles. So it\'s kind of a, it\'s a cool, neat way to connect with folks too. I\'ve gotten this just this week. I had like three or four people reach out and my contact form, like, Hey, I watched your video about this.</p>\n\n\n\n<p>Like, can you help me with facts?</p>\n\n\n\n<p><strong>David Bisset:</strong> Oh great, I\'m a support person now! Yeah. Now. But it\'s, you know, in the beginning was so easy to see the mess because there were massive changes or adjustments happening to Gutenberg, but, and there still are, but now things are being tweaked and being refined. And over a post status, Courtney produces like every week she produced.</p>\n\n\n\n<p>So this is the list of things that are happening in core. And of course, a lot of it\'s Gutenberg related. Yeah. And, you know, share, feel free to share with me your thoughts on this is it. I think it\'s becoming a little bit harder now to gauge a lot, unless it\'s a big headline feature and full site editing.</p>\n\n\n\n<p>We can get into that unless it\'s a headlined feature that you\'ve been hearing about. I think, you know, when I do the summaries and do the post for post status and what little time I have to review the text, which is in a [00:07:00] make.wordpress.org document. It\'s kind of hard to visualize a lot of that.</p>\n\n\n\n<p>And therefore it\'s kind of hard for anyone outside of maybe two or three dozen people to really communicate and train, you know, translate that excitement to other people or to show how much progress is being made. Because you read a bullet list and it\'s, you don\'t know, you don\'t know how much work is happening behind those bullet lists for starters.</p>\n\n\n\n<p>And then, you know, something could do something very cool visually, but if it\'s just on a bullet list on make.wordpress.org, the public not gonna see that.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> Yeah, no, I think you\'re right about that. And that\'s one of the things I don\'t know if you\'ve noticed, but in the last year or so the designs and like the visuals that had come with the what\'s new in Gutenberg posts have definitely been upgraded because of that exact problem is it\'s like, show me the value, show me how it actually connects, how it makes my life easier.</p>\n\n\n\n<p>And there\'s also a series of posts. I do the core editor improvement posts. Yeah, that also seeks to even highlight that more. And it started out as like highlighting individual things. And recently I\'ve [00:08:00] actually had to switch to not have to, but it actually makes sense to switch to like a collection of improvement.</p>\n\n\n\n<p>So I have a post right now that I\'m working on with a couple of folks. On like performance at 5.9. So let\'s talk about the performance enhancements. Let\'s run through it in one place so you can see it. Yeah.</p>\n\n\n\n<p><strong>David Bisset:</strong> You\'ve given me a topic to talk to you about. Thank you. But to some somebody\'s credit though, and I think when they do the Gutenberg plugin, Release posts.</p>\n\n\n\n<p>They do offer him graphics and they\'ve gotten better with videos. I just wish everything was an animated GIF so I could share it. That\'s a lot easier. Thank you very much. So those existed, but like, I think for what you\'re doing and for some of the things that I think flying under the radar, you know, that, you know, not again, not the headline features.</p>\n\n\n\n<p>I think the there\'s nothing. Then a short video. Yeah.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> And the connecting the dots. Like I started that connecting the dots series, just kind of on a whim because I found something that I was like, you can do this. If you combine these different tools, you can then do this crazy thing. Like I think [00:09:00] that\'s also, I actually, that\'s the series I\'m probably most excited about.</p>\n\n\n\n<p>Like, it\'s fun to do these headline, like explore navigation blockers from 5.9 or the query look like that. Those are fun videos to do, but the connecting the dots. It feels more exciting. Like I\'m like, gosh, yes, get this major feature in your head. But then also like, let\'s talk about like the weird things you can do and the cool things you can do when you actually combine these things.</p>\n\n\n\n<p>Cause that\'s, what\'s really powerful is it\'s not like cool. We added dimension controls to this thing, but like what does this actually allow me to do? Okay. This.</p>\n\n\n\n<p><strong>David Bisset:</strong> Practical application right? Yes. Cause those are the videos I\'d like to show off from the meetup groups. And a lot of times meet up organizers, just say, this is cool.</p>\n\n\n\n<p>And then the media bargain meet up organizers. If they\'re good meetup organizers say, and this is how it could apply to you person, that\'s running an agency out of there out of a phone booth or whatever it is you do. Let\'s transition from weird to WordPress 5.9, because you could say something [00:10:00] happened a little bit weird on that.</p>\n\n\n\n<p>Oh yeah. It\'s supposed to be out or right around this time of rigidly, right? I think it was before the holidays. Yeah. You mean the same date as the state of the word? Really? Yeah. I didn\'t put those dots. Yeah. That, that, that would yeah, that\'s a coincidence. So it didn\'t happen.</p>\n\n\n\n<p>Can you tell me a little bit about what happened and what was involved in making the decision? No spoilers, but to push that into charity.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> Yeah, it\'s a really tough decision. And I\'ll preface this by saying I wrote a post that on why I voted to delay it. So I won\'t go into hyper detail cause there\'s a lot of detail on that post that I try to make it very practical.</p>\n\n\n\n<p>Here\'s how you can enact a lot of videos and like images being like, this is why. But yeah, this is my first time on a really squad too. So I don\'t have the historical knowledge that other folks bring to the table, but from my point of view and from my experience. Which program, which really is where I\'m coming from too many things were interrelated.</p>\n\n\n\n<p>And then we didn\'t [00:11:00] have enough people. Who were looking across basically is the long and short of it. So, you know, 2022 is relying on you know, certain things get in place with styles, but at the same time, those working on styles aren\'t necessarily solely focused on 2022. So like, it was kind of, there was a weird tension there of bringing a lot of unrelated things together,</p>\n\n\n\n<p><strong>David Bisset:</strong> ultimately, I\'m sorry, was it like the sunny from Philadelphia meme where the chart is. I think it\'s Charlie, he\'s looking at the board behind him and then the oldest red strings going everywhere. And he\'s trying to explain something was a kind of like that a</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> little bit. Yeah. There is a little element of that, but almost imagine. That if you were to remove one of the strings, like that feature wouldn\'t make as much sense anymore.</p>\n\n\n\n<p>So remember how we were just talking about connecting the dots and how things working together is actually where the value like hyper value goes. That\'s what basically was going on, where it was like, if we ship these things independently, we could in theory, remove some of the stuff. But it\'s going to be, it\'s just the value kind of isn\'t as exponential when they\'re all together.</p>\n\n\n\n<p>And I was [00:12:00] looking at the issues. I test it every day, like, especially leading up to release for 5.8, 5.9. I\'ve been testing every single day in this stuff all the time. And a lot of it was refinements. It was like, there were a couple of things that, some big decisions. So one I can tell. There was stuff around the navigation block, how to reuse it across Wakim\'s.</p>\n\n\n\n<p>So originally there was a thing called navigation areas that was a new block that got reverted. That was I think, the right call. And then there the browsing. So when I talk about browsing, it\'s like, how do you navigate between your homepage, your templates and your template, parts and styles? Like what does that system look like from an information architecture perspective?</p>\n\n\n\n<p>And there was a weird combination of. Technical constraints that came up as well as like design, so design and the technical constraints. We\'re kind of dancing with each other. And at a certain point, it just got to a place where. Fortunately like a middle ground could be found. And I think the solution they have right now is excellent.</p>\n\n\n\n<p>Originally that, that seemed to be not viable. So kind of by having the delay, we\'ve [00:13:00] had like a better solution, I think, than what was originally in place. That\'s been tested a lot with the outreach program, so it\'s a lot of it. Yeah.</p>\n\n\n\n<p><strong>David Bisset:</strong> Am I correct in understanding you that you were the one who initially brought something up?</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> I was not necessarily, there was a team.</p>\n\n\n\n<p><strong>David Bisset:</strong> Yeah, everybody started getting the idea around the same time. Maybe.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> Yeah, it was one of those where I think enough people kind of paused and like, I can tell you leading up to the release. I was like, okay, are we really feeling good about this? Like, I had some moments, but I also wasn\'t like confident and being the person to say like, we can\'t ship this, we can\'t ship this.</p>\n\n\n\n<p>Like, I\'m definitely not one of those decision makers, but I mean, I\'m filing, I was filing tons of issues and getting, and with the outreach program, obviously, like I\'m seeing the complaints, I\'m writing a summary post. So like I knew what the pain points were. And then at a certain point, it becomes a decision for the designers.</p>\n\n\n\n<p>Like what design direction do we want to go in? And that\'s kind of where we landed, where it was just like a last minute kind [00:14:00] of Too much to figure out. And a lot of it\'s like little things too. So I\'m talking about these big decisions. If there were a lot of small things that need to be sorted out that thankfully were more refinements.</p>\n\n\n\n<p>And so I felt really comfortable delaying and voting to delay because of that, because I was like, the value will be exponential. If we can ship these altogether, everything I\'m seeing right now can be figured out like at first. And I think this is where the confusion really started. There was this like long list and it was all seen as blockers.</p>\n\n\n\n<p>So originally there was like this get hub issue that Someone did there. I think it was Rob who\'s, the corridor tech lead, who has been doing an excellent job. All the lease lead folks have been doing amazing work and he wrote all the issues out and gathered all of them that people were flagging.</p>\n\n\n\n<p>But they were seeing all his blockers and that wasn\'t the case. Really from that list, there were like a subset of blockers that were truly like, we need to delay this. And that\'s part of the chaos of, you know, working remotely. Yes.</p>\n\n\n\n<p><strong>David Bisset:</strong> You had a translated into a sound. It would be mostly that. So yeah, I would imagine the [00:15:00] holidays.</p>\n\n\n\n<p>It didn\'t help that the fact that we have this, let\'s be honest, the last two weeks of the year or the last week of the year, the first week in the new year, however you want to slice it really for me, three weeks, really, or two and a half at best, but sometimes three weeks for everybody to get.</p>\n\n\n\n<p>Even if they\'re staying home, even if they\'re not traveling, it\'s your brain is kind of in a reset mode. Yeah. Like I need, listen, I may not be leaving my house, but I\'m taking a vacation, so you\'re not talking to me. Regardless if you celebrate any of the holidays or not, there\'s enough mass people taking time off visiting family, or just staying at home or away from computers that I would imagine productivity would\'ve hit a dive there and, or you didn\'t want to, nobody would want it have taken the chance.</p>\n\n\n\n<p>You know, we don\'t want to make Matt Mullenweg into Scrooge because he\'s to he\'s the lead. Right. He\'s the lead. Right. So that would be, yeah, that I\'m correctly associating the[00:16:00] fictional character with the appropriate reference. Thank you. Case. I get an email later. So when is a WordPress 5.9 coming up?</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> It\'s going to be released January 25th. And as you were saying, like originally the beta was only pushed by two weeks, but then we had to add extra time because of the end of the year period and beginning of the year. I mean, it\'s just a chaotic time. And I think that is also the right call. I don\'t think it\'ll hyper disrupt any other releases.</p>\n\n\n\n<p>I think there\'s a ton of stuff for 6.02. It\'s not like, oh, by delaying, we\'re going to have a really light 6.0 release. I think it\'s gonna be. How\'s that going to change as</p>\n\n\n\n<p><strong>David Bisset:</strong> well? Is that going to be a little bit compressed then in the first part of the year, you think, or is different people working on different things?</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> Yeah, I think at a certain point it might compress it a bit, meaning like there might be a release in like March or something like that, but they actually didn\'t release the schedule for 6.0 yet. So I\'m not really sure how that\'s going to impact. Things I will say part of the discussion that\'s come up amongst score contributors when I\'ve checked in with a lot of them, when this was going on to make sure everyone was doing okay.</p>\n\n\n\n<p>And a lot of them were like, man, this is when I wish [00:17:00] we had more releases. Like I wish we could have this like more of a release cadence where it\'s more frequent. So we\'re not like needing to do with delay. Cause like the options were not fun, but that\'s the constraints of the current system. And, you know, ideally in a future world, it isn\'t as Yeah.</p>\n\n\n\n<p>Each release. You can kind of say like, it\'s okay. We can ship this because we have another release coming in a month rather than like three months.</p>\n\n\n\n<p><strong>David Bisset:</strong> Yeah. Is that possible though? I mean, is that possible at least where we stand right now, because we just talked about how. And like how integrated are, how one piece is related to this.</p>\n\n\n\n<p>And, you know, you know, maybe this is just one of those junctures in the four stages of Gutenberg or whatever timeline you want to pick where yes, it all is intersecting together. Cause it\'s full site editing. I mean, it\'s the words are in there. It\'s full side. Right. And then maybe down the road with when he gets to collaboration and translation, maybe things will go a bit easier, but regardless it\'s like.</p>\n\n\n\n<p>I know there\'s so many, there\'s so many ways you can look at it. I hear about a lot of time in other technology groups, in terms of first, you have people say, well, why [00:18:00] don\'t you just release every month? It\'s no worries. Any automatic updates. It\'s fine. And then that happens. And then you say, why are we getting so many updates?</p>\n\n\n\n<p>I have to keep updating.</p>\n\n\n\n<p>Yeah. Which, which, you know, is another subject in of itself because in theory, You shouldn\'t have update fatigue, if you have automatic updates turned on and you know, that\'s another thing too. You know, in some situations that\'s not possible. So you\'re going to have people, whether it\'s a real problem or something that someone projects into their mind, like some sort of ghost but it\'s still a legitimate thing to deal with.</p>\n\n\n\n<p>So I see. So yeah, you have this, you it\'s a bunch of. All not the code, but the responsibilities and the dependencies is a bunch of, you know, a bunch of well cooked, fine high quality spaghetti.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> And yeah, it would be really tricky to do. Like, I don\'t necessarily think that\'s like a viable thing right now, or I don\'t, I can\'t speak to it in the future, but I do [00:19:00] think it is a result of, you know, the circumstances that we\'re in.</p>\n\n\n\n<p>Like we\'re all impacted by the same constraints. And I think that\'s one of the things where. You know, for example, there are, I don\'t think it was fully scoped out even like, what would a dependency plan look like where it\'s like, or contingency plan? Sorry, look like where if let\'s say we had to remove some of these things, would we, excuse for example, we could do things like remove browsing entirely, which is one of the things that was, I think, shipped at some point.</p>\n\n\n\n<p>We\'re instead you have, you know, your appearance menu, you have templates, simpler parts, the editor styles. And so you have no sort of browsing in the sidebar. You could also like say, you know what, the navigation block isn\'t ready or counting it to another release. You could also say like, you know what, you can\'t actually create new templates.</p>\n\n\n\n<p>You can only just view the ones that come with your theme. Like there\'s a lot of ways that could have been pulled back. But thankfully what shipping is very comprehensive. Like I think that\'s the good thing with this delays also.</p>\n\n\n\n<p><strong>David Bisset:</strong> I don\'t think anybody\'s looking at it going on, man.[00:20:00]</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> Yeah. And I mean, I also think the good news is ultimately these features that we\'re talking about, which get a lot of attention are going to impact a small subset of people. Like this is not going to be five point where all of a sudden it takes over your site and you have to use it like this is it.</p>\n\n\n\n<p>It\'s very much. So in line with the gradual adoption, where if you want to use these features, you have to literally hyper opt-in. You have to switch your theme. You have to like seek it out. Like it\'s very much something that. That also gave me confidence where it\'s like, I know these like full siting and all the collection features that go along with that.</p>\n\n\n\n<p>You get a lot of attention. But even if you upgrade, you\'re not switching to full site editing, you\'re still gonna get a ton of value in this release. And that, that to me is what\'s really exciting is it\'s almost like, because this is a smaller subset. The features are more high impact exponentially when they\'re working together.</p>\n\n\n\n<p>I think it was just the right call, but I\'m really excited to see people get their hands on 5.9. And speaking of police health tests, the Tesco lead, I\'m like, please help test. It\'d be a huge help.</p>\n\n\n\n<p><strong>David Bisset:</strong> We\'ll get through testing in a second, because I [00:21:00] do want to, I do want to get, like, if you had the opportunity.</p>\n\n\n\n<p>To make it to make a pitch for you. You did mention 5.0 though. When that first came out, I think there was a there\'s a number of people that, and you know, that the circumstances behind that you know, around the state of the word time, everybody was busy or give Ghana was one of those. I think it wasn\'t November.</p>\n\n\n\n<p>So, I mean, it was approaching a holiday season or something or something like that, but it was, I would be, I don\'t know, a lot of people said it was around rough around the edges. I\'m not going to argue with him about that when it came out but over time that the improvements on it have been, I think in my opinion, pretty good.</p>\n\n\n\n<p>Pretty, pretty tremendous. In fact, do you think and you may, I think you touched on this already, but do you think with a full site editing, we\'re going to see not what 5.0 is. Cause I think you just said that, but do you feel comfortable with the level of Polish that will be out at the end of January?</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> Oh,</p>\n\n\n\n<p>that\'s a great question. There\'s a lot of nuance here, so it depends [00:22:00] upon someone\'s skill level. If you were brand new WordPress user, I would, I\'d say very beta. So like, I think it\'s literally going to ship with a beta warning. So in terms of, is it hyper polished? I would call it functional kind of empowering.</p>\n\n\n\n<p>But I wouldn\'t necessarily be like, oh, it\'s delightful. And you can, it\'s completely intuitive. Like I think, and I say this partially because especially if someone, maybe if someone was new, they might actually have an easier time, because there\'s a lot of concepts built within full that are really hard to grasp.</p>\n\n\n\n<p>For those of us who\'ve been in WordPress for a long time. Things</p>\n\n\n\n<p><strong>David Bisset:</strong> Can they get those videos in there? That would probably help.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> Yeah, no, I think that\'s part of, so I actually am also helping with the user support docs for this release. So I\'m co testing it and then helping with the user docs. And that\'s one of the things that\'s really difficult to communicate simply.</p>\n\n\n\n<p>So like, how do you explain to someone, what template parts are. And how do you explain when to use them? So, like one of the, I just opened an issue for this yesterday, but it\'s like, we probably need to explain the difference [00:23:00] between template parts, reusable, blocks and patterns. And when do you use each? So I probably need to write a doc on that.</p>\n\n\n\n<p>So there\'s a lot to be explained there in a way that\'s very simple so that people can make good decisions. And right now their, what is being shifted doesn\'t necessarily have guardrails to nudge someone in the right direction. If that makes sense. So you\'d have to have some level of knowledge in order to write.</p>\n\n\n\n<p>Put it together, but do I think it\'s a polished V1 for someone who likes to tinker? Definitely. Like, I, for sure think that\'s the case. The only I can tell you my major sticking point, which is driving me nuts right now is right now. Are you familiar with the template editing mode?</p>\n\n\n\n<p>I launched.</p>\n\n\n\n<p>I\'ve played with it.</p>\n\n\n\n<p>Yes. Yeah. So right now let\'s say I have a block theme activated and I\'m using 5.98. I can go in and I\'m using a theme with template mode. I can go in and I can like add a new post. And then under the posts kind of sidebar, I can select and create any template. And from there I can have a fresh new template that I can then assign to the post.</p>\n\n\n\n<p>However, if I\'m in [00:24:00] the site editor and I\'m navigating through the templates, I cannot create a new generic template. And there\'s an issue open for this. I can create an archive when I complete a search warrant. I create a new front page one, but there\'s not a. I want to create a new template and I want to sign this poster page or this category to it.</p>\n\n\n\n<p>So there\'s a lot like that basic infrastructure you can, it\'s a workflow thing. So it\'s like in one place, you can do this thing, but in the other place that feels more intuitive. You can\'t. And then on top of that, obviously for this release, some stuff is constrained. So this was one of the decisions that had to be made.</p>\n\n\n\n<p>So you can\'t have. If you wanted a category to use a specific template, you\'d have to actually add it to your blocking files rather than like being able to do it in the interface. So the good news is it\'ll ship, but then there\'s some really common. Possibly common use cases where people are going to be like, oh, but I want to do this.</p>\n\n\n\n<p>And that\'s where I think 6.0 6.1, like these future releases will continue to deliver on the promise to pull siding. And I think right now what is in place is really powerful. And I think it\'ll [00:25:00] actually jumpstart. People\'s excitement into everything that you can do. But there are just some. I don\'t know.</p>\n\n\n\n<p>I think Justin Tadlock had a good description where he\'s like, it works, but then as you\'re getting involved in it, there\'s like some common things that you\'re not yet able to do. And I\'m like, yeah, that\'s very true. Like there are some things that I can imagine. I\'m like, I would love on my personal site to have a specific template for.</p>\n\n\n\n<p>All my posts that are tagged with WordPress resources so that I could just send people there and I could have a different header. I could have a different contact form, like have a completely different experience with that. I think it\'d be really cool.</p>\n\n\n\n<p><strong>David Bisset:</strong> But you know, I was like, it sounds like something in the old days before Gutenberg, that would be like a WordPress plugin.</p>\n\n\n\n<p>You would have to find</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> correct.</p>\n\n\n\n<p><strong>David Bisset:</strong> Which in the defense of Gutenberg, in terms of that, I mean, You know, you\'re, it seems like a lot of the, you know, a lot of the major work being done, but also some things that are being done in Gutenberg. Like duotone, for example, maybe it\'s the one that jumps out at me. It\'s like, [00:26:00] like before it was just, you had to go find a plugin for that.</p>\n\n\n\n<p>I mean, you\'re you and birds taking off. Lots of cool and interesting things that were before with maybe with, or with maybe with a page builder, with an add on with a page builder or just a plugin that those were just like little thrills that you would just find in the plugin stuff, getting Berg\'s incorporating this in the course.</p>\n\n\n\n<p>So Gutenberg, I mean, it\'s not just a, it\'s not just the blocks anymore. You\'re incorporating all these like, you know, fun stuff that like, maybe. Not even the majority of people might even use some time, unless there\'s a big, duotone a fan group out there. In other words,</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> the only thing that I think is cool is that you can add it on theme level.</p>\n\n\n\n<p>I think that\'s part of it. It is very much a design tool in that sense. And I think that. To me where I\'ve seen it really come to life is when I\'ve seen some theme authors. I think some automatic female author is released. It\'s skate park is a theme, but it has like do a twin filters baked in. So like, if you change the [00:27:00] background of your theme, the images were also like a doc, the duo tone.</p>\n\n\n\n<p><strong>David Bisset:</strong> Oh no. My F my life is a French film to atone anyway. So I\'m full of that. Did you happen to hear. I think when it comes to block themes, Matt said something about wanting 3000 a year or so. Was he exaggerating there a little bit? I</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> think he\'s serious. And like, I also, this sounds wild, but I think it is very much so, like he actually thought it was interesting that he said it in that way, because how do I explain this?</p>\n\n\n\n<p>Like, You could take one block theme, like let\'s take 20, 22. For example, the announcement post showed this and any announcement posts, it shows like four or five different style theme Jason files and switching between them. And it looks like a completely different theme. And I think that\'s where it\'s like, you could literally take the base of one theme with the same patterns, all that sort of stuff, and create.</p>\n\n\n\n<p>20 different theme, Jason files to switch [00:28:00] between and have a complete different experience. And to me, that\'s, what\'s really cool. And then once you start integrating with the pattern directory even more, I think that unlocks some really cool stuff. So when he says that, I\'m like, yeah, I understand what he\'s saying, but I actually, I think that\'s a way to connect with like the.</p>\n\n\n\n<p>FIM world that we have come to know to last however many years. Yeah. But I think the future with block themes, things are going to be wildly different. I think rich table were asked a question about, you know, could there be a directory for different style? And I\'m like, yes, like that to me, I think is a really cool model and there\'s work being done to enable.</p>\n\n\n\n<p>And json switching within a block theme,</p>\n\n\n\n<p><strong>David Bisset:</strong> so definitely would make it competitive with you know, like, like a Wix or Squarespace in terms of like you could have, this is a completely customizable experience. Speaking of customizable, I do have a question for you. When it comes to the full site editing, what happens to the customizer?</p>\n\n\n\n<p>There\'s numerous people that use that there\'s people that use that and granted they use that for their theme settings and maybe. And [00:29:00] for other things, and in addition to the normal customization, so what\'s going to happen to the customizer?.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> Yeah. So this is actually something that I\'m so glad you\'re asking me this, because this is a thing I\'ve seen, brought up a ton.</p>\n\n\n\n<p>I\'ve gotten, especially in the span of like, it felt like two weeks, I was getting a ping, like every other day being like customizer. And I\'m like,</p>\n\n\n\n<p><strong>David Bisset:</strong> I know like a bot on Twitter about the customizer, but I\'ve figured that ask you.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> So basically the customizer, if a plugin or theme happens to look into it the customizer will be available to actually it\'ll direct you to it.</p>\n\n\n\n<p>So it\'s not like it\'s going away forever. Is it removed from the menu item? Yes. If you\'re using a block theme, you will not see it unless you are using a plugin that somehow hooks into the</p>\n\n\n\n<p><strong>David Bisset:</strong> customizer, but you have to switch to a block theme and then at the official</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> blocking the lose, the customizer only superior.</p>\n\n\n\n<p>Correct. And it would only disappear if you don\'t have a plugin that happens to look into</p>\n\n\n\n<p><strong>David Bisset:</strong> it as well. Right. I\'m sure somebody will come up with that in a few seconds, but</p>\n\n\n\n<p>Okay. Then I, you know, initially [00:30:00] here, I mean, I\'ve, haven\'t had my coffee yet, but it sounds like to me, that makes sense where in terms of, you know, you\'re not going to need it. You may not need it. Now, if anybody has anything in there, there\'s probably something developers that have put something in there that shouldn\'t be in there then, you know, get out, get it out of there.</p>\n\n\n\n<p>But okay. That answers that question pretty well, because it makes sense. With a block theme on there shouldn\'t be anything in the customizer left.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> There is a universal theme. I don\'t know if you\'ve heard about universal themes, but they\'re also a combination. So there\'s like, let\'s see there\'s black beans hybrid themes, universal themes, and classic themes is like theme paradigm.</p>\n\n\n\n<p>We\'re about to enter and blockings are like fully built in with full siting. Like you\'re not, you know, using the customized or anything</p>\n\n\n\n<p><strong>David Bisset:</strong> like that. You don\'t need the, you don\'t need the additional CSS. The one thing that sticks out in my mind is the additional CSS thing in the in the customizer and you and I both know.</p>\n\n\n\n<p>That if I don\'t usually use that, I use, I, I add the CSS some other way. It\'s usually through a plugin or through the style sheet, in the theme [00:31:00] or something like that, whatever. That\'s the only thing that kind of concerns me a little bit, because I\'ve seen people put CSS in there that relate even to plugin, not even the theme directly, because that\'s just one place that they\'re able to put CSS.</p>\n\n\n\n<p>They know it they\'ve seen it, or some webpage told them to put it there, that they don\'t have to like dig into any code to, they can just put the additional CSS. In fact, it wouldn\'t surprise me if some WordPress plugin support people have told people, oh, in order to resolve this issue with our. You just need a CSS tweak with your theme going here.</p>\n\n\n\n<p>But again, you\'re saying that it\'s still going to be there unless they switched to a block theme. So the only danger there is if you switch to a block theme, but if you\'re somehow using the plugin, is that, does that, it\'s just hiding it. It\'s not removing it.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> It\'s just hiding it. It\'s not removing it. So</p>\n\n\n\n<p><strong>David Bisset:</strong> sorry.</p>\n\n\n\n<p>I had to work that out. Yeah,</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> no I totally understand. Cause I used to work on Jetpack a lot and that was one of the things. It has an additional CSS part of it. So I understand what you\'re describing. [00:32:00] Yeah, it\'s very, I also want to advocate actually for universal themes, because if someone is like, I\'m curious about this world, but I don\'t want to jump in universal themes are basically designed so that you can use blocking functionality, but then also the customizer.</p>\n\n\n\n<p>So it basically bridges. Which is why it\'s called universal</p>\n\n\n\n<p><strong>David Bisset:</strong> either that or the movie company bought you the rights.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> Did you not hear about the new acquisition?</p>\n\n\n\n<p><strong>David Bisset:</strong> I was going to go to the theme park in Orlando and see all the new Gutenberg blocks, right? The ride, the Gutenberg ride. Oh my God.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> You say that.</p>\n\n\n\n<p>But I did. I was getting beer the other day at a store and there was a thing called gluten berg. Which is a form of gluten-free beer. And I was like, oh my God. And I was off work. So I was like, am I tripping right now? Like, what is happening, dude, bird everywhere.</p>\n\n\n\n<p><strong>David Bisset:</strong> I made a slip on Twitter, I think yesterday morning.</p>\n\n\n\n<p>And I said something about like, I\'m having a state of the word hangover, a hashtag Gutenberg. And I left it in there and I just said, Gutenberg is just you [00:33:00] trying to contribute to the project, but you haven\'t figured out yet how to be sustainable. So you\'re, and you\'re not above begging. So, you know?</p>\n\n\n\n<p>Yeah. So I left Gutenberg and I left good Megan, there let\'s talk about at least two more things before I leave you to. Fantastic video editing work here. One thing is about testing. What is the number one way? What\'s the number one? What\'s number one thing you advocate regarding testing. And you\'re going to give me symbol links to put in the show notes for this.</p>\n\n\n\n<p>So we\'re not going to worry about that, but how does that work and what do what\'s the qualifications and what are you looking. In terms of testing.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> It\'s a great, so like the beta posts on, I\'m going to drag people to the beta posts on your research backslash news, because there\'s actually a link under like a testing instructions to a post that I did that gets very detailed.</p>\n\n\n\n<p>So if you just are comfortable testing, go for it. If you\'re someone who needs more instruction or. Exactly. Like what to test, how to test. I have a post that\'s it\'s titled help test 5.9 features, and it [00:34:00] goes step by step through the different features with like a brief description of what they are, how to find.</p>\n\n\n\n<p>And as well as like, if you want to get even more detailed steps, a lot of them link out to calls for testing that were done through the outreach program. So you can even get like a step-by-step description of what needs to be done. But yeah, right now, if you can, I highly recommend testing both 5.9 in terms of, without a block.</p>\n\n\n\n<p>But then also take the 2022 thing first, then it is a very cool expansive team.</p>\n\n\n\n<p><strong>David Bisset:</strong> Hey, Matt gave us the bird on Tuesday and my wife looked at me like I was, should report it to the. Yeah, but it\'s in, that\'s also another, that\'s another complication layer too. It\'s not just the five nine release. It\'s it\'s the new default WordPress theme. It looks fantastic. It is the, it looks fantastic.</p>\n\n\n\n<p>I\'m more excited. I can\'t remember the last time I\'ve been more excited about like a default theme coming up because it really looks like it\'s using the art state of the edge [00:35:00] stuff, plus, you know, the birds well, good. Well, thanks for you. Share those links with me. I\'ll make sure to add them.</p>\n\n\n\n<p>I make them in there. So here\'s one thing that\'s been. I was scratching my noggin the other day and trying to figure out the best way to describe this. So I\'ve been told by multiple sources that thanks to COVID thanks to the lack of in-person work camps. The contributions contributors have been, they\'ve been low for the past 16, 18 months, two years, something like that.</p>\n\n\n\n<p>And then. Do you think that first of all, do you think that\'s true? And if so of it\'s true. Do you think it\'s, is it impacted the project because Matt, I guess I\'m just gonna finish my sentence and let you speak at the end, because I don\'t know when to shut up, but I did see, I saw Matt slides on Tuesday.</p>\n\n\n\n<p>He did highlight. I mean, there are lots of circles in the slides, right. And then there was lots of new contributors. Yes. Circles. I work in [00:36:00] shapes. But there were, and there were lots of new contributors to that. We don\'t know what they worked on. I mean, new contributors, that\'s awesome in there.</p>\n\n\n\n<p>And there was definitely a lot of circles on there, but do you think that COVID has had an impact on the contributions or contributors over the past two years?</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> I mean, yes, both. And I will say, I think it\'s like a. Multi-directional so I think it\'s everything from, for example, the outreach program, I\'ve given out 70 badges for a test contribution, which is probably more than has been given in a long time, you know?</p>\n\n\n\n<p>So it\'s like, in some ways we\'ve had more contributors, probably in some spaces and have brought in. And I\'ve had the chance to work with folks who have gone out into their local communities or held things online with their local communities to help people test and explore that. So there\'s like, it\'s both right.</p>\n\n\n\n<p>Like I think in some cases it really burns some people out. I think it burned a lot of folks out were just dealing with like trying to survive day to day. You\'re probably not going to want to jump into open source and contribute. [00:37:00] But at the same time, I think suddenly the community had to become a lot more accessible.</p>\n\n\n\n<p>So actually I started this role in April of 2020, so right when things were really like in the U S it was. Getting really serious, like in lockdown, all this sort of stuff. So it\'s been very interesting. I, when I first started the job was told like, oh yeah, one of the first things we\'d probably do is send you around a bunch of word camps and word cancer, where people get onboarded and like all this sort of stuff.</p>\n\n\n\n<p>And I was like, okay, well that\'s not an option. So what are we going to do about this?</p>\n\n\n\n<p><strong>David Bisset:</strong> Yeah.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> And this is where we\'re all kind of delusional about like, oh, maybe this will pass. And so it\'s been very interesting and like, I can tell you speaking personally, a very anecdotally I have spoken at probably 10 or 11.</p>\n\n\n\n<p>Events, maybe more in the last year I do not like public speaking. If I had to go up on stage and do it, it would be way less successful for me. Like it causes way too much anxiety. And then on top of that, like, you know, I just gave the word camp Taiwan recorded or camp Taiwan keynote at [00:38:00] like one 30 in the morning of my time where like, normally I would have to travel to Taiwan.</p>\n\n\n\n<p>I would have to, you know, be jet lagged pregnant. There were a couple of days early, like all this sort of stuff. And then it. Being able to connect with brand new contributors and brand new folks has become way easier. And so I think that\'s like one of the things that makes me really excited is like, you can travel the world from your apartment.</p>\n\n\n\n<p>So I often look@theonlineeventson.org and just see what people were talking about. And we\'ll just jump in. Either a 5% or 50% meetup</p>\n\n\n\n<p><strong>David Bisset:</strong> group. Oh, I love her. I love virtual stuff. I talked to my kids. That\'s how I talked to my kids all the time. My kids still live with me, a side note. So do you, so,</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> yes, I do think it\'s also caused a decrease.</p>\n\n\n\n<p>I think there\'s an over-reliance on On people who are sponsored contributors. And I think, but I think it also, at the same time, new pathways have been built. So I\'m both encouraged that like new pathways are being built. New folks are being brought in and things like the photo directory, the pattern directory even blockchains are way easier to build.</p>\n\n\n\n<p>[00:39:00] I think we\'re going to see an influx of more folks coming in.</p>\n\n\n\n<p><strong>David Bisset:</strong> Yeah.</p>\n\n\n\n<p>The onboarding process. Right? I would imagine. Yeah, like you said, it\'s harder for any individuals with present condition. So I, you know, companies like, like, and Matt was showing those, the other bubble slide where there was automatic.</p>\n\n\n\n<p>I imagine there\'s like you said, you were doing one thing now you\'re doing another, it sounds like there\'s automatic made some adjustments there to. I\'m not putting words in your mouth, but if it wouldn\'t surprise me, if some companies made some adjustments to compensate for the fact that, you know, there is less of certain kinds of contributors out there just because of oral conditions.</p>\n\n\n\n<p>And we just finished. I don\'t know if you\'ve been following this log for. She fought with J or something.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> Log4jI.</p>\n\n\n\n<p><strong>David Bisset:</strong> Mean, everybody\'s talking about it. I mean, nobody\'s rewriting my software yet. Thank goodness. I\'m unpopular now. And it\'s an advantage but I mean, there, you have, like, I think two people, one [00:40:00] person working on that and the guy had a side job too, and now everybody\'s kind of relying on it and you know, that makes you sit back and watch.</p>\n\n\n\n<p>Well, a lot of people rely on WordPress. Obviously things are going to slip through the cracks, but overall it\'s nice to have, even if there was a major world event and this has been a major world event, then I think things from a feature standpoint, from a bug standing standpoint, it could, I guess it depends on your experience.</p>\n\n\n\n<p>You can either say it\'s been fantastic that it\'s managed to be as uninterrupted as it has been over the last two years. Or you can just say, Hey, it could have been worse. It, you know, WordPress runs 43% and the train has to keep moving. The show must go on. And some adjustments, I guess, have to be made.</p>\n\n\n\n<p>I\'m looking, I do want to see more independent or at least other companies enter into that bubble space. Just like Matt had. I mean, at one point it was a bubble\'s commercial, but I mean, you know, that second slide with just more independent bubbles on it. So it sounds it\'s, but it sounds like for [00:41:00] me talking with you here, that of all the challenges that\'s happened, both ones that I think everybody could imagine in some of the ones that you\'re not telling me, because we don\'t want to get into the weeds on it.</p>\n\n\n\n<p>It sounds like, from stability-wise I th the decision. To bump it. I think it was only a little bit controversial for a moment. At least from the outside. I can\'t speak within the inside of a group. I imagine there was a lot of talk and maybe there was some tradition or precedent there, but obviously that would have didn\'t sound like that lasted very long if there was any, and it was only controversial out here, like, you know, weirdo land where I live, you know, there was news, but it was.</p>\n\n\n\n<p>Okay, fine. You\'re bumping it from December. I think I\'d rather have that been bumped. And so it sounds like,</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> And that was part of why I wrote the post to be honest, because I was like, man, this is going to be so confusing and people who aren\'t just like knee deep in this, like it\'s going to be seen in a light.</p>\n\n\n\n<p>That\'s like really hard to parse. And so that was really part of my aim and writing [00:42:00] like, Hey, this is why I voted. And this is the details. If you really want to know Of course, Matt, I don\'t know if you saw Matt\'s comment where it\'s like, this is the actually information I want. Like that\'s a different post that Matt. Like, I can\'t, I don\'t want to write it.</p>\n\n\n\n<p><strong>David Bisset:</strong> Let me do my work. Cool.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> I know I got that comment on Sunday and I was like, oh, okay, cool. Like I, where do I need to write out a post about this? I was like no. We have to do a retro for the release. Like, this is a really good, but he\'s right. I was like, oh man, I should have included some stuff about like, here\'s what I think we can do going forward.</p>\n\n\n\n<p>You know, it was chaotic. I wrote it, I think, within a week of the decision. And it was doing it on top of other stuff. So</p>\n\n\n\n<p><strong>David Bisset:</strong> yeah, next time it\'s a long story, but next time I have to get you to get him to say banana milkshake and the state of the word I have. If you don\'t know what it is, I\'ll try to put a link in the show notes, but anyway.</p>\n\n\n\n<p>Yeah. But th the thing about the bingo card is we put some obvious ones there, and then we put some less obvious ones. Like there\'s like, like NFT. He said NFT. Okay. How about metaverse? You said metaverse.. Okay. Now it\'s like, everybody\'s doing bingo. Bingo, and going, oh, crap. I could have made [00:43:00] this harder, except everybody has a one random generated word.</p>\n\n\n\n<p>It\'s like I was saying to myself, what\'s the antifree square. It\'s what\'s on a bingo card. What\'s one thing he would never say. And then everybody says, well, we can\'t get bingo. And he says banana milkshake. And I\'m like, all right, people put on your big person pants. And we\'re going to see if we can get someone there.</p>\n\n\n\n<p>But anyway, besides that way, we\'ll edit this all out. It\'s boring. but anyway, and what you do, but. To end on a good to end on a very good note here, because I\'m talking to you and you do very good things. So this is going to be very, it\'d be very you\'re very much appreciated in. And even if the resources, even if the testing, you know, is, you know, we could always use more testing.</p>\n\n\n\n<p>We can always use more contributors. I think the job that you\'re doing, the videos is doing two things really well, everything that you do, it\'s not just the videos, but the videos, just making things a lot easier to consume. Especially in this Tik TOK world we live in don\'t do tick. I didn\'t say the tick-tock</p>\n\n\n\n<p>world.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> I mean,</p>\n\n\n\n<p><strong>David Bisset:</strong> here, my kids don\'t either [00:44:00] I\'m that I\'m not going there, but two it\'s also about the transparency for something like this, I think because it wasn\'t such of a talking point, partly was because you and the team were so transparent. And the minute that we read, the minute I read the report, I\'m like, yeah, this sounds like the way you\'re presenting it.</p>\n\n\n\n<p>A it\'s a, no, it sounds like a no-brainer and B we can wait another month. I can wait another month.,</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> I really credit folks like Tonja and Mary and Rob. And like, there\'s a lot of folks who made that transparency. This is tough decisions, Jonathan to Rogers. Who\'s not even on release squad was like giving advice about timing.</p>\n\n\n\n<p>Like it really was a team effort to operate in that way. And I loved seeing the liveliness of the 5.9 release leads channel, and it folks are curious about how our release works. And you can literally watch us talk. And there is no back channel. Like it\'s like, I have a question I\'m going to that channel.</p>\n\n\n\n<p><strong>David Bisset:</strong> Yeah. I need that. I need kind of that for my, from my marriage. Cause it\'d be nice to have some texts. You didn\'t say that will [00:45:00] let me do a little search here. And where are you going to your mother\'s? Okay. I\'ll catch you later. All right. So, and tell us where we can find you on the web and where people can reach out to you, especially if they have questions.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> I\'m at an Zazu and an E Z a Z U on we\'re personal work slack. And then I have a block like I\'m very I know shocking nomad dot block.</p>\n\n\n\n<p><strong>David Bisset:</strong> Make sure to throw that into the show notes or give that to me and I\'ll put in the show. Yeah. Yeah,</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> I will. And like, I honestly am not, you can find me on LinkedIn, but I\'m off of Instagram. I activate and deactivate quite frequently. It\'s the one that I seem to be, I do too, but that\'s in</p>\n\n\n\n<p><strong>David Bisset:</strong> real life, but yes.</p>\n\n\n\n<p>I know you\'re not on Twitter and you\'re sometimes on Instagram. That\'s why I wanted to get a few links for you because I\'m in post out a slack and there\'s posts at a slack there\'s WordPress slack. Thank you very much for sitting down and talk to me about this. I think</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> thanks for the opportunity.</p>\n\n\n\n<p>There\'s so much, I feel like we could talk about, which is always such a great feeling is it\'s like, gosh, I could just talk for hours about these different things, because I think so much about them and you [00:46:00] really hit everything that I want to talk about. So it\'s awesome.</p>\n\n\n\n<p><strong>David Bisset:</strong> Yeah. Why didn\'t I have this skill when I was young and single, I have no idea.</p>\n\n\n\n<p>That gives me food for thought later, but anyway, I really appreciate it. And I will I\'ll definitely be checking out the betas for 5.9. We can\'t wait for January.</p>\n\n\n\n<p><strong>Anne McCarthy:</strong> Awesome.</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, 29 Dec 2021 23:18: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: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: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:51:\"Akismet: How to Stop Contact Form Spam on 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:31:\"http://blog.akismet.com/?p=2177\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://blog.akismet.com/2021/12/29/how-to-stop-contact-form-spam-on-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:15509:\"<p>Are you getting useless contact form emails in your inbox? Contact form spam is a problem every website owner deals with at some point. Spambots target websites of all sizes, regardless of the amount of traffic you get.&nbsp;</p>\n\n\n\n<p>Sifting through hundreds of messages to separate spam from genuine inquiries is time-consuming and frustrating. Luckily, there are some easy and effective ways to protect your WordPress site from spam and take advantage of the benefits of contact forms. Let’s discuss!&nbsp;</p>\n\n\n\n<span id=\"more-2177\"></span>\n\n\n\n<h2 id=\"what-is-contact-form-spam\">What is contact form spam?&nbsp;</h2>\n\n\n\n<p>Before solving this common issue, you’ll need to understand what contact form spam is and how it affects your website and business.&nbsp;</p>\n\n\n\n<p>Contact form spam is exactly what it sounds like:&nbsp;unwanted messages that are submitted through the contact forms on your site. Since these forms have blank fields, an individual spammer (or bot) can fill these out however they’d like.&nbsp;</p>\n\n\n\n<p>You might just get one or two occasional messages with irrelevant promotional material or even offensive language and links. Or, you’ll sometimes receive hundreds or even thousands of form submissions to your inbox. You’re left sifting through the spam so that you don’t miss real messages from interested followers or potential customers. Worse yet, all of these submissions can hog server resources,&nbsp;resulting in a slower site or errors when you try to make changes.&nbsp;</p>\n\n\n\n<p>Spammers target contact forms in one of two ways:</p>\n\n\n\n<h3 id=\"1-manual-spammers\">1. Manual spammers</h3>\n\n\n\n<p>Manual spammers are humans who navigate to your website, fill out your forms, and submit them personally. They typically use false information, often copying and pasting to spam your site quickly. In most cases, these spammers are trying to promote specific websites. But they can also spread malware and funnel traffic to malicious sites. Manual contact form spam is more difficult to overcome because spammers can get past many anti-spam solutions like CAPTCHAs.&nbsp;</p>\n\n\n\n<h3 id=\"2-spambots\">2. Spambots</h3>\n\n\n\n<p>Spambots are the most common sender of form spam and often the most dangerous. These programs automatically search the internet for forms and, depending on how spammers program the bots, they leave junk text and phishing links that appear in your inbox.&nbsp;</p>\n\n\n\n<p>Spambots threaten the integrity of your website when programmed to perform more malicious activities like taking personal information, spreading malware, or taking control of your website. These automated programs can leave a larger number of form submissions at once. But they’re easier to stop because they can’t combat specific anti-spam solutions.&nbsp;</p>\n\n\n\n<h2 id=\"why-do-bots-and-human-spammers-target-contact-forms\">Why do bots and human spammers target contact forms?&nbsp;</h2>\n\n\n\n<p>With all the advances in technology and increased security options, it’s hard to think that this type of spam still exists. But bots and human spammers still target contact forms because they can, and it works.&nbsp;</p>\n\n\n\n<p>Here are several reasons spammers look for loopholes and vulnerabilities in your website forms:&nbsp;</p>\n\n\n\n<ol><li><strong>They want to send you spam.</strong> Most spam includes links to phishing sites or revenue-generating ad sites.</li><li><strong>They want to exploit your contact form to spam others</strong>. Spammers use your contact forms to relay email spam messages to others. When these emails land in people’s inboxes, they typically look like an email you sent. Unaware that it is spam, users open these emails and click links that lead them to another website. This increases website traffic and engagement to that site, rewarding the spammer.&nbsp;</li><li><strong>They’re searching for vulnerabilities to access the backend of your website or server</strong>. This is typically where malicious intent comes into play. When spammers target your contact forms to look for vulnerabilities in your website, they often want to attack it. Spammers can install malware that leaves your website and visitors at risk. They can also steal personal information, a significant risk for eCommerce sites with sensitive customer data.&nbsp;</li></ol>\n\n\n\n<h3 id=\"how-to-identify-contact-form-submission-spam\">How to identify contact form submission spam</h3>\n\n\n\n<p>Keeping a close eye on your contact form submissions makes it easy to identify spam. Watch out for the following signs that indicate spammers are targeting your website:</p>\n\n\n\n<ul><li><strong>Phishing links</strong>. Spammers use phishing URLs to obtain sensitive information for malicious use. This includes usernames, passwords, or banking details. Phishing links appear to direct to a legitimate site, but it’s really a fake one meant to steal this valuable data.&nbsp;</li><li><strong>Irrelevant messages</strong>. Another typical indication of spam is unsolicited or irrelevant messages. Spammers send these messages out in large numbers for advertising, phishing, or spreading malware.&nbsp;</li><li><strong>Submissions with no real name</strong>. If you get submissions with no real name or a fake name, you’ll want to look into blocking form spam.&nbsp;</li><li><strong>Grammatical errors or typos</strong>. Most spammers don’t take the time to proofread their submissions or check for grammatical errors. Instead, they work hard to send as much spam as possible in the shortest amount of time. Therefore, if you notice messages or comments with a significant amount of typos or grammatical errors, your website is likely under attack.&nbsp;</li><li><strong>An offer that’s too good to be true</strong>. Like everything in life, an offer too good to be true also indicates a problem. Don’t fall for this easy trap.&nbsp;</li></ul>\n\n\n\n<p>Once you notice a spam issue, it’s vital to find a fast and effective solution. While it’s both annoying and potentially dangerous, spam can also damage your brand reputation. Let’s explore some ways to prevent contact form spam on your website.&nbsp;</p>\n\n\n\n<h2 id=\"how-to-block-contact-form-spam\">How to block contact form spam</h2>\n\n\n\n<h3 id=\"1-install-the-right-wordpress-anti-spam-plugin\">1. Install the right WordPress anti-spam plugin</h3>\n\n\n\n<p>The easiest and fastest way to combat contact form spam is to install the right <a href=\"https://akismet.com/\">anti-spam WordPress plugin</a>. Anti-spam plugins work independently from your forms by comparing submissions to blocklists of words, names, IP addresses, and email addresses. They use both global and local learning to identify spam. Some also give you the ability to manually mark items as spam (or not spam), so it learns what you like and don’t like on your site.&nbsp;</p>\n\n\n\n<p>With several options available, it’s critical to pick the right anti-spam plugin. <a href=\"https://akismet.com/\">Akismet</a> is an excellent option used by millions of websites to filter out hundreds of millions of spam comments and form submissions. It will check all comments and form submissions for spam and filter out any that look suspicious. You can review all filtered submissions directly in the WordPress dashboard.&nbsp;</p>\n\n\n\n<p>An option like this frees up your time to focus on the more critical parts of your website. It also gives you the peace of mind that your site, visitors, and reputation are safe. While there aren’t many disadvantages to this method, you’ll need to make sure you update the plugin as recommended to avoid any security issues in the future.&nbsp;</p>\n\n\n\n<h4 id=\"how-to-set-up-an-anti-spam-plugin\">How to set up an anti-spam plugin:</h4>\n\n\n\n<p>Installing a WordPress plugin is easy. In your WordPress dashboard, go to <strong>Plugins → Add New</strong>. Search for the one you’d like to add, then click <strong>Install → Activate</strong>. Then, follow any specific instructions for the tool that you chose. For example, Akismet provides a great <a href=\"https://docs.akismet.com/getting-started/activate/\">how to activate</a> tutorial with easy-to-follow instructions and visual cues.&nbsp;</p>\n\n\n\n<img />\n\n\n\n<h3 id=\"2-add-a-custom-captcha\">2. Add a custom CAPTCHA</h3>\n\n\n\n<p><a href=\"https://blog.akismet.com/2021/12/23/do-captcha-and-recaptcha-protect-wordpress-sites-from-bots/\">Custom CAPTCHAs</a> are another way to target and resolve spam problems. You can add a custom, word-based code or random math question to your website that visitors must answer to submit forms successfully. When users attempt to add a comment or submit a form, they’ll need to answer the question or type what they see above the submit button to proceed. You can add several custom word-based questions that users cycle through randomly.&nbsp;</p>\n\n\n\n<p>While CAPTCHAs are a great way to combat spambots, they aren’t effective with human spammers. They can also be frustrating and time-consuming for legitimate site visitors who struggle to answer the questions or answer them incorrectly. If you choose to add a CAPTCHA to combat spam, you’ll also need to think about users with limited sight or other challenges.&nbsp;</p>\n\n\n\n<h4 id=\"how-to-implement-a-captcha\">How to implement a CAPTCHA:</h4>\n\n\n\n<p>To add a CAPTCHA to your website, you’ll need to choose a service provider. Google is the most popular CAPTCHA service, with essential functions offered at no cost to website owners. You can find your options in the <strong>Products</strong> part of the <a rel=\"noreferrer noopener\" href=\"https://developers.google.com/products#r\" target=\"_blank\">Google Developers</a> page. Make sure to sign in to your Google account. Next, you’ll read through a short overview before clicking on <strong>Sign up for an API key pair</strong>. You’ll need to fill in your website information and follow the prompts to complete the process.&nbsp;</p>\n\n\n\n<h3 id=\"3-use-google-recaptcha\">3. Use Google reCAPTCHA</h3>\n\n\n\n<p>Google’s reCAPTCHA is a more advanced option than custom CAPTCHAs. Initially introduced to overcome the user frustrations of custom CAPTCHAs, reCAPTCHAs require users to answer more straightforward questions to submit forms. reCAPTCHAs also work by detecting user behavior while visitors navigate your site and assigning each user a “spam score” based on what the tool considers suspicious activity.&nbsp;</p>\n\n\n\n<p>The most common form of reCAPTCHAs is the picture puzzle you’ve seen on many websites. Instead of typing a word or answering a math question, users answer an image-based question. Visitors must select all the squares in the picture with a specific object like a car or a traffic light. Once all images have been selected, the button switches to allow the user to submit their form response.&nbsp;</p>\n\n\n\n<p>Here are some other types of reCAPTCHAs:</p>\n\n\n\n<ul><li><strong>Checkbox reCAPTCHA v2 </strong>is a simple box that users must check to submit a form. It’s the popular option you see on many websites accompanied by the “I am not a robot” text.&nbsp;&nbsp;</li><li><strong>Invisible reCAPTCHA v2</strong> does not display any visible fields to human users. Instead, it monitors user behavior for suspicious activity to identify potential spammers. Invisible reCAPTCHA also adds an extra field into the code of your form. Since most spambots use code to submit responses, these spammers automatically fill in the fake fields before being flagged. Human users never even notice the spam control as they submit answers directly on the form.&nbsp;</li><li><strong>reCAPTCHA v3</strong> is an advanced option that uses JavaScript to detect human visitors. It is the most advanced form of reCAPTCHA, so you should only use it if you’re a WordPress expert.&nbsp;</li></ul>\n\n\n\n<p>reCAPTCHAs can still prevent genuine visitors from submitting forms, but they’ve improved from the earlier custom CAPTCHA options. Most come with the ability to add an audio option for those with visual impairments. The visible option they offer is also a solution for the hearing impaired.&nbsp;</p>\n\n\n\n<img />Photo © Google\n\n\n\n<h4 id=\"how-to-implement-google-recaptchas\">How to implement Google reCAPTCHAs:</h4>\n\n\n\n<p>You’ll add reCAPTCHAs to your website following the same steps listed above for CAPTCHAs. Google reCAPTCHA is also a free service for basic functionality, but you can purchase the Enterprise solution for more advanced options. You’ll need to sign up for an API key pair for your site and follow the prompts to proceed.</p>\n\n\n\n<h3 id=\"4-use-an-ip-access-list\">4. Use an IP access list</h3>\n\n\n\n<p>If you notice a lot of spambot action on your website coming from specific sources, you can use an IP access list to block spam. With this method, you add IP addresses to a list that restricts access to your website from that location. You’ll do this by adding IPs to the <strong>Comment Blacklist</strong> section of the <strong>Discussion</strong> settings page in the WordPress admin.&nbsp;</p>\n\n\n\n<p>Using an IP access list is an excellent option for blocking specific people. But it takes a lot of work to block a more significant number of spammers and requires constant maintenance. You can also accidentally block legitimate form submissions from the IP addresses you list, so make sure you’re confident before using this method.&nbsp;</p>\n\n\n\n<img />\n\n\n\n<h4 id=\"how-to-implement-an-ip-access-list\">How to implement an IP access list:&nbsp;</h4>\n\n\n\n<p>If you want to block an IP address, navigate to <strong>Settings → Discussion → Comment Moderation</strong> in your WordPress dashboard. Then, simply add any IP addresses you want to block and save your settings.</p>\n\n\n\n<h3 id=\"5-take-advantage-of-the-honeypot-method\">5. Take advantage of the honeypot method</h3>\n\n\n\n<p>If you’re not a fan of CAPTCHAs, try the honeypot method. Honeypots are little bits of code used to catch spambots. The code creates a hidden field in your form that’s invisible to human visitors but visible to spambots who are usually looking at the code of your form. Spambots automatically fill out the hidden field and submit the forms. The additional information flags these submissions and rejects them, saving you time and effort.&nbsp;</p>\n\n\n\n<p>One advantage of honeypots is that they stay hidden from human visitors. Your visitors don’t need to deal with the inconvenience of CAPTCHAs. Some WordPress form plugins even allow you to add the honeypot method in their settings.&nbsp;</p>\n\n\n\n<h4 id=\"how-to-implement-honeypot\">How to implement honeypot:</h4>\n\n\n\n<p>Some plugins allow you to quickly check the option to add honeypot to your forms. But if they don’t, you’ll need to add a hidden field to your form manually. Once you add the form to your site, use the CSS style “display: none !important;” to make the field hidden and tabindex=&#8221;-1&#8243; autocomplete=&#8221;false;&#8221; to ensure the field is empty by default.&nbsp;</p>\n\n\n\n<h2 id=\"protect-your-wordpress-contact-forms\">Protect your WordPress contact forms</h2>\n\n\n\n<p>Contact forms are a great tool to connect with your audience and enhance your website’s user experience. But they can also be a problem when spammers attack. Don’t be the target of human spammers and spambots that reduce the effectiveness of your website forms. Use the six steps listed above to successfully stop spam from your WordPress site so you can focus your time and effort on more essential tasks.&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Dec 2021 12:28:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Simon Keating\";s: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:75:\"WordCamp Central: The first in-person WordCamp Europe in 3 years is coming!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3143787\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://central.wordcamp.org/news/2021/12/28/the-first-in-person-wordcamp-europe-in-3-years-is-coming/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1047:\"<p>WordCamp Europe organizing team has shared what we are planning for <a href=\"https://europe.wordcamp.org/2022/a-sneak-peek-at-wceu2022/\">the first in-person WCEU in 3 years</a>.</p>\n\n\n\n<p>It&#8217;s taking place in Porto, Portugal, on 2-4 June 2022.</p>\n\n\n\n<p>With all safety measures, our beautiful spacious venue,&nbsp;Super Bock Arena can hold up to 4000 people, and we can&#8217;t wait to welcome you there.</p>\n\n\n\n<p class=\"has-text-align-center\"><strong><a rel=\"noreferrer noopener\" href=\"https://europe.wordcamp.org/2022/call-for-sponsors/\" target=\"_blank\">Call For Sponsors</a> and <a rel=\"noreferrer noopener\" href=\"https://europe.wordcamp.org/2022/call-for-speakers/\" target=\"_blank\">Call For Speakers</a> are already open!</strong></p>\n\n\n\n<p><a href=\"https://europe.wordcamp.org/2022/a-sneak-peek-at-wceu2022/#newsletter-form\">Subscribe to WordCamp Europe Newsletter</a> to get to know about all WordCamp Europe 2022 updates first!</p>\n\n\n\n<img src=\"https://europe.wordcamp.org/2022/files/2021/12/WCEU-assortment-pic.jpg\" alt=\"\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 28 Dec 2021 12:52: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:\"Sabrina Zeidan\";s: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:25:\"Matt: Saving the Internet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=55240\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://ma.tt/2021/12/saving-the-internet/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1935:\"<p><a href=\"https://twitter.com/pierce\">David Pierce</a> wrote a deep profile, over 4,000 words, for Protocol and asks the question in the headline, <a href=\"https://www.protocol.com/matt-mullenweg\">Can Matt Mullenweg save the internet?</a></p>\n\n\n\n<a href=\"https://www.protocol.com/matt-mullenweg\"><img /></a>\n\n\n\n<p>Which brings to mind <a href=\"https://en.wikipedia.org/wiki/Betteridge%27s_law_of_headlines\">Betteridge&#8217;s law of headlines</a> (née Hinchliffe&#8217;s rule), &#8220;Any headline that ends in a question mark can be answered by the word&nbsp;<em>no</em>.&#8221;</p>\n\n\n\n<p>I can&#8217;t save the internet. But you know who can? A movement. A community of like-minded individuals, unified by a common philosophy, and working together to create <a href=\"https://wordpress.org/\">tools of freedom</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>It&#8217;s a human right to be able to see how that technology works and modify it. It’s as key to freedom as freedom of speech or freedom of religion. So that is what I plan to spend the rest of my life fighting for.</p></blockquote>\n\n\n\n<p>Working together we&#8217;ve created something special, unlike anything the internet has seen before, and I&#8217;m excited to continue.</p>\n\n\n\n<p>Thank you to David Pierce for taking such an in-depth look at the history of WordPress and Automattic and talking to dozens of sources. Thank you to the people quoted in the article: <a href=\"https://scottbeale.org/\">Scott Beale</a>, <a href=\"https://om.co/\">Om Malik</a>, <a href=\"https://toni.org/\">Toni Schneider</a>, <a href=\"https://rustyshelf.org/\">Russell Ivanovic</a>, Deven Parekh, <a href=\"https://paulmayne.org/\">Paul Mayne</a>, and <a href=\"https://anildash.com/\">Anil Dash</a>. Thank you to <a href=\"https://arturoolmos.com/\">Arturo Olmos</a> for the photos, and <a href=\"https://www.odilidonaldodita.com/\">Odili Donald Odita</a> for the amazing painting behind me.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 24 Dec 2021 13:07: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:73:\"WPTavern: Multiple State of the Word Attendees Test Positive for COVID-19\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=127655\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"https://wptavern.com/multiple-state-of-the-word-attendees-test-positive-for-covid-19?utm_source=rss&utm_medium=rss&utm_campaign=multiple-state-of-the-word-attendees-test-positive-for-covid-19\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6225:\"<div class=\"wp-block-image\"><img />State of the Word 2021 in NYC</div>\n\n\n\n<p>Matt Mullenweg&#8217;s <a href=\"https://wptavern.com/state-of-the-word-2021-wordpress-passes-43-market-share-looks-to-expand-the-commons-through-openverse\">2021 State of the Word</a> address was held in New York City nine days ago with a live studio audience. On Sunday, December 19, all in-person attendees were notified by email that they were possibly exposed to COVID-19 after one of the attendees tested positive. </p>\n\n\n\n<p>Although proof of vaccination was required at the door, multiple people have reported recent infections after traveling home from the event. Aaron Jorbin tweeted about his case today, and four more have been reported in a private channel on Post Status Slack.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I don\'t know where I actually got infected, State of The Word is just one possibility and it being \"swag\" is a good joke. A great joke even.</p>&mdash; Aaron Jorbin (@aaronjorbin) <a href=\"https://twitter.com/aaronjorbin/status/1474074897580277760?ref_src=twsrc%5Etfw\">December 23, 2021</a></blockquote>\n</div>\n\n\n\n<p>There&#8217;s no way to know for certain whether the attendees who contracted COVID-19 caught the virus at the State of the Word, as many of them traveled from far away places and had meetups with other attendees outside of the main event. </p>\n\n\n\n<p>Concerns about the lack of masks and no requirement for rapid tests began popping up prior to the event. From the perspective of <a href=\"https://youtu.be/OpiH_P9aGhQ\">viewing the livestream</a>, masks were scant and attendees were quite close together in a small space. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Anyone tracking the COVID cases coming from the <a href=\"https://twitter.com/hashtag/StateOfTheWord?src=hash&ref_src=twsrc%5Etfw\">#StateOfTheWord</a> ?<br /><br />Hate to be a downer, but it’s still a raging pandemic and all those people traveling from all over and in groups without masks has my anxiety spiking.</p>&mdash; Pandemically Joshua <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f489.png\" alt=\"💉\" class=\"wp-smiley\" /> ³ (@onemorejosh) <a href=\"https://twitter.com/onemorejosh/status/1470756580551536645?ref_src=twsrc%5Etfw\">December 14, 2021</a></blockquote>\n</div>\n\n\n\n<p>The day before the event, the WHO warned that evidence suggested the new Omicron variant could escape prior immunity and would lead to surges with a high transmission rate. Studies were already showing reduced effectiveness of existing vaccines against the variant. On December 13, New York governor Kathy Hochul <a href=\"https://www.cnn.com/world/live-news/omicron-coronavirus-variant-12-13-21/index.html\">announced a new temporary indoor mask mandate</a> for public spaces, which could be bypassed by requiring vaccines for entrance. </p>\n\n\n\n<p>When asked how the State of the Word&#8217;s coordinators decided on the precautions, WordPress Executive Director Josepha Haden Chomphosy said the event met the local guidelines while allowing attendees to make their own choices for anything beyond the requirements.</p>\n\n\n\n<p>&#8220;We followed the guidelines as laid out by the city,&#8221; Haden Chomphosy said. &#8220;Masks and hand sanitizer were liberally available throughout the venue, and we encouraged attendees to make informed decisions about their health.&#8221;</p>\n\n\n\n<p>It has been <a href=\"https://www.cdc.gov/coronavirus/2019-ncov/science/science-briefs/masking-science-sars-cov2.html\">well-documented</a> that indoor masking can significantly reduce transmission, so it was curious that the event did not require them at this pivotal time when governments are taking more stringent measures to stop the spread of the virus.</p>\n\n\n\n<p>Fortunately all those who were recently infected have reported mild illnesses, but the incident raises an important question for onlookers: Is this an indicator of how in-person WordCamps are going to go in 2022? There are already several on the <a href=\"https://central.wordcamp.org/schedule/\">schedule</a>.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Agreed. It has definitely killed any thought I had of attending a WordCamp for a good long while.</p>&mdash; Chris Wiegman (@ChrisWiegman) <a href=\"https://twitter.com/ChrisWiegman/status/1474167091372642312?ref_src=twsrc%5Etfw\">December 23, 2021</a></blockquote>\n</div>\n\n\n\n<p>Whether or not attendees&#8217; infections originated at the State of the Word or in outside gatherings is going to be impossible to pinpoint, but the nominal safety protocols sends a message to all those considering attending in-person events in 2022. </p>\n\n\n\n<p>Since receiving the notification of possible exposure, many State of the Word attendees have been monitoring their health with tests. One attendee reported in Post Status Slack that she has had difficulty getting tested and is still waiting for one in the mail. In the meantime, she has opted out of a family gathering for Christmas as a safeguard.</p>\n\n\n\n<p>“As someone who wants nothing more than to be able to attend WordCamp Europe or WordCamp US in person next year this doesn’t give me much confidence,&#8221; Gravity Forms CEO and co-founder Carl Hancock said. &#8220;With such a small event the COVID protocols could and should have been super tight to test things out for larger events. The lack of masks and social distancing at an indoor event without added protocols such as rapid testing for entry was disappointing to see.”</p>\n\n\n\n<p>WordCamp organizers will need to consider how they can protect attendees beyond simply meeting the basic, local requirements, which may not fully acknowledge the nature of the current threat. They will also need to be responsive to the rapidly changing pandemic landscape and be ready to implement more safety protocols at the last minute, if necessary. If the State of the Word is any indication, future WordCamp organizers will need to have a plan for sending exposure notifications to attendees, in case the events become the source of an outbreak.</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, 24 Dec 2021 04:38:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:94:\"WPTavern: WordPress 5.9 Beta 4 Fixes 20 Bugs, Polishes Workflow for Switching to a 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=127650\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:231:\"https://wptavern.com/wordpress-5-9-beta-4-fixes-20-bugs-polishes-workflow-for-switching-to-a-block-theme?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-9-beta-4-fixes-20-bugs-polishes-workflow-for-switching-to-a-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:3004:\"<p><a href=\"https://wordpress.org/news/2021/12/wordpress-5-9-beta-4/\">WordPress 5.9 beta 4</a> was released this week with fixes for 20 bugs since beta 3. There are a few important changes to note in this release regarding how the WordPress admin will direct users who are exploring block themes. </p>\n\n\n\n<p>Prior to a fix in beta 4, it was possible for users to <a href=\"https://core.trac.wordpress.org/ticket/54549\">switch to a block theme within the Customizer</a>. This has been changed so that users will see a banner notifying them that the block theme is incompatible, if they try to switch within the Customizer. Here&#8217;s the commit message:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Starting in 5.9, block themes are not compatible with (do not support) Customizer; rather, they use the Site Editor. Viewing installed themes in Customizer, this commit adds an overlay message to alert users and give them a way to activate the block theme. Clicking on the &#8220;Activate&#8221; button activates the block theme and redirects back to the Appearance &gt; Themes interface, where the user can then enter the Site Editor for customization.</p><p>Non-block themes are not affected by this change and continue to work in Customizer.</p></blockquote>\n\n\n\n<p>Having themes work only in the site editor or the Customizer, depending on which they support, is likely to be a confusing workflow for users when testing themes. This incompatibility message and redirection is necessary but not ideal for the long term. Streamlining the customization workflow will depend on how quickly the WordPress community is able to produce and adopt block themes. </p>\n\n\n\n<p>Some testers also reported that the Site Editor doesn&#8217;t allow users to edit or preview non-active block themes. The preview only works with active themes. This isn&#8217;t necessarily a bug but rather a feature that needs to be discussed for the future. A <a href=\"https://github.com/WordPress/gutenberg/issues/37201\">ticket</a> is open in the Gutenberg repository, recommending the implementation of a Live Preview for non-active block themes.</p>\n\n\n\n<p>Featured patterns from the pattern directory should be displayed under Patterns in the the block inserter, but for some reason this wasn&#8217;t included in 5.9. It has been <a href=\"https://core.trac.wordpress.org/ticket/54623\">backported in beta 4</a>. </p>\n\n\n\n<p>This beta also adds a filter that allows developers to disable the login screen language switcher, which is a <a href=\"https://wptavern.com/wordpress-5-9-to-introduce-language-switcher-on-login-screen\">new feature coming in 5.9</a>.</p>\n\n\n\n<p>The release team has determined that a fifth beta will not be necessary, as of <a href=\"https://make.wordpress.org/core/2021/12/22/dev-chat-summary-december-22-2021/\">yesterday&#8217;s core dev chat</a>. The revised <a href=\"https://make.wordpress.org/core/5-9/\">5.9 release schedule</a> has RC1 shipping on January 4, 2022, and the official release on January 25.</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, 23 Dec 2021 18:42:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:76:\"WPTavern: WP Engine Acquires Brian Gardner’s Frost, Opens It to the Public\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=127547\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wp-engine-acquires-brian-gardners-frost-opens-it-to-the-public?utm_source=rss&utm_medium=rss&utm_campaign=wp-engine-acquires-brian-gardners-frost-opens-it-to-the-public\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7120:\"<img />\n\n\n\n<p class=\"has-drop-cap\">Brian Gardner <a href=\"https://wpengine.com/blog/wp-engine-adds-frost-to-open-source-wordpress-project/\">announced  today</a> that WP Engine has acquired his latest project, <a href=\"https://frostwp.com/\">Frost</a>. In an email sent out to all customers, Gardner said his team had issued refunds to all current customers. The business model is changing, and Frost will be a freely-available project going forward and focus on full site editing.</p>\n\n\n\n<p>Frost is a WordPress theme that Gardner released earlier this year as the main product of a new startup business. The original version was shipped as a child theme of Genesis, the StudioPress theme framework he had spent much of his WordPress career working on. <a href=\"https://wptavern.com/wp-engine-acquires-studiopress\">WP Engine acquired StudioPress</a> in 2018, and Gardner <a href=\"https://wptavern.com/brian-gardner-steps-down-from-studiopress\">stepped down from his role</a> in October 2019. It did not take him long to find his way back into the WordPress theme development game, bringing his personal style back to the theming world with Frost. Then, he landed a new job within WP Engine&#8217;s ranks in September.</p>\n\n\n\n<p>&#8220;I am leading the WordPress Developer Relations team at WP Engine,&#8221; he said. &#8220;We have a simple mission: Accelerate innovation in WordPress and help the community transition to the block editor and Full Site Editing (né Gutenberg). In addition, we want to cultivate an interactive and immersive community resource that serves as a treasure chest of knowledge and operates as a conduit between the WordPress project and its users.&#8221;</p>\n\n\n\n<p>I asked if there was something concrete he could share, maybe what form that would take, but he did not go into any other details. In general, the more resources the development and design community have around the block system, the faster the ecosystem can evolve. Only time will tell what Gardner&#8217;s team within WP Engine creates.</p>\n\n\n\n<p>&#8220;When I joined WP Engine in late September, it was evident to me [WP Engine] saw the value in building relationships with designers, developers, and creators &#8212; within our <a href=\"https://wpengine.com/atlas/\">Atlas</a> product line, as well as with WordPress,&#8221; said Gardner. &#8220;While there was interest in Frost when I came on board, it wasn&#8217;t until my vision for our team became clear did an acquisition enter the picture. I recommended bringing Frost into the company and hiring Nick Diego.&#8221;</p>\n\n\n\n<p>Diego is the creator of the <a href=\"https://wptavern.com/from-ecommerce-integration-to-location-based-controls-block-visibility-pro-expands-upon-its-free-version\">Block Visibility</a> and <a href=\"https://wptavern.com/add-custom-svgs-via-the-icon-block-wordpress-plugin\">Icon Block</a> plugins. He also began working on Frost in late September.</p>\n\n\n\n<p>&#8220;In alignment with WP Engine&#8217;s core value of &#8216;Committed to Give Back,&#8217; Frost is transitioning from a paid product to a free one,&#8221; said Gardner. &#8220;Given the change in business model, we issued full refunds to all active customers. By open-sourcing Frost and focusing on Full Site Editing, we hope to encourage a community of builders to experiment with the expanding capabilities of the block editor. We believe in its potential and look forward to helping it grow.&#8221;</p>\n\n\n\n<p>Frost is open to everyone <a href=\"https://github.com/wpengine/themes/tree/trunk/frost\">via the WP Engine themes repository</a> on GitHub.</p>\n\n\n\n<h2 id=\"leaping-into-block-theming\">Leaping into Block Theming</h2>\n\n\n\n<p class=\"has-drop-cap\">When Gardner sold StudioPress in 2018, several factors played a part in the decision. Among them were the uncertainty around the Gutenberg project and WordPress&#8217;s future.</p>\n\n\n\n<p>&#8220;It took some time for me to put the pieces together, but when I did, I saw just how powerful the block editor has become,&#8221; he said. &#8220;In particular, I am excited about block patterns, global styles, and building themes that folks can use to create beautiful websites with little effort.&#8221;</p>\n\n\n\n<p>The result of his newfound enthusiasm around the block system was Frost. I have had the opportunity to tinker around with the theme. It has Gardner&#8217;s signature minimalist design style, a focus on readable typography, and ample breathing room for the content.</p>\n\n\n\n<p>Simpler designs almost feel par for the course with any block theme these days, regardless of the theme author. What is likely to set Frost apart is its <a href=\"https://frostwp.com/patterns/\">block patterns</a>. It currently ships with 38 of them. The layouts should allow users to quickly set up their sites, along with the theme&#8217;s custom block styles.</p>\n\n\n\n<p>&#8220;I am a huge fan of block patterns and see their potential when paired with the growing support of design/style elements within <code>theme.json</code>,&#8221; said Gardner of the things he is excited about. &#8220;Additionally, the site editor is something I feel, once mature, will be a game-changer for WordPress and those who build for it.&#8221;</p>\n\n\n\n<p>The <a href=\"https://wordpress.org/plugins/block-pattern-explorer/\">Block Pattern Explorer</a> plugin was initially a part of the Frost library plugin, but Gardner and Diego pulled it out and make it available to everyone. They also wanted to serve the Frost patterns through it. The hope is that the enhancements already in place via the plugin find their way into core WordPress.</p>\n\n\n\n<img />Frost theme patterns via Block Patterns Explorer\n\n\n\n<p>The design is a bit more polished than core. It includes category types, a feature the theme uses to separate its own pattern categories from others. The experimental explorer plugin allows users to preview patterns via desktop, tablet, and mobile views. And, it has a clear &#8220;Add Pattern&#8221; button for inserting a block pattern into the post.</p>\n\n\n\n<p>Eventually, they plan to sunset the plugin once its features make their way into WordPress.</p>\n\n\n\n<p>WordPress theming has come a long way since Gardner first dove in over a decade ago. Back then, users had to open template files to customize bits and pieces of their homepage. As we move toward WordPress 5.9, users will have that same power. However, they will modify Frost via the WordPress site editor instead of PHP files.</p>\n\n\n\n<p>&#8220;Yes, I feel we are circling back to some degree,&#8221; he said. It was in response to a question of his early days designing themes for WordPress in comparison to now.</p>\n\n\n\n<p>&#8220;While WordPress will never be solely a blogging platform ever again, it seems like the software is shedding its skin. The irony here is that we see WordPress used in sophisticated ways that &#8212; to be honest &#8212; I never thought would be possible. As for me, I believe in the power of simplicity. That has become my north star for everything I create and has allowed me to navigate the ebbs and flows of an ever-changing software and industry.&#8221;</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, 23 Dec 2021 15:35:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:68:\"Akismet: Do CAPTCHA and reCAPTCHA Protect WordPress Sites from Bots?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=2164\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://blog.akismet.com/2021/12/23/do-captcha-and-recaptcha-protect-wordpress-sites-from-bots/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17231:\"<p>If you’ve used the internet anytime in the last decade, chances are you’ve had to pass a CAPTCHA or reCAPTCHA test. You may have done so many of these little quizzes that you groan just seeing one on a form.</p>\n\n\n\n<p>There are quite a few different versions, but they all can help protect your WordPress website from spambots and make your life simpler.</p>\n\n\n\n<p>In this post, we’ll cover the evolution of CAPTCHA and reCAPTCHA. We’ll also go over the different versions and the pros and cons of each one. Then, we’ll show you how to enable reCAPTCHA on WordPress and explore additional security measures you should implement.</p>\n\n\n\n<span id=\"more-2164\"></span>\n\n\n\n<h2 id=\"what-are-captcha-and-recaptcha\">What are CAPTCHA and reCAPTCHA?</h2>\n\n\n\n<p>CAPTCHA and reCAPTCHA serve the same purpose: protecting your website against bots and other security threats. They’re typically found on contact, comment, login, and password reset forms. But there are some key differences between the two safety checks. Let’s take a look at each one in detail.&nbsp;</p>\n\n\n\n<h3 id=\"what-is-captcha\">What is CAPTCHA?</h3>\n\n\n\n<p>The acronym <a href=\"https://support.google.com/a/answer/1217728?hl=en\" target=\"_blank\" rel=\"noreferrer noopener\">CAPTCHA stands for</a> Completely Automated Public Turing Test to Tell Computers and Humans Apart. It’s a mouthful, but the name says it all —&nbsp;it can decipher the difference between a human and a computer operator. Still, the specifics are important.</p>\n\n\n\n<p>In the <a href=\"https://www.britannica.com/technology/CAPTCHA\" target=\"_blank\" rel=\"noreferrer noopener\">early 2000s</a>, when it was created, CAPTCHA used a distorted text (letters and numbers) test to prevent bots from compromising websites.</p>\n\n\n\n<p>When faced with a CAPTCHA, users needed to decipher broken text correctly to prove that they were, in fact, human. If they couldn’t identify the letters and numbers, the test wouldn’t submit their requests.&nbsp;</p>\n\n\n\n<p>This was revolutionary because most humans could pass it easily, but computers couldn’t solve it themselves.&nbsp;</p>\n\n\n\n<h3 id=\"what-is-recaptcha\">What is reCAPTCHA?</h3>\n\n\n\n<p>reCAPTCHA follows a similar principle, but instead of just utilizing meaningless text to see if the user is a real human, it was designed to help computers digitize old books and newspapers. The test was essentially split into two parts shown side-by-side —&nbsp;one traditional CAPTCHA to determine the humanity of the user, and a second image of letters from a piece of text the computer was trying to digitize. If the human could pass the first part, it would accept the user&#8217;s input for the second part as an accurate translation.&nbsp;</p>\n\n\n\n<img /><em>Photo from <a href=\"http://www.captcha.net/\" target=\"_blank\" rel=\"noreferrer noopener\">http://www.captcha.net/</a></em>\n\n\n\n<p>The point is that reCAPTCHA added a second part to the test to put millions of human users to work —&nbsp;a few seconds at a time —&nbsp;to digitize historical text for ongoing record keeping. Now sites were protected from bots and users weren’t totally wasting their time.&nbsp;</p>\n\n\n\n<p>Google <a href=\"https://www.businessinsider.com/luis-von-ahn-creator-of-duolingo-recaptcha-2014-3\" target=\"_blank\" rel=\"noreferrer noopener\">purchased the technology in 2009</a> and improved upon it over the years. You see, artificial intelligence (AI) eventually became sophisticated enough to read and decipher even the most challenging text with <a href=\"https://developers.google.com/search/blog/2014/12/are-you-robot-introducing-no-captcha\" target=\"_blank\" rel=\"noreferrer noopener\">99.8 percent accuracy</a>. By doing so, they could pass the test and trick it into thinking bots were humans.&nbsp;</p>\n\n\n\n<p>To deal with this new issue, reCAPTCHA made things even more challenging, introducing new options like the famous “I’m not a robot” check box.&nbsp;</p>\n\n\n\n<img />\n\n\n\n<p>Today, reCAPTCHA is a widely-used security measure that protects websites from various spambots and cybercriminals by helping to ensure that comments on blog posts or in forums, and submissions on forms come from real people.&nbsp;</p>\n\n\n\n<h2 id=\"what-are-the-different-versions-of-recaptcha\">What are the different versions of reCAPTCHA?</h2>\n\n\n\n<p>There are technically four different types of active <a href=\"https://developers.google.com/recaptcha/docs/versions\" target=\"_blank\" rel=\"noreferrer noopener\">reCAPTCHAs</a>. Instead of text, some tests may use images, audio, or even math equations. They also utilize some variation of&nbsp; “<a href=\"https://developers.google.com/search/blog/2014/12/are-you-robot-introducing-no-captcha#:~:text=reCAPTCHA%20protects%20the%20websites%20you%20love%20from%20spam%20and%20abuse.&text=We\'re%20calling%20it%20the,having%20to%20solve%20a%20CAPTCHA.\" target=\"_blank\" rel=\"noreferrer noopener\">No CAPTCHA reCAPTCHA</a>”, which determines whether a user is suspicious simply based on their behavior on a site.</p>\n\n\n\n<p>If you’re setting up <a href=\"https://jetpack.com/features/security/\">WordPress website security</a>, you may have the option to choose between different reCAPTCHA types. For example, you can select a checkbox or background verification:</p>\n\n\n\n<img />\n\n\n\n<p>Here are the different types of reCAPTCHA:</p>\n\n\n\n<ul><li><strong>ReCAPTCHA v2 (“I’m not a robot” checkbox):</strong> This is the simplest and easiest test to add with limited coding knowledge. Sometimes it passes or approves users right away and prompts them to check a box. Other times, it asks them to verify that they’re human with a puzzle challenge.</li><li><strong>ReCAPTCHA v2 (Invisible reCAPTCHA badge):</strong> For this version, there’s usually no checkbox. It simply uses an existing button on your site or a JavaScript API call for verification. You’ll see a badge that says <em>Protected by reCAPTCHA</em>. Essentially, verification happens in the background. Only the strangest behavior will prompt a test.</li><li><strong>ReCAPTCHA v2 (Android):</strong> This version utilizes a reCAPTCHA Android library that’s part of Google Play’s <a rel=\"noreferrer noopener\" href=\"https://developer.android.com/training/safetynet\" target=\"_blank\">SafetyNet APIs</a>. This validates requests from within an Android app, so it’s not the right choice to use for a WordPress site.&nbsp;</li><li><strong>ReCAPTCHA v3:</strong> This is the most advanced and discreet of all the versions. Visitors won’t even know it’s happening. It uses a JavaScript API and automatically assigns a score to each user to approve or deny them. This version also gives more advanced developers extended flexibility for integrations with other security measures to dictate the level of site security.&nbsp;</li><li><strong>ReCAPTCHA Enterprise:</strong> Like v3, this runs in the background. It gives each site visitor a score based on their behavior. If a visitor is deemed suspicious, it may require them to verify their identity through custom options determined by each site —&nbsp;two-factor authentication or email verification. As its name implies, this is typically for enterprise-level sites and requires advanced customization.</li></ul>\n\n\n\n<h2 id=\"what-should-i-consider-when-choosing-a-recaptcha-version\">What should I consider when choosing a reCAPTCHA version?</h2>\n\n\n\n<p>Since reCAPTCHA Enterprise is reserved for larger companies, it’s safe to say that most websites will need either reCAPTCHA v2 or reCAPTCHA v3. Still, it’s important to know what you’re getting into with each one.&nbsp;</p>\n\n\n\n<h3 id=\"what-are-the-pros-and-cons-of-recaptcha-v2\">What are the pros and cons of reCAPTCHA v2?&nbsp;</h3>\n\n\n\n<p>The most significant advantage of reCAPTCHA v2 is that, whether you choose to include the “I’m not a robot” checkbox or leave it discreetly running in the background, it protects you from spam while offering humans the opportunity to prove that they’re real.&nbsp;</p>\n\n\n\n<p>With the invisible version, if it detects suspicious behavior, it will require a test. If it doesn’t, the user can proceed none the wiser.&nbsp;</p>\n\n\n\n<p>However, any reCAPTCHA v2 test can seriously hurt the user experience for site visitors. To combat increasingly smart AI technology, tests have become so tricky that many real humans have trouble passing.</p>\n\n\n\n<p>The test’s difficulty may leave users frustrated, wondering why they fail when they are actual humans. In fact, the situation has become so bad that popular tech magazines <a href=\"https://www.wired.com/story/im-not-a-robot-why-captchas-hard-to-solve\" target=\"_blank\" rel=\"noreferrer noopener\">give people tips</a> on passing these tests.</p>\n\n\n\n<p>Plus, it’s also important to consider <a href=\"https://www.w3.org/TR/turingtest/\" target=\"_blank\" rel=\"noreferrer noopener\">the accessibility of reCAPTCHAs</a>. A graphical puzzle, for example, would be inaccessible for people who have vision impairments. So, if you do decide to use reCAPTCHA v2, it’s important to present other options, like audio or text-based tests.</p>\n\n\n\n<h3 id=\"what-are-the-pros-and-cons-of-recaptcha-v3\">What are the pros and cons of reCAPTCHA v3?</h3>\n\n\n\n<p>reCAPTCHA v3 was specifically designed to improve the user experience. With no verification tests to complete, it’s seamless. Website visitors are happily unaware of the entire process.&nbsp;</p>\n\n\n\n<p>It also gives administrators much more control. With reCAPTCHA v3, you have advanced options to customize your interaction with Google’s API to adjust scoring thresholds and define what is considered suspicious behavior.&nbsp;</p>\n\n\n\n<p>Some may consider this added control a good thing, while others may find it a weighty and cumbersome responsibility. Additionally, <a href=\"https://www.fastcompany.com/90369697/googles-new-recaptcha-has-a-dark-side\" target=\"_blank\" rel=\"noreferrer noopener\">some critics believe</a> that reCAPTCHA v3 may pose a privacy risk because it provides Google with too much data.&nbsp;</p>\n\n\n\n<p>In addition, reCAPTCHA v3 can deter good bots from doing important work. People tend to remember the villains like spambots, but forget about their positive counterparts. Good bots deal with things like SEO and performance monitoring. If you get in their way, your overall website success could suffer.&nbsp;</p>\n\n\n\n<p>A final downside is that, since spam scoring happens in the background, there’s no alternative test provided to suspicious users (like with the invisible reCAPTCHA v2 badge). Visitors who are wrongly flagged as bots don’t have an opportunity to prove their legitimacy. This means that you could turn away real customers, clients, and followers.</p>\n\n\n\n<h2 id=\"can-bots-bypass-recaptcha\">Can bots bypass reCAPTCHA?</h2>\n\n\n\n<p>This is the big question. Unfortunately, the answer may not be straightforward or definitive.</p>\n\n\n\n<p>The many versions of reCAPTCHA are evidence that malicious spambots evolve quickly.</p>\n\n\n\n<p>They’re constantly adapting to outsmart reCAPTCHA. When the original CAPTCHA was introduced, it was revolutionary in its ability to decipher between real users and bots. But it didn’t take long before the bots caught on. People have even started <a href=\"https://www.forbes.com/sites/augustinefou/2020/09/19/you-didnt-know-bots-solve-captchas-and-do-pharming-with-humans/?sh=706e34951a4d\" target=\"_blank\" rel=\"noreferrer noopener\">using human labor</a> to get past tests manually.&nbsp;</p>\n\n\n\n<p>Computer scientists are regularly working to increase the effectiveness of reCAPTCHA, however. Some have <a href=\"https://www.theverge.com/2019/2/1/18205610/google-captcha-ai-robot-human-difficult-artificial-intelligence\" target=\"_blank\" rel=\"noreferrer noopener\">proposed new challenges</a>, like puzzles that require a user to maneuver pieces or nursery rhyme completion games based on the location of site visitors.</p>\n\n\n\n<p>That’s one major reason tests have become so frustrating for real users —&nbsp;difficulty has had to increase to stay ahead of computer learning. Unfortunately, it seems we’re at a point where to continue to outsmart computers, we have to make tests that are sometimes too difficult for real users to solve&nbsp;— a major problem.&nbsp;</p>\n\n\n\n<p>It’s gotten so bad that <a href=\"https://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&Sect2=HITOFF&p=1&u=%2Fnetahtml%2FPTO%2Fsearch-adv.htm&r=1&f=G&l=50&d=PALL&S1=9767263.PN.&OS=PN/9767263&RS=PN/9767263\" target=\"_blank\" rel=\"noreferrer noopener\">Amazon now owns a patent</a> for a new kind of CAPTCHA-esque test that is so difficult to solve that only a computer can do it. Meaning… if you pass, you’ve actually failed because you’ve proven that you can’t possibly be human.&nbsp;</p>\n\n\n\n<h4 id=\"so-can-recaptcha-stop-bots\">So can reCAPTCHA stop bots?&nbsp;</h4>\n\n\n\n<p>Yes, it can stop many of them. But it can’t stop them all. And the percentage of bots that make it through is increasing by the day. This means you can’t simply rely on reCAPTCHA to prevent spam submissions. You’d be signing up for a highly imperfect, temporary system that’s only going to get less effective.&nbsp;</p>\n\n\n\n<p>So what <em>should</em> you do?&nbsp;</p>\n\n\n\n<h2 id=\"other-security-measures-to-protect-your-website-from-spambots\">Other security measures to protect your website from spambots</h2>\n\n\n\n<h3 id=\"1-lock-down-your-comment-forms\">1. Lock down your comment forms</h3>\n\n\n\n<p>The best place to start is by configuring your WordPress comments in a way that protects your site against bots. Navigate to <strong>Settings → Discussion</strong> in your site dashboard and and consider requiring:</p>\n\n\n\n<ul><li>Comment authors to submit a name and email</li><li>Users to be registered and logged in to comment</li><li>Comments to be manually approved before publication</li><li>Authors to have a previously approved comment to submit a new one</li></ul>\n\n\n\n<p>In the <strong>Comment Moderation</strong> box, you can also flag a comment that contains a certain number of links —&nbsp;lots of links is a common indication of spam. Or, if you’re getting a lot of spam that contains certain words, email addresses, IP addresses, and other characteristics, you can ban them entirely.</p>\n\n\n\n<h3 id=\"2-protect-your-login-forms\">2. Protect your login forms</h3>\n\n\n\n<p>To lock down your login forms without using a CAPTCHA, you can implement <a href=\"https://jetpack.com/features/security/secure-authentication/\">two-factor authentication</a>. This requires a user to have both login details <em>and </em>a physical device to access your site. When someone logs in, they’ll have to enter a username and password as well as a one-time code that’s sent to the mobile device on file. This is virtually impossible for bots to get past.</p>\n\n\n\n<h3 id=\"3-use-honeypot\">3. Use honeypot</h3>\n\n\n\n<p>Honeypots are an option for protecting contact forms. Think of them as a mouse trap for bots. They essentially create a hidden field in your forms that isn’t visible to site visitors but that can be seen by spambots. If the field is filled out, the bot is stopped in its tracks.</p>\n\n\n\n<p>Many contact form plugins allow you to implement this feature in their default settings.</p>\n\n\n\n<h3 id=\"4-protect-your-comment-and-contact-forms-with-akismet\">4. Protect your comment and contact forms with Akismet</h3>\n\n\n\n<p>Akismet is hands-down the best way to eliminate the headaches of bots (or even real humans) spamming your comments or sending unwanted messages through forms on your site.&nbsp;</p>\n\n\n\n<p>With millions of users, Akismet has blocked over 500,000,000,000 spam submissions at the time of writing this article. With each one, it learns a bit more. So while bots might have AI to get past reCAPTCHAs, Akismet’s AI is working to protect your site in an entirely different way.&nbsp;</p>\n\n\n\n<p>Akismet can accurately identify spammy behavior and keeps a blocklist of words, IP addresses, names, and emails to prevent pests. Plus, it gives you control to provide feedback about any spam it misses or real comments that it accidentally flagged. Then, it customizes its spam-fighting solution just for your site. Amazing.&nbsp;</p>\n\n\n\n<img />\n\n\n\n<p>You can get a <a href=\"https://wordpress.org/plugins/akismet/\">free version of Akismet</a> for your personal blog. In addition, there are three <a href=\"https://akismet.com/plans/\">paid plans</a> for commercial sites starting at just $10 per month.&nbsp;</p>\n\n\n\n<h2 id=\"win-the-fight-against-spam-bots\">Win the fight against spam bots</h2>\n\n\n\n<p>Spam bots and less-than-ethical cyber actors are always trying to take advantage of visitors and the sites they love (like yours!). They can cause annoyance or even do real-world damage.</p>\n\n\n\n<p>CAPTCHA and reCAPTCHA have evolved many times over the years and continue to be one trusted way to prevent bots from flooding sites. But these solutions aren’t perfect, and sites need other measures to prevent spam from causing trouble. Consider protecting login forms with two-factor authentication, deploying WordPress best-practices, and using <a href=\"https://akismet.com/\">Akismet</a> to filter comment and contact form submissions automatically.&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Dec 2021 10:25: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:13:\"Simon Keating\";s: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:77:\"Post Status: Post Status Excerpt (No. 38) — In Person For State of the Word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=91657\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/38/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:38726:\"<h2>&#8220;I believe our community can make significant contributions to Gutenberg and the Block Editor.&#8221; —Cory Miller</h2>\n\n\n\n<p class=\"has-drop-cap\">In this episode of Post Status Excerpt, Cory shares his experience among the 30+ individuals who attended the State of the Word in New York in person. David and Cory talk about how Matt presented himself, his views on the necessary ratio of community contributions to open source projects, Five for the Future, the next generation of leaders, and what it means to give back to the community and WordPress core.</p>\n\n\n\n<p><strong>Also: </strong>Cory hints at what Post Status will be doing in 2022 when it comes to giving back — along with how Post Status will encourage and assist people in contributing to the WordPress community.</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://www.youtube.com/watch?v=OpiH_P9aGhQ&feature=emb_title\">YouTube: State Of The Word 2021</a></li><li><a href=\"https://www.godaddy.com/garage/state-of-the-word-2021\">GoDaddy Review And Timeline of State of the Word 2021</a></li><li><a href=\"https://thewpminute.com/state-of-the-word-2021/\">The WP Minute (Audio + Transcript)</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\">Cory Miller (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/pagely\" target=\"_blank\" rel=\"noreferrer noopener sponsored nofollow\">Yoast SEO</a></h3>\n\n\n\n<p><strong>Yoast</strong> is SEO for everyone. Yoast SEO Premium gives you 24/7 support and extra features like internal linking, social previews, a redirect manager, tutorial videos, and integration with Google Webmaster Tools. Get on board today with the premiere SEO plugin for WordPress — <strong>Yoast</strong>.</p>\n\n\n\n<h2 id=\"h-transcript\"><strong>Transcript</strong></h2>\n\n\n\n<p><strong>David Bisset:</strong> [00:00:00] Since I wasn\'t there because as I was telling somebody earlier, I couldn\'t, hurt my Twitter game by being there. I had to be in front of my computer with with my keyboards and making a bingo games and hashtag&nbsp;</p>\n\n\n\n<p><strong>Cory Miller:</strong> that\'s my fondest memories of you, David is like going to these events and somebody live tweeting.</p>\n\n\n\n<p>It\'s like, here\'s this dimension media person. And it\'s like, holy crap.&nbsp;</p>\n\n\n\n<p><strong>David Bisset:</strong> Yeah. They used to call me dementia media. So.&nbsp;</p>\n\n\n\n<p><strong>Cory Miller:</strong> Signature though is still in the lodge waiting. And I remember when Twitter kind of first came out and it was a thing to live tweet a lot. And but I always like yours because you always summarize what.</p>\n\n\n\n<p>The takeaway is like you\'re starring the cool quotes along the way. And that\'s part of what we\'re trying to do at post status is give you the too long, didn\'t read content, the inside analysis commentary for the stuff that matters to you. So that\'s your claim to fame or friend?&nbsp;</p>\n\n\n\n<p><strong>David Bisset:</strong> Yeah. Yeah.</p>\n\n\n\n<p>Well, that\'s how I took notes and I really didn\'t care who listened. I that\'s how I just took [00:01:00] notes. It kind of knocked off a couple of killed a couple birds with one stone, but enough about me. Let\'s. Let\'s talk about you being there in person. And can you tell me where this place w what was this place like?</p>\n\n\n\n<p>Was it in like a tall building or like, I hear it was tumblers all the offices or something.&nbsp;</p>\n\n\n\n<p><strong>Cory Miller:</strong> So my understanding was it\'s the automatics new event space in New York city. And of course, some of their investors in New York city and things like that. And it was incredible space. I would try to guess how big of a space it was.</p>\n\n\n\n<p><strong>David Bisset:</strong> I couldn\'t tell, the camera angles were just, they did the camera angles just right. So you never got a true dimension of the room on the live stream</p>\n\n\n\n<p>&nbsp;yeah, that\'s&nbsp;</p>\n\n\n\n<p><strong>Cory Miller:</strong> what I just said. I do more tell me I bet you it\'s about 15,000 to 20,000 square feet in there that I saw really great space. And it\'s a whole floor of a billion is my understanding, but it was gorgeous.</p>\n\n\n\n<p>And then there\'s the sunset of New York city out the window rep for state of the word. And it was really good, but I. I, you know, I got to see [00:02:00] Matt about a month ago and San Francisco, we got to talk and he mentioned inviting you David, to stay the word. And also he\'d love to have Post Status there. So I was like, yes, we\'re going to make that happen.</p>\n\n\n\n<p>I know you had things that come up, you couldn\'t be there. But you know, I want to guess there\'s about 25 30 people there in person. And it was a really nice night. I mean, automatic. Rolled out the carpet for all of us, which is super nice. Matt as always is a charming, elegant presenter and host and did a fantastic job.</p>\n\n\n\n<p>I thought it was normal. You know, I want to give him kudos, but like, he\'s really good on stage.&nbsp;</p>\n\n\n\n<p><strong>David Bisset:</strong> Well he was different this time and I realized I wasn\'t in the room, but I almost had, I have a 30 inch monitor. So I saw a lot of him and I saw a lot of his facial expressions pretty clearly. There was there was something different about them in a good way.</p>\n\n\n\n<p>And I can\'t, I think he, you know, not just not to put emotions on a person, I\'m pretty sure he was nervous in some regard. I think anybody is nervous to some extent of public speaking, but he definitely had some sort of [00:03:00] energy that he was releasing. And you know, me, I record animated gifs all the time.</p>\n\n\n\n<p>I decided not to post, I don\'t know what I decided to post, but in the very beginning before he was kind of. He was almost dancing a jig right before way before the state of the word started up on stage. So he was really excited and really, you know, anxious maybe, but you could just see the energy even before he spoke anything.</p>\n\n\n\n<p>You could just see the pent up energy that he had, which was reflected later, by the way.&nbsp;</p>\n\n\n\n<p><strong>Cory Miller:</strong> And not trying to speak for him, but if for me, I go, I haven\'t done this in two years. There\'s some cool people here that I have invited to be here and I\'m talking about the thing that I want to spend all of my life doing.</p>\n\n\n\n<p>And so. Yeah, totally. I spoke a couple of weeks ago at our three recurring revenue retreat. And I remember getting feeling nervous cause I\'m like I was rusty, you know? And there was this quote and I\'m trying to remember what it was, but it\'s basically turning fear, the anxiety into [00:04:00] energy and excitement.</p>\n\n\n\n<p>And that\'s what I tried to do is like channel that\'s now Matt doesn\'t need my public speaking tips, but those are my thoughts. What I. As long as I\'ve known him. And it goes back to 2008, where camp DFW in Frisco, Texas. There\'s one thing that\'s always standard with Matt and that is his passion for the WordPress open source project.</p>\n\n\n\n<p>Yeah. So, you know, and it just has never wavered. And I think he mentioned on state of the word that he wants to spend the rest of his life. He\'s 38 rest of this. On WordPress project. And I totally believe this. This is his contribution to humidity, you know, and at Post Status makers of the open web WordPress, this 42% of this big number that he shared out there, I think we should all take a moment, take a big deep breath and go.</p>\n\n\n\n<p>The web is still in its infancy. I don\'t know, life-stage wise where it would be comparatively to like a human, but it\'s still early, like in history of all that\'s going to happen in this world. In the future, the web is [00:05:00] still kind of an infant. And if you think about it, our place is WordPress makers.</p>\n\n\n\n<p>People that build on WordPress, extend WordPress, teach WordPress, all that stuff people have. Post-test the business to WordPress is this is historic and what we\'ve been doing. I started with WordPress, my first blog in 2006. That was just me using this amazing platform called WordPress, but, you know, history historically sake and going through.</p>\n\n\n\n<p>42%, that number, it just keeps getting bigger. And that\'s exciting for us, those of us that make our living with on for WordPress.&nbsp;</p>\n\n\n\n<p><strong>David Bisset:</strong> Yeah, he did. I got a couple of quotes out of them and it was, you know, livestream is a little bit easier. Cause you can pause and rewind a little bit just to make sure, because you want to get it as close as possible. Regarding the The WordPress space.</p>\n\n\n\n<p>He did say the court word press belongs. Just, you know, just to anybody it\'s not just you or me it\'s regardless of economic or political situations. And he said something about WordPress can\'t be [00:06:00] created by just one company and people adding a line of code is like giving that, give a penny, take a penny and I feel like there\'s quite a number of people that thanks to five for the future that are giving that he was, he actually said he actually gave a quote or something about, I don\'t know if you caught it. He was studying other CMSs. And he said for every dollar that has made $20 has made in the ecosystem.</p>\n\n\n\n<p>And that\'s ratio is how they came up with the five for the future. Did you know that. I did not.&nbsp;</p>\n\n\n\n<p><strong>Cory Miller:</strong> You know, I don\'t know how long, far, because the future has been out, but there\'s two things I wanted to highlight. Part of State of the Word you\'ve just put a square in this one, which is contributing back to core five for the future.</p>\n\n\n\n<p>I don\'t know how long that\'s been going, but, you know, I know our Post Status members. I mentioned this to Matt. They, you know, like me and I themes, we had, let\'s say at her height, I want to say 27, 28 people or something like that. And you go, okay, how do we, excuse me, our team or company contribute to core.</p>\n\n\n\n<p>We don\'t have the profit bandwidth, all that stuff to take a full-time dev for instance&nbsp;</p>\n\n\n\n<p><strong>David Bisset:</strong> right</p>\n\n\n\n<p><strong>Cory Miller:</strong> [00:07:00] off. And I mentioned this because I know there\'s so many giving hearts in WordPress and founders and entrepreneurs and people that lead companies. That benefit from WordPress that want to do five for the future.</p>\n\n\n\n<p>It\'s tough. I get it from your standpoint of how do we meaningfully contributed, even though we believe we are contributing to the ecosystem or what we\'re doing. And I grant that a hundred percent, what we want to do at Post Status though I did tag on the contributions that push to continue to contribute to core.&nbsp;</p>\n\n\n\n<p>I think that\'s the reflective I dunno, KPI for the ecosystem too, by the way. But, and I know there\'s companies that do it, even if it doesn\'t fall under the strict banner of farm from feature or whatever it is that like, they\'re doing it just like, we felt like we were contributing to WordPress for years.</p>\n\n\n\n<p>What I want to do is translate that help that better for our Post Status crowd to, to actually meaningfully contribute. So Courtney Robertson on our team, who is also great, awesome person at Go Daddy pro is really [00:08:00] taking the banner for the contributor days for post status. So next year, we\'re going to be talking about enrolling out contributor days, but that\'s one thing to say, we\'re going to do a contributor day, right?</p>\n\n\n\n<p>That\'s nothing new. This is where Courtney\'s idea was. Let\'s go to the team leads and ask for their wishlist. Things they would love for people of post status to contribute. And from that gives us something that we can go. Let\'s say we take that day eight hours. And we\'re going to show up for contributor today. at Post Status, were gonna, make it a contribute and then pick something off the board.</p>\n\n\n\n<p>So we\'re already trying to help you do a little thinking in the stuff that\'s going to be most valuable to the core team, core teams that are doing things, and then say pick one off the list and try to get as far as you can. You know, and I\'m excited about that. I know it\'s very meaningfully and for good reason to Matt, both as CEO of automatic, but also the leader of the WordPress open source project.</p>\n\n\n\n<p>And that was one thing that for sure came out, you know, to me in that call.</p>\n\n\n\n<p><strong>David Bisset:</strong> Yeah. There, [00:09:00] there was quite a bit talk about, there was talk about the contributors earlier in the live stream. And then afterwards it was how to get new and especially young people involved and you know, young people, they have so many distractions these days, but they have more time and they more energy.</p>\n\n\n\n<p>Then we do cause we were running, families were running businesses and so forth like that. And I liked the question that Allie posed about. How can these people learn WordPress? But contributing I, you know, I, I lost my thought there for a second, but I really wanted to. I was hoping that the five for the future was going to spark some more ideas.</p>\n\n\n\n<p>And I think it will, because if you have people that are, if companies are being sponsored or sponsoring people to work on contributing and there should be. Like an on-ramp in there somewhere for people who want to get into it too, because you know, like many people have pointed out. You have to, unless you\'re a young person within, [00:10:00] with an inordinate amount of time, you don\'t have the time to do that.</p>\n\n\n\n<p>So even for a couple of hours, and I think part of five for the future, and some people have brought this, you know, written about it after state of the word. And about that five for the future, maybe someday five for the future can be expanded a bit to help some people not only contribute, but also kind of help them find people are willing to cover them so they can contribute whether that\'s financially or some other means.</p>\n\n\n\n<p>Or maybe it\'s just some sort of internship if somebody is brand new and needs to be exposed to anything in WordPress. So I think five for the future is a great thing now, and I think it has got room to grow, but you know, it needs that it needs. Momentum of support right now and whether that\'s the repost status and all these other methods, I think we\'re still seeing the early stages of a comprehensive program for contributing.</p>\n\n\n\n<p><strong>Cory Miller:</strong> And I understand the apprehensions from companies and founders and leaders. You know, you have to make a [00:11:00] profit for sure. And you\'re like, okay, I want to give back, but I, can\'t just, I\'m not a nonprofit, I\'m a profit in enterprise and everything, and I want to help with them and contribute to these.</p>\n\n\n\n<p>But something you mentioned just a second ago was pinged for my second thought. And when you said next generation, the no, our intern Here and has helping to post that by the way. But I also know your passion, heart for next generation with WordPress too. And it, that just brings up, well, one Sandy Edwards work with kids camp.</p>\n\n\n\n<p>Talk to her about that a couple of weeks ago at our three, how post-test wants to contribute to that. But the other thing, the second theme is Gutenberg. You know, you can\'t probably talk to Matt about WordPress without hearing Gutenberg and for good reason, here\'s the thing. I was not a vocal advocate at all of ruling out Gutenberg in the way we did&nbsp;</p>\n\n\n\n<p><strong>David Bisset:</strong> I like how politically, that was so eloquently put, but yes.&nbsp;</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, I thought it was way early and everything, and it took me a year or two to finally [00:12:00] okay. You know, use Gutenberg and but it here\'s the reality situation, no matter what, the way we feel about the past, it is here and it\'s not going away.</p>\n\n\n\n<p>So you hear this over and over from Matt and for good reasons, there\'s some cool stuff coming. That he talked about the styles, some of the typical libraries. I see that as a very similar innovation and direction, that themes as a whole went when I started, I think back in 2008, There\'s so much innovation to do.</p>\n\n\n\n<p>So first and foremost, it\'s here. We\'ve got to accept it and move on. And I think what his plea here was too, and again, probably my nuance. It\'s not, I\'m not going to play, but I\'m just saying my nuances. It\'s not going away. We should accept it and embrace it. And then the question becomes, how do we improve that?</p>\n\n\n\n<p>And I think our community can make considerable contribution. To the conversation and the actual implementation of Gutenberg, the block editor for WordPress. I\'ll tell ya, I\'m looking, I\'m going to redo my [00:13:00] personal site cause I want to start blogging every day. And I say blogging, it\'s going to be just sharing my thoughts.</p>\n\n\n\n<p>Not just on Twitter, but you know, my site and I\'m probably going to pig blank canvas. I\'m still up in the air and I want to use. And I want to really like embrace using it and see what I, what my takeaways are. And I did that back in August with the click publish. I want to use Gutenberg because I\'ve criss cross the threshold.</p>\n\n\n\n<p>And for me, I\'ll tell you the big benefit David was used to because no one even believes I\'m ever been a developer. I\'m not, but I was like&nbsp;</p>\n\n\n\n<p><strong>David Bisset:</strong> Don\'t be ashamed. I\'m a programmer. I do websites. I do plug-ins. I do all of that. And what does Matt say to everybody that I am during state of the word?</p>\n\n\n\n<p>I tweet a lot. So that\'s my claim to fame. That\'ll be on my tombstone where the developer, but you\'re not a developer, but&nbsp;</p>\n\n\n\n<p><strong>Cory Miller:</strong> I was looking for, I wanted to do a buy now button or something. You know, I just wanted to button and I can\'t, I can [00:14:00] figure it out. I mean, I don\'t want to figure out how to write a button coordination, or, CSS or whatever.</p>\n\n\n\n<p>So I, what I normally would have done is went look for a plugin. I can\'t remember. I want to say max plugins or something was that max buttons was out there as a plug in. Well, and I can\'t remember what might\'ve been AGA again. But it was like, that\'s a block that was a game changer for me to go.</p>\n\n\n\n<p>You don\'t have to get something extra to do things you want to do in the post. That was pretty cool turning point for me. It\'s not there. It\'s getting better, this awesome people working on it. And I think we should. We can and should contribute to the conversation and the implementation once it gets going, because it\'s not going away.</p>\n\n\n\n<p>And back to your point about next generation Syed Balkhi that if you WP Beginner and awesome motive, I remember asking him a couple of years about Gutenberg. I was like I kind of expect he\'s going to get on the bandwagon. Let me it\'s like, we don\'t like it. It shouldn\'t be out there. And Syed was like, I love it.</p>\n\n\n\n<p>I was like why? And he goes, because the next generation look at how people are [00:15:00] publishing today and it\'s changed from what you and I learned now. He\'s like, he\'s over 10 years, 15 years younger than me. But like even young kids like Olivia and like the platforms have changed in the way to express yourself change.</p>\n\n\n\n<p>And that always stuck with me what Syed said. And so I really have high hopes for Gutenberg. Yeah, again, now that I am in strong, like of it.&nbsp;</p>\n\n\n\n<p><strong>David Bisset:</strong> So another thing Matt talked about which I\'m actually a little bit surprised he did bring it up. I\'m wondering who, by the way, Tuesday was when WordPress 5.9 was supposed to be out before they pushed it to January. So I talked to Anne McCarthy today. And first of all, I mentioned to her, like you mentioned, like 5.0 release when Gutenberg first came up, was rough around the edges. And she has assured me that the full site editor coming out in January with 5.9 is it may not have the entire kitchen sink, but it is very stable and doable. So I can\'t wait to share that [00:16:00] interview with everybody, but Matt did call out acquisitions and I like, and I thought is this one of the things that if 5.9 was out, would he gone over more quickly? I don\'t know, but they got on one slide. He started with 42 logos. And I thought there were more acquisitions than that.</p>\n\n\n\n<p>I\'ll have to go back to our Post Status tracker. But he had 42 logos up there and then he proceeded with, and I\'m not a finance person. I\'m just going to take his word for it. , his charts were taken from other people\'s analysis. He gave proper credit to them, but he says the number of the deals that are happening in the tech space, he says there were 10,000 transactions in the first nine months of 2021 alone.</p>\n\n\n\n<p>Which is up 24% over the last year. And then he brought out another chart that was called inflows to stocks. And I couldn\'t even, I don\'t even know what that was. I was, but all I know is there was a big bar at the end with the, with our year in it though. And I guess what he was trying to prove is that [00:17:00] don\'t panic.</p>\n\n\n\n<p>The acquisition space is not unique to the WordPress space right now. This is all going, you know, bonkers. And it\'s not just WordPress. So I, you know, with you being a business person, how did you feel, do you feel that was properly delivered or delivered? Well, do you think he got the message.</p>\n\n\n\n<p><strong>Cory Miller:</strong> But the question I think about that is what prompted him to even do the slides, you know, and that\'s the bigger question we always want to be thinking about here, you know, for our people is what is the founder co-founder of WordPress, the movement of open source project. Fill the need to say that. And we have some sense of the people that are like change sucks.</p>\n\n\n\n<p>Nobody likes change, you know, and the fact of the matter, if you bullet down these acquisitions, why would anybody even care? It\'s because it could potentially change something that I\'m used to doing. And I\'m not saying it\'s good, right? Bad, wrong indifferent. I\'m just saying, you know, I think change is [00:18:00] tough and I\'ve heard some sentiment from the WordPress community about, I don\'t even recognize it anymore and all this stuff.</p>\n\n\n\n<p>And then I just go down, like, here\'s my comparison for it is when I left.iThemes and started this new journey and Post Status . It was over a year before I became a partner and it was probably nine months before Brian and I even started talking about me becoming a partner. There was a big gap there and I was like, I didn\'t know what I was going to do next and trying to figure that out.</p>\n\n\n\n<p>But I did one simple thing, which was, I\'m never going to say publicly privately, I\'m leaving WordPress. I joked all the time. I\'m going to be a WordPress user a blogger, which I was still am. But the important thing is I didn\'t want to lose or even think all the amazing friendships I\'ve made over 15 years being in the space.</p>\n\n\n\n<p>To say, I\'m saying goodbye to you. That\'s not it. You heard Pippin Williamson when he left Sandhill dev that he was like, I\'m not saying about a difference, but I need to step away from the project. [00:19:00] And I just go that sentiment to me comes back to this acquisition. Like things are changing, all that stuff.</p>\n\n\n\n<p>I, I totally get that. I\'m not trying to change your emotion. My way of thinking about it though, is the people are still here and that\'s what matters. I\'ve known you David for God. Has it been 10 years since&nbsp;</p>\n\n\n\n<p>I\'ve known you for 10 years?&nbsp;</p>\n\n\n\n<p><strong>David Bisset:</strong> Since the first conference in Arizona whose name is escaping my. I think that\'s where we may have known.</p>\n\n\n\n<p>We may have known each other prior to that. That\'s the first time we met in person, I think officially,&nbsp;</p>\n\n\n\n<p><strong>Cory Miller:</strong> but you know, the premise of all, this is like, the people are still here, for the most part. Now you\'re always going to get people leaving the ecosystem, leaving it, you know, and coming in new people, coming in, who I met, one of our post-test members was when Stina and I\'d love to hear her story.</p>\n\n\n\n<p>She was there. Got invited to State of the Word we got to talk Post Status member and That\'s a new person, I didn\'t know, a year ago or two years ago, you [00:20:00] know? And so some may leave and you\'re always going to have that in some, and cause there was even a picture. I think one of those slides, David of Kim. Oh, you know, and you think about people who have left and for instance, this world Kim back in the day but I saw her picture on one of those slides, you know, and it made me smile, but all that to say, WordPress is not about code it\'s about the people.</p>\n\n\n\n<p>And that is what I hang on. I\'m not trying to change your heart, your feelings, but I\'m just saying, if you think about it, go it\'s about the people. No matter if it\'s a team, if it\'s outside of WordPress, whatever it is, it\'s like, what matters are the people there? And are we growing together and all that?</p>\n\n\n\n<p>So that\'s the way I think about that, but that the merger is that it\'s I it\'s right for people to go and question what\'s what the heck\'s going on here. Things are changing on that space, but I still go the Michelle Frechette. Actually as a team member of people, some of my best friends and my former team and I themes now, is that interesting?</p>\n\n\n\n<p>Well, I\'ve known Michelle for a long time and now she\'s a part of the scene. That\'s cool. You know, that, that change happened where gives, [00:21:00] got by. And cellar rolled out and she moved over roles and now we get to work with her Post Status too. And again, I just call back to, if you\'re worried about that, just go back to the people now there\'s other worries, but I just, the heart of it is about people.</p>\n\n\n\n<p><strong>David Bisset:</strong> Yeah. And&nbsp;</p>\n\n\n\n<p>I also, I have also have a motto too, in terms of you don\'t let the people that are leaving a community, distract you from who is coming into the community or who they should, or who should be invited into the community and vice versa. But don\'t let one side distract you from who\'s coming in versus who\'s going out and that sort of thing.</p>\n\n\n\n<p>And I think we\'re doing a pretty good job with that. What happened after state of the word after it ended what happened.&nbsp;</p>\n\n\n\n<p><strong>Cory Miller:</strong> Well, so there was about, I can\'t remember how many, but at least 20 of us, I could probably adapt touch straight back to Post Status and we all kind of stayed at the same hotel and had a little, two day fun before the event and all that stuff.</p>\n\n\n\n<p>And so a bunch of us went back to our hotel and we\'re at the restaurant, the hotel restaurant bar, [00:22:00] and just kinda talking, you know, and I got to meet great people. I\'ve just met in like Robert. Who runs OSTP training there? I got to see again for the third time, Robert Jacoby of cloud waves. The hero press couple Kate, and Tofor, I\'m trying to think of othersAC Morse was there? Gravity forms.&nbsp;</p>\n\n\n\n<p><strong>David Bisset:</strong> Aaron Campbell was there.&nbsp;</p>\n\n\n\n<p><strong>Cory Miller:</strong> The Aaron and I laughed. He lives in Oklahoma. Like me, he\'s literally an hour away. I bet it\'d take me 45 minutes to be on his doorstep and vice versa. And we\'re like, we had to laugh. So we\'re sitting in New York city Soho, somewhere in the coffee shop. We\'re like, isn\'t it funny how we have to either go out of the country or to go across the states to see each other when we live like that close to each other.</p>\n\n\n\n<p>And I love Aaron. He has such a great. For WordPress, all things WordPress and I love what he\'s doing.&nbsp;</p>\n\n\n\n<p><strong>David Bisset:</strong> Bob was there too. Of course, he traveled by train. He traveled by training the width of the Wu train clan. And it was, I think one of the best moments of the night was when he got up to ask the question and he had the simplest of questions, which was like, he [00:23:00] like, what\'s up for WooCommerce or in the next year I traveled 2000 miles to ask this question.</p>\n\n\n\n<p>And how did Matt respond&nbsp;</p>\n\n\n\n<p><strong>Cory Miller:</strong> that\'s all the bingo card and slack Post Status slack light up because Bob asked it, you know, finally he got the invoke. Woo. Yeah. I love Bob. Bob does and has been around for a long time too. And what I said about him personally at the vent was the one thing I admire about him is he has just consistently showed up.</p>\n\n\n\n<p>And get work in this space and has mad respect from everybody because of it. So we sponsored his train trip out because we wanted to I mean, Bob is such a vital member of the WordPress community and then specifically WooCommerse. So Bob did all of that kind of community logistic, wrangling there, in addition to being like, and he was trying to record, he set up a studio in his room and I got to be with Robbie and Robert and Bob and</p>\n\n\n\n<p>do the woo podcasts there. So, it was a great time for that on the note of getting people together. And Post Status [00:24:00] specifically we\'re right now getting our in person. Camps together for Post Status Brian and intended to do it last year. And you know what, two years ago, and you know what happened, right.</p>\n\n\n\n<p>But this year we\'re putting some plans in place to get together in a small way to talk shop, to do life together as a community. I would love for everybody to be there next. December 22nd for, it\'s going to&nbsp;</p>\n\n\n\n<p><strong>David Bisset:</strong> say, as we wrap up here, what is the schedule look like for our post status members?</p>\n\n\n\n<p>What do they, pay attention to?</p>\n\n\n\n<p><strong>Cory Miller:</strong> So we\'re doing a year in, remember huddle. We\'re going to be doing these next year, by the way, in which I\'ll be talking about, but our member huddle you\'re in next Wednesday, December 22nd, 11:00 AM central time. There\'ll be zoom links in slack and all that.</p>\n\n\n\n<p>And so. We\'re going to do our, that member huddle. How-to it\'s going to be one part like reflective review last year, thinking about next year. So look back, look forward, and then we\'re going to do some fun stuff. I want you to meet the Post Status team. All the people that are doing all this crazy awesome [00:25:00] stuff behind the scenes that you don\'t all see.</p>\n\n\n\n<p>And then talk about some of the things we got in store for our Post Status community. A couple of times I\'ve heard people say energy with post status and it is, and it ain\'t just me, by the way, it\'s people like David who had been here faithfully for years, Michelle Frechette, Courtney Robertson, Taleesha, you\'ll get to meet her.</p>\n\n\n\n<p>She\'s our new director of operations and all kinds of people in between. I can\'t wait to do that. And then laugh together. Our theme for the ongoing, I hesitate to say it\'s going to be 2022, because I just want it to be forever is give. Together.&nbsp;</p>\n\n\n\n<p><strong>David Bisset:</strong> What was that again?</p>\n\n\n\n<p><strong>Cory Miller:</strong> Give, grow together. It\'s part of what I want to be our member mantra.</p>\n\n\n\n<p>The thing we come to post to us and say, I\'m here to give of myself my time, talent, treasure, all that stuff. Not true necessarily, but like give up myself in the spirit of open source to the commuity. To each other. Second is I\'m here to grow. I want to grow myself. I want to grow my business.</p>\n\n\n\n<p>I want to grow my career. We\'ve got specific plans for the growth side and then together, it\'s [00:26:00] just the thing that wraps everything together. It\'s not I. It\'s not you. It\'s always, we at Post Status. It\'s not just me. I happen to be on, you know, I had my face out there and stuff like that. But if this is truly a community and truly a team too, and I want us to just emphasize those three things, give in spirit of WordPress, same thing, just give to each other in the community business of WordPress second is to grow commit. You want to be here, let\'s grow yourself, grow professionally, grow your business, whatever it is, come here to grow. And then to do it together do it all of us together. So, even our products, like, as you will know David is called and that\'s a Portuguese word for probably mispronounced it, but together we\'re together.</p>\n\n\n\n<p>So it\'s been a theme of my life even before clinical campaigns and the COVID time. But I really mean it next year as I\'m going to do these things from in-person camps, how we do slack, how we do some of the cohorts, we\'re going to be rolling out. And I hope you\'ll show up next week and we can talk more about that and get your feet.</p>\n\n\n\n<p><strong>David Bisset:</strong> What was the date again?</p>\n\n\n\n<p><strong>Cory Miller:</strong> [00:27:00] December 22nd.</p>\n\n\n\n<p><strong>David Bisset:</strong> So December 22nd, Wednesday, are we going to see any sign of a state of post status with you in a suit? Is that something we can look forward to?&nbsp;</p>\n\n\n\n<p><strong>Cory Miller:</strong> You\'re probably not the second&nbsp;</p>\n\n\n\n<p><strong>David Bisset:</strong> the people that are listening for the people that are listening at home.</p>\n\n\n\n<p>Cory shook his head so quickly that I thought his neck was about to snap.&nbsp;</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, I think we should do these types of things where as our leader of post, as getting in front listing talk, discuss, put things out there that help you learn and grow and all that with postdocs, for sure. And I always want to get to Canada.</p>\n\n\n\n<p>So maybe to the first to the second one, the suit, you know, I mean, I\'ve got two suits. I probably don\'t fit currently. So. I think you\'re more likely to see me in a Chewbacca outfit than a suit, but no shady. Anybody else? It\'s just,&nbsp;</p>\n\n\n\n<p><strong>David Bisset:</strong> no, you have to stand up. You gotta make yourself stand out with all these other state of the blah-blah-blah.</p>\n\n\n\n<p>I mean, if Matt does a [00:28:00] suit, I think. Any, if you\'re going to wear a hairy Chewbacca outfit, I think that\'s a good countermove. But anyway,&nbsp;</p>\n\n\n\n<p><strong>Cory Miller:</strong> Somebody is gonna remember this and come back and say, Cory memory, you say you do that.&nbsp;</p>\n\n\n\n<p><strong>David Bisset:</strong> Oh, people will remember it. I might have a little bit of a night terror about it. I\'ve got a thing against Wookiees. But other than that, I think it\'s a fantastic idea. Well, it sounds like you had a blast and it was a blast watching. I see you in some of the photos. Sometimes you\'re in the background You\'re in the background photo bombing. It\'s fantastic. I\'m glad that this happened and I\'m glad to see Matt so open.</p>\n\n\n\n<p>Maybe it was because it was a smaller venue or it was the fact that there wasn\'t a word campy west surrounding Matt. You know how draining that is even to, just to be at a work camp us and then, and that WordCamp us with a talk in front of a thousand, 2000 people, it would look like a really nice event with a ton of energy, but.</p>\n\n\n\n<p>Personable intimate. And I\'m glad you all in this, in the few got to experience that. And I, of course, next year though, [00:29:00] or next time this happens, hopefully it will be under different circumstances and we\'ll have more people. In fact, think he said, if all goes well, San Diego is going to be the work camp spot for 20, 22.</p>\n\n\n\n<p>Have you ever been to Sandy? Oh, really? I\'ve never been. So it\'ll be interesting for me. Was there anything else that you wanted to share? I think we, it was good seeing you. It was good seeing you. I\'m glad you\'re home safe. And then it sounded like they do all the safety precautions and everything, which was fantastic.</p>\n\n\n\n<p>I\'m glad they did that. And it was good to see Josepha and the others there as well representing so great. So next time. Let\'s it sounds like we\'re going to talk about wrapping up our thoughts about the year with the biggest news stories that you think Corey or the most influential to you personally.</p>\n\n\n\n<p>And we\'ve asked the same question to our post status members, this awesome service zip message. I want to say zap message, but that sounds more painful. Zip message. It\'s zip message. And we\'re encouraging people [00:30:00] to go in there and just leave a brief clip about what story to them was the most influential for WordPress this year.</p>\n\n\n\n<p>And to them personally, and maybe by the time we talk next time, we will have a couple of us to talk about and share our own as well.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Thanks, david. And thanks everybody.</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, 23 Dec 2021 04:32:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:64:\"WPTavern: Gutenberg 12.2 Focuses on User Experience 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=127612\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:173:\"https://wptavern.com/gutenberg-12-2-focuses-on-user-experience-improvements?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-12-2-focuses-on-user-experience-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5854:\"<p class=\"has-drop-cap\">Some Gutenberg plugin releases feel like heavy-hitters with new user-facing features. Others, such as <a href=\"https://make.wordpress.org/core/2021/12/22/whats-new-in-gutenberg-12-2-22-december/\">today&#8217;s version 12.2 update,</a> smooth over problems and create a more well-rounded experience.</p>\n\n\n\n<p>Switching between the site editor and templates is smoother. The color picker is no longer a hot mess. And, border controls now <a href=\"https://github.com/WordPress/gutenberg/pull/34061\">use the tools panel</a> approach of allowing users to enable or disable the options they want.</p>\n\n\n\n<p>Contributors have made progress on updating the Comments Query Loop block, which will eventually be the backbone of displaying comments in block themes. One of the tallest hurdles was <a href=\"https://github.com/WordPress/gutenberg/pull/36065\">making nested comments work</a>. With that now fixed, moving forward with other comment-related components should be less problematic. The latest release also introduced the <a href=\"https://github.com/WordPress/gutenberg/pull/36890\">Comments Pagination Numbers block</a> for handling paginated comment lists.</p>\n\n\n\n<h2 id=\"view-templates-without-a-page-reload\">View Templates Without a Page Reload</h2>\n\n\n\n<img />Templates view in the site editor.\n\n\n\n<p class=\"has-drop-cap\">When <a href=\"https://wptavern.com/gutenberg-12-1-fixes-block-appender-layout-shift-adds-template-list-views-and-enhances-global-styles\">Gutenberg 12.1</a> launched two weeks ago, I was happy to see the new and much improved slide-out panel in the site editor for viewing templates. My primary complaint: it was slow. Switching between the editor and template view required a page reload.</p>\n\n\n\n<p>In the latest 12.2 release, this has all changed. Thanks to <a href=\"https://github.com/WordPress/gutenberg/pull/36488\">client-side routing in the site editor</a>, the transition between the editor and templates feels fast and smooth.</p>\n\n\n\n<p>Changes like this are one of the reasons I have welcomed the postponement of WordPress 5.9 until late January. Some of these little wrinkles needed ironing before showing the site editor to the world.</p>\n\n\n\n<h2 id=\"improved-color-picker\">Improved Color Picker</h2>\n\n\n\n<img />Color picker popup.\n\n\n\n<p class=\"has-drop-cap\">Gutenberg 12.2 introduces a <a href=\"https://github.com/WordPress/gutenberg/pull/37067\">much-improved color picker</a>. The previous iteration was unwieldy, bulky to the point of being an annoyance. Users would have to scroll and scroll and scroll some more just to jump between changing a block&#8217;s text color and its link color. This was especially true if the theme showed both its colors and those from core.</p>\n\n\n\n<p>The latest iteration tightens up the UI to the point where users can see the text, background, and link color options all at once. If they want to customize any of them, they can click on one to pull up the color picker popup.</p>\n\n\n\n<p>Perhaps this change will open the door for other color options in the future, such as one for link hover/focus. It would have been far too messy in the old UI. However, the new minimalist design leaves ample room.</p>\n\n\n\n<p>I would love to see the border-color control get the same treatment. However, there is a <a href=\"https://github.com/WordPress/gutenberg/issues/35602\">separate ticket</a> that offers more fine-tuned control.</p>\n\n\n\n<h2 id=\"font-size-ui-change\">Font Size UI Change</h2>\n\n\n\n<img />Numbered-style font-size selector.\n\n\n\n<p class=\"has-drop-cap\">The font size control for supported blocks looks much different. It shows a <a href=\"https://github.com/WordPress/gutenberg/pull/37038\">list of numbered buttons</a> for themes with five or fewer custom sizes. The font-size name appears when one is selected. Otherwise, it is simply a list of numbers with no context.</p>\n\n\n\n<p>I have generally liked the progress made toward updating the block options UI. But, I am not a fan of this change. As a user, what do these numbers even mean? Is the &#8220;1&#8221; size small or medium? There is no way of knowing without testing it. Plus, the context will change from theme to theme. A UI change like this may have been OK on the back of a standardized naming scheme. However, that will be tough to implement after three years of usage.</p>\n\n\n\n<p>In general, clicking a single button feels like a better experience than clicking a dropdown, followed by a second click of making a selection. I am just not sure that it works here. However, I am open to seeing where it goes upon further iteration.</p>\n\n\n\n<p>There is also no visible way to clear the current selection and return to the default size. If the theme supports custom sizes, users can switch to the &#8220;Custom&#8221; field and clear it out. This is not obvious unless you stumble upon it. Users could also hit the &#8220;Reset All&#8221; button, but doing so resets all typography options.</p>\n\n\n\n<p>The easiest way to avoid this UI change is for theme authors to register at least six custom font sizes. The option will automatically revert to its former dropdown select field. Fortunately, I have 13 in the theme I primarily work on, so it is a non-issue for me.</p>\n\n\n\n<h2 id=\"block-template-part-hooks\">Block Template Part Hooks</h2>\n\n\n\n<p class=\"has-drop-cap\">Theme and plugin developers now have <a href=\"https://github.com/WordPress/gutenberg/pull/36884\">additional action hooks</a> around the block template part system. These should be handy for debugging or other complex use cases.</p>\n\n\n\n<ul><li><code>render_block_core_template_part_post</code> fires when a part is found from the database.</li><li><code>render_block_core_template_part_file</code> fires when a part comes from a theme file.</li><li><code>render_block_core_template_part_none</code> fires when no part is located.</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:\"Thu, 23 Dec 2021 01:19:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: WordPress Contributors Discuss the Possibility of 4 Major Releases in 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=127550\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:213:\"https://wptavern.com/wordpress-contributors-discuss-the-possibility-of-4-major-releases-in-2022?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-contributors-discuss-the-possibility-of-4-major-releases-in-2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6344:\"<img />\n\n\n\n<p>Last week, WordPress Executive Director Josepha Haden Chomphosy <a href=\"https://make.wordpress.org/core/2021/12/17/discussion-2022-major-release-timing/\">opened a discussion</a> on how many releases the project will aim for in 2022. </p>\n\n\n\n<p>&#8220;Given that we have a release in January already, I wonder if we might be able to use 2022 to attempt four releases,&#8221; Haden Chomphosy said. She proposed three different release schedules: </p>\n\n\n\n<ul><li>Quarterly releases: January, April, July, October</li><li>Trimester-ly releases: January, May, September</li><li>Known release and then evenly spaced targets?: January, May, August, November</li></ul>\n\n\n\n<p>When she <a href=\"https://wordpress.slack.com/archives/C02RQBWTW/p1639001383392000\">brought it up in the #core Slack channel</a>, a few contributors said they would like to see the project move towards more frequent releases. They were optimistic that it can be done, since a January release is already on the schedule.</p>\n\n\n\n<p>Responses to the post on make.wordpress.org were markedly different. A few commented that they would be comfortable with a quarterly releases as long as they avoid major holidays. Several participants in the conversation have urged WordPress to slow down to two or three releases. Others suggested WordPress simply wait to release new features until they are ready, with no schedule. This particular suggestion makes it difficult for various stakeholders, like hosting companies, agencies, and WordPress product businesses, to plan effectively.</p>\n\n\n\n<p>In 2021, WordPress released version 5.7 in March and 5.8 in July. A third major release planned for December was postponed due to critical blockers and decreased volunteer availability. A jump to four releases next year seems overly ambitious without a change in processes.</p>\n\n\n\n<p>&#8220;Is it realistic to plan four releases for 2022 right after three releases per year plan was not fulfilled?&#8221; Oleg Kharchenko asked in the comments. &#8220;I don’t get what’s the benefit of having more releases just for the sake of number. It looks good in business reports but it has no real value for WordPress users as frequent releases lead to half-baked features which are hard to use. </p>\n\n\n\n<p>&#8220;Also plugin and theme authors will have to put more time into testing instead of their product development. Finally, there are many tickets on Trac with &#8216;early&#8217; keyword which are punted for years just because everybody is too busy to find time to include these tickets in the upcoming release, making the release schedule tighter would worsen this situation even more.&#8221;</p>\n\n\n\n<p>Jessica Lyschik, a developer and an active member of the German WordPress community, said she would prefer two releases for the future.</p>\n\n\n\n<p>&#8220;As several people already mentioned, planning more releases did not work out in the past, so why should it work now?&#8221; Lyschik asked. &#8220;5.9 got postponed to have refined features included so it can be actually used. The complexity of the new features is huge and trying to split that up in smaller releases is not something I see to work in the future.&#8221;</p>\n\n\n\n<p>The roadmap for 2021 originally planned for four major releases but was <a href=\"https://wptavern.com/wordpress-contributors-discuss-scaling-back-releases-4-major-releases-is-not-a-viable-plan-in-2021\">scaled back to three in February</a>. At that time Haden Chomphosy cited a lack of automation and the necessary personnel to execute the plan without risking contributor burnout and update fatigue.</p>\n\n\n\n<p>WordPress core committer John Blackbourn commented on the discussion, urging Haden Chomphosy to elaborate on why she is proposing the potential of more frequent releases. He also requested she summarize the original list of challenges and needed changes and the progress that has been made towards improving them.</p>\n\n\n\n<p>In a post titled &#8220;<a href=\"https://nomad.blog/2021/11/23/why-i-voted-to-delay-wordpress-5-9/\">Why I Voted to Delay WordPress 5.9</a>,&#8221; Anne McCarthy explained a few of the factors and blockers that caused the release to be postponed to January 2022. </p>\n\n\n\n<p>&#8220;What I’d like to understand better is what are we going to do to make sure this doesn’t happen again?&#8221; WordPress 5.9 release lead Matt Mullenweg commented. &#8220;There could always be more polish, more bugs fixed, and I would challenge you to pick a year in the past decade that didn’t have its share of human issues. I’d like us to really understand and agree what went wrong, particularly in the first months of 5.9, and what we’re starting now to make sure 6.0 is effortlessly on time.&#8221;</p>\n\n\n\n<p>McCarthy responded, citing the following reasons: </p>\n\n\n\n<ul><li>lack of contingency plans around the interrelated features </li><li>lack of clarity around scope for various individual features (particularly the browsing feature) </li><li>lack of a comprehensive check in early enough ahead of feature freeze </li><li>a need for more decision makers who have a high level view of where the work is headed</li></ul>\n\n\n\n<p>&#8220;Personally, I’d love to see the Go/No Go meeting overhauled to be less aspirational and more concrete as to where things stand as I think that’ll set the tone early enough in the release cycle to avoid some of these problems again,&#8221; McCarthy said. </p>\n\n\n\n<p>A few of these challenges with 5.9 correspond to the items Haden Chomphosy identified in February as needing to change in order to make WordPress releases easier and more frequent: better testing, more seasoned core developers available with time focused on core, better handoff in design/dev iterations, and shifts in collective philosophies towards continuous development.</p>\n\n\n\n<p>In the absence of a comprehensive 5.9 retrospective, it may be difficult to plan the next year&#8217;s release schedule based on the reality of what contributors experienced most recently. Moving to four major releases will be a tough sell after closing out a year where WordPress could not post three major releases. It will require significant changes to how the work is scoped and managed as it is in process. The topic will be up for discussion again during today&#8217;s weekly core dev chat at 20:00 UTC.</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, 22 Dec 2021 19:50:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}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, 17 Jan 2022 15:41:41 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Mon, 17 Jan 2022 15:15:07 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:\"20201017035008\";}','no');
INSERT INTO `wpob_options` VALUES (343,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1642477301','no'),(344,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1642434101','no'),(345,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1642477301','no'),(346,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/01/episode-23-a-letter-from-wordpress-executive-director/\'>WP Briefing: Episode 23: A letter from WordPress’ Executive Director</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/01/wordpress-5-9-rc-2/\'>WordPress 5.9 RC 2</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://central.wordcamp.org/news/2022/01/17/wp-yall-has-been-postponed-until-the-spring/\'>WordCamp Central: WP Y’all has been Postponed until the Spring</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/01/episode-23-a-letter-from-wordpress-executive-director/\'>WordPress.org blog: WP Briefing: Episode 23: A letter from WordPress’ Executive Director</a></li><li><a class=\'rsswidget\' href=\'https://gutenbergtimes.com/level-up-with-query-block-fse-for-classic-themes-and-the-customizer-isnt-going-anywhere-weekend-edition-199/\'>Gutenberg Times: Level Up with Query Block, FSE for Classic Themes and more – Weekend edition #199</a></li></ul></div>','no'),(350,'can_compress_scripts','1','no'),(355,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1642444959','no'),(352,'action_scheduler_migration_status','complete','yes'),(363,'_transient_timeout_jetpack_file_data_10.5','1644944034','no'),(364,'_transient_jetpack_file_data_10.5','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(390,'tutor_option','a:26:{s:19:\"pagination_per_page\";s:2:\"20\";s:33:\"course_allow_upload_private_files\";s:1:\"1\";s:26:\"display_course_instructors\";s:1:\"1\";s:24:\"enable_q_and_a_on_course\";s:1:\"1\";s:19:\"courses_col_per_row\";s:1:\"1\";s:16:\"courses_per_page\";s:2:\"12\";s:21:\"lesson_permalink_base\";s:6:\"lesson\";s:15:\"quiz_time_limit\";a:2:{s:5:\"value\";s:1:\"0\";s:4:\"time\";s:7:\"minutes\";}s:22:\"quiz_when_time_expires\";s:10:\"autosubmit\";s:21:\"quiz_attempts_allowed\";s:1:\"5\";s:17:\"quiz_grade_method\";s:13:\"highest_grade\";s:21:\"enable_public_profile\";s:1:\"1\";s:17:\"email_to_students\";a:2:{s:14:\"quiz_completed\";s:1:\"1\";s:16:\"completed_course\";s:1:\"1\";}s:20:\"email_to_instructors\";a:4:{s:28:\"a_student_enrolled_in_course\";s:1:\"1\";s:26:\"a_student_completed_course\";s:1:\"1\";s:26:\"a_student_completed_lesson\";s:1:\"1\";s:25:\"a_student_placed_question\";s:1:\"1\";}s:15:\"email_from_name\";s:10:\"The Collab\";s:18:\"email_from_address\";s:21:\"axelrodhahn@gmail.com\";s:17:\"email_footer_text\";s:0:\"\";s:24:\"earning_admin_commission\";s:2:\"20\";s:29:\"earning_instructor_commission\";s:2:\"80\";s:23:\"tutor_dashboard_page_id\";i:11;s:21:\"student_register_page\";i:12;s:24:\"instructor_register_page\";i:13;s:25:\"enable_course_marketplace\";s:1:\"0\";s:20:\"enable_tutor_earning\";s:1:\"0\";s:28:\"disable_default_player_vimeo\";s:1:\"1\";s:33:\"show_courses_completed_by_student\";s:1:\"1\";}','yes'),(392,'tutor_version','1.9.13','yes'),(393,'tutor_first_activation_time','1642437920','yes'),(401,'_transient_timeout_wc_upgrade_notice_6.1.0','1642524485','no'),(394,'tutor_wizard','active','yes'),(395,'widget_tutor_course_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(398,'tutor_withdraw_options','a:1:{i:0;b:0;}','yes'),(400,'recently_activated','a:0:{}','yes'),(402,'_transient_wc_upgrade_notice_6.1.0','','no'),(411,'sharing-options','a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";s:11:\"Share this:\";s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:6:\"custom\";a:0:{}}}','yes'),(412,'stats_options','a:6:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:11:\"count_roles\";a:0:{}s:7:\"blog_id\";b:0;s:12:\"do_not_track\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(413,'jetpack_sync_https_history_home_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(414,'jetpack_sync_https_history_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(415,'_transient_timeout_jetpack_restapi_stats_cache_5382fc32192fe2a5ee0f94b2d6cd6ac7','1642438655','no'),(416,'_transient_jetpack_restapi_stats_cache_5382fc32192fe2a5ee0f94b2d6cd6ac7','a:1:{i:1642438355;O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:13:\"missing_token\";a:1:{i:0;s:0:\"\";}}s:10:\"error_data\";a:0:{}s:18:\"\0*\0additional_data\";a:0:{}}}','no'),(417,'jetpack_tos_agreed','1','yes'),(418,'jetpack_secrets','a:1:{s:19:\"jetpack_authorize_1\";a:3:{s:8:\"secret_1\";s:32:\"CrECtaddC5phdTMr8TXlAD9cLDx8gVYn\";s:8:\"secret_2\";s:32:\"i8HJtpkTQF7wmVPScp6HzBkjGTgrLyKM\";s:3:\"exp\";i:1642445567;}}','no'),(420,'jetpack_package_versions','a:3:{s:6:\"backup\";s:5:\"1.2.0\";s:10:\"connection\";s:6:\"1.34.0\";s:4:\"sync\";s:6:\"1.28.0\";}','yes'),(419,'_transient_jetpack_assumed_site_creation_date','2022-01-17 15:40:57','yes'),(421,'jetpack_private_options','a:2:{s:10:\"blog_token\";s:65:\"rtKSsYuiiUcOzrIFtjwHVm7!TM70y3jc.VSn7&v!WfpRq%Ioi3upuQAYU%(N(Az(6\";s:14:\"purchase_token\";s:12:\"pM0a3o8uK5qV\";}','yes'),(422,'jetpack_active_modules','a:6:{i:0;s:12:\"contact-form\";i:1;s:21:\"enhanced-distribution\";i:2;s:8:\"json-api\";i:3;s:5:\"stats\";i:4;s:18:\"verification-tools\";i:5;s:21:\"woocommerce-analytics\";}','yes'),(423,'jetpack_unique_registrations','1','yes'),(424,'jetpack_sync_settings_max_queue_size','5000','yes'),(425,'jetpack_sync_settings_max_queue_lag','7200','yes'),(426,'jetpack_sync_full_status','a:4:{s:7:\"started\";i:1642438366;s:8:\"finished\";i:1642438369;s:8:\"progress\";a:5:{s:7:\"options\";a:1:{s:8:\"finished\";b:1;}s:9:\"functions\";a:1:{s:8:\"finished\";b:1;}s:9:\"constants\";a:1:{s:8:\"finished\";b:1;}s:5:\"users\";a:4:{s:5:\"total\";s:1:\"1\";s:4:\"sent\";i:1;s:8:\"finished\";b:1;s:9:\"last_sent\";s:1:\"1\";}s:15:\"network_options\";a:1:{s:8:\"finished\";b:1;}}s:6:\"config\";a:5:{s:7:\"options\";b:1;s:9:\"functions\";b:1;s:9:\"constants\";b:1;s:5:\"users\";a:1:{i:0;i:1;}s:15:\"network_options\";b:1;}}','no'),(555,'_transient_jetpack_scan_state','O:8:\"stdClass\":4:{s:5:\"state\";s:11:\"unavailable\";s:7:\"threats\";N;s:9:\"has_cloud\";b:0;s:6:\"reason\";s:23:\"missing_scan_capability\";}','no'),(427,'jetpack_sync_settings_dequeue_max_bytes','500000','yes'),(428,'jetpack_sync_settings_upload_max_bytes','600000','yes'),(429,'jetpack_sync_settings_upload_max_rows','500','yes'),(430,'jetpack_sync_settings_sync_wait_time','10','yes'),(431,'jetpack_sync_settings_sync_wait_threshold','10','yes'),(432,'jetpack_sync_settings_enqueue_wait_time','1','yes'),(433,'jetpack_sync_settings_queue_max_writes_sec','100','yes'),(434,'jetpack_sync_settings_post_types_blacklist','a:0:{}','yes'),(586,'_transient_timeout_jetpack_sync_last_checked_queue_state_sync','1642438525','no'),(587,'_transient_jetpack_sync_last_checked_queue_state_sync','a:2:{i:0;i:0;i:1;i:0;}','no'),(557,'jetpack_next_sync_time_sync','1642438469','yes'),(582,'_transient_timeout_jetpack_restapi_stats_cache_2e63d5022de1fe2245cbd381a82fb796','1642438793','no'),(583,'_transient_jetpack_restapi_stats_cache_2e63d5022de1fe2245cbd381a82fb796','a:1:{i:1642438493;s:1081:\"{\"date\":\"2022-01-17\",\"stats\":{\"visitors_today\":0,\"visitors_yesterday\":0,\"visitors\":0,\"views_today\":0,\"views_yesterday\":0,\"views_best_day\":\"2022-01-17\",\"views_best_day_total\":0,\"views\":0,\"comments\":0,\"posts\":0,\"followers_blog\":0,\"followers_comments\":0,\"comments_per_month\":0,\"comments_most_active_recent_day\":\"\",\"comments_most_active_time\":\"N\\/A\",\"comments_spam\":0,\"categories\":1,\"tags\":0,\"shares\":0,\"shares_twitter\":0,\"shares_facebook\":0},\"visits\":{\"unit\":\"day\",\"fields\":[\"period\",\"views\",\"visitors\"],\"data\":[[\"2021-12-19\",0,0],[\"2021-12-20\",0,0],[\"2021-12-21\",0,0],[\"2021-12-22\",0,0],[\"2021-12-23\",0,0],[\"2021-12-24\",0,0],[\"2021-12-25\",0,0],[\"2021-12-26\",0,0],[\"2021-12-27\",0,0],[\"2021-12-28\",0,0],[\"2021-12-29\",0,0],[\"2021-12-30\",0,0],[\"2021-12-31\",0,0],[\"2022-01-01\",0,0],[\"2022-01-02\",0,0],[\"2022-01-03\",0,0],[\"2022-01-04\",0,0],[\"2022-01-05\",0,0],[\"2022-01-06\",0,0],[\"2022-01-07\",0,0],[\"2022-01-08\",0,0],[\"2022-01-09\",0,0],[\"2022-01-10\",0,0],[\"2022-01-11\",0,0],[\"2022-01-12\",0,0],[\"2022-01-13\",0,0],[\"2022-01-14\",0,0],[\"2022-01-15\",0,0],[\"2022-01-16\",0,0],[\"2022-01-17\",0,0]]}}\";}','no'),(438,'jetpack_sync_settings_taxonomies_blacklist','a:0:{}','yes'),(440,'jetpack_sync_settings_render_filtered_content','0','yes'),(441,'jetpack_sync_settings_post_meta_whitelist','a:0:{}','yes'),(443,'jetpack_sync_settings_comment_meta_whitelist','a:0:{}','yes'),(445,'jetpack_sync_settings_max_enqueue_full_sync','100','yes'),(446,'jetpack_sync_settings_max_queue_size_full_sync','1000','yes'),(447,'jetpack_sync_settings_sync_via_cron','1','yes'),(448,'jetpack_sync_settings_cron_sync_time_limit','240','yes'),(449,'jetpack_sync_settings_known_importers','a:6:{s:16:\"Blogger_Importer\";s:7:\"blogger\";s:13:\"LJ_API_Import\";s:11:\"livejournal\";s:9:\"MT_Import\";s:2:\"mt\";s:10:\"RSS_Import\";s:3:\"rss\";s:20:\"WC_Tax_Rate_Importer\";s:12:\"woo-tax-rate\";s:9:\"WP_Import\";s:9:\"wordpress\";}','yes'),(450,'jetpack_sync_settings_term_relationships_full_sync_item_size','100','yes'),(451,'jetpack_sync_settings_sync_sender_enabled','1','yes'),(452,'jetpack_sync_settings_full_sync_sender_enabled','1','yes'),(453,'jetpack_sync_settings_full_sync_send_duration','9','yes'),(454,'jetpack_sync_settings_full_sync_limits','a:5:{s:8:\"comments\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:5:\"posts\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:1;}s:18:\"term_relationships\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"terms\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"users\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}}','yes'),(455,'jetpack_sync_settings_checksum_disable','0','yes'),(456,'_transient_timeout_jetpack_plugin_api_action_links_refresh','1642524894','no'),(457,'_transient_jetpack_plugin_api_action_links_refresh','1642438494','no'),(458,'jetpack_plugin_api_action_links','a:4:{s:19:\"jetpack/jetpack.php\";a:3:{s:10:\"My Jetpack\";s:54:\"https://the-collab.com/wp-admin/admin.php?page=jetpack\";s:8:\"Settings\";s:64:\"https://the-collab.com/wp-admin/admin.php?page=jetpack#/settings\";s:7:\"Support\";s:63:\"https://the-collab.com/wp-admin/admin.php?page=jetpack-debugger\";}s:23:\"loginizer/loginizer.php\";a:2:{s:8:\"Settings\";s:56:\"https://the-collab.com/wp-admin/admin.php?page=loginizer\";s:7:\"Upgrade\";s:38:\"https://loginizer.com/features#compare\";}s:15:\"tutor/tutor.php\";a:2:{s:14:\"Upgrade to Pro\";s:141:\"https://www.themeum.com/product/tutor-lms/#pricing?utm_source=tutor_plugin_action_link&utm_medium=wordpress_dashboard&utm_campaign=go_premium\";s:8:\"Settings\";s:61:\"https://the-collab.com/wp-admin/admin.php?page=tutor_settings\";}s:27:\"woocommerce/woocommerce.php\";a:1:{s:8:\"Settings\";s:58:\"https://the-collab.com/wp-admin/admin.php?page=wc-settings\";}}','yes'),(459,'jp_sync_last_success_immediate-send','1642438369.7801','no'),(460,'woocommerce_setup_jetpack_opted_in','1','yes'),(461,'_transient_timeout_jetpack_sync_constants_await','1642441967','no'),(462,'_transient_jetpack_sync_constants_await','1642438367.3072','no'),(473,'jetpack_constants_sync_checksum','a:21:{s:7:\"ABSPATH\";i:3895645099;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:16:\"ATOMIC_CLIENT_ID\";i:634125391;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:9:\"FS_METHOD\";i:634125391;s:12:\"IS_PRESSABLE\";i:634125391;s:16:\"JETPACK__VERSION\";i:3528361137;s:11:\"PHP_VERSION\";i:794370206;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:14:\"WP_CONTENT_DIR\";i:699754154;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:8:\"WP_DEBUG\";i:734881840;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_MAX_MEMORY_LIMIT\";i:2267546353;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:17:\"WP_POST_REVISIONS\";i:4261170317;}','yes'),(474,'jetpack_sync_https_history_main_network_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(475,'_transient_timeout_jetpack_is_single_user','1642481567','no'),(476,'_transient_jetpack_is_single_user','1','no'),(584,'_transient_timeout_jetpack_sync_callables_await','1642438555','no'),(585,'_transient_jetpack_sync_callables_await','1642438495.486','no'),(564,'_transient_timeout_jetpack_jitm_09d7c2fd781640981af7c4851813c07','1642438785','no'),(565,'_transient_jetpack_jitm_09d7c2fd781640981af7c4851813c07','a:2:{i:0;O:8:\"stdClass\":12:{s:7:\"content\";O:8:\"stdClass\":7:{s:7:\"message\";s:51:\"Protect your WooCommerce Store with Jetpack Backup.\";s:4:\"icon\";s:7:\"jetpack\";s:4:\"list\";a:0:{}s:11:\"description\";s:104:\"Store downtime means lost sales. One-click restores get you back online quickly if something goes wrong.\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:10:\"disclaimer\";a:0:{}}s:3:\"CTA\";O:8:\"stdClass\":5:{s:7:\"message\";s:11:\"Get backups\";s:4:\"hook\";s:0:\"\";s:9:\"newWindow\";b:1;s:7:\"primary\";b:1;s:4:\"link\";s:0:\"\";}s:8:\"template\";s:7:\"default\";s:3:\"ttl\";i:300;s:2:\"id\";s:18:\"backup-woocommerce\";s:13:\"feature_class\";s:6:\"backup\";s:7:\"expires\";i:3628800;s:13:\"max_dismissal\";i:2;s:15:\"activate_module\";N;s:14:\"is_dismissible\";b:1;s:26:\"is_user_created_by_partner\";N;s:18:\"message_expiration\";N;}s:18:\"last_response_time\";i:1642438485;}','no'),(566,'jetpack_site_products','a:0:{}','yes'),(567,'jetpack_active_plan','a:10:{s:10:\"product_id\";i:2002;s:12:\"product_slug\";s:12:\"jetpack_free\";s:12:\"product_name\";s:12:\"Jetpack Free\";s:18:\"product_name_short\";s:4:\"Free\";s:7:\"expired\";b:0;s:14:\"billing_period\";s:0:\"\";s:13:\"user_is_owner\";b:0;s:7:\"is_free\";b:1;s:11:\"license_key\";s:0:\"\";s:8:\"features\";a:2:{s:6:\"active\";a:7:{i:0;s:17:\"security-settings\";i:1;s:12:\"advanced-seo\";i:2;s:18:\"upload-video-files\";i:3;s:7:\"akismet\";i:4;s:14:\"send-a-message\";i:5;s:15:\"whatsapp-button\";i:6;s:15:\"social-previews\";}s:9:\"available\";a:27:{s:16:\"google-analytics\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:17:\"security-settings\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:12:\"advanced-seo\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:18:\"upload-video-files\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:13:\"video-hosting\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:15:\"wordads-jetpack\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:7:\"akismet\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:18:\"vaultpress-backups\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:25:\"vaultpress-backup-archive\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:24:\"vaultpress-storage-space\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:29:\"vaultpress-automated-restores\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:15:\"simple-payments\";a:10:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";}s:8:\"calendly\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:9:\"opentable\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:14:\"send-a-message\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:15:\"whatsapp-button\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:15:\"social-previews\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:9:\"donations\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:10:\"core/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:10:\"core/cover\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:10:\"core/audio\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:11:\"republicize\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:25:\"premium-content/container\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:7:\"support\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:14:\"premium-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:28:\"vaultpress-security-scanning\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:9:\"polldaddy\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}}}}','yes'),(568,'_transient_timeout_jetpack_jitm_a2649f66cddcf7b1fc91d04e296bb4f','1642438748','no'),(569,'_transient_jetpack_jitm_a2649f66cddcf7b1fc91d04e296bb4f','a:1:{s:18:\"last_response_time\";i:1642438448;}','no'),(596,'_transient_timeout_jetpack_jitm_de4bf39f33f75fdfe15b070690be2a1','1642438802','no'),(597,'_transient_jetpack_jitm_de4bf39f33f75fdfe15b070690be2a1','a:2:{i:0;O:8:\"stdClass\":12:{s:7:\"content\";O:8:\"stdClass\":7:{s:7:\"message\";s:51:\"Protect your WooCommerce Store with Jetpack Backup.\";s:4:\"icon\";s:7:\"jetpack\";s:4:\"list\";a:0:{}s:11:\"description\";s:104:\"Store downtime means lost sales. One-click restores get you back online quickly if something goes wrong.\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:10:\"disclaimer\";a:0:{}}s:3:\"CTA\";O:8:\"stdClass\":5:{s:7:\"message\";s:11:\"Get backups\";s:4:\"hook\";s:0:\"\";s:9:\"newWindow\";b:1;s:7:\"primary\";b:1;s:4:\"link\";s:0:\"\";}s:8:\"template\";s:7:\"default\";s:3:\"ttl\";i:300;s:2:\"id\";s:18:\"backup-woocommerce\";s:13:\"feature_class\";s:6:\"backup\";s:7:\"expires\";i:3628800;s:13:\"max_dismissal\";i:2;s:15:\"activate_module\";N;s:14:\"is_dismissible\";b:1;s:26:\"is_user_created_by_partner\";N;s:18:\"message_expiration\";N;}s:18:\"last_response_time\";i:1642438502;}','no'),(598,'boldgrid_backup_in_progress_data','a:7:{s:6:\"status\";s:22:\"Backing up database...\";s:12:\"log_filename\";s:22:\"archive-1642438519.log\";s:3:\"pid\";i:2731390;s:10:\"start_time\";i:1642438519;s:7:\"trigger\";s:35:\"axelrodhahn (axelrodhahn@gmail.com)\";s:6:\"tables\";a:51:{i:0;s:28:\"wpob_actionscheduler_actions\";i:1;s:27:\"wpob_actionscheduler_claims\";i:2;s:27:\"wpob_actionscheduler_groups\";i:3;s:25:\"wpob_actionscheduler_logs\";i:4;s:16:\"wpob_commentmeta\";i:5;s:13:\"wpob_comments\";i:6;s:10:\"wpob_links\";i:7;s:19:\"wpob_loginizer_logs\";i:8;s:12:\"wpob_options\";i:9;s:13:\"wpob_postmeta\";i:10;s:10:\"wpob_posts\";i:11;s:23:\"wpob_term_relationships\";i:12;s:18:\"wpob_term_taxonomy\";i:13;s:13:\"wpob_termmeta\";i:14;s:10:\"wpob_terms\";i:15;s:19:\"wpob_tutor_earnings\";i:16;s:31:\"wpob_tutor_quiz_attempt_answers\";i:17;s:24:\"wpob_tutor_quiz_attempts\";i:18;s:32:\"wpob_tutor_quiz_question_answers\";i:19;s:25:\"wpob_tutor_quiz_questions\";i:20;s:20:\"wpob_tutor_withdraws\";i:21;s:13:\"wpob_usermeta\";i:22;s:10:\"wpob_users\";i:23;s:26:\"wpob_wc_admin_note_actions\";i:24;s:19:\"wpob_wc_admin_notes\";i:25;s:23:\"wpob_wc_category_lookup\";i:26;s:23:\"wpob_wc_customer_lookup\";i:27;s:20:\"wpob_wc_download_log\";i:28;s:27:\"wpob_wc_order_coupon_lookup\";i:29;s:28:\"wpob_wc_order_product_lookup\";i:30;s:19:\"wpob_wc_order_stats\";i:31;s:24:\"wpob_wc_order_tax_lookup\";i:32;s:27:\"wpob_wc_product_meta_lookup\";i:33;s:22:\"wpob_wc_reserved_stock\";i:34;s:24:\"wpob_wc_tax_rate_classes\";i:35;s:16:\"wpob_wc_webhooks\";i:36;s:25:\"wpob_woocommerce_api_keys\";i:37;s:37:\"wpob_woocommerce_attribute_taxonomies\";i:38;s:49:\"wpob_woocommerce_downloadable_product_permissions\";i:39;s:20:\"wpob_woocommerce_log\";i:40;s:31:\"wpob_woocommerce_order_itemmeta\";i:41;s:28:\"wpob_woocommerce_order_items\";i:42;s:34:\"wpob_woocommerce_payment_tokenmeta\";i:43;s:31:\"wpob_woocommerce_payment_tokens\";i:44;s:25:\"wpob_woocommerce_sessions\";i:45;s:40:\"wpob_woocommerce_shipping_zone_locations\";i:46;s:38:\"wpob_woocommerce_shipping_zone_methods\";i:47;s:31:\"wpob_woocommerce_shipping_zones\";i:48;s:35:\"wpob_woocommerce_tax_rate_locations\";i:49;s:26:\"wpob_woocommerce_tax_rates\";i:50;s:17:\"wpob_wpforms_lite\";}s:4:\"step\";i:1;}','yes'),(552,'jetpack_last_connect_url_check','1642438495','no'),(554,'_transient_timeout_jetpack_scan_state','1642440285','no'),(549,'post_by_email_address1','NULL','yes'),(550,'_transient_timeout_jetpack_restapi_stats_cache_dac135d31f874001bc334449f5de084f','1642438707','no'),(551,'_transient_jetpack_restapi_stats_cache_dac135d31f874001bc334449f5de084f','a:1:{i:1642438407;s:1071:\"{\"date\":\"2022-01-17\",\"stats\":{\"visitors_today\":0,\"visitors_yesterday\":0,\"visitors\":0,\"views_today\":0,\"views_yesterday\":0,\"views_best_day\":\"\",\"views_best_day_total\":0,\"views\":0,\"comments\":0,\"posts\":0,\"followers_blog\":0,\"followers_comments\":0,\"comments_per_month\":0,\"comments_most_active_recent_day\":\"\",\"comments_most_active_time\":\"N\\/A\",\"comments_spam\":0,\"categories\":1,\"tags\":0,\"shares\":0,\"shares_twitter\":0,\"shares_facebook\":0},\"visits\":{\"unit\":\"day\",\"fields\":[\"period\",\"views\",\"visitors\"],\"data\":[[\"2021-12-19\",0,0],[\"2021-12-20\",0,0],[\"2021-12-21\",0,0],[\"2021-12-22\",0,0],[\"2021-12-23\",0,0],[\"2021-12-24\",0,0],[\"2021-12-25\",0,0],[\"2021-12-26\",0,0],[\"2021-12-27\",0,0],[\"2021-12-28\",0,0],[\"2021-12-29\",0,0],[\"2021-12-30\",0,0],[\"2021-12-31\",0,0],[\"2022-01-01\",0,0],[\"2022-01-02\",0,0],[\"2022-01-03\",0,0],[\"2022-01-04\",0,0],[\"2022-01-05\",0,0],[\"2022-01-06\",0,0],[\"2022-01-07\",0,0],[\"2022-01-08\",0,0],[\"2022-01-09\",0,0],[\"2022-01-10\",0,0],[\"2022-01-11\",0,0],[\"2022-01-12\",0,0],[\"2022-01-13\",0,0],[\"2022-01-14\",0,0],[\"2022-01-15\",0,0],[\"2022-01-16\",0,0],[\"2022-01-17\",0,0]]}}\";}','no'),(529,'jetpack_next_sync_time_full-sync-enqueue','1642438370','yes'),(538,'jetpack_nonce_1642438373_h9S0Wwnezr','1642438374','no'),(539,'jetpack_nonce_1642438374_BYTxQCwRuu','1642438375','no'),(540,'jetpack_nonce_1642438375_rR2VA8p22n','1642438376','no'),(541,'_transient_dirsize_cache','a:5:{s:55:\"/home/aaxelr5/the-collab.com/wp-content/uploads/2022/01\";i:0;s:52:\"/home/aaxelr5/the-collab.com/wp-content/uploads/2022\";i:0;s:67:\"/home/aaxelr5/the-collab.com/wp-content/uploads/woocommerce_uploads\";i:13;s:55:\"/home/aaxelr5/the-collab.com/wp-content/uploads/wc-logs\";i:13;s:47:\"/home/aaxelr5/the-collab.com/wp-content/uploads\";i:270355;}','yes'),(537,'jetpack_nonce_1642438370_uHiIy5Edxy','1642438371','no'),(542,'jetpack_nonce_1642438376_TO0dV1jGHY','1642438377','no'),(543,'_transient_timeout_jetpack_a8c_data','1642524806','no'),(526,'jetpack_testimonial','0','yes'),(544,'_transient_jetpack_a8c_data','a:4:{s:4:\"a12s\";i:1881;s:9:\"countries\";i:96;s:9:\"languages\";i:120;s:16:\"featured_plugins\";a:4:{i:0;s:11:\"woocommerce\";i:1;s:14:\"wp-super-cache\";i:2;s:14:\"wp-job-manager\";i:3;s:15:\"co-authors-plus\";}}','no'),(560,'_transient_timeout_jetpack_rewind_state','1642440285','no'),(561,'_transient_jetpack_rewind_state','O:8:\"stdClass\":4:{s:6:\"reason\";s:8:\"site_new\";s:5:\"state\";s:11:\"unavailable\";s:12:\"last_updated\";s:29:\"2022-01-17T16:54:45.270+00:00\";s:9:\"has_cloud\";b:0;}','no'),(558,'_transient_timeout_jetpack_jitm_8a66ad369989d092fa7de6d444d2ff7','1642438720','no'),(559,'_transient_jetpack_jitm_8a66ad369989d092fa7de6d444d2ff7','a:1:{s:18:\"last_response_time\";i:1642438420;}','no'),(532,'jetpack_content_post_details_tags','1','yes'),(533,'jetpack_content_post_details_author','1','yes'),(534,'jetpack_content_post_details_comment','1','yes'),(535,'verification_services_codes','0','yes'),(519,'jp_sync_lock_full_sync','','no'),(520,'jetpack_nonce_1642438367_38s3LCtzhN','1642438368','no'),(530,'jetpack_content_post_details_date','1','yes'),(531,'jetpack_content_post_details_categories','1','yes'),(523,'wpcom_publish_posts_with_markdown','1','yes'),(516,'jetpack_callables_sync_checksum','a:37:{s:11:\"get_plugins\";i:3024428633;s:24:\"get_plugins_action_links\";i:1797512125;s:28:\"has_file_system_write_access\";i:4261170317;s:8:\"home_url\";i:2544882373;s:16:\"hosting_provider\";i:769900095;s:12:\"is_fse_theme\";i:734881840;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:21:\"is_version_controlled\";i:734881840;s:6:\"locale\";i:110763218;s:17:\"main_network_site\";i:2544882373;s:26:\"main_network_site_wpcom_id\";i:1395730163;s:14:\"paused_plugins\";i:223132457;s:13:\"paused_themes\";i:223132457;s:18:\"post_type_features\";i:474882088;s:10:\"post_types\";i:2465101859;s:27:\"rest_api_allowed_post_types\";i:710265342;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:5:\"roles\";i:2658188243;s:10:\"shortcodes\";i:3243814718;s:13:\"site_icon_url\";i:734881840;s:8:\"site_url\";i:2544882373;s:10:\"taxonomies\";i:2693615608;s:13:\"theme_support\";i:1923249851;s:8:\"timezone\";i:3808505409;s:23:\"wp_get_environment_type\";i:1138987844;s:18:\"wp_max_upload_size\";i:1819132959;s:10:\"wp_version\";i:3377426368;s:16:\"single_user_site\";i:4261170317;s:7:\"updates\";i:2903718415;s:14:\"active_modules\";i:260337649;s:24:\"available_jetpack_blocks\";i:3401387318;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;}','no'),(517,'jpsq_sync_checkout','0:0','no'),(518,'jp_sync_last_success_sync','1642438495.7154','no');
/*!40000 ALTER TABLE `wpob_options` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_options` with 444 row(s)
--

--
-- Table structure for table `wpob_users`
--

DROP TABLE IF EXISTS `wpob_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_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=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_users`
--

LOCK TABLES `wpob_users` WRITE;
/*!40000 ALTER TABLE `wpob_users` DISABLE KEYS */;
INSERT INTO `wpob_users` VALUES (1,'axelrodhahn','$P$B.TJlOCO/JXFDk6PzpJs8PkFPpfBef0','axelrodhahn','axelrodhahn@gmail.com','https://the-collab.com','2022-01-17 15:40:57','',0,'axelrodhahn');
/*!40000 ALTER TABLE `wpob_users` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_users` with 1 row(s)
--

--
-- Table structure for table `wpob_postmeta`
--

DROP TABLE IF EXISTS `wpob_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_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=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_postmeta`
--

LOCK TABLES `wpob_postmeta` WRITE;
/*!40000 ALTER TABLE `wpob_postmeta` DISABLE KEYS */;
INSERT INTO `wpob_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,4,'_wp_attached_file','woocommerce-placeholder.png'),(4,4,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
/*!40000 ALTER TABLE `wpob_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_postmeta` with 4 row(s)
--

--
-- Table structure for table `wpob_tutor_quiz_question_answers`
--

DROP TABLE IF EXISTS `wpob_tutor_quiz_question_answers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_tutor_quiz_question_answers` (
  `answer_id` int(11) NOT NULL AUTO_INCREMENT,
  `belongs_question_id` int(11) DEFAULT NULL,
  `belongs_question_type` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `answer_title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_correct` tinyint(4) DEFAULT NULL,
  `image_id` int(11) DEFAULT NULL,
  `answer_two_gap_match` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `answer_view_format` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `answer_settings` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `answer_order` int(11) DEFAULT 0,
  PRIMARY KEY (`answer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_tutor_quiz_question_answers`
--

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

-- Dumped table `wpob_tutor_quiz_question_answers` with 0 row(s)
--

--
-- Table structure for table `wpob_tutor_quiz_attempt_answers`
--

DROP TABLE IF EXISTS `wpob_tutor_quiz_attempt_answers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_tutor_quiz_attempt_answers` (
  `attempt_answer_id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `quiz_id` int(11) DEFAULT NULL,
  `question_id` int(11) DEFAULT NULL,
  `quiz_attempt_id` int(11) DEFAULT NULL,
  `given_answer` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `question_mark` decimal(8,2) DEFAULT NULL,
  `achieved_mark` decimal(8,2) DEFAULT NULL,
  `minus_mark` decimal(8,2) DEFAULT NULL,
  `is_correct` tinyint(4) DEFAULT NULL,
  PRIMARY KEY (`attempt_answer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_tutor_quiz_attempt_answers`
--

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

-- Dumped table `wpob_tutor_quiz_attempt_answers` with 0 row(s)
--

--
-- Table structure for table `wpob_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wpob_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_actionscheduler_logs`
--

LOCK TABLES `wpob_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wpob_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wpob_actionscheduler_logs` VALUES (1,5,'action created','2022-01-17 15:41:32','2022-01-17 15:41:32'),(2,5,'action started via WP Cron','2022-01-17 15:42:39','2022-01-17 15:42:39'),(3,5,'action complete via WP Cron','2022-01-17 15:42:39','2022-01-17 15:42:39');
/*!40000 ALTER TABLE `wpob_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_actionscheduler_logs` with 3 row(s)
--

--
-- Table structure for table `wpob_termmeta`
--

DROP TABLE IF EXISTS `wpob_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_termmeta`
--

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

-- Dumped table `wpob_termmeta` with 0 row(s)
--

--
-- Table structure for table `wpob_tutor_quiz_attempts`
--

DROP TABLE IF EXISTS `wpob_tutor_quiz_attempts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_tutor_quiz_attempts` (
  `attempt_id` int(11) NOT NULL AUTO_INCREMENT,
  `course_id` int(11) DEFAULT NULL,
  `quiz_id` int(11) DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  `total_questions` int(11) DEFAULT NULL,
  `total_answered_questions` int(11) DEFAULT NULL,
  `total_marks` decimal(9,2) DEFAULT NULL,
  `earned_marks` decimal(9,2) DEFAULT NULL,
  `attempt_info` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attempt_status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attempt_ip` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attempt_started_at` datetime DEFAULT NULL,
  `attempt_ended_at` datetime DEFAULT NULL,
  `is_manually_reviewed` int(1) DEFAULT NULL,
  `manually_reviewed_at` datetime DEFAULT NULL,
  PRIMARY KEY (`attempt_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_tutor_quiz_attempts`
--

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

-- Dumped table `wpob_tutor_quiz_attempts` with 0 row(s)
--

--
-- Table structure for table `wpob_posts`
--

DROP TABLE IF EXISTS `wpob_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_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=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_posts`
--

LOCK TABLES `wpob_posts` WRITE;
/*!40000 ALTER TABLE `wpob_posts` DISABLE KEYS */;
INSERT INTO `wpob_posts` VALUES (1,1,'2022-01-17 15:40:57','2022-01-17 15:40:57','<!-- 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','','','2022-01-17 15:40:57','2022-01-17 15:40:57','',0,'https://the-collab.com/?p=1',0,'post','',1),(2,1,'2022-01-17 15:40:57','2022-01-17 15:40:57','<!-- 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://the-collab.com/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','','','2022-01-17 15:40:57','2022-01-17 15:40:57','',0,'https://the-collab.com/?page_id=2',0,'page','',0),(3,1,'2022-01-17 15:40:57','2022-01-17 15:40:57','<!-- 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://the-collab.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where 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','','','2022-01-17 15:40:57','2022-01-17 15:40:57','',0,'https://the-collab.com/?page_id=3',0,'page','',0),(4,1,'2022-01-17 15:41:31','2022-01-17 15:41:31','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2022-01-17 15:41:31','2022-01-17 15:41:31','',0,'https://the-collab.com/wp-content/uploads/2022/01/woocommerce-placeholder.png',0,'attachment','image/png',0),(5,1,'2022-01-17 15:41:32','2022-01-17 15:41:32','','Shop','','publish','closed','closed','','shop','','','2022-01-17 15:41:32','2022-01-17 15:41:32','',0,'https://the-collab.com/shop/',0,'page','',0),(6,1,'2022-01-17 15:41:32','2022-01-17 15:41:32','<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->','Cart','','publish','closed','closed','','cart','','','2022-01-17 15:41:32','2022-01-17 15:41:32','',0,'https://the-collab.com/cart/',0,'page','',0),(7,1,'2022-01-17 15:41:32','2022-01-17 15:41:32','<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->','Checkout','','publish','closed','closed','','checkout','','','2022-01-17 15:41:32','2022-01-17 15:41:32','',0,'https://the-collab.com/checkout/',0,'page','',0),(8,1,'2022-01-17 15:41:32','2022-01-17 15:41:32','<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->','My account','','publish','closed','closed','','my-account','','','2022-01-17 15:41:32','2022-01-17 15:41:32','',0,'https://the-collab.com/my-account/',0,'page','',0),(9,1,'2022-01-17 15:41:32','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p><b>This is a sample page.</b></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h3>Overview</h3>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our refund and returns policy lasts 30 days. If 30 days have passed since your purchase, we can’t offer you a full refund or exchange.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To be eligible for a return, your item must be unused and in the same condition that you received it. It must also be in the original packaging.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Several types of goods are exempt from being returned. Perishable goods such as food, flowers, newspapers or magazines cannot be returned. We also do not accept products that are intimate or sanitary goods, hazardous materials, or flammable liquids or gases.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additional non-returnable items:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>Gift cards</li>\n<li>Downloadable software products</li>\n<li>Some health and personal care items</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>To complete your return, we require a receipt or proof of purchase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Please do not send your purchase back to the manufacturer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There are certain situations where only partial refunds are granted:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>Book with obvious signs of use</li>\n<li>CD, DVD, VHS tape, software, video game, cassette tape, or vinyl record that has been opened.</li>\n<li>Any item not in its original condition, is damaged or missing parts for reasons not due to our error.</li>\n<li>Any item that is returned more than 30 days after delivery</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<h2>Refunds</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once your return is received and inspected, we will send you an email to notify you that we have received your returned item. We will also notify you of the approval or rejection of your refund.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are approved, then your refund will be processed, and a credit will automatically be applied to your credit card or original method of payment, within a certain amount of days.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<b>Late or missing refunds</b>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you haven’t received a refund yet, first check your bank account again.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then contact your credit card company, it may take some time before your refund is officially posted.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Next contact your bank. There is often some processing time before a refund is posted.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you’ve done all of this and you still have not received your refund yet, please contact us at {email address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<b>Sale items</b>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Only regular priced items may be refunded. Sale items cannot be refunded.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Exchanges</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We only replace items if they are defective or damaged. If you need to exchange it for the same item, send us an email at {email address} and send your item to: {physical address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Gifts</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If the item was marked as a gift when purchased and shipped directly to you, you’ll receive a gift credit for the value of your return. Once the returned item is received, a gift certificate will be mailed to you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If the item wasn’t marked as a gift when purchased, or the gift giver had the order shipped to themselves to give to you later, we will send a refund to the gift giver and they will find out about your return.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Shipping returns</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To return your product, you should mail your product to: {physical address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You will be responsible for paying for your own shipping costs for returning your item. Shipping costs are non-refundable. If you receive a refund, the cost of return shipping will be deducted from your refund.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Depending on where you live, the time it may take for your exchanged product to reach you may vary.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are returning more expensive items, you may consider using a trackable shipping service or purchasing shipping insurance. We don’t guarantee that we will receive your returned item.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Need help?</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us at {email} for questions related to refunds and returns.</p>\n<!-- /wp:paragraph -->','Refund and Returns Policy','','draft','closed','closed','','refund_returns','','','2022-01-17 15:41:32','0000-00-00 00:00:00','',0,'https://the-collab.com/?page_id=9',0,'page','',0),(10,1,'2022-01-17 15:41:35','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2022-01-17 15:41:35','0000-00-00 00:00:00','',0,'https://the-collab.com/?p=10',0,'post','',0),(11,1,'2022-01-17 16:45:20','2022-01-17 16:45:20','','Dashboard','','publish','closed','closed','','dashboard','','','2022-01-17 16:45:20','2022-01-17 16:45:20','',0,'https://the-collab.com/dashboard/',0,'page','',0),(12,1,'2022-01-17 16:45:20','2022-01-17 16:45:20','[tutor_student_registration_form]','Student Registration','','publish','closed','closed','','student-registration','','','2022-01-17 16:45:20','2022-01-17 16:45:20','',0,'https://the-collab.com/student-registration/',0,'page','',0),(13,1,'2022-01-17 16:45:20','2022-01-17 16:45:20','[tutor_instructor_registration_form]','Instructor Registration','','publish','closed','closed','','instructor-registration','','','2022-01-17 16:45:20','2022-01-17 16:45:20','',0,'https://the-collab.com/instructor-registration/',0,'page','',0),(14,1,'2022-01-17 16:47:04','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2022-01-17 16:47:04','0000-00-00 00:00:00','',0,'https://the-collab.com/?post_type=courses&p=14',0,'courses','',0);
/*!40000 ALTER TABLE `wpob_posts` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_posts` with 14 row(s)
--

--
-- Table structure for table `wpob_wc_webhooks`
--

DROP TABLE IF EXISTS `wpob_wc_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `secret` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `topic` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT 0,
  `pending_delivery` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_wc_webhooks`
--

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

-- Dumped table `wpob_wc_webhooks` with 0 row(s)
--

--
-- Table structure for table `wpob_actionscheduler_groups`
--

DROP TABLE IF EXISTS `wpob_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpob_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpob_actionscheduler_groups`
--

LOCK TABLES `wpob_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wpob_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wpob_actionscheduler_groups` VALUES (1,'action-scheduler-migration');
/*!40000 ALTER TABLE `wpob_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpob_actionscheduler_groups` with 1 row(s)
--

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

-- Dump completed on: Mon, 17 Jan 2022 16:55:20 +0000
