-- mysqldump-php https://github.com/ifsnop/mysqldump-php
--
-- Host: localhost	Database: ed06955_wp40
-- ------------------------------------------------------
-- Server version 	5.5.5-10.5.22-MariaDB-log
-- Date: Tue, 07 Nov 2023 20:25:02 +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 `wp9q_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wp9q_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) NOT NULL,
  `location_type` varchar(40) 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_woocommerce_shipping_zone_locations`
--

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

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

--
-- Table structure for table `wp9q_wc_orders_meta`
--

DROP TABLE IF EXISTS `wp9q_wc_orders_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_wc_orders_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned DEFAULT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `meta_key_value` (`meta_key`(100),`meta_value`(82)),
  KEY `order_id_meta_key_meta_value` (`order_id`,`meta_key`(100),`meta_value`(82))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_wc_orders_meta`
--

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

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

--
-- Table structure for table `wp9q_wc_order_operational_data`
--

DROP TABLE IF EXISTS `wp9q_wc_order_operational_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_wc_order_operational_data` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned DEFAULT NULL,
  `created_via` varchar(100) DEFAULT NULL,
  `woocommerce_version` varchar(20) DEFAULT NULL,
  `prices_include_tax` tinyint(1) DEFAULT NULL,
  `coupon_usages_are_counted` tinyint(1) DEFAULT NULL,
  `download_permission_granted` tinyint(1) DEFAULT NULL,
  `cart_hash` varchar(100) DEFAULT NULL,
  `new_order_email_sent` tinyint(1) DEFAULT NULL,
  `order_key` varchar(100) DEFAULT NULL,
  `order_stock_reduced` tinyint(1) DEFAULT NULL,
  `date_paid_gmt` datetime DEFAULT NULL,
  `date_completed_gmt` datetime DEFAULT NULL,
  `shipping_tax_amount` decimal(26,8) DEFAULT NULL,
  `shipping_total_amount` decimal(26,8) DEFAULT NULL,
  `discount_tax_amount` decimal(26,8) DEFAULT NULL,
  `discount_total_amount` decimal(26,8) DEFAULT NULL,
  `recorded_sales` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `order_id` (`order_id`),
  KEY `order_key` (`order_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_wc_order_operational_data`
--

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

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

--
-- Table structure for table `wp9q_wc_download_log`
--

DROP TABLE IF EXISTS `wp9q_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_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) DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_wc_download_log`
--

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

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

--
-- Table structure for table `wp9q_postmeta`
--

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

--
-- Dumping data for table `wp9q_postmeta`
--

LOCK TABLES `wp9q_postmeta` WRITE;
/*!40000 ALTER TABLE `wp9q_postmeta` DISABLE KEYS */;
INSERT INTO `wp9q_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:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:8:\"filesize\";i:102644;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{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:8:\"filesize\";i:10547;}s:5:\"large\";a:5:{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:8:\"filesize\";i:84286;}s:9:\"thumbnail\";a:5:{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:8:\"filesize\";i:3767;}s:12:\"medium_large\";a:5:{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:8:\"filesize\";i:49609;}}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:{}}}'),(5,11,'origin','plugin'),(6,12,'origin','plugin');
/*!40000 ALTER TABLE `wp9q_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp9q_postmeta` with 6 row(s)
--

--
-- Table structure for table `wp9q_woocommerce_log`
--

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

--
-- Dumping data for table `wp9q_woocommerce_log`
--

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

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

--
-- Table structure for table `wp9q_wc_admin_notes`
--

DROP TABLE IF EXISTS `wp9q_wc_admin_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_wc_admin_notes` (
  `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `type` varchar(20) NOT NULL,
  `locale` varchar(20) NOT NULL,
  `title` longtext NOT NULL,
  `content` longtext NOT NULL,
  `content_data` longtext DEFAULT NULL,
  `status` varchar(200) NOT NULL,
  `source` varchar(200) 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) NOT NULL DEFAULT '',
  `image` varchar(200) DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT 0,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `icon` varchar(200) NOT NULL DEFAULT 'info',
  PRIMARY KEY (`note_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_wc_admin_notes`
--

LOCK TABLES `wp9q_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wp9q_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wp9q_wc_admin_notes` VALUES (1,'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','2023-11-07 20:23:02',NULL,0,'plain','',0,0,'info'),(2,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2023-11-07 20:23:03',NULL,0,'plain','',0,0,'info'),(4,'wc-update-db-reminder','update','en_US','WooCommerce database update required','WooCommerce has been updated! To keep things running smoothly, we have to update your database to the newest version. The database update process runs in the background and may take a little while, so please be patient. Advanced users can alternatively update via <a href=\"https://github.com/woocommerce/woocommerce/wiki/Upgrading-the-database-using-WP-CLI\">WP CLI</a>.','{}','unactioned','woocommerce-core','2023-11-07 20:24:54',NULL,0,'plain','',0,0,'info');
/*!40000 ALTER TABLE `wp9q_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

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

--
-- Table structure for table `wp9q_wc_rate_limits`
--

DROP TABLE IF EXISTS `wp9q_wc_rate_limits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_wc_rate_limits` (
  `rate_limit_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `rate_limit_key` varchar(200) NOT NULL,
  `rate_limit_expiry` bigint(20) unsigned NOT NULL,
  `rate_limit_remaining` smallint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`rate_limit_id`),
  UNIQUE KEY `rate_limit_key` (`rate_limit_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_wc_rate_limits`
--

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

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

--
-- Table structure for table `wp9q_wc_product_attributes_lookup`
--

DROP TABLE IF EXISTS `wp9q_wc_product_attributes_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_wc_product_attributes_lookup` (
  `product_id` bigint(20) NOT NULL,
  `product_or_parent_id` bigint(20) NOT NULL,
  `taxonomy` varchar(32) NOT NULL,
  `term_id` bigint(20) NOT NULL,
  `is_variation_attribute` tinyint(1) NOT NULL,
  `in_stock` tinyint(1) NOT NULL,
  PRIMARY KEY (`product_or_parent_id`,`term_id`,`product_id`,`taxonomy`),
  KEY `is_variation_attribute_term_id` (`is_variation_attribute`,`term_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_wc_product_attributes_lookup`
--

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

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

--
-- Table structure for table `wp9q_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wp9q_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text 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=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_actionscheduler_logs`
--

LOCK TABLES `wp9q_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wp9q_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wp9q_actionscheduler_logs` VALUES (1,5,'action created','2023-11-07 20:23:02','2023-11-07 20:23:02'),(2,6,'action created','2023-11-07 20:23:02','2023-11-07 20:23:02'),(3,7,'action created','2023-11-07 20:23:03','2023-11-07 20:23:03'),(4,5,'action started via Async Request','2023-11-07 20:23:05','2023-11-07 20:23:05'),(5,5,'action complete via Async Request','2023-11-07 20:23:05','2023-11-07 20:23:05'),(6,7,'action started via Async Request','2023-11-07 20:23:05','2023-11-07 20:23:05'),(7,7,'action complete via Async Request','2023-11-07 20:23:05','2023-11-07 20:23:05'),(8,8,'action created','2023-11-07 20:23:05','2023-11-07 20:23:05'),(9,6,'action started via Async Request','2023-11-07 20:24:09','2023-11-07 20:24:09'),(10,6,'action complete via Async Request','2023-11-07 20:24:09','2023-11-07 20:24:09'),(11,9,'action created','2023-11-07 20:24:53','2023-11-07 20:24:53');
/*!40000 ALTER TABLE `wp9q_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp9q_actionscheduler_logs` with 11 row(s)
--

--
-- Table structure for table `wp9q_woocommerce_payment_tokenmeta`
--

DROP TABLE IF EXISTS `wp9q_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_token_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_woocommerce_payment_tokenmeta`
--

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

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

--
-- Table structure for table `wp9q_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wp9q_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) NOT NULL,
  `token` text NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `type` varchar(200) 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_woocommerce_payment_tokens`
--

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

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

--
-- Table structure for table `wp9q_wc_product_meta_lookup`
--

DROP TABLE IF EXISTS `wp9q_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) 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) 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) DEFAULT 'taxable',
  `tax_class` varchar(100) 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_wc_product_meta_lookup`
--

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

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

--
-- Table structure for table `wp9q_woocommerce_order_itemmeta`
--

DROP TABLE IF EXISTS `wp9q_woocommerce_order_itemmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_woocommerce_order_itemmeta`
--

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

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

--
-- Table structure for table `wp9q_wc_order_product_lookup`
--

DROP TABLE IF EXISTS `wp9q_wc_order_product_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_wc_order_product_lookup`
--

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

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

--
-- Table structure for table `wp9q_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wp9q_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_woocommerce_tax_rate_locations`
--

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

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

--
-- Table structure for table `wp9q_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wp9q_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) NOT NULL DEFAULT '',
  `tax_rate` varchar(8) NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) 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) 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_woocommerce_tax_rates`
--

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

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

--
-- Table structure for table `wp9q_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wp9q_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `order_key` varchar(200) NOT NULL,
  `user_email` varchar(200) NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_woocommerce_downloadable_product_permissions`
--

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

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

--
-- Table structure for table `wp9q_woocommerce_shipping_zones`
--

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

--
-- Dumping data for table `wp9q_woocommerce_shipping_zones`
--

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

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

--
-- Table structure for table `wp9q_wc_orders`
--

DROP TABLE IF EXISTS `wp9q_wc_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_wc_orders` (
  `id` bigint(20) unsigned NOT NULL,
  `status` varchar(20) DEFAULT NULL,
  `currency` varchar(10) DEFAULT NULL,
  `type` varchar(20) DEFAULT NULL,
  `tax_amount` decimal(26,8) DEFAULT NULL,
  `total_amount` decimal(26,8) DEFAULT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `billing_email` varchar(320) DEFAULT NULL,
  `date_created_gmt` datetime DEFAULT NULL,
  `date_updated_gmt` datetime DEFAULT NULL,
  `parent_order_id` bigint(20) unsigned DEFAULT NULL,
  `payment_method` varchar(100) DEFAULT NULL,
  `payment_method_title` text DEFAULT NULL,
  `transaction_id` varchar(100) DEFAULT NULL,
  `ip_address` varchar(100) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `customer_note` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `status` (`status`),
  KEY `date_created` (`date_created_gmt`),
  KEY `customer_id_billing_email` (`customer_id`,`billing_email`(171)),
  KEY `billing_email` (`billing_email`(191)),
  KEY `type_status_date` (`type`,`status`,`date_created_gmt`),
  KEY `parent_order_id` (`parent_order_id`),
  KEY `date_updated` (`date_updated_gmt`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_wc_orders`
--

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

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

--
-- Table structure for table `wp9q_options`
--

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

--
-- Dumping data for table `wp9q_options`
--

LOCK TABLES `wp9q_options` WRITE;
/*!40000 ALTER TABLE `wp9q_options` DISABLE KEYS */;
INSERT INTO `wp9q_options` VALUES (1,'siteurl','https://electroshuk.com','yes'),(2,'home','https://electroshuk.com','yes'),(3,'blogname','Electroshuk','yes'),(4,'blogdescription','Electrical Products Suppliers','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','moh.shukry@hotmail.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:163:{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: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: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:8:{i:0;s:35:\"speedycache-pro/speedycache-pro.php\";i:1;s:27:\"speedycache/speedycache.php\";i:2;s:19:\"weforms/wpforms.php\";i:3;s:27:\"woocommerce/woocommerce.php\";i:4;s:19:\"jetpack/jetpack.php\";i:5;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:6;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:7;s:29:\"nginx-helper/nginx-helper.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','twentytwentythree','yes'),(41,'stylesheet','twentytwentythree','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','56657','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:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','0','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1714940563','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','55853','yes'),(100,'wp9q_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:114:{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: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;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','1','no'),(103,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a: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'),(105,'cron','a:18:{i:1699388570;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1699388579;a:5:{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: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;}}s:36:\"check_plugin_updates-speedycache-pro\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}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;}}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:1699388580;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:1699388582;a:3:{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;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1699388584;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:1699388588;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:1699388590;a:1:{s:30:\"generate_category_lookup_table\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1699388642;a:1:{s:28:\"wp_update_comment_type_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1699388703;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:1699388753;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;}}}i:1699392169;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:1699392293;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:1699399493;a:2:{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;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1699401600;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:1699410293;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:1699431763;a:3:{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:1699474963;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;}}}s:7:\"version\";i:2;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'recovery_keys','a:0:{}','yes'),(121,'theme_mods_twentytwentythree','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(122,'speedycache_options','a:8:{s:11:\"minify_html\";b:1;s:9:\"minify_js\";b:1;s:15:\"render_blocking\";b:1;s:3:\"lbc\";b:1;s:10:\"minify_css\";b:1;s:4:\"gzip\";b:1;s:15:\"automatic_cache\";b:1;s:6:\"status\";b:1;}','yes'),(123,'speedycache_pro_version','1.1.1','yes'),(124,'speedycache_version','1.1.1','yes'),(125,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:3:\"6.4\";s:5:\"files\";a:500:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:20:\"block/editor-rtl.css\";i:29;s:24:\"block/editor-rtl.min.css\";i:30;s:16:\"block/editor.css\";i:31;s:20:\"block/editor.min.css\";i:32;s:21:\"button/editor-rtl.css\";i:33;s:25:\"button/editor-rtl.min.css\";i:34;s:17:\"button/editor.css\";i:35;s:21:\"button/editor.min.css\";i:36;s:20:\"button/style-rtl.css\";i:37;s:24:\"button/style-rtl.min.css\";i:38;s:16:\"button/style.css\";i:39;s:20:\"button/style.min.css\";i:40;s:22:\"buttons/editor-rtl.css\";i:41;s:26:\"buttons/editor-rtl.min.css\";i:42;s:18:\"buttons/editor.css\";i:43;s:22:\"buttons/editor.min.css\";i:44;s:21:\"buttons/style-rtl.css\";i:45;s:25:\"buttons/style-rtl.min.css\";i:46;s:17:\"buttons/style.css\";i:47;s:21:\"buttons/style.min.css\";i:48;s:22:\"calendar/style-rtl.css\";i:49;s:26:\"calendar/style-rtl.min.css\";i:50;s:18:\"calendar/style.css\";i:51;s:22:\"calendar/style.min.css\";i:52;s:25:\"categories/editor-rtl.css\";i:53;s:29:\"categories/editor-rtl.min.css\";i:54;s:21:\"categories/editor.css\";i:55;s:25:\"categories/editor.min.css\";i:56;s:24:\"categories/style-rtl.css\";i:57;s:28:\"categories/style-rtl.min.css\";i:58;s:20:\"categories/style.css\";i:59;s:24:\"categories/style.min.css\";i:60;s:19:\"code/editor-rtl.css\";i:61;s:23:\"code/editor-rtl.min.css\";i:62;s:15:\"code/editor.css\";i:63;s:19:\"code/editor.min.css\";i:64;s:18:\"code/style-rtl.css\";i:65;s:22:\"code/style-rtl.min.css\";i:66;s:14:\"code/style.css\";i:67;s:18:\"code/style.min.css\";i:68;s:18:\"code/theme-rtl.css\";i:69;s:22:\"code/theme-rtl.min.css\";i:70;s:14:\"code/theme.css\";i:71;s:18:\"code/theme.min.css\";i:72;s:22:\"columns/editor-rtl.css\";i:73;s:26:\"columns/editor-rtl.min.css\";i:74;s:18:\"columns/editor.css\";i:75;s:22:\"columns/editor.min.css\";i:76;s:21:\"columns/style-rtl.css\";i:77;s:25:\"columns/style-rtl.min.css\";i:78;s:17:\"columns/style.css\";i:79;s:21:\"columns/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:30:\"comment-template/style-rtl.css\";i:85;s:34:\"comment-template/style-rtl.min.css\";i:86;s:26:\"comment-template/style.css\";i:87;s:30:\"comment-template/style.min.css\";i:88;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:89;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:90;s:38:\"comments-pagination-numbers/editor.css\";i:91;s:42:\"comments-pagination-numbers/editor.min.css\";i:92;s:34:\"comments-pagination/editor-rtl.css\";i:93;s:38:\"comments-pagination/editor-rtl.min.css\";i:94;s:30:\"comments-pagination/editor.css\";i:95;s:34:\"comments-pagination/editor.min.css\";i:96;s:33:\"comments-pagination/style-rtl.css\";i:97;s:37:\"comments-pagination/style-rtl.min.css\";i:98;s:29:\"comments-pagination/style.css\";i:99;s:33:\"comments-pagination/style.min.css\";i:100;s:29:\"comments-title/editor-rtl.css\";i:101;s:33:\"comments-title/editor-rtl.min.css\";i:102;s:25:\"comments-title/editor.css\";i:103;s:29:\"comments-title/editor.min.css\";i:104;s:23:\"comments/editor-rtl.css\";i:105;s:27:\"comments/editor-rtl.min.css\";i:106;s:19:\"comments/editor.css\";i:107;s:23:\"comments/editor.min.css\";i:108;s:22:\"comments/style-rtl.css\";i:109;s:26:\"comments/style-rtl.min.css\";i:110;s:18:\"comments/style.css\";i:111;s:22:\"comments/style.min.css\";i:112;s:20:\"cover/editor-rtl.css\";i:113;s:24:\"cover/editor-rtl.min.css\";i:114;s:16:\"cover/editor.css\";i:115;s:20:\"cover/editor.min.css\";i:116;s:19:\"cover/style-rtl.css\";i:117;s:23:\"cover/style-rtl.min.css\";i:118;s:15:\"cover/style.css\";i:119;s:19:\"cover/style.min.css\";i:120;s:22:\"details/editor-rtl.css\";i:121;s:26:\"details/editor-rtl.min.css\";i:122;s:18:\"details/editor.css\";i:123;s:22:\"details/editor.min.css\";i:124;s:21:\"details/style-rtl.css\";i:125;s:25:\"details/style-rtl.min.css\";i:126;s:17:\"details/style.css\";i:127;s:21:\"details/style.min.css\";i:128;s:20:\"embed/editor-rtl.css\";i:129;s:24:\"embed/editor-rtl.min.css\";i:130;s:16:\"embed/editor.css\";i:131;s:20:\"embed/editor.min.css\";i:132;s:19:\"embed/style-rtl.css\";i:133;s:23:\"embed/style-rtl.min.css\";i:134;s:15:\"embed/style.css\";i:135;s:19:\"embed/style.min.css\";i:136;s:19:\"embed/theme-rtl.css\";i:137;s:23:\"embed/theme-rtl.min.css\";i:138;s:15:\"embed/theme.css\";i:139;s:19:\"embed/theme.min.css\";i:140;s:19:\"file/editor-rtl.css\";i:141;s:23:\"file/editor-rtl.min.css\";i:142;s:15:\"file/editor.css\";i:143;s:19:\"file/editor.min.css\";i:144;s:18:\"file/style-rtl.css\";i:145;s:22:\"file/style-rtl.min.css\";i:146;s:14:\"file/style.css\";i:147;s:18:\"file/style.min.css\";i:148;s:23:\"footnotes/style-rtl.css\";i:149;s:27:\"footnotes/style-rtl.min.css\";i:150;s:19:\"footnotes/style.css\";i:151;s:23:\"footnotes/style.min.css\";i:152;s:23:\"freeform/editor-rtl.css\";i:153;s:27:\"freeform/editor-rtl.min.css\";i:154;s:19:\"freeform/editor.css\";i:155;s:23:\"freeform/editor.min.css\";i:156;s:22:\"gallery/editor-rtl.css\";i:157;s:26:\"gallery/editor-rtl.min.css\";i:158;s:18:\"gallery/editor.css\";i:159;s:22:\"gallery/editor.min.css\";i:160;s:21:\"gallery/style-rtl.css\";i:161;s:25:\"gallery/style-rtl.min.css\";i:162;s:17:\"gallery/style.css\";i:163;s:21:\"gallery/style.min.css\";i:164;s:21:\"gallery/theme-rtl.css\";i:165;s:25:\"gallery/theme-rtl.min.css\";i:166;s:17:\"gallery/theme.css\";i:167;s:21:\"gallery/theme.min.css\";i:168;s:20:\"group/editor-rtl.css\";i:169;s:24:\"group/editor-rtl.min.css\";i:170;s:16:\"group/editor.css\";i:171;s:20:\"group/editor.min.css\";i:172;s:19:\"group/style-rtl.css\";i:173;s:23:\"group/style-rtl.min.css\";i:174;s:15:\"group/style.css\";i:175;s:19:\"group/style.min.css\";i:176;s:19:\"group/theme-rtl.css\";i:177;s:23:\"group/theme-rtl.min.css\";i:178;s:15:\"group/theme.css\";i:179;s:19:\"group/theme.min.css\";i:180;s:21:\"heading/style-rtl.css\";i:181;s:25:\"heading/style-rtl.min.css\";i:182;s:17:\"heading/style.css\";i:183;s:21:\"heading/style.min.css\";i:184;s:19:\"html/editor-rtl.css\";i:185;s:23:\"html/editor-rtl.min.css\";i:186;s:15:\"html/editor.css\";i:187;s:19:\"html/editor.min.css\";i:188;s:20:\"image/editor-rtl.css\";i:189;s:24:\"image/editor-rtl.min.css\";i:190;s:16:\"image/editor.css\";i:191;s:20:\"image/editor.min.css\";i:192;s:19:\"image/style-rtl.css\";i:193;s:23:\"image/style-rtl.min.css\";i:194;s:15:\"image/style.css\";i:195;s:19:\"image/style.min.css\";i:196;s:19:\"image/theme-rtl.css\";i:197;s:23:\"image/theme-rtl.min.css\";i:198;s:15:\"image/theme.css\";i:199;s:19:\"image/theme.min.css\";i:200;s:29:\"latest-comments/style-rtl.css\";i:201;s:33:\"latest-comments/style-rtl.min.css\";i:202;s:25:\"latest-comments/style.css\";i:203;s:29:\"latest-comments/style.min.css\";i:204;s:27:\"latest-posts/editor-rtl.css\";i:205;s:31:\"latest-posts/editor-rtl.min.css\";i:206;s:23:\"latest-posts/editor.css\";i:207;s:27:\"latest-posts/editor.min.css\";i:208;s:26:\"latest-posts/style-rtl.css\";i:209;s:30:\"latest-posts/style-rtl.min.css\";i:210;s:22:\"latest-posts/style.css\";i:211;s:26:\"latest-posts/style.min.css\";i:212;s:18:\"list/style-rtl.css\";i:213;s:22:\"list/style-rtl.min.css\";i:214;s:14:\"list/style.css\";i:215;s:18:\"list/style.min.css\";i:216;s:25:\"media-text/editor-rtl.css\";i:217;s:29:\"media-text/editor-rtl.min.css\";i:218;s:21:\"media-text/editor.css\";i:219;s:25:\"media-text/editor.min.css\";i:220;s:24:\"media-text/style-rtl.css\";i:221;s:28:\"media-text/style-rtl.min.css\";i:222;s:20:\"media-text/style.css\";i:223;s:24:\"media-text/style.min.css\";i:224;s:19:\"more/editor-rtl.css\";i:225;s:23:\"more/editor-rtl.min.css\";i:226;s:15:\"more/editor.css\";i:227;s:19:\"more/editor.min.css\";i:228;s:30:\"navigation-link/editor-rtl.css\";i:229;s:34:\"navigation-link/editor-rtl.min.css\";i:230;s:26:\"navigation-link/editor.css\";i:231;s:30:\"navigation-link/editor.min.css\";i:232;s:29:\"navigation-link/style-rtl.css\";i:233;s:33:\"navigation-link/style-rtl.min.css\";i:234;s:25:\"navigation-link/style.css\";i:235;s:29:\"navigation-link/style.min.css\";i:236;s:33:\"navigation-submenu/editor-rtl.css\";i:237;s:37:\"navigation-submenu/editor-rtl.min.css\";i:238;s:29:\"navigation-submenu/editor.css\";i:239;s:33:\"navigation-submenu/editor.min.css\";i:240;s:25:\"navigation/editor-rtl.css\";i:241;s:29:\"navigation/editor-rtl.min.css\";i:242;s:21:\"navigation/editor.css\";i:243;s:25:\"navigation/editor.min.css\";i:244;s:24:\"navigation/style-rtl.css\";i:245;s:28:\"navigation/style-rtl.min.css\";i:246;s:20:\"navigation/style.css\";i:247;s:24:\"navigation/style.min.css\";i:248;s:23:\"nextpage/editor-rtl.css\";i:249;s:27:\"nextpage/editor-rtl.min.css\";i:250;s:19:\"nextpage/editor.css\";i:251;s:23:\"nextpage/editor.min.css\";i:252;s:24:\"page-list/editor-rtl.css\";i:253;s:28:\"page-list/editor-rtl.min.css\";i:254;s:20:\"page-list/editor.css\";i:255;s:24:\"page-list/editor.min.css\";i:256;s:23:\"page-list/style-rtl.css\";i:257;s:27:\"page-list/style-rtl.min.css\";i:258;s:19:\"page-list/style.css\";i:259;s:23:\"page-list/style.min.css\";i:260;s:24:\"paragraph/editor-rtl.css\";i:261;s:28:\"paragraph/editor-rtl.min.css\";i:262;s:20:\"paragraph/editor.css\";i:263;s:24:\"paragraph/editor.min.css\";i:264;s:23:\"paragraph/style-rtl.css\";i:265;s:27:\"paragraph/style-rtl.min.css\";i:266;s:19:\"paragraph/style.css\";i:267;s:23:\"paragraph/style.min.css\";i:268;s:25:\"post-author/style-rtl.css\";i:269;s:29:\"post-author/style-rtl.min.css\";i:270;s:21:\"post-author/style.css\";i:271;s:25:\"post-author/style.min.css\";i:272;s:33:\"post-comments-form/editor-rtl.css\";i:273;s:37:\"post-comments-form/editor-rtl.min.css\";i:274;s:29:\"post-comments-form/editor.css\";i:275;s:33:\"post-comments-form/editor.min.css\";i:276;s:32:\"post-comments-form/style-rtl.css\";i:277;s:36:\"post-comments-form/style-rtl.min.css\";i:278;s:28:\"post-comments-form/style.css\";i:279;s:32:\"post-comments-form/style.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"query/style-rtl.css\";i:357;s:23:\"query/style-rtl.min.css\";i:358;s:15:\"query/style.css\";i:359;s:19:\"query/style.min.css\";i:360;s:19:\"quote/style-rtl.css\";i:361;s:23:\"quote/style-rtl.min.css\";i:362;s:15:\"quote/style.css\";i:363;s:19:\"quote/style.min.css\";i:364;s:19:\"quote/theme-rtl.css\";i:365;s:23:\"quote/theme-rtl.min.css\";i:366;s:15:\"quote/theme.css\";i:367;s:19:\"quote/theme.min.css\";i:368;s:23:\"read-more/style-rtl.css\";i:369;s:27:\"read-more/style-rtl.min.css\";i:370;s:19:\"read-more/style.css\";i:371;s:23:\"read-more/style.min.css\";i:372;s:18:\"rss/editor-rtl.css\";i:373;s:22:\"rss/editor-rtl.min.css\";i:374;s:14:\"rss/editor.css\";i:375;s:18:\"rss/editor.min.css\";i:376;s:17:\"rss/style-rtl.css\";i:377;s:21:\"rss/style-rtl.min.css\";i:378;s:13:\"rss/style.css\";i:379;s:17:\"rss/style.min.css\";i:380;s:21:\"search/editor-rtl.css\";i:381;s:25:\"search/editor-rtl.min.css\";i:382;s:17:\"search/editor.css\";i:383;s:21:\"search/editor.min.css\";i:384;s:20:\"search/style-rtl.css\";i:385;s:24:\"search/style-rtl.min.css\";i:386;s:16:\"search/style.css\";i:387;s:20:\"search/style.min.css\";i:388;s:20:\"search/theme-rtl.css\";i:389;s:24:\"search/theme-rtl.min.css\";i:390;s:16:\"search/theme.css\";i:391;s:20:\"search/theme.min.css\";i:392;s:24:\"separator/editor-rtl.css\";i:393;s:28:\"separator/editor-rtl.min.css\";i:394;s:20:\"separator/editor.css\";i:395;s:24:\"separator/editor.min.css\";i:396;s:23:\"separator/style-rtl.css\";i:397;s:27:\"separator/style-rtl.min.css\";i:398;s:19:\"separator/style.css\";i:399;s:23:\"separator/style.min.css\";i:400;s:23:\"separator/theme-rtl.css\";i:401;s:27:\"separator/theme-rtl.min.css\";i:402;s:19:\"separator/theme.css\";i:403;s:23:\"separator/theme.min.css\";i:404;s:24:\"shortcode/editor-rtl.css\";i:405;s:28:\"shortcode/editor-rtl.min.css\";i:406;s:20:\"shortcode/editor.css\";i:407;s:24:\"shortcode/editor.min.css\";i:408;s:24:\"site-logo/editor-rtl.css\";i:409;s:28:\"site-logo/editor-rtl.min.css\";i:410;s:20:\"site-logo/editor.css\";i:411;s:24:\"site-logo/editor.min.css\";i:412;s:23:\"site-logo/style-rtl.css\";i:413;s:27:\"site-logo/style-rtl.min.css\";i:414;s:19:\"site-logo/style.css\";i:415;s:23:\"site-logo/style.min.css\";i:416;s:27:\"site-tagline/editor-rtl.css\";i:417;s:31:\"site-tagline/editor-rtl.min.css\";i:418;s:23:\"site-tagline/editor.css\";i:419;s:27:\"site-tagline/editor.min.css\";i:420;s:25:\"site-title/editor-rtl.css\";i:421;s:29:\"site-title/editor-rtl.min.css\";i:422;s:21:\"site-title/editor.css\";i:423;s:25:\"site-title/editor.min.css\";i:424;s:24:\"site-title/style-rtl.css\";i:425;s:28:\"site-title/style-rtl.min.css\";i:426;s:20:\"site-title/style.css\";i:427;s:24:\"site-title/style.min.css\";i:428;s:26:\"social-link/editor-rtl.css\";i:429;s:30:\"social-link/editor-rtl.min.css\";i:430;s:22:\"social-link/editor.css\";i:431;s:26:\"social-link/editor.min.css\";i:432;s:27:\"social-links/editor-rtl.css\";i:433;s:31:\"social-links/editor-rtl.min.css\";i:434;s:23:\"social-links/editor.css\";i:435;s:27:\"social-links/editor.min.css\";i:436;s:26:\"social-links/style-rtl.css\";i:437;s:30:\"social-links/style-rtl.min.css\";i:438;s:22:\"social-links/style.css\";i:439;s:26:\"social-links/style.min.css\";i:440;s:21:\"spacer/editor-rtl.css\";i:441;s:25:\"spacer/editor-rtl.min.css\";i:442;s:17:\"spacer/editor.css\";i:443;s:21:\"spacer/editor.min.css\";i:444;s:20:\"spacer/style-rtl.css\";i:445;s:24:\"spacer/style-rtl.min.css\";i:446;s:16:\"spacer/style.css\";i:447;s:20:\"spacer/style.min.css\";i:448;s:20:\"table/editor-rtl.css\";i:449;s:24:\"table/editor-rtl.min.css\";i:450;s:16:\"table/editor.css\";i:451;s:20:\"table/editor.min.css\";i:452;s:19:\"table/style-rtl.css\";i:453;s:23:\"table/style-rtl.min.css\";i:454;s:15:\"table/style.css\";i:455;s:19:\"table/style.min.css\";i:456;s:19:\"table/theme-rtl.css\";i:457;s:23:\"table/theme-rtl.min.css\";i:458;s:15:\"table/theme.css\";i:459;s:19:\"table/theme.min.css\";i:460;s:23:\"tag-cloud/style-rtl.css\";i:461;s:27:\"tag-cloud/style-rtl.min.css\";i:462;s:19:\"tag-cloud/style.css\";i:463;s:23:\"tag-cloud/style.min.css\";i:464;s:28:\"template-part/editor-rtl.css\";i:465;s:32:\"template-part/editor-rtl.min.css\";i:466;s:24:\"template-part/editor.css\";i:467;s:28:\"template-part/editor.min.css\";i:468;s:27:\"template-part/theme-rtl.css\";i:469;s:31:\"template-part/theme-rtl.min.css\";i:470;s:23:\"template-part/theme.css\";i:471;s:27:\"template-part/theme.min.css\";i:472;s:30:\"term-description/style-rtl.css\";i:473;s:34:\"term-description/style-rtl.min.css\";i:474;s:26:\"term-description/style.css\";i:475;s:30:\"term-description/style.min.css\";i:476;s:27:\"text-columns/editor-rtl.css\";i:477;s:31:\"text-columns/editor-rtl.min.css\";i:478;s:23:\"text-columns/editor.css\";i:479;s:27:\"text-columns/editor.min.css\";i:480;s:26:\"text-columns/style-rtl.css\";i:481;s:30:\"text-columns/style-rtl.min.css\";i:482;s:22:\"text-columns/style.css\";i:483;s:26:\"text-columns/style.min.css\";i:484;s:19:\"verse/style-rtl.css\";i:485;s:23:\"verse/style-rtl.min.css\";i:486;s:15:\"verse/style.css\";i:487;s:19:\"verse/style.min.css\";i:488;s:20:\"video/editor-rtl.css\";i:489;s:24:\"video/editor-rtl.min.css\";i:490;s:16:\"video/editor.css\";i:491;s:20:\"video/editor.min.css\";i:492;s:19:\"video/style-rtl.css\";i:493;s:23:\"video/style-rtl.min.css\";i:494;s:15:\"video/style.css\";i:495;s:19:\"video/style.min.css\";i:496;s:19:\"video/theme-rtl.css\";i:497;s:23:\"video/theme-rtl.min.css\";i:498;s:15:\"video/theme.css\";i:499;s:19:\"video/theme.min.css\";}}','yes'),(364,'_transient_timeout_wc_report_orders_stats_41aea785f76a9cc15c641cd2182ad596','1699993420','no'),(127,'https_detection_errors','a:1:{s:19:\"bad_response_source\";a:1:{i:0;s:55:\"It looks like the response did not come from this site.\";}}','yes'),(362,'_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:57:\"https://downloads.wordpress.org/release/wordpress-6.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.4.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.4-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.4-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.4\";s:7:\"version\";s:3:\"6.4\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1699388691;s:15:\"version_checked\";s:3:\"6.4\";s:12:\"translations\";a:0:{}}','no'),(363,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:22:\"moh.shukry@hotmail.com\";s:7:\"version\";s:3:\"6.4\";s:9:\"timestamp\";i:1699388605;}','no'),(365,'_transient_wc_report_orders_stats_41aea785f76a9cc15c641cd2182ad596','a:2:{s:7:\"version\";s:10:\"1699388596\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:2:{i:0;a:6:{s:8:\"interval\";s:7:\"2023-45\";s:10:\"date_start\";s:19:\"2023-11-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-11-06 00:00:00\";s:8:\"date_end\";s:19:\"2023-11-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-11-07 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2023-44\";s:10:\"date_start\";s:19:\"2023-11-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-11-01 00:00:00\";s:8:\"date_end\";s:19:\"2023-11-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-11-05 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:2;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(131,'_site_transient_timeout_theme_roots','1699390447','no'),(132,'_site_transient_theme_roots','a:5:{s:10:\"storefront\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(135,'rt_wp_nginx_helper_options','a:18:{s:9:\"log_level\";s:4:\"INFO\";s:12:\"log_filesize\";i:5;s:12:\"enable_purge\";i:1;s:10:\"enable_map\";i:0;s:10:\"enable_log\";i:0;s:12:\"enable_stamp\";i:0;s:21:\"purge_homepage_on_new\";i:1;s:22:\"purge_homepage_on_edit\";i:1;s:21:\"purge_homepage_on_del\";i:1;s:20:\"purge_archive_on_new\";i:1;s:21:\"purge_archive_on_edit\";i:1;s:20:\"purge_archive_on_del\";i:1;s:28:\"purge_archive_on_new_comment\";i:0;s:32:\"purge_archive_on_deleted_comment\";i:0;s:17:\"purge_page_on_mod\";i:1;s:25:\"purge_page_on_new_comment\";i:1;s:29:\"purge_page_on_deleted_comment\";i:1;s:12:\"purge_method\";s:11:\"get_request\";}','yes'),(136,'boldgrid_settings','a:2:{s:7:\"library\";a:1:{s:35:\"boldgrid-backup/boldgrid-backup.php\";s:9:\"2.13.10.0\";}s:15:\"plugins_checked\";a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:2:{s:6:\"1.15.2\";i:1699388578;s:6:\"1.15.7\";i:1699388692;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:1:{s:5:\"1.5.9\";i:1699388692;}}}','yes'),(386,'_transient_timeout_jetpack_file_data_12.8','1701894292','no'),(387,'_transient_jetpack_file_data_12.8','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'),(388,'wc_blocks_use_blockified_product_grid_block_as_template','no','yes'),(389,'wc_blocks_version','11.1.2','yes'),(393,'woocommerce_cart_page_endpoint','cart','no'),(394,'woocommerce_checkout_page_endpoint','checkout','no'),(395,'woocommerce_custom_orders_table_enabled','no','yes'),(396,'woocommerce_custom_orders_table_data_sync_enabled','no','yes'),(397,'woocommerce_custom_orders_table_created','yes','yes'),(398,'woocommerce_navigation_enabled','no','yes'),(138,'_transient_timeout__woocommerce_helper_subscriptions','1699389478','no'),(139,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(140,'_transient_timeout__woocommerce_helper_updates','1699431778','no'),(141,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1699388578;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(144,'boldgrid_backup_id','cde4cdfb','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:2;s:5:\"tod_m\";s:2:\"02\";s:5:\"tod_a\";s:2:\"AM\";}s:15:\"retention_count\";i:5;s:18:\"notification_email\";s:22:\"moh.shukry@hotmail.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/ed06955/boldgrid_backup\";}','no'),(146,'_transient_timeout_boldgrid_backup_system_zip_test','1699474979','no'),(147,'_transient_boldgrid_backup_system_zip_test','1','no'),(148,'_transient_timeout_boldgrid_backup_is_functional','1699475019','no'),(149,'_transient_boldgrid_backup_is_functional','1','no'),(150,'_transient_timeout_jetpack_file_data_11.2-a.5','1701894179','no'),(151,'_transient_jetpack_file_data_11.2-a.5','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(152,'jetpack_available_modules','a:1:{s:4:\"12.8\";a:46:{s:10:\"action-bar\";s:4:\"11.4\";s:5:\"blaze\";s:4:\"12.3\";s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:12:\"google-fonts\";s:6:\"10.8.0\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s: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:9:\"post-list\";s:4:\"11.3\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:3:\"waf\";s:4:\"10.9\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(153,'jetpack_sync_settings_disable','0','yes'),(154,'speedycache_license','a:10:{s:7:\"license\";s:22:\"LICENSE-BY-SOFTACULOUS\";s:7:\"expires\";s:8:\"20231123\";s:7:\"licType\";s:7:\"Premium\";s:9:\"num_sites\";N;s:4:\"plan\";N;s:6:\"active\";s:1:\"1\";s:10:\"licexpired\";N;s:10:\"status_txt\";s:40:\"<span style=\"color:green;\">Active</span>\";s:12:\"fast_mirrors\";a:8:{i:0;s:40:\"https://s0.softaculous.com/a/softaculous\";i:1;s:40:\"https://s1.softaculous.com/a/softaculous\";i:2;s:40:\"https://s2.softaculous.com/a/softaculous\";i:3;s:40:\"https://s3.softaculous.com/a/softaculous\";i:4;s:40:\"https://s4.softaculous.com/a/softaculous\";i:5;s:40:\"https://s5.softaculous.com/a/softaculous\";i:6;s:40:\"https://s7.softaculous.com/a/softaculous\";i:7;s:40:\"https://s8.softaculous.com/a/softaculous\";}s:11:\"last_update\";i:1699388579;}','yes'),(155,'speedycache_img','a:5:{s:9:\"on_upload\";b:0;s:14:\"automatic_optm\";b:0;s:11:\"url_rewrite\";b:0;s:18:\"compression_method\";s:2:\"gd\";s:19:\"compression_quality\";s:2:\"70\";}','yes'),(156,'jetpack_connection_active_plugins','a:2:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}s:11:\"woocommerce\";a:1:{s:4:\"name\";s:11:\"WooCommerce\";}}','yes'),(157,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"lFLsiXE4mSlJ8iJqUYv6cIZddgWmR3zi\";}','yes'),(158,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(159,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(160,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(161,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(162,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(163,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(164,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(165,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(166,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(167,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(168,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(169,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(170,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(171,'action_scheduler_hybrid_store_demarkation','4','yes'),(172,'schema-ActionScheduler_StoreSchema','7.0.1699388693','yes'),(173,'schema-ActionScheduler_LoggerSchema','3.0.1699388579','yes'),(385,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1699388692;s:7:\"checked\";a:5:{s:10:\"storefront\";s:5:\"4.1.1\";s:16:\"twentytwentyfour\";s:3:\"1.0\";s:15:\"twentytwentyone\";s:3:\"1.8\";s:17:\"twentytwentythree\";s:3:\"1.2\";s:15:\"twentytwentytwo\";s:3:\"1.4\";}s:8:\"response\";a:3:{s:10:\"storefront\";a:6:{s:5:\"theme\";s:10:\"storefront\";s:11:\"new_version\";s:5:\"4.5.3\";s:3:\"url\";s:40:\"https://wordpress.org/themes/storefront/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/storefront.4.5.3.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:5:\"5.6.0\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.9.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.5.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:2:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.0.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.2.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(174,'woocommerce_admin_install_timestamp','1699388579','yes'),(175,'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'),(181,'woocommerce_schema_version','430','yes'),(177,'current_theme_supports_woocommerce','yes','yes'),(178,'woocommerce_queue_flush_rewrite_rules','no','yes'),(301,'woocommerce_inbox_variant_assignment','7','yes'),(302,'_transient_timeout__woocommerce_upload_directory_status','1699474982','no'),(182,'woocommerce_store_address','','yes'),(183,'woocommerce_store_address_2','','yes'),(184,'woocommerce_store_city','','yes'),(185,'woocommerce_default_country','US:CA','yes'),(186,'woocommerce_store_postcode','','yes'),(187,'woocommerce_allowed_countries','all','yes'),(188,'woocommerce_all_except_countries','','yes'),(189,'woocommerce_specific_allowed_countries','','yes'),(190,'woocommerce_ship_to_countries','','yes'),(191,'woocommerce_specific_ship_to_countries','','yes'),(192,'woocommerce_default_customer_address','base','yes'),(193,'woocommerce_calc_taxes','no','yes'),(194,'woocommerce_enable_coupons','yes','yes'),(195,'woocommerce_calc_discounts_sequentially','no','no'),(196,'woocommerce_currency','USD','yes'),(197,'woocommerce_currency_pos','left','yes'),(198,'woocommerce_price_thousand_sep',',','yes'),(199,'woocommerce_price_decimal_sep','.','yes'),(200,'woocommerce_price_num_decimals','2','yes'),(201,'woocommerce_shop_page_id','5','yes'),(202,'woocommerce_cart_redirect_after_add','no','yes'),(203,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(204,'woocommerce_placeholder_image','4','yes'),(205,'woocommerce_weight_unit','kg','yes'),(206,'woocommerce_dimension_unit','cm','yes'),(207,'woocommerce_enable_reviews','yes','yes'),(208,'woocommerce_review_rating_verification_label','yes','no'),(209,'woocommerce_review_rating_verification_required','no','no'),(210,'woocommerce_enable_review_rating','yes','yes'),(211,'woocommerce_review_rating_required','yes','no'),(212,'woocommerce_manage_stock','yes','yes'),(213,'woocommerce_hold_stock_minutes','60','no'),(214,'woocommerce_notify_low_stock','yes','no'),(215,'woocommerce_notify_no_stock','yes','no'),(216,'woocommerce_stock_email_recipient','moh.shukry@hotmail.com','no'),(217,'woocommerce_notify_low_stock_amount','2','no'),(218,'woocommerce_notify_no_stock_amount','0','yes'),(219,'woocommerce_hide_out_of_stock_items','no','yes'),(220,'woocommerce_stock_format','','yes'),(221,'woocommerce_file_download_method','force','no'),(222,'woocommerce_downloads_redirect_fallback_allowed','no','no'),(223,'woocommerce_downloads_require_login','no','no'),(224,'woocommerce_downloads_grant_access_after_payment','yes','no'),(225,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(226,'woocommerce_attribute_lookup_enabled','yes','yes'),(227,'woocommerce_attribute_lookup_direct_updates','no','yes'),(228,'woocommerce_prices_include_tax','no','yes'),(229,'woocommerce_tax_based_on','shipping','yes'),(230,'woocommerce_shipping_tax_class','inherit','yes'),(231,'woocommerce_tax_round_at_subtotal','no','yes'),(232,'woocommerce_tax_classes','','yes'),(233,'woocommerce_tax_display_shop','excl','yes'),(234,'woocommerce_tax_display_cart','excl','yes'),(235,'woocommerce_price_display_suffix','','yes'),(236,'woocommerce_tax_total_display','itemized','no'),(237,'woocommerce_enable_shipping_calc','yes','no'),(238,'woocommerce_shipping_cost_requires_address','no','yes'),(239,'woocommerce_ship_to_destination','billing','no'),(240,'woocommerce_shipping_debug_mode','no','yes'),(241,'woocommerce_enable_guest_checkout','yes','no'),(242,'woocommerce_enable_checkout_login_reminder','no','no'),(243,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(244,'woocommerce_enable_myaccount_registration','no','no'),(245,'woocommerce_registration_generate_username','yes','no'),(246,'woocommerce_registration_generate_password','yes','no'),(247,'woocommerce_erasure_request_removes_order_data','no','no'),(248,'woocommerce_erasure_request_removes_download_data','no','no'),(249,'woocommerce_allow_bulk_remove_personal_data','no','no'),(250,'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'),(251,'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'),(252,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(253,'woocommerce_trash_pending_orders','','no'),(254,'woocommerce_trash_failed_orders','','no'),(255,'woocommerce_trash_cancelled_orders','','no'),(256,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(257,'woocommerce_email_from_name','Electroshuk','no'),(258,'woocommerce_email_from_address','moh.shukry@hotmail.com','no'),(259,'woocommerce_email_header_image','','no'),(260,'woocommerce_email_footer_text','{site_title} &mdash; Built with {WooCommerce}','no'),(261,'woocommerce_email_base_color','#7f54b3','no'),(262,'woocommerce_email_background_color','#f7f7f7','no'),(263,'woocommerce_email_body_background_color','#ffffff','no'),(264,'woocommerce_email_text_color','#3c3c3c','no'),(265,'woocommerce_merchant_email_notifications','no','no'),(266,'woocommerce_cart_page_id','6','no'),(267,'woocommerce_checkout_page_id','7','no'),(268,'woocommerce_myaccount_page_id','8','no'),(269,'woocommerce_terms_page_id','','no'),(270,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(271,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(272,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(273,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(274,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(275,'woocommerce_myaccount_orders_endpoint','orders','yes'),(276,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(277,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(278,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(279,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(280,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(281,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(282,'woocommerce_logout_endpoint','customer-logout','yes'),(283,'woocommerce_api_enabled','no','yes'),(284,'woocommerce_allow_tracking','no','no'),(285,'woocommerce_show_marketplace_suggestions','yes','no'),(286,'woocommerce_analytics_enabled','yes','yes'),(287,'woocommerce_single_image_width','600','yes'),(288,'woocommerce_thumbnail_image_width','300','yes'),(289,'woocommerce_checkout_highlight_required_fields','yes','yes'),(290,'woocommerce_demo_store','no','no'),(291,'wc_downloads_approved_directories_mode','enabled','yes'),(292,'product_cat_children','a:0:{}','yes'),(293,'default_product_cat','15','yes'),(315,'do_activate','0','yes'),(295,'woocommerce_refund_returns_page_id','9','yes'),(355,'jetpack_dismissed_connection_banner','1','yes'),(298,'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:22:\"moh.shukry@hotmail.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:22:\"moh.shukry@hotmail.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'),(299,'woocommerce_version','8.2.1','yes'),(300,'woocommerce_db_version','6.8.0','yes'),(303,'_transient__woocommerce_upload_directory_status','protected','no'),(304,'woocommerce_onboarding_profile','a:1:{s:9:\"completed\";b:1;}','yes'),(305,'_transient_timeout_wc_onboarding_product_data','1699474982','no'),(306,'_transient_wc_onboarding_product_data','a:6:{s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:19:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 07 Nov 2023 20:23:02 GMT\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:14:\"content-length\";s:5:\"13937\";s:12:\"x-robots-tag\";s:7:\"noindex\";s:4:\"link\";s:52:\"<https://woo.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:15:\"dca5 85 187 443\";s:16:\"content-encoding\";s:4:\"gzip\";s:3:\"age\";s:1:\"6\";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:75500:\"{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-google-analytics\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"rating\":4.5,\"reviews_count\":27,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/01\\/woo-Google_Analytics-fvsrvf.png\"},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/06\\/Woo-Tax-Icon-160x160-2.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders \\u2014 by city, country, or state \\u2014 at checkout.\",\"link\":\"https:\\/\\/woo.com\\/products\\/tax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/06\\/Woo-Tax-Marketplace-Icon-160x160-1.png\"},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woo.com\\/products\\/stripe\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"rating\":4,\"reviews_count\":30,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\"},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woo.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"rating\":3.6,\"reviews_count\":14,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/mailchimp\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2017\\/09\\/Mailchimp.png\"},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2017\\/11\\/Jetpack-1-m5mwyg.png?fit=764,573\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"rating\":4.5,\"reviews_count\":14,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/jetpack\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/02\\/jetpack-logo--80sgtq.png\"},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin to reach your customers across Facebook, Instagram, Messenger and WhatsApp.\",\"link\":\"https:\\/\\/woo.com\\/products\\/facebook\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"rating\":2.2,\"reviews_count\":68,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2017\\/04\\/fb-woodotcom.png\"},{\"title\":\"WooPayments\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/02\\/WooPayments-Logo.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"The only payment solution fully integrated to Woo. Accept credit\\/debit cards and local payment options with no setup or monthly fees.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woopayments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"rating\":4.3,\"reviews_count\":32,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/02\\/WooPayments-Icon.png\"},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woo.com\\/products\\/product-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"rating\":3.3,\"reviews_count\":28,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Google Listings & Ads\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/06\\/Marketplace_card_Google.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Reach millions of engaged shoppers across Google with free product listings and ads. Sync with Google Merchant Center and control your product feed. Built in partnership with Google.\",\"link\":\"https:\\/\\/woo.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"rating\":3.2,\"reviews_count\":23,\"vendor_name\":\"Google\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/google\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/06\\/woo-GoogleListingsAds-jworee.png\"},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png?fit=764,573\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/square\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"rating\":3.4,\"reviews_count\":101,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/07\\/woo-Square-u8km15.png\"},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woo.com\\/products\\/usps-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-USPS-yhn1rb.png\"},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woo.com\\/products\\/ups-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"rating\":3.3,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-UPS-1.png\"},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woo.com\\/products\\/shipment-tracking\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"rating\":3.6,\"reviews_count\":14,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Enable a familiar, fast checkout for hundreds of millions of active Amazon customers globally\",\"link\":\"https:\\/\\/woo.com\\/products\\/pay-with-amazon\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"rating\":3.1,\"reviews_count\":32,\"vendor_name\":\"Amazon Pay\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/amazon-pay-admin\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/08\\/woo-Amazon_Pay-8lvfuy.png\"},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Minimum and maximum quantity rules for products, orders and categories.\",\"link\":\"https:\\/\\/woo.com\\/products\\/minmax-quantities\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woo.com\\/products\\/australia-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-AustraliaPost.png\"},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woo.com\\/products\\/canada-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-CanadaPost-fjlcfq.png\"},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/04\\/royalmail.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers.\",\"link\":\"https:\\/\\/woo.com\\/products\\/royal-mail\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/04\\/woo-RoyalMail-sd9zwy.png\"},{\"title\":\"Avalara AvaTax\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Automated sales tax calculations for your WooCommerce store.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"rating\":3.4,\"reviews_count\":24,\"vendor_name\":\"Avalara\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/avalara\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/01\\/Avalara-Wordpress-Plugin-Creative_icon-80.png\"},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"One checkout solution. Many ways to pay. PayPal\\u2019s all-in-one solution allows you to offer PayPal, Venmo (US), Pay Later at no additional cost, credit and debit cards, and country-specific payment options.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"rating\":3.7,\"reviews_count\":123,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/10\\/woo-PayPal-nlioum.png\"},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woo.com\\/products\\/fedex-shipping-module\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-FedEx-auxjb7.png\"},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/07\\/logo-pb-lzevsq.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woo.com\\/products\\/product-bundles\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"rating\":4.9,\"reviews_count\":128,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woo.com\\/products\\/brands\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2017\\/06\\/Woo-Shipping-Marketplace-Icon-160x160-1.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save on shipping. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woo.com\\/products\\/shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2017\\/06\\/Woo-Shipping-Marketplace-Icon-160x160-2.png\"},{\"title\":\"Woo Subscriptions\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-subscriptions\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;239.00\",\"raw_price\":239,\"currency_symbol\":\"&#36;\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"rating\":3.4,\"reviews_count\":73,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/09\\/Woo_Subscriptions_icon-marketplace-160x160-1.png\"},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png?fit=764,573\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/taxjar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"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:\\/\\/woo.com\\/vendor\\/taxjar\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2014\\/10\\/TaxJar.png\"},{\"title\":\"Gift Cards\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/03\\/logo-gc-z327mo.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Offer prepaid digital gift cards that customers can redeem online.\",\"link\":\"https:\\/\\/woo.com\\/products\\/gift-cards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"4e0e8c35-e777-4ecc-b96b-202ee1eb256f\",\"slug\":\"woocommerce-gift-cards\",\"id\":5571998,\"rating\":4.5,\"reviews_count\":37,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"EU VAT Number\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woo.com\\/products\\/eu-vat-number\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Back In Stock Notifications\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/11\\/logo-bis-ircwrk.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Notify customers when your products are restocked.\",\"link\":\"https:\\/\\/woo.com\\/products\\/back-in-stock-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"755424b1-28b6-448a-aeb3-709cb3029eb6\",\"slug\":\"woocommerce-back-in-stock-notifications\",\"id\":6855144,\"rating\":4.4,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Product Recommendations\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/07\\/logo-prl-lfwngz.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Offer smarter upsells, cross-sells, and \\\"frequently bought together\\\" recommendations. Measure their impact with in-depth analytics.\",\"link\":\"https:\\/\\/woo.com\\/products\\/product-recommendations\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"4f9d0025-64b2-496f-97bb-ef553752d2d1\",\"slug\":\"woocommerce-product-recommendations\",\"id\":4486128,\"rating\":4.8,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"ShipStation for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Ship your WooCommerce orders with confidence, save on top carriers, and automate your processes with ShipStation.\",\"link\":\"https:\\/\\/woo.com\\/products\\/shipstation-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Shipstation-xqap96.png\"},{\"title\":\"Payfast Payment Gateway\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/09\\/Stand-Alone-Safe-Zone@1x.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Take payments on your WooCommerce store via Payfast (redirect method).\",\"link\":\"https:\\/\\/woo.com\\/products\\/payfast-payment-gateway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/09\\/Payfast-favicon-1.png\"},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woo.com\\/products\\/automatewoo\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;119.00\",\"raw_price\":119,\"currency_symbol\":\"&#36;\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"rating\":4.2,\"reviews_count\":15,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/10\\/woo-AutomateWoo.png\"},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"raw_price\":249,\"currency_symbol\":\"&#36;\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890,\"rating\":2.9,\"reviews_count\":35,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"rating\":3.1,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woo.com\\/products\\/table-rate-shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;119.00\",\"raw_price\":119,\"currency_symbol\":\"&#36;\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"rating\":4.2,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/05\\/Woo-Blocks-Marketplace-Icon-160x160-1.png\"},{\"title\":\"Google, Facebook, Retargeting all-in-one Marketing\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/02\\/Woo-Extension-Logo.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Reach beyond your competition and grow your store sales in 5 Minutes.\",\"link\":\"https:\\/\\/woo.com\\/products\\/google-ads-and-marketing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"rating\":4.3,\"reviews_count\":113,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/kliken\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/02\\/Woo-Extension-Logo-80x80-2.png\"},{\"title\":\"Pinterest for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/10\\/Marketplace_card_Pinterest.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Get your products in front of Pinterest users searching for ideas and things to buy. Connect your WooCommerce store to make your entire catalog browsable.\",\"link\":\"https:\\/\\/woo.com\\/products\\/pinterest-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"29785cce-92ef-4b3a-8bd7-979bc688fd47\",\"slug\":\"pinterest-for-woocommerce\",\"id\":8688768,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/10\\/icon@2x-pe5lqg.png\"},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woo.com\\/products\\/product-csv-import-suite\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/01\\/Woo-Accommodations-Marketplace-Icon-160x160-1.png\"},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/08\\/woocommerce-xero-integration-sdth2k.jpg?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woo.com\\/products\\/xero\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"rating\":2.7,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Xero-4ovyoc.png\"},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"raw_price\":199,\"currency_symbol\":\"&#36;\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"rating\":4.1,\"reviews_count\":102,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Grow Your Business on TikTok\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2022\\/04\\/TikTok-logo-CMYK-Horizontal-black-1.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Sync your catalog, create TikTok ads to showcase & sell your products, and install the TikTok Pixel and Events API (server-to-server connection) to fuel performance and measure results at scale!\\r\\n\\r\\nDirectly from your dashboard, you can create advertising campaigns to promote your product sales, generate leads, and reach over one billion global users.\",\"link\":\"https:\\/\\/woo.com\\/products\\/tiktok-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"a6f95b36-133e-443e-8e31-6e7a67eb597c\",\"slug\":\"tiktok-for-woocommerce\",\"id\":18734000336353,\"rating\":3.5,\"reviews_count\":27,\"vendor_name\":\"TikTok for Business\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/tiktok-for-business\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2022\\/04\\/tt2.jpg\"},{\"title\":\"Product Vendors\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woo.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"rating\":2.9,\"reviews_count\":16,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;159.00\",\"raw_price\":159,\"currency_symbol\":\"&#36;\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"rating\":3,\"reviews_count\":14,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woo.com\\/products\\/advanced-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-pre-orders\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;159.00\",\"raw_price\":159,\"currency_symbol\":\"&#36;\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Unlimited images for your product variations.\",\"link\":\"https:\\/\\/woo.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;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-deposits\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;219.00\",\"raw_price\":219,\"currency_symbol\":\"&#36;\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"rating\":1.7,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Authorize.net, a Visa solution\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Online payments leader Authorize.net, a Visa Solution, helps thousands of businesses simplify payments by offering more solutions, more support, and more strength to stand on.\",\"link\":\"https:\\/\\/woo.com\\/products\\/authorize-net\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"rating\":4.3,\"reviews_count\":65,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/04\\/wooCommerceLogos_anet-2.png\"},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Braintree-wrweyl.png\"},{\"title\":\"Woo Subscription Downloads\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woo.com\\/products\\/amazon-s3-storage\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"rating\":3.7,\"reviews_count\":10,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/02\\/amazon-s3-storage-icon.png\"},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woo.com\\/products\\/shipping-multiple-addresses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woo.com\\/products\\/bulk-stock-management\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Force Sells\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woo.com\\/products\\/force-sells\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/05\\/force-sells-icon.png\"},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Seamlessly accept purchase orders as a payment method on your WooCommerce store.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-box-office\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-quick-view\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/05\\/quick-view-icon.png\"},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Manage the RMA process, add warranties to products, and let customers request and manage returns\\/exchanges from their account.\",\"link\":\"https:\\/\\/woo.com\\/products\\/warranty-requests\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Generates a unique barcode for each order on your site \\u2014 perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woo.com\\/products\\/bookings-availability\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/woocommerce-360-image\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2014\\/10\\/360-image-icon.png\"},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging & dropping interface.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-photography\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/01\\/photography-icon.png\"},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woo.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\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/live-chat\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/11\\/LiveChat.png\"},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-products-compare\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/04\\/products-compare-icon.png\"},{\"title\":\"Software Add-on\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woo.com\\/products\\/software-add-on\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/05\\/software-add-on-icon.png\"},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/03\\/store-catalog-pdf-download-icon.png\"},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/09\\/zapier-logo-1.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Integrate your WooCommerce store with 6000+ cloud apps and services today. Trusted by 20,000+ stores.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"rating\":4.3,\"reviews_count\":58,\"vendor_name\":\"OM4\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/om4\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/09\\/zapier-icon-80px@2x.png\"},{\"title\":\"Storefront Homepage Contact Section\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Add a Contact section to the Storefront homepage.\",\"link\":\"https:\\/\\/woo.com\\/products\\/storefront-homepage-contact-section\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"cb12b87f8bbb0139dafbf92ca1f871ef\",\"slug\":\"storefront-homepage-contact-section\",\"id\":1468793,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"All-in-one plugin for gift cards, discounts, coupons, store credits, BOGO deals, advanced restrictions, product giveaways, offers, and promotions. Smart Coupons is the original, most complete, best selling and most advanced WooCommerce coupons plugin.\",\"link\":\"https:\\/\\/woo.com\\/products\\/smart-coupons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"rating\":4.5,\"reviews_count\":171,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\"},{\"title\":\"Storefront Footer Bar\",\"image\":\"\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/storefront-footer-bar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"6cfd3d4f923cafa16e4801ae801751f4\",\"slug\":\"storefront-footer-bar\",\"id\":1434472,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woo.com\\/products\\/ordercustomer-csv-export\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652,\"rating\":4.2,\"reviews_count\":37,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/11\\/logo-regular-lscryp.png?fit=764,573\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/google-product-feed\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619,\"rating\":4.3,\"reviews_count\":58,\"vendor_name\":\"Ademti Software\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/ademti-software\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/11\\/product-icon-omiutq.png\"},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woo.com\\/products\\/name-your-price\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738,\"rating\":4.9,\"reviews_count\":75,\"vendor_name\":\"Backcourt Development\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/backcourt-development\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/09\\/nyp-icon-80x80-1.jpg\"},{\"title\":\"Mercado Pago Checkout\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/05\\/logo-juzfys.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Mercado Pago is already in 7 countries in Latin America and has the best checkout for your customers\' preferences and your type of online store. Ensure security and offer the main payment methods without worry.\",\"link\":\"https:\\/\\/woo.com\\/products\\/mercado-pago-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"b51b437b-1948-4405-b96e-0ef86485d3eb\",\"slug\":\"woocommerce-mercadopago\",\"id\":7909962,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Mercado Pago\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/mercado-pago\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/05\\/Mercado-Pago.png\"},{\"title\":\"Storefront Reviews\",\"image\":\"\",\"type\":\"extension\",\"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:\\/\\/woo.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\",\"raw_price\":19,\"currency_symbol\":\"&#36;\",\"hash\":\"0c8a1d86b8eff9f1edffa923aeb3fc1f\",\"slug\":\"storefront-reviews\",\"id\":1044976,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"WooCommerce Print Invoices and Packing Lists\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woo.com\\/products\\/print-invoices-packing-lists\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666,\"rating\":4.4,\"reviews_count\":31,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png?fit=764,573\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/klarna-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/krokedil\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/01\\/klarna-checkout-icon.png\"},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woo.com\\/products\\/dynamic-pricing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643,\"rating\":3.2,\"reviews_count\":32,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Sensei LMS Course Progress\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-course-progress.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Enable your students to easily see their progress and pick up where they left off in a course.\",\"link\":\"https:\\/\\/woo.com\\/products\\/sensei-course-progress\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"ec0f55d8fa7c517dc1844f5c873a77da\",\"slug\":\"sensei-course-progress\",\"id\":435833,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Sensei\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/sensei\\/\",\"icon\":null},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/06\\/logo-cp-ey7bzs.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woo.com\\/products\\/composite-products\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;119.00\",\"raw_price\":119,\"currency_symbol\":\"&#36;\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836,\"rating\":4.9,\"reviews_count\":102,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woo.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;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633,\"rating\":3.4,\"reviews_count\":16,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Sensei LMS Certificates\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-certificates.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Award your students with a certificate of completion and a sense of accomplishment after finishing a course.\",\"link\":\"https:\\/\\/woo.com\\/products\\/sensei-certificates\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"625ee5fe1bf36b4c741ab07507ba2ffd\",\"slug\":\"sensei-certificates\",\"id\":247548,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Sensei\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/sensei\\/\",\"icon\":null},{\"title\":\"Klarna Payments\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Payments_Pink.png?fit=764,573\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/klarna-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnapayments\\/\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"a19c689325bc8ea63c620765dd54b33a\",\"slug\":\"klarna-payments-for-woocommerce\",\"id\":2754217,\"rating\":2.7,\"reviews_count\":13,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/krokedil\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/01\\/Klarna.png\"},{\"title\":\"Trustpilot Reviews\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/06\\/Trustpilot_brandmark_gr-blk_RGB-2-1-px9shb.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Collect and showcase verified reviews that consumers trust.\",\"link\":\"https:\\/\\/woo.com\\/products\\/trustpilot-reviews\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"cbbd9b5e-b226-492c-a87e-cb21743ed8bf\",\"slug\":\"trustpilot-reviews\",\"id\":8173894,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Trustpilot\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/trustpilot\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/07\\/logo-160x160-1.png\"},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/03\\/logo-csp-aqfm98.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woo.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253,\"rating\":4.7,\"reviews_count\":45,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Eway\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/10\\/51456-Eway-logo-tagline-RGB-H-yellow-_-grey.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Take credit card payments securely via Eway (AU and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woo.com\\/products\\/eway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/10\\/woo-eway-0klzux.png\"},{\"title\":\"reCaptcha for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/02\\/WooCommerce-reCpatcha.png?w=150&amp;h=150&amp;crop=1&fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Protect your eCommerce store from malicious and automated attacks by using reCaptcha for WooCommerce.\",\"link\":\"https:\\/\\/woo.com\\/products\\/recaptcha-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.i13websolution.com\\/wp-test\\/\",\"price\":\"&#36;29.00\",\"raw_price\":29,\"currency_symbol\":\"&#36;\",\"hash\":\"c9793ede-aadc-484f-8c5a-1a0776604ce6\",\"slug\":\"recaptcha-for-woocommerce\",\"id\":5347485,\"rating\":3.7,\"reviews_count\":28,\"vendor_name\":\"I13 Web Solution\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/i13-web-solution\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/02\\/reCaptcha-For-WooCOmmerce-logo-164x164-2.png\"},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398,\"rating\":4.2,\"reviews_count\":17,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"The most powerful and customizable integration between WooCommerce and QuickBooks (Online, Desktop, or POS). Forget manual bookkeeping\\u2014keep all your sales and inventory data automatically in sync between platforms!\",\"link\":\"https:\\/\\/woo.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"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:\\/\\/woo.com\\/vendor\\/myworks-software\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/04\\/qb_thumb.png\"},{\"title\":\"Sensei Pro (WC Paid Courses)\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/01\\/Sensei-Pro.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Sell your online courses using Sensei LMS with WooCommerce \\u2014 complete learning management with quizzes, certificates, content drip, and more.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-paid-courses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"raw_price\":179,\"currency_symbol\":\"&#36;\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Sensei\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/sensei\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/01\\/SenseiProWooIcon-aut8wu.png\"},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woo.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\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174,\"rating\":4.3,\"reviews_count\":169,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/itthinx\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2014\\/10\\/woocommerce-product-search-product-icon-160x160-sunrise.png\"},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Create special pages where customers can choose products, checkout & pay all on the one page.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2014\\/10\\/woocommerce.png\"},{\"title\":\"Viva Wallet Standard Checkout\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/04\\/Viva-Wallet-logo.png?w=374&fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Integrate the Viva Wallet payment gateway with your WooCommerce store to process and sync your payments and help you sell more.\",\"link\":\"https:\\/\\/woo.com\\/products\\/viva-wallet-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"7240a329-047f-4d8b-b7ec-ee3defd798bd\",\"slug\":\"viva-wallet-for-woocommerce\",\"id\":6137160,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Viva Wallet\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/viva-wallet\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/07\\/Viva-Wallet.png\"},{\"title\":\"Sensei LMS Media Attachments\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-media-attachments.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Provide your students with easy access to additional learning materials, from audio files to slideshows and PDFs.\",\"link\":\"https:\\/\\/woo.com\\/products\\/sensei-media-attachments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"788647a9a1d8ef5c95371f0e69223a0f\",\"slug\":\"sensei-media-attachments\",\"id\":290551,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Sensei\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/sensei\\/\",\"icon\":null},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Tame your order numbers! Upgrade from Sequential Order Numbers with advanced features and with optional prefixes\\/suffixes.\",\"link\":\"https:\\/\\/woo.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688,\"rating\":4.5,\"reviews_count\":13,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497,\"rating\":3.2,\"reviews_count\":36,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Affirm Payments\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/black_logo-transparent_bg-mo35al.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Affirm is the top-rated pay-over-time solution offering Pay in 4 for everyday purchases or monthly installments for higher-ticket items.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-gateway-affirm\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"b271ae89b8b86c34020f58af2f4cbc81\",\"slug\":\"woocommerce-gateway-affirm\",\"id\":1474706,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-affirm-imdlae.png\"}]}\";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:23:\"WpOrg\\Requests\\Response\":10:{s:4:\"body\";s:75500:\"{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-google-analytics\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"rating\":4.5,\"reviews_count\":27,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/01\\/woo-Google_Analytics-fvsrvf.png\"},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/06\\/Woo-Tax-Icon-160x160-2.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders \\u2014 by city, country, or state \\u2014 at checkout.\",\"link\":\"https:\\/\\/woo.com\\/products\\/tax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/06\\/Woo-Tax-Marketplace-Icon-160x160-1.png\"},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woo.com\\/products\\/stripe\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"rating\":4,\"reviews_count\":30,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\"},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woo.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"rating\":3.6,\"reviews_count\":14,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/mailchimp\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2017\\/09\\/Mailchimp.png\"},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2017\\/11\\/Jetpack-1-m5mwyg.png?fit=764,573\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"rating\":4.5,\"reviews_count\":14,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/jetpack\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/02\\/jetpack-logo--80sgtq.png\"},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin to reach your customers across Facebook, Instagram, Messenger and WhatsApp.\",\"link\":\"https:\\/\\/woo.com\\/products\\/facebook\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"rating\":2.2,\"reviews_count\":68,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2017\\/04\\/fb-woodotcom.png\"},{\"title\":\"WooPayments\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/02\\/WooPayments-Logo.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"The only payment solution fully integrated to Woo. Accept credit\\/debit cards and local payment options with no setup or monthly fees.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woopayments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"rating\":4.3,\"reviews_count\":32,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/02\\/WooPayments-Icon.png\"},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woo.com\\/products\\/product-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"rating\":3.3,\"reviews_count\":28,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Google Listings & Ads\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/06\\/Marketplace_card_Google.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Reach millions of engaged shoppers across Google with free product listings and ads. Sync with Google Merchant Center and control your product feed. Built in partnership with Google.\",\"link\":\"https:\\/\\/woo.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"rating\":3.2,\"reviews_count\":23,\"vendor_name\":\"Google\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/google\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/06\\/woo-GoogleListingsAds-jworee.png\"},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png?fit=764,573\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/square\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"rating\":3.4,\"reviews_count\":101,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/07\\/woo-Square-u8km15.png\"},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woo.com\\/products\\/usps-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-USPS-yhn1rb.png\"},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woo.com\\/products\\/ups-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"rating\":3.3,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-UPS-1.png\"},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woo.com\\/products\\/shipment-tracking\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"rating\":3.6,\"reviews_count\":14,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Enable a familiar, fast checkout for hundreds of millions of active Amazon customers globally\",\"link\":\"https:\\/\\/woo.com\\/products\\/pay-with-amazon\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"rating\":3.1,\"reviews_count\":32,\"vendor_name\":\"Amazon Pay\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/amazon-pay-admin\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/08\\/woo-Amazon_Pay-8lvfuy.png\"},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Minimum and maximum quantity rules for products, orders and categories.\",\"link\":\"https:\\/\\/woo.com\\/products\\/minmax-quantities\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woo.com\\/products\\/australia-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-AustraliaPost.png\"},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woo.com\\/products\\/canada-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-CanadaPost-fjlcfq.png\"},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/04\\/royalmail.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers.\",\"link\":\"https:\\/\\/woo.com\\/products\\/royal-mail\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/04\\/woo-RoyalMail-sd9zwy.png\"},{\"title\":\"Avalara AvaTax\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Automated sales tax calculations for your WooCommerce store.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"rating\":3.4,\"reviews_count\":24,\"vendor_name\":\"Avalara\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/avalara\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/01\\/Avalara-Wordpress-Plugin-Creative_icon-80.png\"},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"One checkout solution. Many ways to pay. PayPal\\u2019s all-in-one solution allows you to offer PayPal, Venmo (US), Pay Later at no additional cost, credit and debit cards, and country-specific payment options.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"rating\":3.7,\"reviews_count\":123,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/10\\/woo-PayPal-nlioum.png\"},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woo.com\\/products\\/fedex-shipping-module\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-FedEx-auxjb7.png\"},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/07\\/logo-pb-lzevsq.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woo.com\\/products\\/product-bundles\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"rating\":4.9,\"reviews_count\":128,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woo.com\\/products\\/brands\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2017\\/06\\/Woo-Shipping-Marketplace-Icon-160x160-1.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save on shipping. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woo.com\\/products\\/shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2017\\/06\\/Woo-Shipping-Marketplace-Icon-160x160-2.png\"},{\"title\":\"Woo Subscriptions\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-subscriptions\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;239.00\",\"raw_price\":239,\"currency_symbol\":\"&#36;\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"rating\":3.4,\"reviews_count\":73,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/09\\/Woo_Subscriptions_icon-marketplace-160x160-1.png\"},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png?fit=764,573\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/taxjar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"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:\\/\\/woo.com\\/vendor\\/taxjar\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2014\\/10\\/TaxJar.png\"},{\"title\":\"Gift Cards\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/03\\/logo-gc-z327mo.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Offer prepaid digital gift cards that customers can redeem online.\",\"link\":\"https:\\/\\/woo.com\\/products\\/gift-cards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"4e0e8c35-e777-4ecc-b96b-202ee1eb256f\",\"slug\":\"woocommerce-gift-cards\",\"id\":5571998,\"rating\":4.5,\"reviews_count\":37,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"EU VAT Number\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woo.com\\/products\\/eu-vat-number\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Back In Stock Notifications\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/11\\/logo-bis-ircwrk.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Notify customers when your products are restocked.\",\"link\":\"https:\\/\\/woo.com\\/products\\/back-in-stock-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"755424b1-28b6-448a-aeb3-709cb3029eb6\",\"slug\":\"woocommerce-back-in-stock-notifications\",\"id\":6855144,\"rating\":4.4,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Product Recommendations\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/07\\/logo-prl-lfwngz.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Offer smarter upsells, cross-sells, and \\\"frequently bought together\\\" recommendations. Measure their impact with in-depth analytics.\",\"link\":\"https:\\/\\/woo.com\\/products\\/product-recommendations\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"4f9d0025-64b2-496f-97bb-ef553752d2d1\",\"slug\":\"woocommerce-product-recommendations\",\"id\":4486128,\"rating\":4.8,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"ShipStation for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Ship your WooCommerce orders with confidence, save on top carriers, and automate your processes with ShipStation.\",\"link\":\"https:\\/\\/woo.com\\/products\\/shipstation-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Shipstation-xqap96.png\"},{\"title\":\"Payfast Payment Gateway\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/09\\/Stand-Alone-Safe-Zone@1x.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Take payments on your WooCommerce store via Payfast (redirect method).\",\"link\":\"https:\\/\\/woo.com\\/products\\/payfast-payment-gateway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/09\\/Payfast-favicon-1.png\"},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woo.com\\/products\\/automatewoo\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;119.00\",\"raw_price\":119,\"currency_symbol\":\"&#36;\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"rating\":4.2,\"reviews_count\":15,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/10\\/woo-AutomateWoo.png\"},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"raw_price\":249,\"currency_symbol\":\"&#36;\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890,\"rating\":2.9,\"reviews_count\":35,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"rating\":3.1,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woo.com\\/products\\/table-rate-shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;119.00\",\"raw_price\":119,\"currency_symbol\":\"&#36;\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"rating\":4.2,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/05\\/Woo-Blocks-Marketplace-Icon-160x160-1.png\"},{\"title\":\"Google, Facebook, Retargeting all-in-one Marketing\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/02\\/Woo-Extension-Logo.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Reach beyond your competition and grow your store sales in 5 Minutes.\",\"link\":\"https:\\/\\/woo.com\\/products\\/google-ads-and-marketing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"rating\":4.3,\"reviews_count\":113,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/kliken\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/02\\/Woo-Extension-Logo-80x80-2.png\"},{\"title\":\"Pinterest for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/10\\/Marketplace_card_Pinterest.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Get your products in front of Pinterest users searching for ideas and things to buy. Connect your WooCommerce store to make your entire catalog browsable.\",\"link\":\"https:\\/\\/woo.com\\/products\\/pinterest-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"29785cce-92ef-4b3a-8bd7-979bc688fd47\",\"slug\":\"pinterest-for-woocommerce\",\"id\":8688768,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/10\\/icon@2x-pe5lqg.png\"},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woo.com\\/products\\/product-csv-import-suite\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/01\\/Woo-Accommodations-Marketplace-Icon-160x160-1.png\"},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/08\\/woocommerce-xero-integration-sdth2k.jpg?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woo.com\\/products\\/xero\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"rating\":2.7,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Xero-4ovyoc.png\"},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"raw_price\":199,\"currency_symbol\":\"&#36;\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"rating\":4.1,\"reviews_count\":102,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Grow Your Business on TikTok\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2022\\/04\\/TikTok-logo-CMYK-Horizontal-black-1.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Sync your catalog, create TikTok ads to showcase & sell your products, and install the TikTok Pixel and Events API (server-to-server connection) to fuel performance and measure results at scale!\\r\\n\\r\\nDirectly from your dashboard, you can create advertising campaigns to promote your product sales, generate leads, and reach over one billion global users.\",\"link\":\"https:\\/\\/woo.com\\/products\\/tiktok-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"a6f95b36-133e-443e-8e31-6e7a67eb597c\",\"slug\":\"tiktok-for-woocommerce\",\"id\":18734000336353,\"rating\":3.5,\"reviews_count\":27,\"vendor_name\":\"TikTok for Business\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/tiktok-for-business\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2022\\/04\\/tt2.jpg\"},{\"title\":\"Product Vendors\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woo.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"rating\":2.9,\"reviews_count\":16,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;159.00\",\"raw_price\":159,\"currency_symbol\":\"&#36;\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"rating\":3,\"reviews_count\":14,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woo.com\\/products\\/advanced-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-pre-orders\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;159.00\",\"raw_price\":159,\"currency_symbol\":\"&#36;\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Unlimited images for your product variations.\",\"link\":\"https:\\/\\/woo.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;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-deposits\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;219.00\",\"raw_price\":219,\"currency_symbol\":\"&#36;\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"rating\":1.7,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Authorize.net, a Visa solution\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Online payments leader Authorize.net, a Visa Solution, helps thousands of businesses simplify payments by offering more solutions, more support, and more strength to stand on.\",\"link\":\"https:\\/\\/woo.com\\/products\\/authorize-net\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"rating\":4.3,\"reviews_count\":65,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/04\\/wooCommerceLogos_anet-2.png\"},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Braintree-wrweyl.png\"},{\"title\":\"Woo Subscription Downloads\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woo.com\\/products\\/amazon-s3-storage\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"rating\":3.7,\"reviews_count\":10,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/02\\/amazon-s3-storage-icon.png\"},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woo.com\\/products\\/shipping-multiple-addresses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woo.com\\/products\\/bulk-stock-management\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Force Sells\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woo.com\\/products\\/force-sells\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/05\\/force-sells-icon.png\"},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Seamlessly accept purchase orders as a payment method on your WooCommerce store.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-box-office\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-quick-view\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/05\\/quick-view-icon.png\"},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Manage the RMA process, add warranties to products, and let customers request and manage returns\\/exchanges from their account.\",\"link\":\"https:\\/\\/woo.com\\/products\\/warranty-requests\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Generates a unique barcode for each order on your site \\u2014 perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woo.com\\/products\\/bookings-availability\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/woocommerce-360-image\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2014\\/10\\/360-image-icon.png\"},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging & dropping interface.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-photography\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/01\\/photography-icon.png\"},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woo.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\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/live-chat\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/11\\/LiveChat.png\"},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-products-compare\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/04\\/products-compare-icon.png\"},{\"title\":\"Software Add-on\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woo.com\\/products\\/software-add-on\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/05\\/software-add-on-icon.png\"},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/03\\/store-catalog-pdf-download-icon.png\"},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/09\\/zapier-logo-1.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Integrate your WooCommerce store with 6000+ cloud apps and services today. Trusted by 20,000+ stores.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"rating\":4.3,\"reviews_count\":58,\"vendor_name\":\"OM4\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/om4\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/09\\/zapier-icon-80px@2x.png\"},{\"title\":\"Storefront Homepage Contact Section\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Add a Contact section to the Storefront homepage.\",\"link\":\"https:\\/\\/woo.com\\/products\\/storefront-homepage-contact-section\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"cb12b87f8bbb0139dafbf92ca1f871ef\",\"slug\":\"storefront-homepage-contact-section\",\"id\":1468793,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"All-in-one plugin for gift cards, discounts, coupons, store credits, BOGO deals, advanced restrictions, product giveaways, offers, and promotions. Smart Coupons is the original, most complete, best selling and most advanced WooCommerce coupons plugin.\",\"link\":\"https:\\/\\/woo.com\\/products\\/smart-coupons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"rating\":4.5,\"reviews_count\":171,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\"},{\"title\":\"Storefront Footer Bar\",\"image\":\"\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/storefront-footer-bar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"6cfd3d4f923cafa16e4801ae801751f4\",\"slug\":\"storefront-footer-bar\",\"id\":1434472,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woo.com\\/products\\/ordercustomer-csv-export\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652,\"rating\":4.2,\"reviews_count\":37,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/11\\/logo-regular-lscryp.png?fit=764,573\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/google-product-feed\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619,\"rating\":4.3,\"reviews_count\":58,\"vendor_name\":\"Ademti Software\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/ademti-software\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/11\\/product-icon-omiutq.png\"},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woo.com\\/products\\/name-your-price\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738,\"rating\":4.9,\"reviews_count\":75,\"vendor_name\":\"Backcourt Development\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/backcourt-development\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/09\\/nyp-icon-80x80-1.jpg\"},{\"title\":\"Mercado Pago Checkout\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/05\\/logo-juzfys.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Mercado Pago is already in 7 countries in Latin America and has the best checkout for your customers\' preferences and your type of online store. Ensure security and offer the main payment methods without worry.\",\"link\":\"https:\\/\\/woo.com\\/products\\/mercado-pago-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"b51b437b-1948-4405-b96e-0ef86485d3eb\",\"slug\":\"woocommerce-mercadopago\",\"id\":7909962,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Mercado Pago\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/mercado-pago\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/05\\/Mercado-Pago.png\"},{\"title\":\"Storefront Reviews\",\"image\":\"\",\"type\":\"extension\",\"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:\\/\\/woo.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\",\"raw_price\":19,\"currency_symbol\":\"&#36;\",\"hash\":\"0c8a1d86b8eff9f1edffa923aeb3fc1f\",\"slug\":\"storefront-reviews\",\"id\":1044976,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"WooCommerce Print Invoices and Packing Lists\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woo.com\\/products\\/print-invoices-packing-lists\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666,\"rating\":4.4,\"reviews_count\":31,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png?fit=764,573\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/klarna-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/krokedil\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/01\\/klarna-checkout-icon.png\"},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woo.com\\/products\\/dynamic-pricing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643,\"rating\":3.2,\"reviews_count\":32,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Sensei LMS Course Progress\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-course-progress.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Enable your students to easily see their progress and pick up where they left off in a course.\",\"link\":\"https:\\/\\/woo.com\\/products\\/sensei-course-progress\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"ec0f55d8fa7c517dc1844f5c873a77da\",\"slug\":\"sensei-course-progress\",\"id\":435833,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Sensei\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/sensei\\/\",\"icon\":null},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/06\\/logo-cp-ey7bzs.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woo.com\\/products\\/composite-products\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;119.00\",\"raw_price\":119,\"currency_symbol\":\"&#36;\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836,\"rating\":4.9,\"reviews_count\":102,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woo.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;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633,\"rating\":3.4,\"reviews_count\":16,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Sensei LMS Certificates\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-certificates.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Award your students with a certificate of completion and a sense of accomplishment after finishing a course.\",\"link\":\"https:\\/\\/woo.com\\/products\\/sensei-certificates\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"625ee5fe1bf36b4c741ab07507ba2ffd\",\"slug\":\"sensei-certificates\",\"id\":247548,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Sensei\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/sensei\\/\",\"icon\":null},{\"title\":\"Klarna Payments\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Payments_Pink.png?fit=764,573\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/klarna-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnapayments\\/\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"a19c689325bc8ea63c620765dd54b33a\",\"slug\":\"klarna-payments-for-woocommerce\",\"id\":2754217,\"rating\":2.7,\"reviews_count\":13,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/krokedil\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/01\\/Klarna.png\"},{\"title\":\"Trustpilot Reviews\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/06\\/Trustpilot_brandmark_gr-blk_RGB-2-1-px9shb.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Collect and showcase verified reviews that consumers trust.\",\"link\":\"https:\\/\\/woo.com\\/products\\/trustpilot-reviews\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"cbbd9b5e-b226-492c-a87e-cb21743ed8bf\",\"slug\":\"trustpilot-reviews\",\"id\":8173894,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Trustpilot\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/trustpilot\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/07\\/logo-160x160-1.png\"},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/03\\/logo-csp-aqfm98.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woo.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253,\"rating\":4.7,\"reviews_count\":45,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Eway\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/10\\/51456-Eway-logo-tagline-RGB-H-yellow-_-grey.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Take credit card payments securely via Eway (AU and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woo.com\\/products\\/eway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/10\\/woo-eway-0klzux.png\"},{\"title\":\"reCaptcha for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/02\\/WooCommerce-reCpatcha.png?w=150&amp;h=150&amp;crop=1&fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Protect your eCommerce store from malicious and automated attacks by using reCaptcha for WooCommerce.\",\"link\":\"https:\\/\\/woo.com\\/products\\/recaptcha-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.i13websolution.com\\/wp-test\\/\",\"price\":\"&#36;29.00\",\"raw_price\":29,\"currency_symbol\":\"&#36;\",\"hash\":\"c9793ede-aadc-484f-8c5a-1a0776604ce6\",\"slug\":\"recaptcha-for-woocommerce\",\"id\":5347485,\"rating\":3.7,\"reviews_count\":28,\"vendor_name\":\"I13 Web Solution\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/i13-web-solution\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/02\\/reCaptcha-For-WooCOmmerce-logo-164x164-2.png\"},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398,\"rating\":4.2,\"reviews_count\":17,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"The most powerful and customizable integration between WooCommerce and QuickBooks (Online, Desktop, or POS). Forget manual bookkeeping\\u2014keep all your sales and inventory data automatically in sync between platforms!\",\"link\":\"https:\\/\\/woo.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"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:\\/\\/woo.com\\/vendor\\/myworks-software\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/04\\/qb_thumb.png\"},{\"title\":\"Sensei Pro (WC Paid Courses)\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/01\\/Sensei-Pro.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Sell your online courses using Sensei LMS with WooCommerce \\u2014 complete learning management with quizzes, certificates, content drip, and more.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-paid-courses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"raw_price\":179,\"currency_symbol\":\"&#36;\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Sensei\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/sensei\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/01\\/SenseiProWooIcon-aut8wu.png\"},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woo.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\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174,\"rating\":4.3,\"reviews_count\":169,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/itthinx\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2014\\/10\\/woocommerce-product-search-product-icon-160x160-sunrise.png\"},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Create special pages where customers can choose products, checkout & pay all on the one page.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2014\\/10\\/woocommerce.png\"},{\"title\":\"Viva Wallet Standard Checkout\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/04\\/Viva-Wallet-logo.png?w=374&fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Integrate the Viva Wallet payment gateway with your WooCommerce store to process and sync your payments and help you sell more.\",\"link\":\"https:\\/\\/woo.com\\/products\\/viva-wallet-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"7240a329-047f-4d8b-b7ec-ee3defd798bd\",\"slug\":\"viva-wallet-for-woocommerce\",\"id\":6137160,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Viva Wallet\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/viva-wallet\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/07\\/Viva-Wallet.png\"},{\"title\":\"Sensei LMS Media Attachments\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-media-attachments.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Provide your students with easy access to additional learning materials, from audio files to slideshows and PDFs.\",\"link\":\"https:\\/\\/woo.com\\/products\\/sensei-media-attachments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"788647a9a1d8ef5c95371f0e69223a0f\",\"slug\":\"sensei-media-attachments\",\"id\":290551,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Sensei\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/sensei\\/\",\"icon\":null},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Tame your order numbers! Upgrade from Sequential Order Numbers with advanced features and with optional prefixes\\/suffixes.\",\"link\":\"https:\\/\\/woo.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688,\"rating\":4.5,\"reviews_count\":13,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497,\"rating\":3.2,\"reviews_count\":36,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Affirm Payments\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/black_logo-transparent_bg-mo35al.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Affirm is the top-rated pay-over-time solution offering Pay in 4 for everyday purchases or monthly installments for higher-ticket items.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-gateway-affirm\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"b271ae89b8b86c34020f58af2f4cbc81\",\"slug\":\"woocommerce-gateway-affirm\",\"id\":1474706,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-affirm-imdlae.png\"}]}\";s:3:\"raw\";s:76173:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Tue, 07 Nov 2023 20:23:02 GMT\r\nContent-Type: application/json; charset=UTF-8\r\nContent-Length: 13937\r\nConnection: close\r\nX-Robots-Tag: noindex\r\nLink: <https://woo.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 85 187 443\r\nContent-Encoding: gzip\r\nAge: 6\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:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-google-analytics\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"rating\":4.5,\"reviews_count\":27,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/01\\/woo-Google_Analytics-fvsrvf.png\"},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/06\\/Woo-Tax-Icon-160x160-2.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders \\u2014 by city, country, or state \\u2014 at checkout.\",\"link\":\"https:\\/\\/woo.com\\/products\\/tax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/06\\/Woo-Tax-Marketplace-Icon-160x160-1.png\"},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woo.com\\/products\\/stripe\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"rating\":4,\"reviews_count\":30,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\"},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woo.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"rating\":3.6,\"reviews_count\":14,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/mailchimp\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2017\\/09\\/Mailchimp.png\"},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2017\\/11\\/Jetpack-1-m5mwyg.png?fit=764,573\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"rating\":4.5,\"reviews_count\":14,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/jetpack\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/02\\/jetpack-logo--80sgtq.png\"},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin to reach your customers across Facebook, Instagram, Messenger and WhatsApp.\",\"link\":\"https:\\/\\/woo.com\\/products\\/facebook\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"rating\":2.2,\"reviews_count\":68,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2017\\/04\\/fb-woodotcom.png\"},{\"title\":\"WooPayments\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/02\\/WooPayments-Logo.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"The only payment solution fully integrated to Woo. Accept credit\\/debit cards and local payment options with no setup or monthly fees.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woopayments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"rating\":4.3,\"reviews_count\":32,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/02\\/WooPayments-Icon.png\"},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woo.com\\/products\\/product-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"rating\":3.3,\"reviews_count\":28,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Google Listings & Ads\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/06\\/Marketplace_card_Google.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Reach millions of engaged shoppers across Google with free product listings and ads. Sync with Google Merchant Center and control your product feed. Built in partnership with Google.\",\"link\":\"https:\\/\\/woo.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"rating\":3.2,\"reviews_count\":23,\"vendor_name\":\"Google\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/google\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/06\\/woo-GoogleListingsAds-jworee.png\"},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png?fit=764,573\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/square\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"rating\":3.4,\"reviews_count\":101,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/07\\/woo-Square-u8km15.png\"},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woo.com\\/products\\/usps-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-USPS-yhn1rb.png\"},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woo.com\\/products\\/ups-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"rating\":3.3,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-UPS-1.png\"},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woo.com\\/products\\/shipment-tracking\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"rating\":3.6,\"reviews_count\":14,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Enable a familiar, fast checkout for hundreds of millions of active Amazon customers globally\",\"link\":\"https:\\/\\/woo.com\\/products\\/pay-with-amazon\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"rating\":3.1,\"reviews_count\":32,\"vendor_name\":\"Amazon Pay\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/amazon-pay-admin\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/08\\/woo-Amazon_Pay-8lvfuy.png\"},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Minimum and maximum quantity rules for products, orders and categories.\",\"link\":\"https:\\/\\/woo.com\\/products\\/minmax-quantities\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woo.com\\/products\\/australia-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-AustraliaPost.png\"},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woo.com\\/products\\/canada-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-CanadaPost-fjlcfq.png\"},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/04\\/royalmail.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers.\",\"link\":\"https:\\/\\/woo.com\\/products\\/royal-mail\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/04\\/woo-RoyalMail-sd9zwy.png\"},{\"title\":\"Avalara AvaTax\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Automated sales tax calculations for your WooCommerce store.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"rating\":3.4,\"reviews_count\":24,\"vendor_name\":\"Avalara\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/avalara\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/01\\/Avalara-Wordpress-Plugin-Creative_icon-80.png\"},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"One checkout solution. Many ways to pay. PayPal\\u2019s all-in-one solution allows you to offer PayPal, Venmo (US), Pay Later at no additional cost, credit and debit cards, and country-specific payment options.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"rating\":3.7,\"reviews_count\":123,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/10\\/woo-PayPal-nlioum.png\"},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woo.com\\/products\\/fedex-shipping-module\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-FedEx-auxjb7.png\"},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/07\\/logo-pb-lzevsq.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woo.com\\/products\\/product-bundles\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"rating\":4.9,\"reviews_count\":128,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woo.com\\/products\\/brands\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2017\\/06\\/Woo-Shipping-Marketplace-Icon-160x160-1.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save on shipping. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woo.com\\/products\\/shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2017\\/06\\/Woo-Shipping-Marketplace-Icon-160x160-2.png\"},{\"title\":\"Woo Subscriptions\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-subscriptions\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;239.00\",\"raw_price\":239,\"currency_symbol\":\"&#36;\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"rating\":3.4,\"reviews_count\":73,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/09\\/Woo_Subscriptions_icon-marketplace-160x160-1.png\"},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png?fit=764,573\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/taxjar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"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:\\/\\/woo.com\\/vendor\\/taxjar\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2014\\/10\\/TaxJar.png\"},{\"title\":\"Gift Cards\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/03\\/logo-gc-z327mo.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Offer prepaid digital gift cards that customers can redeem online.\",\"link\":\"https:\\/\\/woo.com\\/products\\/gift-cards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"4e0e8c35-e777-4ecc-b96b-202ee1eb256f\",\"slug\":\"woocommerce-gift-cards\",\"id\":5571998,\"rating\":4.5,\"reviews_count\":37,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"EU VAT Number\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woo.com\\/products\\/eu-vat-number\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Back In Stock Notifications\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/11\\/logo-bis-ircwrk.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Notify customers when your products are restocked.\",\"link\":\"https:\\/\\/woo.com\\/products\\/back-in-stock-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"755424b1-28b6-448a-aeb3-709cb3029eb6\",\"slug\":\"woocommerce-back-in-stock-notifications\",\"id\":6855144,\"rating\":4.4,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Product Recommendations\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/07\\/logo-prl-lfwngz.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Offer smarter upsells, cross-sells, and \\\"frequently bought together\\\" recommendations. Measure their impact with in-depth analytics.\",\"link\":\"https:\\/\\/woo.com\\/products\\/product-recommendations\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"4f9d0025-64b2-496f-97bb-ef553752d2d1\",\"slug\":\"woocommerce-product-recommendations\",\"id\":4486128,\"rating\":4.8,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"ShipStation for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Ship your WooCommerce orders with confidence, save on top carriers, and automate your processes with ShipStation.\",\"link\":\"https:\\/\\/woo.com\\/products\\/shipstation-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Shipstation-xqap96.png\"},{\"title\":\"Payfast Payment Gateway\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/09\\/Stand-Alone-Safe-Zone@1x.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Take payments on your WooCommerce store via Payfast (redirect method).\",\"link\":\"https:\\/\\/woo.com\\/products\\/payfast-payment-gateway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/09\\/Payfast-favicon-1.png\"},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woo.com\\/products\\/automatewoo\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;119.00\",\"raw_price\":119,\"currency_symbol\":\"&#36;\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"rating\":4.2,\"reviews_count\":15,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/10\\/woo-AutomateWoo.png\"},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"raw_price\":249,\"currency_symbol\":\"&#36;\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890,\"rating\":2.9,\"reviews_count\":35,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"rating\":3.1,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woo.com\\/products\\/table-rate-shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;119.00\",\"raw_price\":119,\"currency_symbol\":\"&#36;\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"rating\":4.2,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/05\\/Woo-Blocks-Marketplace-Icon-160x160-1.png\"},{\"title\":\"Google, Facebook, Retargeting all-in-one Marketing\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/02\\/Woo-Extension-Logo.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Reach beyond your competition and grow your store sales in 5 Minutes.\",\"link\":\"https:\\/\\/woo.com\\/products\\/google-ads-and-marketing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"rating\":4.3,\"reviews_count\":113,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/kliken\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/02\\/Woo-Extension-Logo-80x80-2.png\"},{\"title\":\"Pinterest for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/10\\/Marketplace_card_Pinterest.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Get your products in front of Pinterest users searching for ideas and things to buy. Connect your WooCommerce store to make your entire catalog browsable.\",\"link\":\"https:\\/\\/woo.com\\/products\\/pinterest-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"29785cce-92ef-4b3a-8bd7-979bc688fd47\",\"slug\":\"pinterest-for-woocommerce\",\"id\":8688768,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/10\\/icon@2x-pe5lqg.png\"},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woo.com\\/products\\/product-csv-import-suite\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/01\\/Woo-Accommodations-Marketplace-Icon-160x160-1.png\"},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/08\\/woocommerce-xero-integration-sdth2k.jpg?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woo.com\\/products\\/xero\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"rating\":2.7,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Xero-4ovyoc.png\"},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"raw_price\":199,\"currency_symbol\":\"&#36;\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"rating\":4.1,\"reviews_count\":102,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Grow Your Business on TikTok\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2022\\/04\\/TikTok-logo-CMYK-Horizontal-black-1.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Sync your catalog, create TikTok ads to showcase & sell your products, and install the TikTok Pixel and Events API (server-to-server connection) to fuel performance and measure results at scale!\\r\\n\\r\\nDirectly from your dashboard, you can create advertising campaigns to promote your product sales, generate leads, and reach over one billion global users.\",\"link\":\"https:\\/\\/woo.com\\/products\\/tiktok-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"a6f95b36-133e-443e-8e31-6e7a67eb597c\",\"slug\":\"tiktok-for-woocommerce\",\"id\":18734000336353,\"rating\":3.5,\"reviews_count\":27,\"vendor_name\":\"TikTok for Business\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/tiktok-for-business\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2022\\/04\\/tt2.jpg\"},{\"title\":\"Product Vendors\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woo.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"rating\":2.9,\"reviews_count\":16,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;159.00\",\"raw_price\":159,\"currency_symbol\":\"&#36;\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"rating\":3,\"reviews_count\":14,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woo.com\\/products\\/advanced-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;39.00\",\"raw_price\":39,\"currency_symbol\":\"&#36;\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-pre-orders\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;159.00\",\"raw_price\":159,\"currency_symbol\":\"&#36;\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Unlimited images for your product variations.\",\"link\":\"https:\\/\\/woo.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;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-deposits\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;219.00\",\"raw_price\":219,\"currency_symbol\":\"&#36;\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"rating\":1.7,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Authorize.net, a Visa solution\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Online payments leader Authorize.net, a Visa Solution, helps thousands of businesses simplify payments by offering more solutions, more support, and more strength to stand on.\",\"link\":\"https:\\/\\/woo.com\\/products\\/authorize-net\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"rating\":4.3,\"reviews_count\":65,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/04\\/wooCommerceLogos_anet-2.png\"},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Braintree-wrweyl.png\"},{\"title\":\"Woo Subscription Downloads\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woo.com\\/products\\/amazon-s3-storage\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"rating\":3.7,\"reviews_count\":10,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/02\\/amazon-s3-storage-icon.png\"},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woo.com\\/products\\/shipping-multiple-addresses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woo.com\\/products\\/bulk-stock-management\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Force Sells\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woo.com\\/products\\/force-sells\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/05\\/force-sells-icon.png\"},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Seamlessly accept purchase orders as a payment method on your WooCommerce store.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-box-office\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-quick-view\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/05\\/quick-view-icon.png\"},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Manage the RMA process, add warranties to products, and let customers request and manage returns\\/exchanges from their account.\",\"link\":\"https:\\/\\/woo.com\\/products\\/warranty-requests\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Generates a unique barcode for each order on your site \\u2014 perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woo.com\\/products\\/bookings-availability\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/woocommerce-360-image\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2014\\/10\\/360-image-icon.png\"},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging & dropping interface.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-photography\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/01\\/photography-icon.png\"},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woo.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\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/live-chat\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/11\\/LiveChat.png\"},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-products-compare\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/04\\/products-compare-icon.png\"},{\"title\":\"Software Add-on\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woo.com\\/products\\/software-add-on\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/05\\/software-add-on-icon.png\"},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"KoiLab\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/koilab\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/03\\/store-catalog-pdf-download-icon.png\"},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/09\\/zapier-logo-1.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Integrate your WooCommerce store with 6000+ cloud apps and services today. Trusted by 20,000+ stores.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"rating\":4.3,\"reviews_count\":58,\"vendor_name\":\"OM4\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/om4\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/09\\/zapier-icon-80px@2x.png\"},{\"title\":\"Storefront Homepage Contact Section\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Add a Contact section to the Storefront homepage.\",\"link\":\"https:\\/\\/woo.com\\/products\\/storefront-homepage-contact-section\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"cb12b87f8bbb0139dafbf92ca1f871ef\",\"slug\":\"storefront-homepage-contact-section\",\"id\":1468793,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"All-in-one plugin for gift cards, discounts, coupons, store credits, BOGO deals, advanced restrictions, product giveaways, offers, and promotions. Smart Coupons is the original, most complete, best selling and most advanced WooCommerce coupons plugin.\",\"link\":\"https:\\/\\/woo.com\\/products\\/smart-coupons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"rating\":4.5,\"reviews_count\":171,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\"},{\"title\":\"Storefront Footer Bar\",\"image\":\"\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/storefront-footer-bar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"6cfd3d4f923cafa16e4801ae801751f4\",\"slug\":\"storefront-footer-bar\",\"id\":1434472,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woo.com\\/products\\/ordercustomer-csv-export\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652,\"rating\":4.2,\"reviews_count\":37,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/11\\/logo-regular-lscryp.png?fit=764,573\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/google-product-feed\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619,\"rating\":4.3,\"reviews_count\":58,\"vendor_name\":\"Ademti Software\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/ademti-software\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/11\\/product-icon-omiutq.png\"},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woo.com\\/products\\/name-your-price\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"raw_price\":59,\"currency_symbol\":\"&#36;\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738,\"rating\":4.9,\"reviews_count\":75,\"vendor_name\":\"Backcourt Development\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/backcourt-development\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/09\\/nyp-icon-80x80-1.jpg\"},{\"title\":\"Mercado Pago Checkout\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/05\\/logo-juzfys.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Mercado Pago is already in 7 countries in Latin America and has the best checkout for your customers\' preferences and your type of online store. Ensure security and offer the main payment methods without worry.\",\"link\":\"https:\\/\\/woo.com\\/products\\/mercado-pago-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"b51b437b-1948-4405-b96e-0ef86485d3eb\",\"slug\":\"woocommerce-mercadopago\",\"id\":7909962,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Mercado Pago\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/mercado-pago\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/05\\/Mercado-Pago.png\"},{\"title\":\"Storefront Reviews\",\"image\":\"\",\"type\":\"extension\",\"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:\\/\\/woo.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\",\"raw_price\":19,\"currency_symbol\":\"&#36;\",\"hash\":\"0c8a1d86b8eff9f1edffa923aeb3fc1f\",\"slug\":\"storefront-reviews\",\"id\":1044976,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"WooCommerce Print Invoices and Packing Lists\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woo.com\\/products\\/print-invoices-packing-lists\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666,\"rating\":4.4,\"reviews_count\":31,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png?fit=764,573\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/klarna-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/krokedil\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/01\\/klarna-checkout-icon.png\"},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woo.com\\/products\\/dynamic-pricing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"raw_price\":129,\"currency_symbol\":\"&#36;\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643,\"rating\":3.2,\"reviews_count\":32,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Sensei LMS Course Progress\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-course-progress.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Enable your students to easily see their progress and pick up where they left off in a course.\",\"link\":\"https:\\/\\/woo.com\\/products\\/sensei-course-progress\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"ec0f55d8fa7c517dc1844f5c873a77da\",\"slug\":\"sensei-course-progress\",\"id\":435833,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Sensei\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/sensei\\/\",\"icon\":null},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2013\\/06\\/logo-cp-ey7bzs.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woo.com\\/products\\/composite-products\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;119.00\",\"raw_price\":119,\"currency_symbol\":\"&#36;\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836,\"rating\":4.9,\"reviews_count\":102,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woo.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;109.00\",\"raw_price\":109,\"currency_symbol\":\"&#36;\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633,\"rating\":3.4,\"reviews_count\":16,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Sensei LMS Certificates\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-certificates.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Award your students with a certificate of completion and a sense of accomplishment after finishing a course.\",\"link\":\"https:\\/\\/woo.com\\/products\\/sensei-certificates\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"625ee5fe1bf36b4c741ab07507ba2ffd\",\"slug\":\"sensei-certificates\",\"id\":247548,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Sensei\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/sensei\\/\",\"icon\":null},{\"title\":\"Klarna Payments\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Payments_Pink.png?fit=764,573\",\"type\":\"extension\",\"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:\\/\\/woo.com\\/products\\/klarna-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnapayments\\/\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"a19c689325bc8ea63c620765dd54b33a\",\"slug\":\"klarna-payments-for-woocommerce\",\"id\":2754217,\"rating\":2.7,\"reviews_count\":13,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/krokedil\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2018\\/01\\/Klarna.png\"},{\"title\":\"Trustpilot Reviews\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/06\\/Trustpilot_brandmark_gr-blk_RGB-2-1-px9shb.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Collect and showcase verified reviews that consumers trust.\",\"link\":\"https:\\/\\/woo.com\\/products\\/trustpilot-reviews\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"cbbd9b5e-b226-492c-a87e-cb21743ed8bf\",\"slug\":\"trustpilot-reviews\",\"id\":8173894,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Trustpilot\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/trustpilot\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/07\\/logo-160x160-1.png\"},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/03\\/logo-csp-aqfm98.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woo.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"raw_price\":99,\"currency_symbol\":\"&#36;\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253,\"rating\":4.7,\"reviews_count\":45,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Eway\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/10\\/51456-Eway-logo-tagline-RGB-H-yellow-_-grey.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Take credit card payments securely via Eway (AU and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woo.com\\/products\\/eway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2011\\/10\\/woo-eway-0klzux.png\"},{\"title\":\"reCaptcha for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/02\\/WooCommerce-reCpatcha.png?w=150&amp;h=150&amp;crop=1&fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Protect your eCommerce store from malicious and automated attacks by using reCaptcha for WooCommerce.\",\"link\":\"https:\\/\\/woo.com\\/products\\/recaptcha-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.i13websolution.com\\/wp-test\\/\",\"price\":\"&#36;29.00\",\"raw_price\":29,\"currency_symbol\":\"&#36;\",\"hash\":\"c9793ede-aadc-484f-8c5a-1a0776604ce6\",\"slug\":\"recaptcha-for-woocommerce\",\"id\":5347485,\"rating\":3.7,\"reviews_count\":28,\"vendor_name\":\"I13 Web Solution\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/i13-web-solution\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/02\\/reCaptcha-For-WooCOmmerce-logo-164x164-2.png\"},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398,\"rating\":4.2,\"reviews_count\":17,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"The most powerful and customizable integration between WooCommerce and QuickBooks (Online, Desktop, or POS). Forget manual bookkeeping\\u2014keep all your sales and inventory data automatically in sync between platforms!\",\"link\":\"https:\\/\\/woo.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"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:\\/\\/woo.com\\/vendor\\/myworks-software\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/04\\/qb_thumb.png\"},{\"title\":\"Sensei Pro (WC Paid Courses)\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/01\\/Sensei-Pro.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Sell your online courses using Sensei LMS with WooCommerce \\u2014 complete learning management with quizzes, certificates, content drip, and more.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-paid-courses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"raw_price\":179,\"currency_symbol\":\"&#36;\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Sensei\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/sensei\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2019\\/01\\/SenseiProWooIcon-aut8wu.png\"},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woo.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\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174,\"rating\":4.3,\"reviews_count\":169,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/itthinx\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2014\\/10\\/woocommerce-product-search-product-icon-160x160-sunrise.png\"},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"type\":\"extension\",\"excerpt\":\"Create special pages where customers can choose products, checkout & pay all on the one page.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2014\\/10\\/woocommerce.png\"},{\"title\":\"Viva Wallet Standard Checkout\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/04\\/Viva-Wallet-logo.png?w=374&fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Integrate the Viva Wallet payment gateway with your WooCommerce store to process and sync your payments and help you sell more.\",\"link\":\"https:\\/\\/woo.com\\/products\\/viva-wallet-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"7240a329-047f-4d8b-b7ec-ee3defd798bd\",\"slug\":\"viva-wallet-for-woocommerce\",\"id\":6137160,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Viva Wallet\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/viva-wallet\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2020\\/07\\/Viva-Wallet.png\"},{\"title\":\"Sensei LMS Media Attachments\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-media-attachments.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Provide your students with easy access to additional learning materials, from audio files to slideshows and PDFs.\",\"link\":\"https:\\/\\/woo.com\\/products\\/sensei-media-attachments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"788647a9a1d8ef5c95371f0e69223a0f\",\"slug\":\"sensei-media-attachments\",\"id\":290551,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Sensei\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/sensei\\/\",\"icon\":null},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Tame your order numbers! Upgrade from Sequential Order Numbers with advanced features and with optional prefixes\\/suffixes.\",\"link\":\"https:\\/\\/woo.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"raw_price\":49,\"currency_symbol\":\"&#36;\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688,\"rating\":4.5,\"reviews_count\":13,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"raw_price\":79,\"currency_symbol\":\"&#36;\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497,\"rating\":3.2,\"reviews_count\":36,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Affirm Payments\",\"image\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/black_logo-transparent_bg-mo35al.png?fit=764,573\",\"type\":\"extension\",\"excerpt\":\"Affirm is the top-rated pay-over-time solution offering Pay in 4 for everyday purchases or monthly installments for higher-ticket items.\",\"link\":\"https:\\/\\/woo.com\\/products\\/woocommerce-gateway-affirm\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"raw_price\":0,\"currency_symbol\":\"&#36;\",\"hash\":\"b271ae89b8b86c34020f58af2f4cbc81\",\"slug\":\"woocommerce-gateway-affirm\",\"id\":1474706,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woo.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woo.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-affirm-imdlae.png\"}]}\";s:7:\"headers\";O:31:\"WpOrg\\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:\"Tue, 07 Nov 2023 20:23:02 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:\"13937\";}s:12:\"x-robots-tag\";a:1:{i:0;s:7:\"noindex\";}s:4:\"link\";a:1:{i:0;s:52:\"<https://woo.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:15:\"dca5 85 187 443\";}s:16:\"content-encoding\";a:1:{i:0;s:4:\"gzip\";}s:3:\"age\";a:1:{i:0;s:1:\"6\";}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:25:\"WpOrg\\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'),(311,'_transient_timeout_as-post-store-dependencies-met','1699474982','no'),(312,'_transient_as-post-store-dependencies-met','yes','no'),(313,'_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'),(399,'woocommerce_feature_marketplace_enabled','yes','yes'),(400,'woocommerce_feature_product_block_editor_enabled','no','yes'),(383,'_site_transient_boldgrid_plugins_filtered','a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:17:{s:20:\"WC requires at least\";s:0:\"\";s:15:\"WC tested up to\";s:0:\"\";s:3:\"Woo\";s:0:\"\";s:4:\"Name\";s:12:\"Total Upkeep\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:6:\"1.15.7\";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:17:{s:20:\"WC requires at least\";s:0:\"\";s:15:\"WC tested up to\";s:0:\"\";s:3:\"Woo\";s:0:\"\";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'),(316,'jetpack_activated','2','yes'),(317,'jetpack_options','a:2:{s:7:\"version\";s:19:\"11.2-a.5:1699388582\";s:11:\"old_version\";s:19:\"11.2-a.5:1699388582\";}','yes'),(318,'_transient_timeout_jetpack_https_test','1699474982','no'),(319,'_transient_jetpack_https_test','1','no'),(320,'_transient_timeout_jetpack_https_test_message','1699474982','no'),(321,'_transient_jetpack_https_test_message','','no'),(322,'external_updates-speedycache-pro','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1699388648;s:14:\"checkedVersion\";s:5:\"1.1.1\";s:6:\"update\";O:8:\"stdClass\":9:{s:2:\"id\";i:0;s:4:\"slug\";s:15:\"speedycache-pro\";s:7:\"version\";s:5:\"1.1.1\";s:8:\"homepage\";s:22:\"http://speedycache.com\";s:6:\"tested\";s:3:\"6.1\";s:12:\"download_url\";s:85:\"https://api.speedycache.com/download.php?version=1.1.1&license=LICENSE-BY-SOFTACULOUS\";s:14:\"upgrade_notice\";N;s:8:\"filename\";s:35:\"speedycache-pro/speedycache-pro.php\";s:12:\"translations\";a:0:{}}}','no'),(323,'wc_blocks_surface_cart_checkout_probability','5','yes'),(324,'wc_blocks_db_schema_version','260','yes'),(325,'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'),(326,'_site_transient_timeout_browser_f529a32073a22388a8370c39e9b93c86','1699993383','no'),(327,'_site_transient_browser_f529a32073a22388a8370c39e9b93c86','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"119.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(328,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1699993383','no'),(329,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(330,'_transient_product_query-transient-version','1699388696','yes'),(361,'db_upgraded','','yes'),(331,'_transient_timeout_wc_tracks_blog_details','1699474984','no'),(332,'_transient_wc_tracks_blog_details','a:5:{s:3:\"url\";s:23:\"https://electroshuk.com\";s:9:\"blog_lang\";s:5:\"en_US\";s:7:\"blog_id\";b:0;s:14:\"products_count\";i:0;s:10:\"wc_version\";s:5:\"6.8.0\";}','no'),(333,'_transient_jetpack_autoloader_plugin_paths','a:2:{i:0;s:25:\"{{WP_PLUGIN_DIR}}/jetpack\";i:1;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','yes'),(334,'action_scheduler_lock_async-request-runner','1699388708','yes'),(335,'boldgrid_backup_environment','a:3:{s:8:\"hostname\";s:28:\"ecngx303.inmotionhosting.com\";s:10:\"phpversion\";s:6:\"7.4.33\";s:9:\"wpversion\";s:3:\"6.4\";}','yes'),(336,'woocommerce_admin_notices','a:2:{i:0;s:6:\"update\";i:1;s:14:\"template_files\";}','yes'),(392,'woocommerce_downloads_deliver_inline','','no'),(338,'_site_transient_timeout_community-events-63567b565d1e98637e95c9761783c3ed','1699431788','no'),(339,'_site_transient_community-events-63567b565d1e98637e95c9761783c3ed','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"185.97.92.0\";}s:6:\"events\";a:0:{}}','no'),(401,'wcpay_was_in_use','no','yes'),(402,'_transient_timeout_wcpay_welcome_page_incentive','1699561493','no'),(403,'_transient_wcpay_welcome_page_incentive','a:3:{s:9:\"incentive\";a:7:{s:2:\"id\";s:32:\"wcpay-promo-2023-action-discount\";s:4:\"type\";s:12:\"welcome_page\";s:9:\"cta_label\";s:28:\"Install WooPayments for free\";s:6:\"tc_url\";s:75:\"https://woocommerce.com/terms-conditions/woopayments-action-promotion-2023/\";s:11:\"description\";s:117:\"<b>Save 10%</b> on payment processing costs in your <b>first three months</b> when you sign up for WooPayments today.\";s:19:\"task_header_content\";s:256:\"Power your payments with a simple, all-in-one option and <b>save 10% on payment processing costs in your first three months</b>. See <a href=\"https://woocommerce.com/terms-conditions/woopayments-action-promotion-2023/\">Terms and Conditions</a> for details.\";s:10:\"task_badge\";s:29:\"Save 10% - Limited time offer\";}s:12:\"context_hash\";s:32:\"6d37bc19d822af681f896b21065134c7\";s:9:\"timestamp\";i:1699388693;}','no'),(404,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1699388694;s:8:\"response\";a: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:3:\"5.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}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:\"12.8\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/jetpack.12.8.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";}s:29:\"nginx-helper/nginx-helper.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/nginx-helper\";s:4:\"slug\";s:12:\"nginx-helper\";s:6:\"plugin\";s:29:\"nginx-helper/nginx-helper.php\";s:11:\"new_version\";s:5:\"2.2.3\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/nginx-helper/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/nginx-helper.2.2.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:57:\"https://ps.w.org/nginx-helper/assets/icon.svg?rev=2360932\";s:3:\"svg\";s:57:\"https://ps.w.org/nginx-helper/assets/icon.svg?rev=2360932\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/nginx-helper/assets/banner-1544x500.png?rev=2360932\";s:2:\"1x\";s:67:\"https://ps.w.org/nginx-helper/assets/banner-772x250.png?rev=2360926\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/nginx-helper/assets/banner-1544x500-rtl.png?rev=2360932\";s:2:\"1x\";s:71:\"https://ps.w.org/nginx-helper/assets/banner-772x250-rtl.png?rev=2360932\";}s:8:\"requires\";s:3:\"3.0\";}s:27:\"speedycache/speedycache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/speedycache\";s:4:\"slug\";s:11:\"speedycache\";s:6:\"plugin\";s:27:\"speedycache/speedycache.php\";s:11:\"new_version\";s:5:\"1.1.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/speedycache/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/speedycache.1.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/speedycache/assets/icon-256x256.png?rev=2858418\";s:2:\"1x\";s:64:\"https://ps.w.org/speedycache/assets/icon-128x128.png?rev=2858418\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/speedycache/assets/banner-772x250.png?rev=2858418\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";}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:6:\"1.15.7\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/boldgrid-backup/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.15.7.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:19:\"weforms/weforms.php\";O:8:\"stdClass\":10:{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.18\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/weforms/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/weforms.1.6.18.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/weforms/assets/icon-256x256.png?rev=1978687\";s:2:\"1x\";s:60:\"https://ps.w.org/weforms/assets/icon-128x128.png?rev=1978687\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/weforms/assets/banner-1544x500.png?rev=2243402\";s:2:\"1x\";s:62:\"https://ps.w.org/weforms/assets/banner-772x250.png?rev=2243402\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":10:{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:\"8.2.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.2.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.gif?rev=2869506\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.gif?rev=2869506\";}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:\"6.2\";}}s:7:\"checked\";a:10:{s:19:\"akismet/akismet.php\";s:3:\"5.3\";s:9:\"hello.php\";s:5:\"1.7.2\";s:19:\"jetpack/jetpack.php\";s:4:\"12.8\";s:29:\"nginx-helper/nginx-helper.php\";s:5:\"2.2.3\";s:27:\"speedycache/speedycache.php\";s:5:\"1.1.1\";s:35:\"speedycache-pro/speedycache-pro.php\";s:5:\"1.1.1\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:6:\"1.15.7\";s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";s:5:\"1.5.9\";s:19:\"weforms/weforms.php\";s:6:\"1.6.18\";s:27:\"woocommerce/woocommerce.php\";s:5:\"8.2.1\";}}','no'),(405,'_transient_timeout_action_scheduler_last_pastdue_actions_check','1699410294','no'),(406,'_transient_action_scheduler_last_pastdue_actions_check','1699388694','no'),(407,'_transient_timeout_woocommerce_blocks_asset_api_script_data_ssl','1701980702','no'),(408,'_transient_woocommerce_blocks_asset_api_script_data_ssl','{\"script_data\":{\"build\\/wc-settings.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-settings.js\",\"version\":\"b31b6165ac2a07ada0ff536d52b1466d\",\"dependencies\":[\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\"]},\"build\\/wc-blocks-middleware.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-middleware.js\",\"version\":\"208988bfef8a0a939e506218fc806a2b\",\"dependencies\":[\"wp-api-fetch\",\"wp-polyfill\"]},\"build\\/wc-blocks-data.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-data.js\",\"version\":\"6279193027a1b903984715859dfcbaab\",\"dependencies\":[\"wc-blocks-registry\",\"wc-settings\",\"wp-api-fetch\",\"wp-data\",\"wp-data-controls\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-notices\",\"wp-polyfill\",\"wp-url\"]},\"build\\/wc-blocks-vendors.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-vendors.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/wc-blocks-registry.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-registry.js\",\"version\":\"ecaf398656735e56f2d30eafc248ef35\",\"dependencies\":[\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-polyfill\"]},\"build\\/wc-blocks.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks.js\",\"version\":\"1159c1fb50bedb71fad49f8808017cfe\",\"dependencies\":[\"wp-blocks\",\"wp-compose\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/wc-blocks-shared-context.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-shared-context.js\",\"version\":\"caa936d2b7c335001cfc366d96d8a569\",\"dependencies\":[\"wp-element\",\"wp-polyfill\"]},\"build\\/wc-blocks-shared-hocs.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-shared-hocs.js\",\"version\":\"7243a9fa7264377a45413afae757013f\",\"dependencies\":[\"wc-blocks-data-store\",\"wc-blocks-shared-context\",\"wp-data\",\"wp-element\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"build\\/price-format.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/price-format.js\",\"version\":\"46126111d3b46712d9c0f0dbd873b138\",\"dependencies\":[\"wc-settings\",\"wp-polyfill\"]},\"build\\/blocks-checkout.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/blocks-checkout.js\",\"version\":\"cb1e22af331a53010b79e1484a5344bd\",\"dependencies\":[\"lodash\",\"react\",\"react-dom\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"build\\/active-filters.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/active-filters.js\",\"version\":\"ed942f2e4631590ba01d30e045367abf\",\"dependencies\":[\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/active-filters-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/active-filters-frontend.js\",\"version\":\"948664e8c5afa263b9c5dfda6dc2e83a\",\"dependencies\":[\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/all-products.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/all-products.js\",\"version\":\"f478ea858b58d3507924bea2c4c214ad\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/all-products-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/all-products-frontend.js\",\"version\":\"d12119aa2d9e588535c80fe0310c869e\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/all-reviews.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/all-reviews.js\",\"version\":\"d578e628b1e1f0148c7bf60cfe1c602f\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/reviews-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/reviews-frontend.js\",\"version\":\"f7574b7910cac2f35291759fd35ce254\",\"dependencies\":[\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-compose\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"build\\/attribute-filter.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/attribute-filter.js\",\"version\":\"19c61fdb57ae1e3ee4c4465694e2e73f\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/attribute-filter-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/attribute-filter-frontend.js\",\"version\":\"10589e1dbed5b10fc6383d7730b8b091\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/breadcrumbs.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/breadcrumbs.js\",\"version\":\"779832775ebf460068025eadf0e90da7\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/catalog-sorting.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/catalog-sorting.js\",\"version\":\"70d26793890b54364d1bbd5bce8a2e5f\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/legacy-template.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/legacy-template.js\",\"version\":\"1deb4ed7bca43c65a86d8f5cd71d0f2e\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/customer-account.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/customer-account.js\",\"version\":\"cae8d20aaf0cf655dbdfdee65cb8690e\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/featured-category.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/featured-category.js\",\"version\":\"3d12a7feebe4b68db6a36c9782d5ad32\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"build\\/featured-product.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/featured-product.js\",\"version\":\"e4170e4eaef5b2cd3a1ecc1620f83f6e\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"build\\/filter-wrapper.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filter-wrapper.js\",\"version\":\"39a31dba3fd2d291ce2697866fa1c71d\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/filter-wrapper-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filter-wrapper-frontend.js\",\"version\":\"1c42e853788847e4cb9b601a4b29ff97\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\"]},\"build\\/handpicked-products.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/handpicked-products.js\",\"version\":\"a19a347add2b45d53540cfee4e85f35a\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/mini-cart.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart.js\",\"version\":\"dcafac4b01a7e074b1393897ae84166f\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/mini-cart-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-frontend.js\",\"version\":\"b922d0f8fc627b4c7695288bc4eb7d38\",\"dependencies\":[\"wc-price-format\",\"wc-settings\",\"wp-i18n\",\"wp-polyfill\"]},\"build\\/store-notices.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/store-notices.js\",\"version\":\"b0410f962bb163ecf804f85945494a69\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/price-filter.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/price-filter.js\",\"version\":\"d34658f1bc90f65917dff23469786540\",\"dependencies\":[\"react\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/price-filter-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/price-filter-frontend.js\",\"version\":\"4f2ef15ca232059ed0f17c7cfbea62f5\",\"dependencies\":[\"react\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-url\"]},\"build\\/product-add-to-cart.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-add-to-cart.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/product-add-to-cart-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-add-to-cart-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/product-best-sellers.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-best-sellers.js\",\"version\":\"5e118444ec6ac5c2b3b9440f9a558d7f\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-button.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-button.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/product-button-interactivity-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-button-interactivity-frontend.js\",\"version\":\"f231c36d2e6154d2cf545a864568f5e4\",\"dependencies\":[\"lodash\",\"wc-blocks-data-store\",\"wc-interactivity\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"build\\/product-categories.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-categories.js\",\"version\":\"4c0c5bfa88e3bc2d34f8b7cd3089cbc1\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\"]},\"build\\/product-category.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-category.js\",\"version\":\"bbc8aaa78e356a825d5c33c7e4fcce76\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-collection.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-collection.js\",\"version\":\"941432e3696193936d37736b8faf9837\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/product-new.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-new.js\",\"version\":\"54fd948597e5afa211abe9b37a3382e8\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-on-sale.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-on-sale.js\",\"version\":\"b39b1e40568e2dd5b37320e6dfa17f57\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-template.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-template.js\",\"version\":\"b73d4ef43094fefd8eb5a09bc3178c82\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\"]},\"build\\/product-query.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-query.js\",\"version\":\"b09016077f61d88bbd680cc641cef9ff\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/product-query-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-query-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/product-results-count.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-results-count.js\",\"version\":\"62389880d09bea807af392c535996912\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/product-search.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-search.js\",\"version\":\"a32bcc8d5170d5a7d8e4c9854477f8f8\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/product-summary.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-summary.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/product-tag.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-tag.js\",\"version\":\"74f9457abc552c377bfd00525d7f7ed6\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-title.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-title.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/product-title-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-title-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/product-top-rated.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-top-rated.js\",\"version\":\"635f63dff3d29cca693bd94a17659bda\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/products-by-attribute.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/products-by-attribute.js\",\"version\":\"73b9ca1ee1dfe920689b7c2ca1134bbb\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/rating-filter.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/rating-filter.js\",\"version\":\"8a60b8434a974c7d9e71c9863ee4a423\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/reviews-by-category.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/reviews-by-category.js\",\"version\":\"6ecfcf28de8997b8f93996a0bf52766c\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/reviews-by-product.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/reviews-by-product.js\",\"version\":\"2a47a97286dbc7a2293f760ee2b21f6f\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/single-product.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/single-product.js\",\"version\":\"7dc18ae07298254fb4c2c3f50f368333\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/stock-filter.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/stock-filter.js\",\"version\":\"8bfac93830eed1003e87b254e7103dda\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/stock-filter-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/stock-filter-frontend.js\",\"version\":\"bb50cc5d94568fa66c1b2da4c7ab3060\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/cart.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart.js\",\"version\":\"23d484e326a0b12a525fb0d7beddac73\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/cart-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-frontend.js\",\"version\":\"89e864cb281577fa4668ce653ccc6f41\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/cart-blocks\\/cart-cross-sells-products-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-products-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-order-summary-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-order-summary-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-taxes-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-heading-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-heading-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-fee-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-fee-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-totals-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-totals-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-express-payment-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-express-payment-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-items-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-items-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-line-items-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-line-items-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-items-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-items-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-totals-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-totals-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/proceed-to-checkout-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/proceed-to-checkout-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-shipping-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-express-payment-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-express-payment-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/proceed-to-checkout-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/proceed-to-checkout-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-order-summary-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-order-summary-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-discount-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-discount-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-products-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-products-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-products--product-price-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-products--product-price-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/empty-cart-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/empty-cart-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-heading-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-heading-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/filled-cart-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/filled-cart-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-accepted-payment-methods-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-accepted-payment-methods-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-line-items-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-line-items-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/filled-cart-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/filled-cart-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/empty-cart-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/empty-cart-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/cart-line-items--checkout-blocks\\/order-summary-cart-items--mini-cart-contents---233ab542-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/cart-line-items--checkout-blocks\\/order-summary-cart-items--mini-cart-contents---233ab542-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/cart-cross-sells-products--cart-blocks\\/cart-line-items--cart-blocks\\/cart-order--3c5fe802-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/cart-cross-sells-products--cart-blocks\\/cart-line-items--cart-blocks\\/cart-order--3c5fe802-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/proceed-to-checkout-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/proceed-to-checkout-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/order-summary-shipping--checkout-blocks\\/order-summary-shipping--checkout-block--24d3fc0c-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/order-summary-shipping--checkout-blocks\\/order-summary-shipping--checkout-block--24d3fc0c-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/order-summary-shipping--checkout-blocks\\/billing-address--checkout-blocks\\/order--decc3dc6-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/order-summary-shipping--checkout-blocks\\/billing-address--checkout-blocks\\/order--decc3dc6-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-order-summary-taxes-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-taxes-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-order-summary-subtotal-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-subtotal-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/filled-cart-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filled-cart-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/empty-cart-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/empty-cart-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-totals-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-totals-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-items-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-items-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-line-items-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-line-items-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-order-summary-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-express-payment-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-express-payment-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/proceed-to-checkout-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/proceed-to-checkout-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-accepted-payment-methods-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-accepted-payment-methods-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-order-summary-coupon-form-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-coupon-form-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-order-summary-discount-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-discount-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-order-summary-fee-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-fee-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-order-summary-heading-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-heading-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-order-summary-shipping-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-shipping-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-cross-sells-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-cross-sells-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/cart-cross-sells-products-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-cross-sells-products-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout.js\",\"version\":\"1b91965aaf315e8ca91923398605c910\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/checkout-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-frontend.js\",\"version\":\"a6427457ee65cfa508d1d3bcc982f8a8\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/checkout-blocks\\/totals-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/totals-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/billing-address-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/billing-address-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-methods-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-methods-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-taxes-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-fee-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-fee-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/terms-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/terms-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/totals-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/totals-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-method-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-method-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/pickup-options-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/pickup-options-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/actions-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/actions-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-cart-items-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-cart-items-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-shipping-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-address-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-address-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/billing-address-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/billing-address-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-methods-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-methods-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-discount-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-discount-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/fields-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/fields-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-address-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-address-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/actions--checkout-blocks\\/terms-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/actions--checkout-blocks\\/terms-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-note-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-note-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/fields-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/fields-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/payment-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/payment-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/contact-information-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/contact-information-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/terms-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/terms-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/pickup-options-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/pickup-options-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/contact-information-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/contact-information-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-method-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-method-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-cart-items-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-cart-items-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/payment-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/payment-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/actions-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/actions-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/vendors--checkout-blocks\\/shipping-method-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--checkout-blocks\\/shipping-method-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/vendors--checkout-blocks\\/billing-address--checkout-blocks\\/shipping-address-frontend.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--checkout-blocks\\/billing-address--checkout-blocks\\/shipping-address-frontend.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/vendors--checkout-blocks\\/shipping-method-style.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--checkout-blocks\\/shipping-method-style.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-actions-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-actions-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-billing-address-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-billing-address-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-contact-information-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-contact-information-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-express-payment-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-express-payment-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-fields-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-fields-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-order-note-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-note-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-cart-items-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-cart-items-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-coupon-form-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-coupon-form-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-discount-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-discount-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-fee-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-fee-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-shipping-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-shipping-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-subtotal-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-subtotal-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-order-summary-taxes-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-taxes-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-payment-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-payment-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-shipping-address-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-shipping-address-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-shipping-methods-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-shipping-methods-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-shipping-method-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-shipping-method-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-pickup-options-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-pickup-options-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-terms-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-terms-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/checkout-totals-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-totals-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-contents.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents.js\",\"version\":\"e9456573a7b01f9120587bf7edc5a57d\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/empty-mini-cart-contents-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/empty-mini-cart-contents-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/filled-mini-cart-contents-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filled-mini-cart-contents-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-footer-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-footer-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-items-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-items-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-products-table-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-products-table-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-shopping-button-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-shopping-button-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-cart-button-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-cart-button-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-checkout-button-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-checkout-button-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-title-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-title-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-title-items-counter-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-title-items-counter-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/mini-cart-title-label-block.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-title-label-block.js\",\"version\":\"11.1.2\",\"dependencies\":[]},\"build\\/wc-shipping-method-pickup-location.js\":{\"src\":\"https:\\/\\/electroshuk.com\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-shipping-method-pickup-location.js\",\"version\":\"47dbbddb245b2a5c4200dd7ae830e8b6\",\"dependencies\":[\"react\",\"react-dom\",\"wc-settings\",\"wp-api-fetch\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]}},\"version\":\"11.1.2\",\"hash\":\"8b749741edf8a2ab8e1d4564cc9224ca\"}','no'),(309,'_transient_woocommerce_shipping_task_zone_count_transient','0','yes'),(310,'woocommerce_task_list_hidden_lists','a:1:{i:0;s:5:\"setup\";}','yes'),(342,'_transient_shipping-transient-version','1699388590','yes'),(343,'_transient_timeout_wc_shipping_method_count_legacy','1701980590','no'),(344,'_transient_wc_shipping_method_count_legacy','a:2:{s:7:\"version\";s:10:\"1699388590\";s:5:\"value\";i:0;}','no'),(345,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1699431791','no'),(346,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Nov 2023 19:59: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:\"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.4-alpha-56702\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s: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:27:\"WordPress 6.4 “Shirley”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2023/11/shirley/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Nov 2023 19:59: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:4:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6-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:\"\";}i:3;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=16299\";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:194:\"WordPress 6.4 \"Shirley\" is here! Named in honor of the iconic jazz singer and pianist Shirley Horn, this release was made possible by over 600 contributors. Download WordPress 6.4 Shirley today.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:73525:\"\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=1024%2C683&#038;ssl=1\" alt=\"Record cover with an image of Shirley Horn, a record sliding down the right side, and the words Shirley WordPress 6.4.\" class=\"wp-image-16319\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Say hello to WordPress 6.4 “Shirley,” named after the iconic jazz artist <a href=\"https://wikipedia.org/wiki/Shirley_Horn\">Shirley Horn</a>. Her distinctive voice and extraordinary connection to the piano established her as one of the leading jazz musicians of her generation. Horn’s journey from the Washington D.C. jazz scene to the international stage is a testament to her dedication and perseverance. Her influence reached far beyond the confines of traditional jazz, breaking boundaries and inspiring audiences worldwide.</p>\n\n\n\n<p>Enjoy the easy pace of <a href=\"https://www.youtube.com/channel/UCS3pUiY9OmzB6bPta3-4ArQ/playlists\">Shirley Horn’s music</a> as you take in all that 6.4 offers.</p>\n\n\n\n<p>This latest version of WordPress introduces a new, versatile default theme and a suite of upgrades to empower every step of your creative journey. Craft your content seamlessly with further writing improvements. Explore more ways to bring your vision to life and streamline site editing with enhanced tools. Whether you&#8217;re new to WordPress or an experienced creator, “Shirley” has something for you. Discover the unmatched flexibility of building with blocks and let your ideas take flight.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Many of the features and enhancements in WordPress 6.4 fall in the “small but mighty” category. Along with the adaptable beauty of the Twenty Twenty-Four theme, these updates help content creators and site developers alike save time and effort while delivering the high value, low hassle WordPress experience the world has grown to expect.</p>\n<cite>Josepha Haden Chomphosy, Executive Director of WordPress</cite></blockquote>\n\n\n\n<div style=\"height:2px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/download/\">Download WordPress 6.4 today</a></div>\n</div>\n\n\n\n<div style=\"height:2px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s inside 6.4</h2>\n\n\n\n<h3 class=\"wp-block-heading\">Meet Twenty Twenty-Four</h3>\n\n\n\n<p>Experience site editing at its finest with <a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Twenty Twenty-Four</a>. This new multi-faceted default theme has been thoughtfully crafted with three distinct use cases in mind, from writers and artists to entrepreneurs. Save time and effort with its extensive collection of <a href=\"https://2024.wordpress.net/index.php/patterns/\">over 35 templates and patterns</a>—and unlock a world of creative possibilities with a few tweaks. Twenty Twenty-Four’s remarkable flexibility ensures an ideal fit for almost any type of site. <a href=\"https://2024.wordpress.net/\">Check it out in this demo</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/tt4.png?resize=1024%2C666&#038;ssl=1\" alt=\"Cropped screenshots of the Twenty Twenty-Four theme, showing its diverse use cases for photographers, bloggers, and small businesses.\" class=\"wp-image-16274\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/tt4.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/tt4.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/tt4.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/tt4.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Let your writing flow</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/10/05/core-editor-improvement-ensuring-excellence-in-the-writing-experience/\">New enhancements</a> ensure your content creation journey is smooth. Find new keyboard shortcuts in List View, smarter list merging, and enhanced control over link settings. A cohesive toolbar experience for the Navigation, List, and Quote blocks lets you work efficiently with the tooling options you need.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/writing.png?resize=1024%2C666&#038;ssl=1\" alt=\"Screenshot of a Quote block showing its improved toolbar and the text &quot;Études has saved us thousands of hours of work and has unlock insights we never thought possible.&quot;\" class=\"wp-image-16275\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/writing.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/writing.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/writing.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/writing.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">The Command Palette just got better</h3>\n\n\n\n<p>First introduced in WordPress 6.3, the Command Palette is a powerful tool to quickly find what you need, perform tasks efficiently, and speed up your building workflow. Enjoy a <a href=\"https://make.wordpress.org/core/2023/09/12/core-editor-improvement-commanding-the-command-palette/\">refreshed design and new commands</a> to perform block-specific actions in this release.</p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/commands.png?resize=1024%2C666&#038;ssl=1\" alt=\"Screenshot of the refreshed UI of the Command Palette. It displays a search bar with the words &quot;Search for commands&quot; and a variety of shortcuts listed below, including &quot;Add new page,&quot; &quot;Preview in a new tab,&quot; and &quot;Patterns.&quot;\" class=\"wp-image-16276\" style=\"width:680px;height:auto\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/commands.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/commands.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/commands.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/commands.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Categorize and filter patterns</h3>\n\n\n\n<p><a href=\"https://wordpress.org/patterns/\">Patterns</a> are an excellent way to leverage the potential of blocks and simplify your site-building process. WordPress 6.4 allows you to organize them with custom categories. Plus, new advanced filtering in the Patterns section of the inserter makes finding all your patterns more intuitive.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/categorize-patterns-1.png?resize=1024%2C666&#038;ssl=1\" alt=\"Screenshot of the Site Editor\'s patterns view which shows a list of patterns with custom categories, such as &quot;About,&quot; &quot;Banners,&quot; and &quot;Call to Action,&quot; patterns.\" class=\"wp-image-16278\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/categorize-patterns-1.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/categorize-patterns-1.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/categorize-patterns-1.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/categorize-patterns-1.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Get creative with more design tools</h3>\n\n\n\n<p>Build beautiful and functional layouts with an expanded set of design tools. Play with background images in Group blocks for unique designs and maintain image dimensions consistent with placeholder aspect ratios. Do you want to add buttons to your Navigation block? Now you can do it conveniently without a line of code.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/design-tools.png?resize=1024%2C666&#038;ssl=1\" alt=\"Decorative image with text &quot;Background images in Group blocks.&quot;\" class=\"wp-image-16279\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/design-tools.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/design-tools.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/design-tools.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/design-tools.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Make your images stand out</h3>\n\n\n\n<p>Enable lightbox functionality to let your site visitors enjoy full-screen, interactive images on click. Apply it globally or to specific images to customize the viewing experience.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/lightbox.png?resize=1024%2C666&#038;ssl=1\" alt=\"Decorative photo of a triangular building structure with a &quot;click to expand&quot; icon on the right top corner.\" class=\"wp-image-16280\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/lightbox.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/lightbox.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/lightbox.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/lightbox.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Rename Group blocks</h3>\n\n\n\n<p>Set custom names for Group blocks to organize and distinguish areas of your content easily. These names will be visible in List View.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/rename.png?resize=1024%2C666&#038;ssl=1\" alt=\"Screenshot of the List View tool. It shows a Group block renamed as &quot;Hero Area&quot; with inner Group blocks also with custom names, such as &quot;Content,&quot; &quot;Images,&quot; and &quot;Call to action.&quot;\" class=\"wp-image-16281\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/rename.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/rename.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/rename.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/rename.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Preview images in List View</h3>\n\n\n\n<p>New previews for Gallery and Image blocks in List View let you visualize and locate where images on your content are at a glance.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/list-view-images.png?resize=1024%2C666&#038;ssl=1\" alt=\"Screenshot of the List View tool, showing the new image previews for the Image and Gallery blocks.\" class=\"wp-image-16282\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/list-view-images.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/list-view-images.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/list-view-images.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/list-view-images.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Share patterns across sites</h3>\n\n\n\n<p>Need to use your custom patterns on another site? Import and export them as JSON files from the Site Editor&#8217;s patterns view.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/exporting-patterns-1.png?resize=1024%2C666&#038;ssl=1\" alt=\"Screenshot showing the &quot;Import pattern from JSON files&quot; option from the Site Editor\'s patterns view.\" class=\"wp-image-16303\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/exporting-patterns-1.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/exporting-patterns-1.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/exporting-patterns-1.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/exporting-patterns-1.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Introducing Block Hooks</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/10/15/introducing-block-hooks-for-dynamic-blocks/\">Block Hooks</a> enables developers to automatically insert dynamic blocks at specific content locations, enriching the extensibility of block themes through plugins. While considered a developer tool, this feature is geared to respect your preferences and gives you complete control to add, dismiss, and customize auto-inserted blocks to your needs.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/block-hooks.png?resize=1024%2C666&#038;ssl=1\" alt=\"Cropped screenshot showing a mini shopping cart (in a red dotted circle) inserted into a navigation menu by Block Hooks.\" class=\"wp-image-16284\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/block-hooks.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/block-hooks.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/block-hooks.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/block-hooks.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Performance wins</h3>\n\n\n\n<p>This release includes more than 100 performance-related updates for a faster and more efficient experience. Notable enhancements focus on <a href=\"https://make.wordpress.org/core/2023/10/17/improvements-to-template-loading-in-wordpress-6-4/\">template loading performance</a> for themes (including Twenty Twenty-Four), <a href=\"https://make.wordpress.org/core/2023/10/17/script-loading-changes-in-wordpress-6-4/\">usage of the script loading strategies</a> “defer” and “async” in core, blocks, and themes, and <a href=\"https://make.wordpress.org/core/2023/10/17/new-option-functions-in-6-4/\">optimization of autoloaded options</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility highlights</h3>\n\n\n\n<p>Every release is committed to making WordPress accessible to everyone. WordPress 6.4 brings several List View improvements and aria-label support for the Navigation block, among other highlights. The admin user interface includes enhancements to button placements, &#8220;Add New&#8221; menu items context, and Site Health spoken messages. <a href=\"https://make.wordpress.org/core/2023/11/03/wordpress-6-4-accessibility-improvements/\">Learn more about all the updates</a> aimed at improving accessibility.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other notes of interest</h3>\n\n\n\n<ul>\n<li>PHP 8.1 or 8.2 are recommended for use with WordPress 6.4. Find in-depth details on PHP support <a href=\"https://wordpress.org/news/2023/10/wordpress-6-4s-php-compatibility/\">in this post</a>.</li>\n\n\n\n<li>WordPress 6.4 <a href=\"https://make.wordpress.org/core/2023/10/16/changes-to-attachment-pages/\">disables attachment pages</a> for new installations.</li>\n</ul>\n\n\n\n<div style=\"height:2px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress 6.4</h2>\n\n\n\n<p>Check out the new <a href=\"https://wordpress.org/download/releases/6-4/\">WordPress 6.4 page</a> to learn more about the numerous enhancements and features of this release.</p>\n\n\n\n<p>Explore <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> for quick how-to videos, <a href=\"https://learn.wordpress.org/social-learning/\">online workshops</a>, and other free resources to level up your WordPress knowledge and skills.</p>\n\n\n\n<p>If you are looking for detailed technical notes on new changes, the <a href=\"https://make.wordpress.org/core/2023/10/23/wordpress-6-4-field-guide/\">WordPress 6.4 Field Guide</a> is for you. Don&#8217;t forget to subscribe to the <a href=\"https://developer.wordpress.org/news/\">Developer Blog</a> to stay on top of the latest development updates, tutorials, and more.</p>\n\n\n\n<p>For more information on installation, fixes, and file changes, visit the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-4/\">6.4 release notes</a>.</p>\n\n\n\n<div style=\"height:2px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">The 6.4 release squad</h2>\n\n\n\n<p>​​The WordPress 6.4 release comes to you from an <strong>underrepresented gender release squad</strong> to welcome and empower diverse voices in the WordPress open source project.</p>\n\n\n\n<div style=\"height:1px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p class=\"has-extra-large-font-size\">Being part of the 6.4 release coordination team has allowed me to closely observe the intricate release process, where every detail, no matter how minor, is meticulously addressed—taking into account various factors like performance and backward compatibility. There’s still much to learn, but I feel fortunate to have had the chance to contribute to WordPress 6.4.</p>\n<cite>Akshaya Rane, 6.4 release coordinator team member</cite></blockquote>\n\n\n\n<div style=\"height:1px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>Over several weeks, the 6.4 release squad kept the release on track and moving forward by leading collective work, connecting ideas, and removing roadblocks.</p>\n\n\n\n<ul>\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a></li>\n\n\n\n<li>Release Coordinators: <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"https://profiles.wordpress.org/akshayar/\">Akshaya Rane</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>. Cohort: <a href=\"https://profiles.wordpress.org/thewebprincess/\">Dee Teal</a>, <a href=\"https://profiles.wordpress.org/jaimieolmstead/\">Jaimie Olmstead</a>, <a href=\"https://profiles.wordpress.org/jyolsna/\">Jyolsna J E</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a></li>\n\n\n\n<li>Core Tech Leads: <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>. Cohort: <a href=\"https://profiles.wordpress.org/pypwalters/\">Stephanie Walters</a></li>\n\n\n\n<li>Editor Tech Leads:&nbsp; <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a>, <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan Bamber</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>. Cohort: <a href=\"https://profiles.wordpress.org/68kheart/\">Devan Ferguson</a>, <a href=\"https://profiles.wordpress.org/battelfred/\">Frédérique Battel</a>, <a href=\"https://profiles.wordpress.org/jessicagoddard/\">Jessica Goddard</a>, <a href=\"https://profiles.wordpress.org/1happyplace/\">Katie Ayres</a>, <a href=\"https://profiles.wordpress.org/martatorre/\">Marta Torre</a>, <a href=\"https://profiles.wordpress.org/ngreennc/\">Nyasha Green</a>, <a href=\"https://profiles.wordpress.org/poojabhimani/\">Pooja Bhimani</a></li>\n\n\n\n<li>Core Triage Leads: <a href=\"https://profiles.wordpress.org/nicolefurlan/\">Nicole Furlan</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a></li>\n\n\n\n<li>Editor Triage Leads: <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>. Cohort: <a href=\"https://profiles.wordpress.org/emilyatmobtown/\">Emily Leffler Schulman</a></li>\n\n\n\n<li>Documentation Leads: <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>, <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a>. Cohort: <a href=\"https://profiles.wordpress.org/itsjustdj/\">D.J. Billings</a>, <a href=\"https://wordpress.org/support/users/codente/\">Jamie VanRaalte</a>, <a href=\"https://profiles.wordpress.org/newyorkerlaura/\">Laura Byrne</a>, <a href=\"https://profiles.wordpress.org/baxbridge/\">Tiffany Bridge</a>, <a href=\"https://profiles.wordpress.org/planningwrite/\">Winstina Hughes</a></li>\n\n\n\n<li>Marketing and Communications Leads: <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\">Reyes Martínez</a>, <a href=\"https://profiles.wordpress.org/sereedmedia/\">Sé Reed</a>. Cohort: <a href=\"https://profiles.wordpress.org/meaganhanes/\">Meagan Hanes</a>, <a href=\"https://profiles.wordpress.org/michelleames/\">Michelle Frechette</a></li>\n\n\n\n<li>Test Lead: <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>. Cohort: <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne Bovelett</a>, <a href=\"https://profiles.wordpress.org/coachbirgit/\">Birgit Olzem</a></li>\n\n\n\n<li>Design Leads: <a href=\"https://profiles.wordpress.org/elmastudio/\">Ellen Bauer</a>, <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>. Cohort: <a href=\"https://profiles.wordpress.org/allisonplus/\">Allison Tarr</a>, <a href=\"https://profiles.wordpress.org/acirujano/\">Ana Cirujano</a>, <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a>, <a href=\"https://profiles.wordpress.org/nudge/\">Sonia Gaballa</a>, <a href=\"https://profiles.wordpress.org/ohia/\">Ohia</a></li>\n\n\n\n<li>Performance Lead: <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a>. Cohort: <a href=\"https://profiles.wordpress.org/linsoftware/\">Linnea Huxford</a></li>\n\n\n\n<li>Training Leads: <a href=\"https://profiles.wordpress.org/courtneypk/\">Courtney P.K.</a>, <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Roberston</a></li>\n\n\n\n<li>Default Theme Leads: <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a></li>\n</ul>\n\n\n\n<div style=\"height:2px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you, contributors</h2>\n\n\n\n<p>WordPress believes in democratizing publishing and the freedoms that come with open source. Supporting this idea is a global and diverse community of people working together to strengthen the software.</p>\n\n\n\n<p>WordPress 6.4 reflects the countless efforts and passion of <strong>more than 600 contributors in at least 56 countries</strong>. This release also welcomed over 170 first-time contributors!</p>\n\n\n\n<p>Their collaboration delivered more than 1150 enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress open source community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/6adminit/\">6adminit</a> · <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/aayusha/\">aayusha</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/omarabid/\">Abid Omar</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/adhun/\">Adhun Anand</a> · <a href=\"https://profiles.wordpress.org/ajmcfadyen/\">admcfajn</a> · <a href=\"https://profiles.wordpress.org/adrianduffell/\">adrianduffell</a> · <a href=\"https://profiles.wordpress.org/aegkr/\">aegkr</a> · <a href=\"https://profiles.wordpress.org/ahardyjpl/\">ahardyjpl</a> · <a href=\"https://profiles.wordpress.org/ahmedgeek/\">Ahmed Hussein</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a> · <a href=\"https://profiles.wordpress.org/ajakaroth/\">ajakaroth</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/akihiroharai/\">Akihiro Harai</a> · <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a> · <a href=\"https://profiles.wordpress.org/akshayar/\">Akshaya Rane</a> · <a href=\"https://profiles.wordpress.org/alaminfirdows/\">Al-Amin Firdows</a> · <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/alexkingorg/\">Alex King</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alexandrebuffet/\">Alexandre Buffet</a> · <a href=\"https://profiles.wordpress.org/alishabajracharya27/\">Alisha Bajracharya</a> · <a href=\"https://profiles.wordpress.org/allisonplus/\">allisonplus</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/amedv/\">amedv</a> · <a href=\"https://profiles.wordpress.org/acirujano/\">Ana Cirujano</a> · <a href=\"https://profiles.wordpress.org/anlino/\">Anders Nor&#233;n</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">Andr&#233;</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/andrewhayward/\">Andrew Hayward</a> · <a href=\"https://profiles.wordpress.org/l1nuxjedi/\">Andrew Hutchings</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/eatingrules/\">Andrew Wilder</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> · <a href=\"https://profiles.wordpress.org/wpgurudev/\">Ankit Gade</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/annashopina/\">Anna</a> · <a href=\"https://profiles.wordpress.org/askdesign/\">Anne Katzeff</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a> · <a href=\"https://profiles.wordpress.org/anphira/\">anphira</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/aplauche/\">Anton Plauche</a> · <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a> · <a href=\"https://profiles.wordpress.org/arena/\">arena</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/armondal/\">Arnab Mondal</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/asafm7/\">asafm7</a> · <a href=\"https://profiles.wordpress.org/aslamdoctor/\">Aslam Doctor</a> · <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> · <a href=\"https://profiles.wordpress.org/austinginder/\">Austin Ginder</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azharckra/\">azharckra</a> · <a href=\"https://profiles.wordpress.org/balub/\">Balu B</a> · <a href=\"https://profiles.wordpress.org/bangank36/\">bangank36</a> · <a href=\"https://profiles.wordpress.org/barbmiller/\">barbmiller</a> · <a href=\"https://profiles.wordpress.org/bartkalisz/\">Bart</a> · <a href=\"https://profiles.wordpress.org/basiliskan/\">Basilis Kanonidis</a> · <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a> · <a href=\"https://profiles.wordpress.org/behoney/\">behoney</a> · <a href=\"https://profiles.wordpress.org/benharri/\">ben</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/bengreeley/\">Ben Greeley</a> · <a href=\"https://profiles.wordpress.org/ubernaut/\">Ben Hansen</a> · <a href=\"https://profiles.wordpress.org/benimub/\">benimub</a> · <a href=\"https://profiles.wordpress.org/bfintal/\">Benjamin Intal</a> · <a href=\"https://profiles.wordpress.org/benjamin_zekavica/\">Benjamin Zekavica</a> · <a href=\"https://profiles.wordpress.org/benjaminknox/\">benjaminknox</a> · <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a> · <a href=\"https://profiles.wordpress.org/bernhard reiter/\">Bernhard Reiter</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/bhrugesh12/\">Bhrugesh Bavishi</a> · <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a> · <a href=\"https://profiles.wordpress.org/binsaifullah/\">Binsaifullah</a> · <a href=\"https://profiles.wordpress.org/bplv/\">Biplav</a> · <a href=\"https://profiles.wordpress.org/coachbirgit/\">Birgit Olzem</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/bradley2083/\">Block Themes Pro</a> · <a href=\"https://profiles.wordpress.org/bmalsht/\">bmalsht</a> · <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a> · <a href=\"https://profiles.wordpress.org/bookwyrm/\">bookwyrm</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> · <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a> · <a href=\"https://profiles.wordpress.org/crazyjaco/\">Bradley Jacobs</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bvreeman22/\">Brandon Vreeman</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">Brian Haas</a> · <a href=\"https://profiles.wordpress.org/brookemk/\">Brooke</a> · <a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a> · <a href=\"https://profiles.wordpress.org/trynet/\">Bud Kraus</a> · <a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a> · <a href=\"https://profiles.wordpress.org/snicco/\">Calvin Alkan</a> · <a href=\"https://profiles.wordpress.org/karl94/\">Carlo Cannas</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos G. P.</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a> · <a href=\"https://profiles.wordpress.org/ceer/\">ceer</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/chasedsiedu/\">chased@si.edu</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/chipbennett/\">Chip Bennett</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a> · <a href=\"https://profiles.wordpress.org/crunnells/\">Chris Runnells</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/chrisdesrochers/\">chrisdesrochers</a> · <a href=\"https://profiles.wordpress.org/codersantosh/\">codersantosh</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/coreyw/\">Corey Worrell</a> · <a href=\"https://profiles.wordpress.org/courtneypk/\">Courtney Patubo Kranzke</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/mitogh/\">Crisoforo Gaspar</a> · <a href=\"https://profiles.wordpress.org/crstauf/\">crstauf</a> · <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a> · <a href=\"https://profiles.wordpress.org/cu121/\">Cupid Chakma</a> · <a href=\"https://profiles.wordpress.org/didierjm/\">cybeardjm</a> · <a href=\"https://profiles.wordpress.org/cyberchicken/\">Cyberchicken</a> · <a href=\"https://profiles.wordpress.org/extendwings/\">Daisuke Takahashi</a> · <a href=\"https://profiles.wordpress.org/dajeema/\">Dajeema Rai</a> · <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/damonsharp/\">Damon Sharp</a> · <a href=\"https://profiles.wordpress.org/dantovbein/\">Dan Tovbein</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/danieldudzic/\">danieldudzic</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/queerdevperson/\">Danielle Zarcaro</a> · <a href=\"https://profiles.wordpress.org/danieltj/\">danieltj</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/dkotter/\">Darin Kotter</a> · <a href=\"https://profiles.wordpress.org/darkfate/\">darkfate</a> · <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/davelo/\">Dave Loodts</a> · <a href=\"https://profiles.wordpress.org/dave03/\">dave03</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/desmith/\">David E. Smith</a> · <a href=\"https://profiles.wordpress.org/dfavor/\">David Favor</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/dryanpress/\">David Ryan</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/dawidurbanski/\">Dawid Urbanski</a> · <a href=\"https://profiles.wordpress.org/daxelrod/\">daxelrod</a> · <a href=\"https://profiles.wordpress.org/arnedb/\">De Belser Arne</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/thewebprincess/\">Dee Teal</a> · <a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/derekblank/\">Derek Blank</a> · <a href=\"https://profiles.wordpress.org/emrikol/\">Derrick Tennant</a> · <a href=\"https://profiles.wordpress.org/68kheart/\">Devan Ferguson</a> · <a href=\"https://profiles.wordpress.org/dhamibirendra/\">dhamibirendra</a> · <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruvishah2203/\">Dhruvi Shah</a> · <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dimitrism/\">Dimitris Mitsis</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/itsjustdj/\">DJ</a> · <a href=\"https://profiles.wordpress.org/djcowan/\">dj.cowan</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/doughamlin/\">doughamlin</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/elrae/\">Earle Davies</a> · <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a> · <a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a> · <a href=\"https://profiles.wordpress.org/cais/\">Edward Caissie</a> · <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/elmastudio/\">Ellen Bauer</a> · <a href=\"https://profiles.wordpress.org/emailjoey/\">emailjoey</a> · <a href=\"https://profiles.wordpress.org/codex-m/\">Emerson Maningo</a> · <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a> · <a href=\"https://profiles.wordpress.org/emilyatmobtown/\">Emily Leffler Schulman</a> · <a href=\"https://profiles.wordpress.org/emirpprime/\">emirpprime</a> · <a href=\"https://profiles.wordpress.org/enodekciw/\">enodekciw</a> · <a href=\"https://profiles.wordpress.org/lopo/\">Enrico Battocchi</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/esratpopy/\">Esrat Sultana Popy</a> · <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a> · <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> · <a href=\"https://profiles.wordpress.org/fabiorubioglio/\">Fabio Rubioglio</a> · <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> · <a href=\"https://profiles.wordpress.org/floydwilde/\">floydwilde</a> · <a href=\"https://profiles.wordpress.org/foliovision/\">FolioVision</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/battelfred/\">Fredde Battel</a> · <a href=\"https://profiles.wordpress.org/fzhantw/\">fzhantw</a> · <a href=\"https://profiles.wordpress.org/mintindeed/\">Gabriel Koen</a> · <a href=\"https://profiles.wordpress.org/pauthake015/\">Ganesh Dahal</a> · <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a> · <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/mokagio/\">Gio Lodi</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/gnanasekaran/\">Gnanasekaran Loganathan</a> · <a href=\"https://profiles.wordpress.org/ingeniumed/\">Gopal Krishnan</a> · <a href=\"https://profiles.wordpress.org/90lines/\">GOZER</a> · <a href=\"https://profiles.wordpress.org/gpotter/\">gpotter</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gregross/\">Greg Ross</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a> · <a href=\"https://profiles.wordpress.org/gregfuller/\">gregfuller</a> · <a href=\"https://profiles.wordpress.org/guss77/\">Guss77</a> · <a href=\"https://profiles.wordpress.org/bordoni/\">Gustavo Bordoni</a> · <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> · <a href=\"https://profiles.wordpress.org/priethor/\">H&#233;ctor Prieto</a> · <a href=\"https://profiles.wordpress.org/poran766/\">H.M. Mushfiqur Rahman</a> · <a href=\"https://profiles.wordpress.org/hanneslsm/\">hanneslsm</a> · <a href=\"https://profiles.wordpress.org/hztyfoon/\">Hanzala Taifun</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/tejwanihemant/\">Hemant Tejwani</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> · <a href=\"https://profiles.wordpress.org/hlunter/\">hlunter</a> · <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/incursadesigns/\">Incursa Designs</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/itecrs/\">itecrs</a> · <a href=\"https://profiles.wordpress.org/ivanzhuck/\">Ivan Zhuck</a> · <a href=\"https://profiles.wordpress.org/jaimieolmstead/\">jaimieolmstead</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/jakemgold/\">Jake Goldman</a> · <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a> · <a href=\"https://profiles.wordpress.org/bonkerz/\">James</a> · <a href=\"https://profiles.wordpress.org/thelovelist/\">James Janco</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/james roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/james0r/\">james0r</a> · <a href=\"https://profiles.wordpress.org/jamiemchale/\">Jamie McHale</a> · <a href=\"https://profiles.wordpress.org/perrelet/\">Jamie Perrelet</a> · <a href=\"https://profiles.wordpress.org/codente/\">Jamie VanRaalte</a> · <a href=\"https://profiles.wordpress.org/jane/\">jane</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/yari2u/\">Jari Vuorenmaa</a> · <a href=\"https://profiles.wordpress.org/ipajen/\">Jarko Piironen</a> · <a href=\"https://profiles.wordpress.org/pbking/\">Jason Crist</a> · <a href=\"https://profiles.wordpress.org/jastos/\">jastos</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a> · <a href=\"https://profiles.wordpress.org/jeffeverhart383/\">Jeff Everhart</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffikus/\">jeffikus</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jeflopodev/\">jeflopo</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a> · <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a> · <a href=\"https://profiles.wordpress.org/jesin/\">Jesin A</a> · <a href=\"https://profiles.wordpress.org/jessplease/\">Jessica Duarte</a> · <a href=\"https://profiles.wordpress.org/jessicagoddard/\">Jessica Goddard</a> · <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a> · <a href=\"https://profiles.wordpress.org/jick/\">Jick</a> · <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a> · <a href=\"https://profiles.wordpress.org/jivygraphics/\">jivygraphics</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/bitmachina/\">John Hooks</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/johnregan3/\">John Regan</a> · <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a> · <a href=\"https://profiles.wordpress.org/duck_/\">Jon Cave</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a> · <a href=\"https://profiles.wordpress.org/varjodesigns/\">Joona</a> · <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a> · <a href=\"https://profiles.wordpress.org/jordanpak/\">JordanPak</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> · <a href=\"https://profiles.wordpress.org/joshcanhelp/\">joshcanhelp</a> · <a href=\"https://profiles.wordpress.org/joshuatf/\">joshuatf</a> · <a href=\"https://profiles.wordpress.org/jrtashjian/\">JR Tashjian</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a> · <a href=\"https://profiles.wordpress.org/jyolsna/\">Jyolsna J E</a> · <a href=\"https://profiles.wordpress.org/ashikur698/\">K M Ashikur Rahman</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/kalmang/\">Kalmang</a> · <a href=\"https://profiles.wordpress.org/kalpeshh/\">Kalpesh</a> · <a href=\"https://profiles.wordpress.org/bosskhj/\">Kamrul Hasan</a> · <a href=\"https://profiles.wordpress.org/karlijnbk/\">Karlijn Bok</a> · <a href=\"https://profiles.wordpress.org/karmacharya50/\">karmacharya50</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/thekt12/\">Karthik Thayyil</a> · <a href=\"https://profiles.wordpress.org/1happyplace/\">Katie Ayres</a> · <a href=\"https://profiles.wordpress.org/kawsaralameven/\">kawsaralameven</a> · <a href=\"https://profiles.wordpress.org/kkoppenhaver/\">Keanan Koppenhaver</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kevinfodness/\">Kevin Fodness</a> · <a href=\"https://profiles.wordpress.org/p51labs/\">Kevin Miller</a> · <a href=\"https://profiles.wordpress.org/khleomix/\">khleomix</a> · <a href=\"https://profiles.wordpress.org/khokansardar/\">Khokan Sardar</a> · <a href=\"https://profiles.wordpress.org/kimannwall/\">Kim Coleman</a> · <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a> · <a href=\"https://profiles.wordpress.org/kkmuffme/\">kkmuffme</a> · <a href=\"https://profiles.wordpress.org/olein/\">Koji Kuno</a> · <a href=\"https://profiles.wordpress.org/kovshenin/\">Konstantin Kovshenin</a> · <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a> · <a href=\"https://profiles.wordpress.org/kopila47/\">Kopila Shrestha</a> · <a href=\"https://profiles.wordpress.org/krokodok/\">krokodok</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/ktaron/\">ktaron</a> · <a href=\"https://profiles.wordpress.org/labunchemjong/\">Labun Chemjong</a> · <a href=\"https://profiles.wordpress.org/lancewillett/\">Lance Willett</a> · <a href=\"https://profiles.wordpress.org/lhe2012/\">LarryWEB</a> · <a href=\"https://profiles.wordpress.org/lastsplash/\">lastsplash (a11n)</a> · <a href=\"https://profiles.wordpress.org/laumindproductscomau/\">lau@mindproducts.com.au</a> · <a href=\"https://profiles.wordpress.org/launchinteractive/\">launchinteractive</a> · <a href=\"https://profiles.wordpress.org/lada7042/\">Laura Adamonis</a> · <a href=\"https://profiles.wordpress.org/newyorkerlaura/\">Laura Byrne</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/oncecoupled/\">Lauren</a> · <a href=\"https://profiles.wordpress.org/luckybhumkar/\">Laxmikant Bhumkar</a> · <a href=\"https://profiles.wordpress.org/leewillis77/\">Lee Willis</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/lgladdy/\">Liam Gladdy</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/linsoftware/\">Linnea Huxford</a> · <a href=\"https://profiles.wordpress.org/lloydbudd/\">Lloyd Budd</a> · <a href=\"https://profiles.wordpress.org/thelovekesh/\">Lovekesh Kumar</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a> · <a href=\"https://profiles.wordpress.org/zaguiini/\">Luis Felipe Zaguini</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">Luis Herranz</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/lunaluna/\">lunaluna</a> · <a href=\"https://profiles.wordpress.org/lyndauwp/\">lyndauwp</a> · <a href=\"https://profiles.wordpress.org/pagelab/\">M&#225;rcio Duarte</a> · <a href=\"https://profiles.wordpress.org/maciejmackowiak/\">maciejmackowiak</a> · <a href=\"https://profiles.wordpress.org/madejackson/\">madejackson</a> · <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mhimon/\">Mahbub Hasan Imon</a> · <a href=\"https://profiles.wordpress.org/maahrokh/\">Mahrokh</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/travel_girl/\">Maja Benke</a> · <a href=\"https://profiles.wordpress.org/maltfield/\">maltfield</a> · <a href=\"https://profiles.wordpress.org/maneshtimilsina/\">Manesh Timilsina</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a> · <a href=\"https://profiles.wordpress.org/marcelle42/\">marcelle42</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/pereirinha/\">Marco Pereirinha</a> · <a href=\"https://profiles.wordpress.org/marcoevich/\">Marcoevich</a> · <a href=\"https://profiles.wordpress.org/margolisj/\">margolisj</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/martatorre/\">Marta Torre</a> · <a href=\"https://profiles.wordpress.org/mhkuu/\">Martijn van der Klis</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> · <a href=\"https://profiles.wordpress.org/masoudnkh/\">Masoud NKH</a> · <a href=\"https://profiles.wordpress.org/mathsgrinds/\">mathsgrinds</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/mattkeys/\">Matt Keys</a> · <a href=\"https://profiles.wordpress.org/mwtsn/\">Matt Watson</a> · <a href=\"https://profiles.wordpress.org/mklute101/\">Matthaus Klute</a> · <a href=\"https://profiles.wordpress.org/mattheweppelsheimer/\">Matthew Eppelsheimer</a> · <a href=\"https://profiles.wordpress.org/matthewfarlymn/\">Matthew Farlymn</a> · <a href=\"https://profiles.wordpress.org/mattheu/\">Matthew Haines-Young</a> · <a href=\"https://profiles.wordpress.org/maurodf/\">maurodf</a> · <a href=\"https://profiles.wordpress.org/maxinacube/\">Maxwell Morgan</a> · <a href=\"https://profiles.wordpress.org/maysi/\">maysi</a> · <a href=\"https://profiles.wordpress.org/hrshahin/\">Md HR Shahin</a> · <a href=\"https://profiles.wordpress.org/meaganhanes/\">meagan hanes</a> · <a href=\"https://profiles.wordpress.org/iammehedi1/\">Mehedi Hassan</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/mer00x/\">mer00x</a> · <a href=\"https://profiles.wordpress.org/merel1988/\">merel1988</a> · <a href=\"https://profiles.wordpress.org/michael-arestad/\">Michael Arestad</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/mshowes/\">Michael Showes</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/michalooki/\">Michalooki</a> · <a href=\"https://profiles.wordpress.org/michelleblanchette/\">Michelle Blanchette</a> · <a href=\"https://profiles.wordpress.org/michelleames/\">Michelle Frechette</a> · <a href=\"https://profiles.wordpress.org/michi91/\">Michi91</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a> · <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley (a11n)</a> · <a href=\"https://profiles.wordpress.org/mmcalister/\">Mike McAlister</a> · <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/mikestraw/\">Mike Straw</a> · <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> · <a href=\"https://profiles.wordpress.org/gonzomir/\">Milen Petrinski - Gonzo</a> · <a href=\"https://profiles.wordpress.org/mimitips/\">mimi</a> · <a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a> · <a href=\"https://profiles.wordpress.org/mhshujon/\">Monir</a> · <a href=\"https://profiles.wordpress.org/mrinal013/\">Mrinal Haque</a> · <a href=\"https://profiles.wordpress.org/mrwweb/\">mrwweb</a> · <a href=\"https://profiles.wordpress.org/wparslan/\">Muhammad Arslan</a> · <a href=\"https://profiles.wordpress.org/devmuhib/\">Muhibul Haque</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a> · <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a> · <a href=\"https://profiles.wordpress.org/webdev8800/\">Myles Taylor</a> · <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a> · <a href=\"https://profiles.wordpress.org/nandhuraj/\">nandhuraj</a> · <a href=\"https://profiles.wordpress.org/nazgul/\">Nazgul</a> · <a href=\"https://profiles.wordpress.org/nazsabuz/\">Nazmul Sabuz</a> · <a href=\"https://profiles.wordpress.org/neilorangepeel/\">Neil Hainsworth</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/rahe/\">Nicolas Juen</a> · <a href=\"https://profiles.wordpress.org/nicolefurlan/\">Nicole Furlan</a> · <a href=\"https://profiles.wordpress.org/nicomollet/\">nicomollet</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a> · <a href=\"https://profiles.wordpress.org/nihar007/\">Nihar Ranjan Das</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/rabmalin/\">Nilambar Sharma</a> · <a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez</a> · <a href=\"https://profiles.wordpress.org/niravsherasiya7707/\">niravsherasiya7707</a> · <a href=\"https://profiles.wordpress.org/dasnitesh780/\">Nitesh Das</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/ngreennc/\">Nyasha</a> · <a href=\"https://profiles.wordpress.org/ockham/\">ockham</a> · <a href=\"https://profiles.wordpress.org/ohia/\">Ohia</a> · <a href=\"https://profiles.wordpress.org/okat/\">okat</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a> · <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pannelars/\">pannelars</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> · <a href=\"https://profiles.wordpress.org/pentatonicfunk/\">pentatonicfunk</a> · <a href=\"https://profiles.wordpress.org/gungeekatx/\">Pete Nelson</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a> · <a href=\"https://profiles.wordpress.org/petrosparaskevopoulos/\">petrosparaskevopoulos</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walb&#248; Johnsg&#229;rd</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/piyushdeshmukh/\">piyushdeshmukh</a> · <a href=\"https://profiles.wordpress.org/plugindevs/\">Plugin Devs</a> · <a href=\"https://profiles.wordpress.org/poojabhimani/\">Pooja Bhimani</a> · <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pranavjoshi/\">pranavjoshi</a> · <a href=\"https://profiles.wordpress.org/prashantbhivsane/\">Prashant</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/rlmc/\">r-c</a> · <a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/rcorrales/\">Ramon Corrales</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/rebekowitz/\">Rebekah Markowitz</a> · <a href=\"https://profiles.wordpress.org/tabrisrp/\">Remy Perona</a> · <a href=\"https://profiles.wordpress.org/renyot/\">ren</a> · <a href=\"https://profiles.wordpress.org/renathoc/\">Renatho (a11n)</a> · <a href=\"https://profiles.wordpress.org/rmartinezduque/\">Reyes Martínez</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> · <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> · <a href=\"https://profiles.wordpress.org/robpetrin/\">robpetrin</a> · <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/ryanduff/\">Ryan Duff</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/ohryan/\">Ryan Neudorf</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a> · <a href=\"https://profiles.wordpress.org/mi5t4n/\">Sagar Tamang</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/salcode/\">Sal Ferrarello</a> · <a href=\"https://profiles.wordpress.org/samba45/\">samba45</a> · <a href=\"https://profiles.wordpress.org/viralsampat/\">Sampat Viral</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarahwilliams889/\">sarahwilliams889</a> · <a href=\"https://profiles.wordpress.org/sarathar/\">Sarath AR</a> · <a href=\"https://profiles.wordpress.org/satishprajapati/\">Satish Prajapati</a> · <a href=\"https://profiles.wordpress.org/saulirajala/\">saulirajala</a> · <a href=\"https://profiles.wordpress.org/saxonfletcher/\">saxonfletcher</a> · <a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/hiyascout/\">Scout James</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/seedsca/\">Sergio Scabuzzo</a> · <a href=\"https://profiles.wordpress.org/smrubenstein/\">Seth Rubenstein</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/shawfactor/\">shawfactor</a> · <a href=\"https://profiles.wordpress.org/shooper/\">Shawn Hooper</a> · <a href=\"https://profiles.wordpress.org/shiloey/\">shilo-ey</a> · <a href=\"https://profiles.wordpress.org/shivashankerbhatta/\">Shiva Shanker Bhatta</a> · <a href=\"https://profiles.wordpress.org/shresthaaman/\">shresthaaman</a> · <a href=\"https://profiles.wordpress.org/shubhamsedani/\">Shubham Sedani</a> · <a href=\"https://profiles.wordpress.org/10upsimon/\">Simon Dowdles</a> · <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan Bamber</a> · <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a> · <a href=\"https://profiles.wordpress.org/sofiashendi/\">sofiashendi</a> · <a href=\"https://profiles.wordpress.org/nudge/\">Sonia Gaballa</a> · <a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a> · <a href=\"https://profiles.wordpress.org/virtality-marketing-solutions/\">SourceView</a> · <a href=\"https://profiles.wordpress.org/spenserhale/\">Spenser Hale</a> · <a href=\"https://profiles.wordpress.org/pypwalters/\">Stephanie Walters</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a> · <a href=\"https://profiles.wordpress.org/stephenerdelyi/\">Steve Erdelyi</a> · <a href=\"https://profiles.wordpress.org/stevejonesdev/\">Steve Jones</a> · <a href=\"https://profiles.wordpress.org/subodhsun/\">Subodh Sunuwar</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sujichandran14/\">Suji K Chandran</a> · <a href=\"https://profiles.wordpress.org/sumisubedi/\">Sumi Subedi</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sunitarai/\">Sunita Rai</a> · <a href=\"https://profiles.wordpress.org/suprsam/\">suprsam</a> · <a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/sereedmedia/\">Sé Reed</a> · <a href=\"https://profiles.wordpress.org/tahmidulkarim/\">Tahmid ul Karim</a> · <a href=\"https://profiles.wordpress.org/tahmina1du/\">Tahmina Jahan</a> · <a href=\"https://profiles.wordpress.org/takayukister/\">Takayuki Miyoshi</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a> · <a href=\"https://profiles.wordpress.org/tykoted/\">Teddy Patriarca</a> · <a href=\"https://profiles.wordpress.org/tejadev/\">tejadev</a> · <a href=\"https://profiles.wordpress.org/thinkluke/\">thinkluke</a> · <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a> · <a href=\"https://profiles.wordpress.org/tibbsa/\">tibbsa</a> · <a href=\"https://profiles.wordpress.org/baxbridge/\">Tiffany Bridge</a> · <a href=\"https://profiles.wordpress.org/tnolte/\">Tim Nolte</a> · <a href=\"https://profiles.wordpress.org/timdix/\">timdix</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/tomybyte/\">Tom</a> · <a href=\"https://profiles.wordpress.org/tomjcafferkey/\">Tom Cafferkey</a> · <a href=\"https://profiles.wordpress.org/thomashorta/\">Tom H</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/tomluckies/\">tomluckies</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/toscho/\">toscho</a> · <a href=\"https://profiles.wordpress.org/rilwis/\">Tran Ngoc Tuan Anh</a> · <a href=\"https://profiles.wordpress.org/trinisha/\">Trinisha</a> · <a href=\"https://profiles.wordpress.org/trishasalas/\">Trisha Salas</a> · <a href=\"https://profiles.wordpress.org/tristanleboss/\">tristanleboss</a> · <a href=\"https://profiles.wordpress.org/tv-productions/\">TV productions</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">Upadala Vipul</a> · <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a> · <a href=\"https://profiles.wordpress.org/valentindu62/\">valentindu62</a> · <a href=\"https://profiles.wordpress.org/valmedia2023/\">Valerie Blackburn</a> · <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vipuljnext/\">Vipul Ghori</a> · <a href=\"https://profiles.wordpress.org/vivekawsm/\">vivekawsm</a> · <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a> · <a href=\"https://profiles.wordpress.org/vrajadas/\">Vraja Das</a> · <a href=\"https://profiles.wordpress.org/webashrafians/\">webashrafians</a> · <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whsajid/\">WHSajid</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/wvega/\">Willington Vega</a> · <a href=\"https://profiles.wordpress.org/planningwrite/\">Winstina</a> · <a href=\"https://profiles.wordpress.org/winterstreet/\">winterstreet</a> · <a href=\"https://profiles.wordpress.org/wraithkenny/\">WraithKenny</a> · <a href=\"https://profiles.wordpress.org/wyrfel/\">wyrfel</a> · <a href=\"https://profiles.wordpress.org/yosephtamang/\">Yoseph Tamang</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a> · <a href=\"https://profiles.wordpress.org/letraceursnork/\">Илья</a></p>\n\n\n\n<p>Over <a href=\"https://translate.wordpress.org/stats/\">60 locales have translated 90 percent</a> or more of WordPress 6.4 into their language. Community translators are working hard to ensure more translations are on their way. Thank you to everyone who helps make WordPress available in 200 languages.</p>\n\n\n\n<p>Last but not least, thanks to the volunteers who contribute to the <a href=\"https://wordpress.org/support/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved</h3>\n\n\n\n<p>Participation in WordPress is not limited to coding. If contributing appeals to you, learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a>, and use <a href=\"https://make.wordpress.org/contribute/\">this interactive tool</a> to help you decide which is right for you.</p>\n\n\n\n<div style=\"height:2px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Looking ahead</h2>\n\n\n\n<p>Over the past <a href=\"https://wp20.wordpress.net/\">two decades</a>, WordPress has transformed the digital publishing landscape and empowered anyone to create and share, from <a href=\"https://wordpress.org/showcase/\">handcrafted personal stories to world-changing movements</a>.</p>\n\n\n\n<p>The present and future of WordPress hold exciting opportunities for everyone, builders and enterprises alike. The foundational work for <a href=\"https://make.wordpress.org/core/tag/phase-3/\">Phase 3</a> of the <a href=\"https://wordpress.org/about/roadmap/\">roadmap</a> continues, with efforts focused on fostering real-time collaboration and streamlining publishing flows to improve how creators and teams work together in WordPress.</p>\n\n\n\n<p>Stay on top of the latest news and contributing opportunities by subscribing to <a href=\"https://wordpress.org/news/\">WordPress News</a> and the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing podcast</a>.</p>\n\n\n\n<div style=\"height:2px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">A release haiku</h2>\n\n\n\n<p>The smooth feel of jazz<br>The cutting-edge of the web<br>Install 6.4</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:\"16299\";s: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:33:\"WordPress 6.4 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/11/wordpress-6-4-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Nov 2023 19:21:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.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:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16247\";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:163:\"WordPress 6.4 RC3 is ready for download and testing. Reaching this phase of the release cycle is an important milestone. Check out what\'s new and how you can help.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Reyes Martínez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8230:\"\n<p>The third release candidate (RC3) for WordPress 6.4 is ready to download!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended that you evaluate RC3 on a test server and site.</p>\n\n\n\n<p>WordPress 6.4 is <a href=\"https://make.wordpress.org/core/6-4/\">slated for release</a> on <strong>November 7, 2023</strong>—less than a week away. If you haven’t tried it, now is the time.</p>\n\n\n\n<p>You can test WordPress 6.4 RC3 in three ways:</p>\n\n\n\n<ol>\n<li><strong>Plugin</strong>: Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Direct download</strong>: Download the <a href=\"https://wordpress.org/wordpress-6.4-RC3.zip\">RC3 version (zip)</a> and install it on a WordPress site.</li>\n\n\n\n<li><strong>Command line</strong>: Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br><code>wp core update --version=6.4-RC3</code></li>\n</ol>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/10/wordpress-6-4-release-candidate-1/\">Read the RC1 announcement</a> for featured highlights, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-4/\">6.4-related posts</a>. If you are looking for detailed technical notes on new features and improvements, the <a href=\"https://make.wordpress.org/core/2023/10/23/wordpress-6-4-field-guide/\"><strong>WordPress 6.4 Field Guide</strong></a> is for you.</p>\n\n\n\n<p>The WordPress 6.4 release is brought to you by an <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">underrepresented gender release squad</a> to welcome the participation and partnership of those who identify as gender-underrepresented in the WordPress open source project.</p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 6.4 RC3?</h2>\n\n\n\n<p>Thanks to everyone who has tested the beta and RC releases. Since RC2 was released on October 24, there have been more than 25 issues resolved. You can browse the technical details for all recent updates using these links:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.4\">GitHub commits for 6.4</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=10%2F25%2F2023..11%2F01%2F2023&amp;milestone=6.4&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets since RC2</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/twentytwentyfour/commits/\">GitHub commits for Twenty Twenty-Four</a></li>\n</ul>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">PHP compatibility update</h2>\n\n\n\n<p>It’s recommended to use PHP 8.1 or 8.2 with the upcoming 6.4 release. Refer to <a href=\"https://wordpress.org/news/2023/10/wordpress-6-4s-php-compatibility/\">WordPress 6.4&#8217;s PHP compatibility post</a> for more details.</p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Contributing to 6.4</h2>\n\n\n\n<p>WordPress is open source software made possible by a community of people collaborating on and contributing to its development. The resources below outline various ways you can help, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Your feedback and help in testing are vital to developing the WordPress software and ensuring its quality. It’s also a meaningful way for anyone to contribute. <a href=\"https://make.wordpress.org/test/2023/09/26/help-test-wordpress-6-4/\">Check out this guide</a> for instructions on testing WordPress 6.4 features.</p>\n\n\n\n<p>The core Query block requires more <a href=\"https://make.wordpress.org/test/2023/09/26/help-test-wordpress-6-4/#query-loop-block-pagination-enhancements\">testing and feedback</a> to ensure the latest changes to prevent full page reloads work smoothly. Please note that this setting was called &#8220;Enhanced pagination&#8221; but has recently been renamed, and it&#8217;s now referred to as &#8220;Force page reload&#8221; instead.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>During the release candidate phase of WordPress 6.4, the <a href=\"https://make.wordpress.org/security/2023/09/26/bug-bounty-for-wordpress-6-4-beta/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>Do you build themes and plugins? Your products play an integral role in extending the functionality and value of WordPress for users worldwide.</p>\n\n\n\n<p>Hopefully, you have already tested your themes and plugins with WordPress 6.4 betas. With RC3, you will want to continue your testing and update the <em>&#8220;Tested up to&#8221;</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin&#8217;s readme file</a> to 6.4.</p>\n\n\n\n<p>Please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> if you find compatibility issues.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Documentation</h3>\n\n\n\n<p>Help the Docs team put the finishing touches on end-user documentation in time for the 6.4 release. Find out what’s needed and how you can help <a href=\"https://make.wordpress.org/docs/2023/10/25/call-for-volunteers-to-help-with-6-4-end-user-documentation/\">in this post</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages</a>.</p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">A RC3 haiku</h2>\n\n\n\n<p>One more week of prep<br>One more week to test the code<br>One more week til launch</p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post: <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>, <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/sereedmedia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sereedmedia</a>, <a href=\'https://profiles.wordpress.org/jorbin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jorbin</a>, <a href=\'https://profiles.wordpress.org/luisherranz/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>luisherranz</a>, <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</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:\"16247\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WP Briefing: Episode 65: Little Sun Success\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2023/10/episode-65-little-sun-success/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Oct 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16227\";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:340:\"Join WordPress Executive Director, Josepha Haden Chomphosy, as she looks at a recent WordPress success story with Little Sun. To help us, we spoke to two special guests with Little Sun, Romane Guégan, Senior Press and Communications Manager, and Ashley Mrozek, Senior Digital Manager. Don’t miss this opportunity for an insider’s look!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:51:\"https://wordpress.org/news/files/2023/10/WPB065.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:21512:\"\n<p>Join WordPress Executive Director Josepha Haden Chomphosy as she looks at a recent WordPress success story, the clean energy solution Little Sun, and learns about their WordPress story.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Special Guest: Romane Guégan<br>Special Guest: Ashley Mrozek <br>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li>Website: <a href=\"https://littlesun.org/\">Little Sun</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/10/state-of-the-word-2023/\" target=\"_blank\" rel=\"noreferrer noopener\">State of the Word</a> &#8211; This year&#8217;s annual keynote, State of the Word, will be on December 11. Save the date to hear the WordPress project&#8217;s co-founder, <a href=\"https://ma.tt/\" target=\"_blank\" rel=\"noreferrer noopener\">Matt Mullenweg</a>, share reflections on the project&#8217;s progress and aspirations for the future of open source.</li>\n\n\n\n<li>Celebrating 10,000 Photos in the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a> &#8211; On October 11, the 10,000th photo was approved! <a href=\"https://make.wordpress.org/photos/\" target=\"_blank\" rel=\"noreferrer noopener\">The Photo Team</a> is one of the newest ways to contribute to the WordPress open source project. </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/10/18/community-team-training-11-using-the-translate-live-tool/\" target=\"_blank\" rel=\"noreferrer noopener\">Community Team Training #11: Using the Translate Live tool</a>&nbsp;&#8211; Uncover the potential of the &#8220;Translate Live&#8221; tool, which is ideal for presenting at local meetups to engage and onboard new translators for your native language. If you&#8217;re organizing a WordCamp, consider introducing this tool during your Contributor Day.</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/10/a-new-wordpress-showcase/\" target=\"_blank\" rel=\"noreferrer noopener\">A New WordPress Showcase</a>&nbsp;&#8211; The&nbsp;journey to update&nbsp;<a href=\"https://wordpress.org/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress.org</a>&nbsp;continues with the launch of a new&nbsp;<a href=\"https://wordpress.org/showcase/\" target=\"_blank\" rel=\"noreferrer noopener\">Showcase</a>&nbsp;design. The Showcase is a natural starting point for visitors arriving on&nbsp;WordPress.org, and it both inspires creativity and demonstrates what&#8217;s possible with WordPress.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-16227\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> 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>[00:00:28] (Intro music)&nbsp;</p>\n\n\n\n<p>[00:00:40] <strong>Josepha:</strong> Today, I&#8217;ve got a special guest with me. I have here a couple of folks from Little Sun, a nonprofit organization that recently moved its entire online presence to WordPress. And we&#8217;re talking everything from their mission statement and donations all the way to their blog and shop.</p>\n\n\n\n<p>Welcome both to the WordPress Briefing.&nbsp;</p>\n\n\n\n<p>[00:00:59] <strong>Ashley:</strong> Thank you.</p>\n\n\n\n<p>[00:01:00] <strong>Romane:</strong> Thank you.&nbsp;</p>\n\n\n\n<p>[00:01:01] <strong>Josepha:</strong> We have with us Little Sun today. Can you start by introducing yourselves and your organization? Just tell us a little bit about what you all do.&nbsp;</p>\n\n\n\n<p>[00:01:08] <strong>Romane:</strong> Hi, my name is Romane Guégan. I&#8217;m a Senior Press and Communications Manager at Little Sun.&nbsp;</p>\n\n\n\n<p>[00:01:14] <strong>Ashley:</strong> And I am Ashley Mrozek. I&#8217;m the Senior Digital Manager.&nbsp;</p>\n\n\n\n<p>[00:01:17] <strong>Josepha:</strong> So what does Little Sun do for the folks who are listening and maybe don&#8217;t know about it yet?&nbsp;</p>\n\n\n\n<p>[00:01:22] <strong>Romane:</strong> Little Sun brings full power and light to communities that live off the grid, with the focus on sub-Saharan Africa because most of the people who lack access to electricity and need them. And we also inspire people to take climate action globally.&nbsp;</p>\n\n\n\n<p>[00:01:39] <strong>Ashley:</strong> So access to solar energy helps kids who don&#8217;t have electricity and study at night. They can complete their homework at night. If their schools are in a more rural area, they will have a light to kind of guide them back home.</p>\n\n\n\n<p>We also work on a lot of electric vocation projects and hospitals. So we&#8217;re, we&#8217;re kind of supporting labors that are, are taking place in the evening, after the sun goes down, among other things.&nbsp;</p>\n\n\n\n<p>[00:02:07] <strong>Josepha:</strong> Yeah. It&#8217;s, I, I think that that is one of the things that folks, probably most of my listeners, probably take for granted, like the easy access to light. And as we all know, the sun is around a lot. And so that is one of our most readily available resources other than potentially wind power. But I think that that is a great mission. And I really think that that&#8217;s wonderful work that y&#8217;all are doing.</p>\n\n\n\n<p>So, is there a particular reason that you focus on sub-Saharan Africa? Is that where you find a majority of people who don&#8217;t have access to that kind of resource are?&nbsp;</p>\n\n\n\n<p>[00:02:43] <strong>Romane:</strong> Yeah. 70% of those people actually need in sub-Saharan Africa, where solar is actually a viable source of energy. Actually, it&#8217;s only 1% of solar, of the solar capital of the generation when we actually deliver solar energy there because there is so much potential.</p>\n\n\n\n<p>[00:03:04] <strong>Josepha:</strong> That&#8217;s amazing. So you said that you all were funded in 2012. I imagine that your business has evolved over time. So, obviously, you all are WordPress users. That&#8217;s why we have you here with us today. But before we get into the questions about WordPress itself. Why don&#8217;t you tell us a bit about how your business needs evolved over time and how you wound up needing a solution that did use WordPress?</p>\n\n\n\n<p>[00:03:31] <strong>Ashley:</strong> So I would say our focus and kind of the different initiatives that we&#8217;ve taken on since 2012 have shifted a lot based on various reasons, where our donors are, where we&#8217;ve kind of found the most need, and where we can be the most impactful.</p>\n\n\n\n<p>And I think as we go into those new geographies, our online presence has become more and more important.&nbsp;</p>\n\n\n\n<p>[00:03:55] <strong>Josepha:</strong> So, before you all switched to WordPress, I understand that you had several sites that you had to merge into one. And so I assume that as you evolved the business and your focus has changed, you realized you needed something a bit more streamlined. So, how was that transition, that migration from a lot of different sites to one big site?&nbsp;</p>\n\n\n\n<p>[00:04:17] <strong>Romane:</strong> Yeah, because we started as a global project. And then, with the time, we evolved, actually also getting new donations. And in the past, we used to have one website where we have our webshop and our mission, our vision, all of our project descriptions.</p>\n\n\n\n<p>But then we had another website only for the foundation. And then you had another foundation in the U.S. So it was the question, okay, how do we put everything together? So we actually switched from littlesun.com to littlesun.org with WordPress, and it was amazing to see how we managed with the team to create an ecosystem approach, including impact, but also sales, and fundraising.&nbsp;</p>\n\n\n\n<p>[00:05:02] <strong>Josepha:</strong> That was a big footprint that you all had, and you kind of consolidated it into one. And for all of our folks listening on the podcast, I&#8217;m going to include some links, not only to their site but then also to a few other things that we&#8217;ve mentioned in here today. So, since you made that change, how has it, how has that impacted the way that you all work with your site or with your online presence?</p>\n\n\n\n<p>[00:05:27] <strong>Ashley:</strong> Yeah, I think using WordPress and having access to WordPress has been hugely valuable for us. We&#8217;re a small team, we&#8217;re a nonprofit, so it is pretty scrappy. Everyone is kind of doing a lot of different things. We don&#8217;t have a dedicated development team. And so being able to easily customize our pages and create new landing pages or make adjustments on the site without that development help has been valuable.</p>\n\n\n\n<p>[00:05:55] <strong>Josepha:</strong> Yeah, so you don&#8217;t have a developer team now. Did you have a developer team when you had all the sites?&nbsp;</p>\n\n\n\n<p>[00:06:01] <strong>Romane:</strong> We just still work with freelancers. </p>\n\n\n\n<p>[00:06:03] <strong>Josepha:</strong> Okay, yeah. I am also not a developer, for what it&#8217;s worth, and have been working with nonprofits for a while. And I understand that problem where you have all these things you need to do and want to do, but there are also things you absolutely have to focus on in order to make your mission possible and your vision come true.</p>\n\n\n\n<p>[00:06:23] <strong>Ashley:</strong> Yeah, and I think, I think WordPress has given us a lot more, like a lot more flexibility to kind of produce new content quickly. And because of that, it&#8217;s just been a lot more efficient, too, for us, you know.&nbsp;</p>\n\n\n\n<p>[00:06:38] <strong>Josepha:</strong> And you all are using Blocks? Are you, like, the best Block builders?</p>\n\n\n\n<p>[00:06:42] <strong>Romane:</strong> Yeah, I love Blocks.&nbsp;</p>\n\n\n\n<p>[00:06:43] <strong>Josepha:</strong> Blocks are a fairly new innovation for the history of WordPress. WordPress has been around for 20 years, so we&#8217;re a nice, mature project. And we&#8217;ve really only had blocks as a functional part of the CMS for probably the last five or so. We&#8217;ve been working on the project a little bit longer. And it has been fascinating to me, like, in my own work that I have done with WordPress, kind of outside of my work with the project, to see, like, how much autonomy you get to have back as somebody who is not a developer, maybe isn&#8217;t a designer, but you do know exactly what you need to have on your site today, right?</p>\n\n\n\n<p>And having to stop and find a freelancer or stop and find some set of developers who can make those changes. For me, when I was specifically working on nonprofit stuff. That was always kind of a moment where I was like, well, I guess I&#8217;ll just go to Facebook and put that on there or something because I was faster than trying to find someone to come help you. And so, I&#8217;m so glad you love the block.</p>\n\n\n\n<p>[00:07:48] <strong>Ashley:</strong> We&#8217;ve created many a landing page.&nbsp;</p>\n\n\n\n<p>[00:07:50] <strong>Josepha:</strong> Also, your site is adorable, and your brand is adorable, in case no one&#8217;s mentioned that lately. Super cute. Super cute.</p>\n\n\n\n<p>[00:07:58] <strong>Josepha:</strong> So, we&#8217;ve talked about how you kind of took a bunch of stuff and made it into one big thing and how that&#8217;s been easier for you all to manage it. But from the standpoint of just, like, somebody who&#8217;s running a nonprofit, someone who&#8217;s running an organization, how has that transition been for your team? I know you said you don&#8217;t have a huge team, but was the move toward WordPress a net benefit over time, or was it immediately beneficial? Like, how has that been for your team? </p>\n\n\n\n<p>[00:08:27] <strong>Romane:</strong> So what&#8217;s interesting actually is that we have a team that is spread also all over the world. And so we have teams in Berlin and in U.S., and New York. In Zambia, too. What was really interesting was how people identify to the new website because now we have to really think, okay, what is the content we want people to see, but also we want our critics to see. And so it kind of unified all of our content at Little Sun. And it was much more like much easier to understand afterwards. </p>\n\n\n\n<p>[00:09:03] <strong>Josepha:</strong> Yeah.&nbsp;</p>\n\n\n\n<p>[00:09:04] <strong>Romane:</strong> And it was because we also work at the intersection of creative communications, impacts, fundraising, technology, and to be able to put everything and have it on the front. And then have the stories to tell the stories from sub-Saharan Africa, from universities who got either a Little Sun lamps or solar systems, and then we have the donation page, so basically everything could be integrated in a super easy way, and it could target different audiences easily, either it&#8217;s someone who wants to partner with us, or a donor, or just someone who wants to be part of our solar training.</p>\n\n\n\n<p>[00:09:46] <strong>Josepha:</strong> Yeah, and I mean, I think that no one will be surprised to hear that if you have multiple things that you have to get everybody to, it really increases the amount of marketing that you have to accomplish, rather than having one place for everyone to go too, and they can see everything that they might want once they arrive. So, that&#8217;s wonderful.</p>\n\n\n\n<p>[00:10:06] <strong>Ashley:</strong> I think I was just going to say, or kind of echo what Romane said about the fact that we have so many different audiences, we have partners, we have donors, we have people who are just coming to learn about solar energy, or who are interested in purchasing a lamp. I think prior to this, it was a little bit confusing for those different audiences to kind of navigate to where they were intended to go to on the site, and now it&#8217;s much more cohesive. And we often hear that from people where it&#8217;s like, it&#8217;s quite easy to, to kind to find what they need to find on the site.&nbsp;</p>\n\n\n\n<p>[00:10:39] <strong>Josepha:</strong> I define the WordPress community as anyone who is using WordPress, regardless of whether they know it or not. And so you all, in my mind, are part of the WordPress Community. And I just wondered if being part of that community has changed your approach to the way that you manage your content online or the way that you have chosen work with your business as like an online entity that also does on-the-ground, in-person thing?</p>\n\n\n\n<p>[00:11:06] <strong>Ashley:</strong> I think definitely. I think we&#8217;re kind of going back to what I said before. I think we&#8217;re much more efficient now. I think in the past, it&#8217;s the idea of, like, well, getting this web page live or publishing this is going to be, you know, we have to think about a huge timeline, that&#8217;s, is going to require a lot of resourcing, a lot of different types of expertise and people, and everything now feels like something that we can, we can launch pretty immediately, which is really wonderful too.</p>\n\n\n\n<p>I would also say just like being a part of the WordPress community too. It&#8217;s the sort of support that we&#8217;ve gotten from your team. It&#8217;s always really tailored. And I think as a nonprofit working with a, like, a much bigger business, you can be apprehensive sometimes, feeling like you won&#8217;t really get that personalized support.&nbsp;</p>\n\n\n\n<p>And I think that&#8217;s something that&#8217;s been so nice with WordPress. Is really feeling like the people we&#8217;re working with are understanding our business and taking the time to understand our needs. And I think that makes us think differently about our online presence as well because then we feel like we have that additional support, which is great.</p>\n\n\n\n<p>[00:12:12] <strong>Josepha:</strong> I&#8217;m always a fan of hearing that people who are passionate about WordPress are also passionate about helping others with WordPress. That&#8217;s one of my favorite things about us. That&#8217;s not true. I have like 25 favorite things about us. And so I need to stop saying that I have one favorite, but I never will.</p>\n\n\n\n<p>Okay, well, do you all have any last thoughts that you just want to share with me or podcast listeners that we have?&nbsp;</p>\n\n\n\n<p>[00:12:36] <strong>Ashley:</strong> Yeah, I think the, the plugins and integrations have been really useful for us. I think it can be really intimidating to bring on, like, a new tech solution or tool and feel like everything that you are already working with or have is going to become outdated or obsolete in some way. And I think it&#8217;s just been really nice to work with WordPress and have all of those transitions be really seamless for everything to connect really well. Yeah, I think that&#8217;s been. That&#8217;s hugely helpful too.&nbsp;</p>\n\n\n\n<p>[00:13:07] <strong>Josepha:</strong> So, was that part of the decision-making process? Like, do I know that this software will be around in the future so that you&#8217;re making an investment in the site now and know that it&#8217;s going to hang around now you can find people help? Like, was that part of the decision-making process?</p>\n\n\n\n<p>[00:13:21] <strong>Ashley:</strong> I think so. I mean, I guess I wasn&#8217;t completely around during the time, but I would say, like, that&#8217;s definitely something that we&#8217;re considering in any kind of tech that we&#8217;re thinking about is it can require so much work to, to kind of bring something on with such a small team. So we want to ensure that, yeah, it&#8217;s going to last, it has longevity, and it&#8217;s going to work with the tools that we already have. So I think all of that is really important for sure.&nbsp;</p>\n\n\n\n<p>[00:13:48] <strong>Josepha:</strong> Well, thank you both so much for joining me. Like I said, we&#8217;ll have a link to littlesun.org in the notes so that you all can learn more about their project and see their beautiful site with their beautiful little solar sunflowers.</p>\n\n\n\n<p>Thank you both for being with me today.&nbsp;</p>\n\n\n\n<p>[00:14:04] <strong>Romane:</strong> Thank you so much.&nbsp;</p>\n\n\n\n<p>[00:14:05] <strong>Ashley:</strong> Thank you so much for having us.</p>\n\n\n\n<p>[00:14:07] (Music interlude)</p>\n\n\n\n<p>[00:14:11] <strong>Josepha:</strong> What a wonderful organization. I&#8217;m so glad that they found WordPress and that it works for them. Let&#8217;s continue our tour today with the small list of big things.</p>\n\n\n\n<p>Item number one, it&#8217;s time to save the date: December 11th, 2023, for this year&#8217;s State of the Word. State of the Word is the annual keynote address delivered by the WordPress Project co-founder Matt Mullenweg. Every year, the event shares reflections on the project&#8217;s progress and aspirations for the future of open source. And so, if that is something that you like to tune into, December 11th is your day.&nbsp;</p>\n\n\n\n<p>Second thing on our list is that we are celebrating our 10,000th photo submission. So, on October 11th, the 10,000th photo was approved. The Photo Team is one of the newest ways to contribute to the WordPress open source project, and it feeds all of those photos into Openverse as well.</p>\n\n\n\n<p>The third thing on our list today is that I want to tell you about a community team training module that just came out. It&#8217;s specifically about the Translate Live tool, and it is ideal for presenting at your local meetups to engage and onboard new translators for your native language. If you&#8217;re organizing a WordCamp, consider introducing this tool during your Contributor Day. I will leave a link for this in the show notes so that it is easy to find.&nbsp;</p>\n\n\n\n<p>And item number four, the journey to update WordPress.org, continues with the launch of a new Showcase design. The Showcase is a natural starting point for a lot of visitors who are on WordPress.org. It inspires creativity and also demonstrates what&#8217;s possible with WordPress. So, stop on by there, it&#8217;s WordPress.org/showcase, and give it a bit of a look.</p>\n\n\n\n<p>[00:15:58] <strong>Josepha:</strong> And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. And don&#8217;t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You&#8217;ll get a friendly reminder whenever a new episode drops. And if you like what you heard today, share it with a fellow WordPresser. Or, if you had questions about what you heard today, you can share those with me at wprebriefing@WordPress.org. </p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks. </p>\n\n\n\n<p>[00:16:24] (Music outro)</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:\"16227\";s: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:35:\"WordPress 6.4’s PHP Compatibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2023/10/wordpress-6-4s-php-compatibility/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 26 Oct 2023 08:40:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"PHP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=16235\";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:340:\"In an effort to keep the WordPress community up to date, this post provides an update on the PHP compatibility of the upcoming WordPress 6.4 release scheduled for November 7, 2023.&#160; Recommended PHP version for WordPress 6.4 It’s recommended to use PHP 8.1 or 8.2 with this upcoming release. Please refer to the Hosting page [&#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:3117:\"\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"2400\" height=\"1350\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/WordPress-6.4s-PHP-comp.png?resize=2400%2C1350&#038;ssl=1\" alt=\"\" class=\"wp-image-16236\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/10/WordPress-6.4s-PHP-comp.png?w=2400&amp;ssl=1 2400w, https://i0.wp.com/wordpress.org/news/files/2023/10/WordPress-6.4s-PHP-comp.png?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/10/WordPress-6.4s-PHP-comp.png?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/10/WordPress-6.4s-PHP-comp.png?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/10/WordPress-6.4s-PHP-comp.png?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/10/WordPress-6.4s-PHP-comp.png?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>In an effort to keep the WordPress community up to date, this post provides an update on the PHP compatibility of the upcoming WordPress 6.4 release scheduled for November 7, 2023.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Recommended PHP version for WordPress 6.4</strong></h3>\n\n\n\n<p>It’s recommended to use PHP 8.1 or 8.2 with this upcoming release. Please refer to the Hosting page for more detailed information, including <a href=\"https://make.wordpress.org/core/handbook/references/php-compatibility-and-wordpress-versions/\">a few known issues</a>.&nbsp;</p>\n\n\n\n<p>Reach out to your hosting company to explore PHP upgrade options.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Why does compatibility matter?</strong></h3>\n\n\n\n<p>PHP is a programming language on which the WordPress code is based. This language runs on the server, and it is critical to keep it updated for security and functionality. Various teams within the WordPress open source project work to both test and fix any issues with new PHP versions so you can update with confidence that the WordPress core software is compatible.&nbsp;</p>\n\n\n\n<p>Happy WordPress-ing!&nbsp;</p>\n\n\n\n<p><em>Thank you to <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a> <a href=\'https://profiles.wordpress.org/barry/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>barry</a> <a href=\'https://profiles.wordpress.org/ironprogrammer/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ironprogrammer</a> <a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a> <a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a> <a href=\'https://profiles.wordpress.org/costdev/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>costdev</a> <a href=\'https://profiles.wordpress.org/javiercasares/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>javiercasares</a> for reviewing and contributing to the effort of 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:\"16235\";s: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: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:33:\"WordPress 6.4 Release Candidate 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:69:\"https://wordpress.org/news/2023/10/wordpress-6-4-release-candidate-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, 24 Oct 2023 16:45: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:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6-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:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16219\";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:163:\"WordPress 6.4 RC2 is ready for download and testing. Reaching this phase of the release cycle is an important milestone. Check out what\'s new and how you can help.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Meher Bala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6586:\"\n<p>The second release candidate (RC2) for WordPress 6.4 is now available!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended that you evaluate RC2 on a test server and site.</p>\n\n\n\n<p>WordPress 6.4 is <a href=\"https://make.wordpress.org/core/6-4/\">slated for release</a> on <strong>November 7, 2023</strong>—two weeks from today. If you haven’t tried it, now is the time.</p>\n\n\n\n<p>You can test WordPress 6.4 RC2 in three ways:</p>\n\n\n\n<ol>\n<li><strong>Plugin</strong>: Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Direct download</strong>: Download the <a href=\"https://wordpress.org/wordpress-6.4-RC2.zip\">RC2 version (zip)</a> and install it on a WordPress site.</li>\n\n\n\n<li><strong>Command line</strong>: Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br><code>wp core update --version=6.4-RC2</code></li>\n</ol>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/10/wordpress-6-4-release-candidate-1/\">Read the RC1 announcement</a> for featured highlights, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-4/\">6.4-related posts</a>. If you are looking for detailed technical notes on new features and improvements, the <a href=\"https://make.wordpress.org/core/2023/10/23/wordpress-6-4-field-guide/\"><strong>WordPress 6.4 Field Guide</strong></a> is for you.</p>\n\n\n\n<p>The WordPress 6.4 release is brought to you by an <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">underrepresented gender release squad</a> to welcome the participation and partnership of those who identify as gender-underrepresented in the WordPress open source project.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 6.4 RC2?</h2>\n\n\n\n<p>Thanks to everyone who has tested the beta and RC releases. Since RC1 was released on October 17, there have been more than 25 issues resolved. You can browse the technical details for all recent updates using these links:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.4\">GitHub commits for 6.4</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=10%2F18%2F2023..10%2F24%2F2023&amp;milestone=6.4&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets since RC1</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/twentytwentyfour/commits/\">GitHub commits for Twenty Twenty-Four</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Contributing to 6.4</h2>\n\n\n\n<p>WordPress is open source software made possible by a community of people collaborating on and contributing to its development. The resources below outline various ways you can help, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Your feedback and help in testing are vital to developing the WordPress software and ensuring its quality. It’s also a meaningful way for anyone to contribute. <a href=\"https://make.wordpress.org/test/2023/09/26/help-test-wordpress-6-4/\">Check out this guide</a> for instructions on testing WordPress 6.4 features.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>During the release candidate phase of WordPress 6.4, the <a href=\"https://make.wordpress.org/security/2023/09/26/bug-bounty-for-wordpress-6-4-beta/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>Do you build themes and plugins? Your products play an integral role in extending the functionality and value of WordPress for users worldwide.</p>\n\n\n\n<p>Hopefully, you have already tested your themes and plugins with WordPress 6.4 betas. With RC2, you will want to continue your testing and update the <em>&#8220;Tested up to&#8221;</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin&#8217;s readme file</a> to 6.4.</p>\n\n\n\n<p>Please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> if you find compatibility issues.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A RC2 haiku</h2>\n\n\n\n<p>You have been waiting<br>Download and give it a test<br>RC2 is here</p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post: <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>, <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/michelleames/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>michelleames</a>, <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</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:\"16219\";s: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: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:\"State of the Word 2023 – Save the Date\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2023/10/state-of-the-word-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Oct 2023 17:22: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: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:4:\"sotw\";s: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:\"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:35:\"https://wordpress.org/news/?p=16116\";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:\"It’s time to save the date, December 11, 2023, for this year’s State of the Word 2023!\n\nState of the Word is the annual keynote address delivered by the WordPress project’s co-founder, Matt Mullenweg. Every year, the event shares reflections on the project’s progress and aspirations for the future of open source.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2330:\"\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/Web-SOTW-Image-1200x800-2.png?resize=1024%2C683&#038;ssl=1\" alt=\"Madrid State of the Word 2023, Dec 11, 2023 at 15:00 UTC, Madrid, Spain\" class=\"wp-image-16208\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/10/Web-SOTW-Image-1200x800-2.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/10/Web-SOTW-Image-1200x800-2.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/10/Web-SOTW-Image-1200x800-2.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/10/Web-SOTW-Image-1200x800-2.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/10/Web-SOTW-Image-1200x800-2.png?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>It’s time to save the date, December 11, 2023, for this year’s State of the Word!</p>\n\n\n\n<p>State of the Word is the annual keynote address delivered by the WordPress project’s co-founder, <a href=\"https://ma.tt/\">Matt Mullenweg</a>. Every year, the event shares reflections on the project’s progress and aspirations for the future of open source.&nbsp;</p>\n\n\n\n<p>For the first time, State of the Word will take place outside North America–this time with the Spanish community in <strong>Madrid, Spain</strong>. The event will be live-streamed to WordPress enthusiasts around the globe via WordPress.org social media platforms.&nbsp;</p>\n\n\n\n<p>Join Matt as he provides a retrospective of 2023, demos the latest in WordPress tech, and comments on the future of the WordPress open source project.</p>\n\n\n\n<p>Details including how to reserve a ticket for the in-person event, the link to watch the live stream, and information on how to submit questions for the Q&amp;A portion will be provided in November and shared on <a href=\"https://wordpress.org\">WordPress.org</a> and affiliated social media accounts.</p>\n\n\n\n<p></p>\n\n\n\n<p><em>Thanks to <a href=\"https://profiles.wordpress.org/rmartinezduque/\">Reyes Martínez</a> and <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a> for reviewing 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:\"16116\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"A New WordPress Showcase\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2023/10/a-new-wordpress-showcase/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 18 Oct 2023 17:34: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:2:{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:4:\"Meta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16173\";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:406:\"The journey to update WordPress.org continues with the launch of a new Showcase design. The Showcase is a natural starting point for visitors arriving on WordPress.org, and it both inspires creativity and demonstrates what’s possible with WordPress. From unique personal blogs and portfolios to enterprises and celebrity fan sites, the Showcase celebrates WordPress’s flexibility, popularity, [&#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:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7639:\"\n<p>The <a href=\"https://wordpress.org/news/category/meta/\">journey to update WordPress.org</a> continues with the launch of a new <a href=\"https://wordpress.org/showcase/\">Showcase</a> design. The Showcase is a natural starting point for visitors arriving on WordPress.org, and it both inspires creativity and demonstrates what’s possible with WordPress. From unique personal blogs and portfolios to enterprises and celebrity fan sites, the Showcase celebrates WordPress’s flexibility, popularity, and the freedom to own one’s content.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-1 is-style-rectangular wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"954\" data-id=\"16187\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/2-showcase-site-1.png?resize=1024%2C954&#038;ssl=1\" alt=\"Screenshots from the new Showcase design\" class=\"wp-image-16187\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/10/2-showcase-site-1.png?resize=1024%2C954&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/10/2-showcase-site-1.png?resize=300%2C280&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/10/2-showcase-site-1.png?resize=768%2C716&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/10/2-showcase-site-1.png?resize=1536%2C1432&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/10/2-showcase-site-1.png?resize=2048%2C1909&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2023/10/2-showcase-site-1.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"954\" data-id=\"16184\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/3-showcase-starry-theme-1.png?resize=1024%2C954&#038;ssl=1\" alt=\"A grid of new design elements\" class=\"wp-image-16184\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/10/3-showcase-starry-theme-1.png?resize=1024%2C954&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/10/3-showcase-starry-theme-1.png?resize=300%2C280&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/10/3-showcase-starry-theme-1.png?resize=768%2C716&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/10/3-showcase-starry-theme-1.png?resize=1536%2C1432&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/10/3-showcase-starry-theme-1.png?resize=2048%2C1909&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2023/10/3-showcase-starry-theme-1.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" data-id=\"16185\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/4-showcase-websites-curaction-1.png?resize=1024%2C576&#038;ssl=1\" alt=\"A collage of Showcased websites\" class=\"wp-image-16185\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/10/4-showcase-websites-curaction-1.png?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/10/4-showcase-websites-curaction-1.png?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/10/4-showcase-websites-curaction-1.png?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/10/4-showcase-websites-curaction-1.png?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/10/4-showcase-websites-curaction-1.png?resize=2048%2C1152&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2023/10/4-showcase-websites-curaction-1.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n</figure>\n\n\n\n<p>This new design provides much-needed improvements to the aesthetics and user experience. It emphasizes bold visuals and a more dynamic browsing experience through tags and categories. Individual site pages now include desktop and mobile screenshots, while the site introduces an improved layout on mobile devices.&nbsp;</p>\n\n\n\n<p>This redesign also brings new <a href=\"https://wordpress.org/blocks/\">block-based functionality</a> and several components that will be used elsewhere on WordPress.org. All of this was made possible through collaboration between Design, Marketing, and Meta teams. Thank you to everyone.</p>\n\n\n\n<p class=\"is-style-wporg-props-medium\"><a href=\'https://profiles.wordpress.org/adamwood/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>adamwood</a> <a href=\'https://profiles.wordpress.org/alexstine/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>alexstine</a> <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a> <a href=\'https://profiles.wordpress.org/bengreeley/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>bengreeley</a> <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a> <a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a> <a href=\'https://profiles.wordpress.org/dufresnesteven/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dufresnesteven</a> <a href=\'https://profiles.wordpress.org/eidolonnight/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>eidolonnight</a> <a href=\'https://profiles.wordpress.org/fcoveram/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>fcoveram</a> <a href=\'https://profiles.wordpress.org/joen/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joen</a> <a href=\'https://profiles.wordpress.org/jonoaldersonwp/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jonoaldersonwp</a> <a href=\'https://profiles.wordpress.org/jpantani/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jpantani</a> <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a> <a href=\'https://profiles.wordpress.org/matt/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>matt</a> <a href=\'https://profiles.wordpress.org/markoserb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>markoserb</a> <a href=\'https://profiles.wordpress.org/ndiego/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ndiego</a> <a href=\'https://profiles.wordpress.org/pablohoneyhoney/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>pablohoneyhoney</a> <a href=\'https://profiles.wordpress.org/paulkevan/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>paulkevan</a> <a href=\'https://profiles.wordpress.org/renyot/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>renyot</a> <a href=\'https://profiles.wordpress.org/ryelle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ryelle</a> <a href=\'https://profiles.wordpress.org/sereedmedia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sereedmedia</a> <a href=\'https://profiles.wordpress.org/_dorsvenabili/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>_dorsvenabili</a></p>\n\n\n\n<p>If you would like to propose a change or report an issue, please do so in the <a href=\"https://github.com/WordPress/wporg-showcase-2022\">wporg-showcase-2022</a>&nbsp; GitHub repository. Also, make sure to join the <a href=\"https://wordpress.slack.com/archives/C04U953K77A\">#website-redesign</a> Slack channel if you are interested in additional updates coming to WordPress.org and want to contribute.</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:\"16173\";s: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: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:33:\"WordPress 6.4 Release Candidate 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:69:\"https://wordpress.org/news/2023/10/wordpress-6-4-release-candidate-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, 17 Oct 2023 17:48:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6-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:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16147\";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:166:\"WordPress 6.4 RC1 is ready for download and testing. Reaching this phase of the release cycle is an important milestone. Check out what\'s new and how to get involved.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Reyes Martínez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11963:\"\n<p>The first release candidate (RC1) for WordPress 6.4 is now available!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended that you evaluate RC1 on a test server and site.</p>\n\n\n\n<p>Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains vital to ensure that everything in WordPress 6.4 is the best it can be.</p>\n\n\n\n<p>You can test WordPress 6.4 RC1 in three ways:</p>\n\n\n\n<ol>\n<li><strong>Plugin</strong>: Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Direct download</strong>: Download the <a href=\"https://wordpress.org/wordpress-6.4-RC1.zip\">RC1 version (zip)</a> and install it on a WordPress site.</li>\n\n\n\n<li><strong>Command line</strong>: Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br><code>wp core update --version=6.4-RC1</code></li>\n</ol>\n\n\n\n<p>The current target for the WordPress 6.4 release is <strong>November 7, 2023</strong>. Get an overview of the <a href=\"https://make.wordpress.org/core/6-4/\">6.4 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-4/\">6.4-related posts</a>.</p>\n\n\n\n<p>The WordPress 6.4 release is brought to you by an <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\"><strong>underrepresented gender release squad</strong></a> to welcome the participation and partnership of those who identify as gender-underrepresented in the WordPress open source project.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 6.4 RC1?</h2>\n\n\n\n<p>This release contains 420 enhancements and 445 bug fixes for the editor, including more than <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=6.4&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\">260 tickets for WordPress 6.4 core</a>. Browse the technical details for all issues recently addressed using these links:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.4\">GitHub commits for 6.4</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=10%2F12%2F2023..10%2F17%2F2023&amp;milestone=6.4&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets since Beta 4</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/twentytwentyfour/commits/\">GitHub commits for Twenty Twenty-Four</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Highlights</h3>\n\n\n\n<p>WordPress 6.4 is the third and last major release of 2023. It introduces a multi-purpose default theme, new features, and a keen focus on details to enhance every aspect of your creation journey—from site editing and design to writing flows.</p>\n\n\n\n<ul>\n<li><strong>A new flexible default theme</strong> brings together the latest and greatest of WordPress. Discover its vast collection of templates and patterns to tweak and match your brand. Built for versatility, <a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\"><strong>Twenty Twenty-Four</strong></a> is an ideal fit for nearly any type of website.</li>\n\n\n\n<li>Enable <strong>lightbox functionality</strong> in images for immersive viewing experiences.</li>\n\n\n\n<li><strong>Organize your patterns with your own custom categories</strong>. Find them all more intuitively with advanced filtering in the Patterns section of the inserter.</li>\n\n\n\n<li><strong>Enjoy <a href=\"https://make.wordpress.org/core/2023/10/05/core-editor-improvement-ensuring-excellence-in-the-writing-experience/\">more writing improvements</a></strong>, including new keyboard shortcuts, smoother list merging, and enhanced control over your link settings. A revamped toolbar experience for Navigation, List, and Quote blocks ensures cohesive and organized access to the tooling options you work with.</li>\n\n\n\n<li><strong>A redesigned </strong><a href=\"https://make.wordpress.org/core/2023/09/12/core-editor-improvement-commanding-the-command-palette/\"><strong>Command Palette</strong></a><strong> with new commands</strong> helps you find what you need, perform tasks efficiently, and speed up your workflow.</li>\n\n\n\n<li><strong>Rename Group blocks</strong> to organize and distinguish areas of your content easily.</li>\n\n\n\n<li>See and locate your content’s media assets at a glance with new <strong>gallery and image previews in List View</strong>.</li>\n\n\n\n<li>Build beautiful yet functional layouts with an <strong>expanded set of design tools</strong>. Play with background images in Group blocks for unique creative designs, keep image dimensions consistent with placeholder aspect ratios, and effortlessly add buttons to your Navigation block without custom CSS—among other new capabilities.</li>\n\n\n\n<li><strong>Block Hooks</strong> enable developers to automatically insert blocks at their chosen content locations, enriching the extensibility of block themes through plugins. While developer-centric, this new feature improves your building experience with blocks and gives you complete control to customize Block Hooks to your needs.</li>\n\n\n\n<li><strong>Over 60 accessibility updates</strong>, including significant List View enhancements, aria-label support for the Navigation block, and upgrades to the admin user interface.</li>\n\n\n\n<li><strong>More than 100 performance updates</strong>, focusing on template loading performance for classic and block themes, usage of the script loading strategies “defer” and “async,” and optimization of autoloaded options.</li>\n</ul>\n\n\n\n<p>Are you looking for a deeper dive into details and technical notes? <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-4/\">These recent posts</a> cover a few of the latest updates:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/10/16/changes-to-attachment-pages/\">Changes to attachment pages for improved SEO</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/17/miscellaneous-editor-changes-in-wordpress-6-4/\">Miscellaneous Editor changes in WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/15/introducing-block-hooks-for-dynamic-blocks/\">Introducing Block Hooks for dynamic blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/17/script-loading-changes-in-wordpress-6-4/\">Script loading changes in WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/17/improvements-to-template-loading-in-wordpress-6-4/\">Improvements to template loading in WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/16/introducing-admin-notice-functions-in-wordpress-6-4/\">Introducing admin notice functions in WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/16/editor-components-updates-in-wordpress-6-4/\">Updates to user-interface components in WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/16/new-registerinsertermediacategory-api/\">New `registerInserterMediaCategory` API</a></li>\n</ul>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Ways to contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by a community of people collaborating on and contributing to its development. The resources below outline various ways you can help, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Testing for issues is critical to developing the software and ensuring its quality. It’s also a meaningful way for anyone to contribute—whether you have experience or not. <a href=\"https://make.wordpress.org/test/2023/09/26/help-test-wordpress-6-4/\">Check out this guide</a> for detailed instructions on testing key features in WordPress 6.4.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>During the release candidate phase of WordPress 6.4, the <a href=\"https://make.wordpress.org/security/2023/09/26/bug-bounty-for-wordpress-6-4-beta/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>Do you build themes and plugins? Your products play an integral role in extending the functionality and value of WordPress for users worldwide.</p>\n\n\n\n<p>You most likely have already been testing your latest themes and plugins with the WordPress 6.4 betas. With RC1, you will want to complete your testing and update the <em>&#8220;Tested up to&#8221;</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin&#8217;s readme file</a> to 6.4.</p>\n\n\n\n<p>Please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> if you find compatibility issues.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help translate WordPress into more than 100 languages</a>. This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 6.4 release cycle.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">A haiku for RC1</h2>\n\n\n\n<p>RC1 in hand<br>WordPress evolves and takes shape<br>Testing, a sneak peek, in place</p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post: <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>, <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>, <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/priethor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>priethor</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:\"16147\";s: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:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WP Briefing: Episode 64: Patterns 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2023/10/episode-64-patterns-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 Oct 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16109\";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:194:\"Join WordPress Executive Director, Josepha Haden Chomphosy, as she goes back to the basics and offers some insight into block patterns for WordPress. Don’t miss this exciting insider’s look!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:51:\"https://wordpress.org/news/files/2023/10/WPB064.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7408:\"\n<p>Join WordPress Executive Director, Josepha Haden Chomphosy, as she goes back to the basics and offers some insight into block patterns for WordPress. Don&#8217;t miss this exciting insider&#8217;s look!</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/using-block-patterns/\">Using Block Patterns</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/patterns/\">Pattern Library</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/taking-advantage-of-query-loops/\">Taking Advantage of Query Loops</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://survey.alchemer.com/s3/7439442/2023-WordPress-Annual-Survey?ref23=social\">The WP Annual Survey is available</a>! Each year, the WordPress community (users, site builders, extenders, and contributors) provides valuable feedback through an annual survey. </li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2024/\">WordCamp Asia</a> is searching for volunteers for the upcoming WordCamp on March 7–9, 2024. They are looking for Contributor Stories, Event Volunteers, Emcee support, A/V Team Crew, and even designers to help create the official Wapuu for the event.</li>\n\n\n\n<li><a href=\"https://www.meetup.com/pro/wordpress/\">Local WordCamp Meetups</a>! Use this opportunity to find upcoming local events or volunteer to help at the next one. They are an excellent opportunity to meet with others in the community.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-16109\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> 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>[00:00:28] (Intro music)&nbsp;</p>\n\n\n\n<p>[00:00:39] <strong>Josepha:</strong> Today&#8217;s briefing topic is going to take a bit of a back-to-basics look at block patterns. Block patterns are one of my favorite enhancements that came through the Gutenberg project, and they&#8217;re pretty much exactly what they sound like. Groups of blocks that are arranged together. These patterns can be as simple as a block that holds a series of social sharing icons, but they can also be as complex as an entire landing page, complete with a call to action and interactive gallery.</p>\n\n\n\n<p>They can be used as a starting point where you activate an entire pattern and then modify the pieces that don&#8217;t quite work for you or as a sort of inspirational catalog of design elements for you to build your own patterns from.&nbsp;</p>\n\n\n\n<p>So, where do these block patterns come from? Who created them? As with most things in WordPress, the answer is lots of places. Some patterns are included with WordPress by default, and there are also sometimes specialized block patterns that are bundled with a particular theme or plugin. There&#8217;s also a pattern library that includes both curated block patterns and all the patterns that are created and shared by the WordPress community itself.</p>\n\n\n\n<p>So from the CMS, from themes, from plugins, from designers, from hobbyists, from people who just like love creating things and putting it out in the world, that&#8217;s, that&#8217;s where those patterns come from. But you can also create and curate your own block patterns, either to share back to the community as some folks do or because you are a site administrator and everyone needs to be able to add, I don&#8217;t know, an author block or something. But you don&#8217;t always want to be the one that has to put the photo on the page.&nbsp;</p>\n\n\n\n<p>There are a few blocks that have their patterns built into settings, most notably the Query Loop Block. I&#8217;ll share a tutorial about how to work with that in the show notes, but ultimately, what&#8217;s important to remember here is that block patterns are a really powerful tool with a lot of ways to implement them. You can start as simple as you want or as complex as you want, but either way, getting familiar with this concept in the software will give you a leg up on your next project.</p>\n\n\n\n<p>[00:02:53] (Music interlude)&nbsp;</p>\n\n\n\n<p>[00:03:00] <strong>Josepha:</strong> That brings us now to our small list of big things.&nbsp;</p>\n\n\n\n<p>First up, the annual survey is available. Each year, the WordPress community, so users, site builders, extenders, contributors, artists, you all provide valuable feedback through an annual survey. And every year, I look into the results to get a sense for what areas need the most attention in the project. So click the link in the show notes to take the 2023 survey and help co-create WordPress.&nbsp;</p>\n\n\n\n<p>The next thing on our small list of big things is WordCamp Asia is currently searching for volunteers for the upcoming event on March 7th through 9th, 2024. They&#8217;re looking for Contributor Stories, Event Volunteers, Emcee support, A/V Team Crew, and even designers to help create the official Wapuu for the event. I&#8217;ll include a link to applications for that in the show notes as well.&nbsp;</p>\n\n\n\n<p>And finally, I think it&#8217;s important to mention that if you don&#8217;t really know what a WordCamp is, so you don&#8217;t really understand why you should volunteer to help this one, or why you would want to, then head over to your local meetup. If you look in your WordPress dashboard, there&#8217;s a widget in there that tells you when the next local event will be. And I know that they will all be delighted to have you there. And who knows, maybe your city will be the next to host a WordCamp. I&#8217;ll also include in the show notes just a list of all of the meetup groups that we have in the world. And so if you don&#8217;t trust your dashboard or you don&#8217;t share your location there for some reason, you can just find it on your own.</p>\n\n\n\n<p>And that, my friends, is your small of big things.</p>\n\n\n\n<p>[00:04:32] <strong>Josepha:</strong> Thanks for tuning in today for the WordPress Briefing. Don&#8217;t forget to follow us on your favorite podcast app, or subscribe directly on WordPress.org/news. You&#8217;ll get a friendly reminder whenever a new episode drops. If you liked what you heard today, share it with a fellow WordPresser. Or, if you had questions about what you heard, you can share those directly with me at wpbriefing@WordPress.org. I&#8217;m your host, Josepha Haden Chomphosy. Thanks again for listening, and I&#8217;ll see you in a couple of weeks.&nbsp;</p>\n\n\n\n<p>[00:05:00] (Music outro)</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:\"16109\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WordPress 6.3.2 – Maintenance and 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:84:\"https://wordpress.org/news/2023/10/wordpress-6-3-2-maintenance-and-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, 12 Oct 2023 20:44: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: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=16122\";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:\"This security and maintenance release features 19 bug fixes on Core, 22 bug fixes for the Block Editor, and 8 security fixes. WordPress 6.3.2 is a short-cycle release. You can review a summary of the maintenance updates in this release by reading the Release Candidate announcement. Because this is a security release, it is recommended [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9836:\"\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?milestone=6.3.2&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">19 bug fixes on Core</a>, 22 bug fixes for the Block Editor, and 8 security fixes.</p>\n\n\n\n<p>WordPress 6.3.2 is a short-cycle release. You can review a summary of the maintenance updates in this release by reading the <a href=\"https://make.wordpress.org/core/2023/10/06/wordpress-6-3-2-rc1-is-now-available/\">Release Candidate announcement</a>. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. Backports are also available for other major WordPress releases, 4.1 and later.</p>\n\n\n\n<p>The next major release will be <a href=\"https://make.wordpress.org/core/6-4/\">version 6.4</a> planned for 7 November 2023.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.3.2.zip\">download WordPress 6.3.2 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<p>For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-3-2\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security updates included in this release</h2>\n\n\n\n<p>The security team would like to thank the following people for responsibly reporting vulnerabilities, and allowing them to be fixed in this release:</p>\n\n\n\n<ul>\n<li>Marc Montpas of Automattic for finding a potential disclosure of user email addresses.</li>\n\n\n\n<li>Marc Montpas of Automattic for finding an RCE POP Chains vulnerability.</li>\n\n\n\n<li>Rafie Muhammad and Edouard L of <a href=\"https://patchstack.com/\">Patchstack</a> along with a WordPress commissioned third-party audit for each independently identifying a XSS issue in the post link navigation block.</li>\n\n\n\n<li><a href=\"https://www.linkedin.com/in/audrasjb/\">Jb Audras</a> of the WordPress Security Team and Rafie Muhammad of <a href=\"https://patchstack.com/\">Patchstack</a> for each independently discovering an issue where comments on private posts could be leaked to other users.</li>\n\n\n\n<li>John Blackbourn (WordPress Security Team), <a href=\"https://hackerone.com/jamesgol?type=user\">James Golovich</a>, <a href=\"https://hackerone.com/jdgrimes\">J.D Grimes</a>, <a href=\"https://hackerone.com/numan\">Numan Turle</a>, <a href=\"https://hackerone.com/whitecybersec?type=user\">WhiteCyberSec</a> for each independently identifying a way for logged-in users to execute any shortcode.</li>\n\n\n\n<li><a href=\"https://facebook.com/zino.abdrahim\">mascara7784</a> and a third-party security audit for identifying a XSS vulnerability in the application password screen.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> of the WordPress Core Team for identifying XSS vulnerability in the footnotes block.</li>\n\n\n\n<li><a href=\"https://hackerone.com/s5s\">s5s</a> and <a href=\"http://twitter.com/Raoufmaklouf\">raouf_maklouf</a> for independently identifying a cache poisoning DoS vulnerability.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> and <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, with the help of<a href=\"https://profiles.wordpress.org/davidbaumwald/\"> David Baumwald</a> on mission control.</p>\n\n\n\n<p>WordPress 6.3.2 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance and security fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long\"><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/wildworks\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/akihiroharai\">Akihiro Harai</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/afragen\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/antpb\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/aurooba\">Aurooba Ahmed</a>, <a href=\"https://profiles.wordpress.org/scruffian\">Ben Dwyer</a>, <a href=\"https://profiles.wordpress.org/poena\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/costdev\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/coreyw\">Corey Worrell</a>, <a href=\"https://profiles.wordpress.org/colorful tones\">Damon Cook</a>, <a href=\"https://profiles.wordpress.org/david.binda\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/desmith\">David E. Smith</a>, <a href=\"https://profiles.wordpress.org/dsas\">Dean Sas</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/dhruvishah2203\">Dhruvi Shah</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ehtis\">Ehtisham S.</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/Mamaduka\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/gziolo\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/huzaifaalmesbah\">Huzaifa Al Mesbah</a>, <a href=\"https://profiles.wordpress.org/isabel_brison\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/greenshady\">Justin Tadlock</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/kimannwall\">Kim Coleman</a>, <a href=\"https://profiles.wordpress.org/lhe2012\">LarryWEB</a>, <a href=\"https://profiles.wordpress.org/lgladdy\">Liam Gladdy</a>, <a href=\"https://profiles.wordpress.org/iammehedi1\">Mehedi Hassan</a>, <a href=\"https://profiles.wordpress.org/mcsf\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nicolefurlan\">Nicole Furlan</a>, <a href=\"https://profiles.wordpress.org/pbiron\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/paulkevan\">Paul Kevan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pooja1210\">Pooja N Muchandikar</a>, <a href=\"https://profiles.wordpress.org/rajinsharwar\">Rajin Sharwar</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shailu25\">Shail Mehta</a>, <a href=\"https://profiles.wordpress.org/sabernhardt\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/tykoted\">Teddy Patriarca</a>, <a href=\"https://profiles.wordpress.org/TimothyBlynJacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/zunaid321\">Zunaid Amin</a>, <a href=\"https://profiles.wordpress.org/ahardyjpl\">ahardyjpl</a>, <a href=\"https://profiles.wordpress.org/beryldlg\">beryldlg</a>, <a href=\"https://profiles.wordpress.org/floydwilde\">floydwilde</a>, <a href=\"https://profiles.wordpress.org/jastos\">jastos</a>, <a href=\"https://profiles.wordpress.org/martin.krcho\">martin.krcho</a>, <a href=\"https://profiles.wordpress.org/masteradhoc\">masteradhoc</a>, <a href=\"https://profiles.wordpress.org/petitphp\">petitphp</a>, <a href=\"https://profiles.wordpress.org/ramonopoly\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/zieladam\">zieladam</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C055Y7FKS7N\">#6-4-release-leads channels</a>. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p><em>Already testing WordPress 6.4? The fourth beta is now available (<a href=\"https://wordpress.org/wordpress-6.4-beta4.zip\">zip</a>) and it contains these security fixes. For more on 6.4, see the&nbsp;<a rel=\"noreferrer noopener\" href=\"https://wordpress.org/news/2023/10/wordpress-6-4-beta-3/\" target=\"_blank\">beta 3 announcement post</a>.</em></p>\n\n\n\n<p class=\"has-text-align-right\"><em>Thanks to<em> <a href=\"https://profiles.wordpress.org/jeffpaul/\">@jeffpaul</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>, </em></em><a href=\"https://profiles.wordpress.org/peterwilsoncc/\">@peterwilsoncc</a><em><em> and <a href=\"https://profiles.wordpress.org/rawrly/\">@rawrly</a></em> for proofreading.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16122\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 07 Nov 2023 20:23:10 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 07 Nov 2023 19:59:02 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20211221000300\";}','no'),(347,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1699431791','no'),(348,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1699388591','no'),(349,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1699431791','no'),(350,'_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:47:\"WordPress.org blog: WordPress 6.4 “Shirley”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=16299\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2023/11/shirley/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:66051:\"<img width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=1024%2C683&ssl=1\" alt=\"Record cover with an image of Shirley Horn, a record sliding down the right side, and the words Shirley WordPress 6.4.\" class=\"wp-image-16319\" />\n\n\n\n<p>Say hello to WordPress 6.4 “Shirley,” named after the iconic jazz artist <a href=\"https://wikipedia.org/wiki/Shirley_Horn\">Shirley Horn</a>. Her distinctive voice and extraordinary connection to the piano established her as one of the leading jazz musicians of her generation. Horn’s journey from the Washington D.C. jazz scene to the international stage is a testament to her dedication and perseverance. Her influence reached far beyond the confines of traditional jazz, breaking boundaries and inspiring audiences worldwide.</p>\n\n\n\n<p>Enjoy the easy pace of <a href=\"https://www.youtube.com/channel/UCS3pUiY9OmzB6bPta3-4ArQ/playlists\">Shirley Horn’s music</a> as you take in all that 6.4 offers.</p>\n\n\n\n<p>This latest version of WordPress introduces a new, versatile default theme and a suite of upgrades to empower every step of your creative journey. Craft your content seamlessly with further writing improvements. Explore more ways to bring your vision to life and streamline site editing with enhanced tools. Whether you&#8217;re new to WordPress or an experienced creator, “Shirley” has something for you. Discover the unmatched flexibility of building with blocks and let your ideas take flight.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Many of the features and enhancements in WordPress 6.4 fall in the “small but mighty” category. Along with the adaptable beauty of the Twenty Twenty-Four theme, these updates help content creators and site developers alike save time and effort while delivering the high value, low hassle WordPress experience the world has grown to expect.</p>\n<cite>Josepha Haden Chomphosy, Executive Director of WordPress</cite></blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/download/\">Download WordPress 6.4 today</a></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s inside 6.4</h2>\n\n\n\n<h3 class=\"wp-block-heading\">Meet Twenty Twenty-Four</h3>\n\n\n\n<p>Experience site editing at its finest with <a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Twenty Twenty-Four</a>. This new multi-faceted default theme has been thoughtfully crafted with three distinct use cases in mind, from writers and artists to entrepreneurs. Save time and effort with its extensive collection of <a href=\"https://2024.wordpress.net/index.php/patterns/\">over 35 templates and patterns</a>—and unlock a world of creative possibilities with a few tweaks. Twenty Twenty-Four’s remarkable flexibility ensures an ideal fit for almost any type of site. <a href=\"https://2024.wordpress.net/\">Check it out in this demo</a>.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/tt4.png?resize=1024%2C666&ssl=1\" alt=\"Cropped screenshots of the Twenty Twenty-Four theme, showing its diverse use cases for photographers, bloggers, and small businesses.\" class=\"wp-image-16274\" />\n\n\n\n<h3 class=\"wp-block-heading\">Let your writing flow</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/10/05/core-editor-improvement-ensuring-excellence-in-the-writing-experience/\">New enhancements</a> ensure your content creation journey is smooth. Find new keyboard shortcuts in List View, smarter list merging, and enhanced control over link settings. A cohesive toolbar experience for the Navigation, List, and Quote blocks lets you work efficiently with the tooling options you need.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/writing.png?resize=1024%2C666&ssl=1\" alt=\"Screenshot of a Quote block showing its improved toolbar and the text \" />\n\n\n\n<h3 class=\"wp-block-heading\">The Command Palette just got better</h3>\n\n\n\n<p>First introduced in WordPress 6.3, the Command Palette is a powerful tool to quickly find what you need, perform tasks efficiently, and speed up your building workflow. Enjoy a <a href=\"https://make.wordpress.org/core/2023/09/12/core-editor-improvement-commanding-the-command-palette/\">refreshed design and new commands</a> to perform block-specific actions in this release.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/commands.png?resize=1024%2C666&ssl=1\" alt=\"Screenshot of the refreshed UI of the Command Palette. It displays a search bar with the words \" for=\"for\" />\n\n\n\n<h3 class=\"wp-block-heading\">Categorize and filter patterns</h3>\n\n\n\n<p><a href=\"https://wordpress.org/patterns/\">Patterns</a> are an excellent way to leverage the potential of blocks and simplify your site-building process. WordPress 6.4 allows you to organize them with custom categories. Plus, new advanced filtering in the Patterns section of the inserter makes finding all your patterns more intuitive.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/categorize-patterns-1.png?resize=1024%2C666&ssl=1\" alt=\"Screenshot of the Site Editor\'s patterns view which shows a list of patterns with custom categories, such as \" />\n\n\n\n<h3 class=\"wp-block-heading\">Get creative with more design tools</h3>\n\n\n\n<p>Build beautiful and functional layouts with an expanded set of design tools. Play with background images in Group blocks for unique designs and maintain image dimensions consistent with placeholder aspect ratios. Do you want to add buttons to your Navigation block? Now you can do it conveniently without a line of code.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/design-tools.png?resize=1024%2C666&ssl=1\" alt=\"Decorative image with text \" />\n\n\n\n<h3 class=\"wp-block-heading\">Make your images stand out</h3>\n\n\n\n<p>Enable lightbox functionality to let your site visitors enjoy full-screen, interactive images on click. Apply it globally or to specific images to customize the viewing experience.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/lightbox.png?resize=1024%2C666&ssl=1\" alt=\"Decorative photo of a triangular building structure with a \" />\n\n\n\n<h3 class=\"wp-block-heading\">Rename Group blocks</h3>\n\n\n\n<p>Set custom names for Group blocks to organize and distinguish areas of your content easily. These names will be visible in List View.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/rename.png?resize=1024%2C666&ssl=1\" alt=\"Screenshot of the List View tool. It shows a Group block renamed as \" />\n\n\n\n<h3 class=\"wp-block-heading\">Preview images in List View</h3>\n\n\n\n<p>New previews for Gallery and Image blocks in List View let you visualize and locate where images on your content are at a glance.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/list-view-images.png?resize=1024%2C666&ssl=1\" alt=\"Screenshot of the List View tool, showing the new image previews for the Image and Gallery blocks.\" class=\"wp-image-16282\" />\n\n\n\n<h3 class=\"wp-block-heading\">Share patterns across sites</h3>\n\n\n\n<p>Need to use your custom patterns on another site? Import and export them as JSON files from the Site Editor&#8217;s patterns view.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/exporting-patterns-1.png?resize=1024%2C666&ssl=1\" alt=\"Screenshot showing the \" />\n\n\n\n<h3 class=\"wp-block-heading\">Introducing Block Hooks</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/10/15/introducing-block-hooks-for-dynamic-blocks/\">Block Hooks</a> enables developers to automatically insert dynamic blocks at specific content locations, enriching the extensibility of block themes through plugins. While considered a developer tool, this feature is geared to respect your preferences and gives you complete control to add, dismiss, and customize auto-inserted blocks to your needs.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/block-hooks.png?resize=1024%2C666&ssl=1\" alt=\"Cropped screenshot showing a mini shopping cart (in a red dotted circle) inserted into a navigation menu by Block Hooks.\" class=\"wp-image-16284\" />\n\n\n\n<h3 class=\"wp-block-heading\">Performance wins</h3>\n\n\n\n<p>This release includes more than 100 performance-related updates for a faster and more efficient experience. Notable enhancements focus on <a href=\"https://make.wordpress.org/core/2023/10/17/improvements-to-template-loading-in-wordpress-6-4/\">template loading performance</a> for themes (including Twenty Twenty-Four), <a href=\"https://make.wordpress.org/core/2023/10/17/script-loading-changes-in-wordpress-6-4/\">usage of the script loading strategies</a> “defer” and “async” in core, blocks, and themes, and <a href=\"https://make.wordpress.org/core/2023/10/17/new-option-functions-in-6-4/\">optimization of autoloaded options</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility highlights</h3>\n\n\n\n<p>Every release is committed to making WordPress accessible to everyone. WordPress 6.4 brings several List View improvements and aria-label support for the Navigation block, among other highlights. The admin user interface includes enhancements to button placements, &#8220;Add New&#8221; menu items context, and Site Health spoken messages. <a href=\"https://make.wordpress.org/core/2023/11/03/wordpress-6-4-accessibility-improvements/\">Learn more about all the updates</a> aimed at improving accessibility.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other notes of interest</h3>\n\n\n\n<ul>\n<li>PHP 8.1 or 8.2 are recommended for use with WordPress 6.4. Find in-depth details on PHP support <a href=\"https://wordpress.org/news/2023/10/wordpress-6-4s-php-compatibility/\">in this post</a>.</li>\n\n\n\n<li>WordPress 6.4 <a href=\"https://make.wordpress.org/core/2023/10/16/changes-to-attachment-pages/\">disables attachment pages</a> for new installations.</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress 6.4</h2>\n\n\n\n<p>Check out the new <a href=\"https://wordpress.org/download/releases/6-4/\">WordPress 6.4 page</a> to learn more about the numerous enhancements and features of this release.</p>\n\n\n\n<p>Explore <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> for quick how-to videos, <a href=\"https://learn.wordpress.org/social-learning/\">online workshops</a>, and other free resources to level up your WordPress knowledge and skills.</p>\n\n\n\n<p>If you are looking for detailed technical notes on new changes, the <a href=\"https://make.wordpress.org/core/2023/10/23/wordpress-6-4-field-guide/\">WordPress 6.4 Field Guide</a> is for you. Don&#8217;t forget to subscribe to the <a href=\"https://developer.wordpress.org/news/\">Developer Blog</a> to stay on top of the latest development updates, tutorials, and more.</p>\n\n\n\n<p>For more information on installation, fixes, and file changes, visit the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-4/\">6.4 release notes</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">The 6.4 release squad</h2>\n\n\n\n<p>​​The WordPress 6.4 release comes to you from an <strong>underrepresented gender release squad</strong> to welcome and empower diverse voices in the WordPress open source project.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p class=\"has-extra-large-font-size\">Being part of the 6.4 release coordination team has allowed me to closely observe the intricate release process, where every detail, no matter how minor, is meticulously addressed—taking into account various factors like performance and backward compatibility. There’s still much to learn, but I feel fortunate to have had the chance to contribute to WordPress 6.4.</p>\n<cite>Akshaya Rane, 6.4 release coordinator team member</cite></blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>Over several weeks, the 6.4 release squad kept the release on track and moving forward by leading collective work, connecting ideas, and removing roadblocks.</p>\n\n\n\n<ul>\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a></li>\n\n\n\n<li>Release Coordinators: <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"https://profiles.wordpress.org/akshayar/\">Akshaya Rane</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>. Cohort: <a href=\"https://profiles.wordpress.org/thewebprincess/\">Dee Teal</a>, <a href=\"https://profiles.wordpress.org/jaimieolmstead/\">Jaimie Olmstead</a>, <a href=\"https://profiles.wordpress.org/jyolsna/\">Jyolsna J E</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a></li>\n\n\n\n<li>Core Tech Leads: <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>. Cohort: <a href=\"https://profiles.wordpress.org/pypwalters/\">Stephanie Walters</a></li>\n\n\n\n<li>Editor Tech Leads:&nbsp; <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a>, <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan Bamber</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>. Cohort: <a href=\"https://profiles.wordpress.org/68kheart/\">Devan Ferguson</a>, <a href=\"https://profiles.wordpress.org/battelfred/\">Frédérique Battel</a>, <a href=\"https://profiles.wordpress.org/jessicagoddard/\">Jessica Goddard</a>, <a href=\"https://profiles.wordpress.org/1happyplace/\">Katie Ayres</a>, <a href=\"https://profiles.wordpress.org/martatorre/\">Marta Torre</a>, <a href=\"https://profiles.wordpress.org/ngreennc/\">Nyasha Green</a>, <a href=\"https://profiles.wordpress.org/poojabhimani/\">Pooja Bhimani</a></li>\n\n\n\n<li>Core Triage Leads: <a href=\"https://profiles.wordpress.org/nicolefurlan/\">Nicole Furlan</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a></li>\n\n\n\n<li>Editor Triage Leads: <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>. Cohort: <a href=\"https://profiles.wordpress.org/emilyatmobtown/\">Emily Leffler Schulman</a></li>\n\n\n\n<li>Documentation Leads: <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>, <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a>. Cohort: <a href=\"https://profiles.wordpress.org/itsjustdj/\">D.J. Billings</a>, <a href=\"https://wordpress.org/support/users/codente/\">Jamie VanRaalte</a>, <a href=\"https://profiles.wordpress.org/newyorkerlaura/\">Laura Byrne</a>, <a href=\"https://profiles.wordpress.org/baxbridge/\">Tiffany Bridge</a>, <a href=\"https://profiles.wordpress.org/planningwrite/\">Winstina Hughes</a></li>\n\n\n\n<li>Marketing and Communications Leads: <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\">Reyes Martínez</a>, <a href=\"https://profiles.wordpress.org/sereedmedia/\">Sé Reed</a>. Cohort: <a href=\"https://profiles.wordpress.org/meaganhanes/\">Meagan Hanes</a>, <a href=\"https://profiles.wordpress.org/michelleames/\">Michelle Frechette</a></li>\n\n\n\n<li>Test Lead: <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>. Cohort: <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne Bovelett</a>, <a href=\"https://profiles.wordpress.org/coachbirgit/\">Birgit Olzem</a></li>\n\n\n\n<li>Design Leads: <a href=\"https://profiles.wordpress.org/elmastudio/\">Ellen Bauer</a>, <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>. Cohort: <a href=\"https://profiles.wordpress.org/allisonplus/\">Allison Tarr</a>, <a href=\"https://profiles.wordpress.org/acirujano/\">Ana Cirujano</a>, <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a>, <a href=\"https://profiles.wordpress.org/nudge/\">Sonia Gaballa</a>, <a href=\"https://profiles.wordpress.org/ohia/\">Ohia</a></li>\n\n\n\n<li>Performance Lead: <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a>. Cohort: <a href=\"https://profiles.wordpress.org/linsoftware/\">Linnea Huxford</a></li>\n\n\n\n<li>Training Leads: <a href=\"https://profiles.wordpress.org/courtneypk/\">Courtney P.K.</a>, <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Roberston</a></li>\n\n\n\n<li>Default Theme Leads: <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you, contributors</h2>\n\n\n\n<p>WordPress believes in democratizing publishing and the freedoms that come with open source. Supporting this idea is a global and diverse community of people working together to strengthen the software.</p>\n\n\n\n<p>WordPress 6.4 reflects the countless efforts and passion of <strong>more than 600 contributors in at least 56 countries</strong>. This release also welcomed over 170 first-time contributors!</p>\n\n\n\n<p>Their collaboration delivered more than 1150 enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress open source community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/6adminit/\">6adminit</a> · <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/aayusha/\">aayusha</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/omarabid/\">Abid Omar</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/adhun/\">Adhun Anand</a> · <a href=\"https://profiles.wordpress.org/ajmcfadyen/\">admcfajn</a> · <a href=\"https://profiles.wordpress.org/adrianduffell/\">adrianduffell</a> · <a href=\"https://profiles.wordpress.org/aegkr/\">aegkr</a> · <a href=\"https://profiles.wordpress.org/ahardyjpl/\">ahardyjpl</a> · <a href=\"https://profiles.wordpress.org/ahmedgeek/\">Ahmed Hussein</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a> · <a href=\"https://profiles.wordpress.org/ajakaroth/\">ajakaroth</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/akihiroharai/\">Akihiro Harai</a> · <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a> · <a href=\"https://profiles.wordpress.org/akshayar/\">Akshaya Rane</a> · <a href=\"https://profiles.wordpress.org/alaminfirdows/\">Al-Amin Firdows</a> · <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/alexkingorg/\">Alex King</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alexandrebuffet/\">Alexandre Buffet</a> · <a href=\"https://profiles.wordpress.org/alishabajracharya27/\">Alisha Bajracharya</a> · <a href=\"https://profiles.wordpress.org/allisonplus/\">allisonplus</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/amedv/\">amedv</a> · <a href=\"https://profiles.wordpress.org/acirujano/\">Ana Cirujano</a> · <a href=\"https://profiles.wordpress.org/anlino/\">Anders Nor&#233;n</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">Andr&#233;</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/andrewhayward/\">Andrew Hayward</a> · <a href=\"https://profiles.wordpress.org/l1nuxjedi/\">Andrew Hutchings</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/eatingrules/\">Andrew Wilder</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> · <a href=\"https://profiles.wordpress.org/wpgurudev/\">Ankit Gade</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/annashopina/\">Anna</a> · <a href=\"https://profiles.wordpress.org/askdesign/\">Anne Katzeff</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a> · <a href=\"https://profiles.wordpress.org/anphira/\">anphira</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/aplauche/\">Anton Plauche</a> · <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a> · <a href=\"https://profiles.wordpress.org/arena/\">arena</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/armondal/\">Arnab Mondal</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/asafm7/\">asafm7</a> · <a href=\"https://profiles.wordpress.org/aslamdoctor/\">Aslam Doctor</a> · <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> · <a href=\"https://profiles.wordpress.org/austinginder/\">Austin Ginder</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azharckra/\">azharckra</a> · <a href=\"https://profiles.wordpress.org/balub/\">Balu B</a> · <a href=\"https://profiles.wordpress.org/bangank36/\">bangank36</a> · <a href=\"https://profiles.wordpress.org/barbmiller/\">barbmiller</a> · <a href=\"https://profiles.wordpress.org/bartkalisz/\">Bart</a> · <a href=\"https://profiles.wordpress.org/basiliskan/\">Basilis Kanonidis</a> · <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a> · <a href=\"https://profiles.wordpress.org/behoney/\">behoney</a> · <a href=\"https://profiles.wordpress.org/benharri/\">ben</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/bengreeley/\">Ben Greeley</a> · <a href=\"https://profiles.wordpress.org/ubernaut/\">Ben Hansen</a> · <a href=\"https://profiles.wordpress.org/benimub/\">benimub</a> · <a href=\"https://profiles.wordpress.org/bfintal/\">Benjamin Intal</a> · <a href=\"https://profiles.wordpress.org/benjamin_zekavica/\">Benjamin Zekavica</a> · <a href=\"https://profiles.wordpress.org/benjaminknox/\">benjaminknox</a> · <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a> · <a href=\"https://profiles.wordpress.org/bernhard reiter/\">Bernhard Reiter</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/bhrugesh12/\">Bhrugesh Bavishi</a> · <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a> · <a href=\"https://profiles.wordpress.org/binsaifullah/\">Binsaifullah</a> · <a href=\"https://profiles.wordpress.org/bplv/\">Biplav</a> · <a href=\"https://profiles.wordpress.org/coachbirgit/\">Birgit Olzem</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/bradley2083/\">Block Themes Pro</a> · <a href=\"https://profiles.wordpress.org/bmalsht/\">bmalsht</a> · <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a> · <a href=\"https://profiles.wordpress.org/bookwyrm/\">bookwyrm</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> · <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a> · <a href=\"https://profiles.wordpress.org/crazyjaco/\">Bradley Jacobs</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bvreeman22/\">Brandon Vreeman</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">Brian Haas</a> · <a href=\"https://profiles.wordpress.org/brookemk/\">Brooke</a> · <a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a> · <a href=\"https://profiles.wordpress.org/trynet/\">Bud Kraus</a> · <a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a> · <a href=\"https://profiles.wordpress.org/snicco/\">Calvin Alkan</a> · <a href=\"https://profiles.wordpress.org/karl94/\">Carlo Cannas</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos G. P.</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a> · <a href=\"https://profiles.wordpress.org/ceer/\">ceer</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/chasedsiedu/\">chased@si.edu</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/chipbennett/\">Chip Bennett</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a> · <a href=\"https://profiles.wordpress.org/crunnells/\">Chris Runnells</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/chrisdesrochers/\">chrisdesrochers</a> · <a href=\"https://profiles.wordpress.org/codersantosh/\">codersantosh</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/coreyw/\">Corey Worrell</a> · <a href=\"https://profiles.wordpress.org/courtneypk/\">Courtney Patubo Kranzke</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/mitogh/\">Crisoforo Gaspar</a> · <a href=\"https://profiles.wordpress.org/crstauf/\">crstauf</a> · <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a> · <a href=\"https://profiles.wordpress.org/cu121/\">Cupid Chakma</a> · <a href=\"https://profiles.wordpress.org/didierjm/\">cybeardjm</a> · <a href=\"https://profiles.wordpress.org/cyberchicken/\">Cyberchicken</a> · <a href=\"https://profiles.wordpress.org/extendwings/\">Daisuke Takahashi</a> · <a href=\"https://profiles.wordpress.org/dajeema/\">Dajeema Rai</a> · <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/damonsharp/\">Damon Sharp</a> · <a href=\"https://profiles.wordpress.org/dantovbein/\">Dan Tovbein</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/danieldudzic/\">danieldudzic</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/queerdevperson/\">Danielle Zarcaro</a> · <a href=\"https://profiles.wordpress.org/danieltj/\">danieltj</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/dkotter/\">Darin Kotter</a> · <a href=\"https://profiles.wordpress.org/darkfate/\">darkfate</a> · <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/davelo/\">Dave Loodts</a> · <a href=\"https://profiles.wordpress.org/dave03/\">dave03</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/desmith/\">David E. Smith</a> · <a href=\"https://profiles.wordpress.org/dfavor/\">David Favor</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/dryanpress/\">David Ryan</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/dawidurbanski/\">Dawid Urbanski</a> · <a href=\"https://profiles.wordpress.org/daxelrod/\">daxelrod</a> · <a href=\"https://profiles.wordpress.org/arnedb/\">De Belser Arne</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/thewebprincess/\">Dee Teal</a> · <a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/derekblank/\">Derek Blank</a> · <a href=\"https://profiles.wordpress.org/emrikol/\">Derrick Tennant</a> · <a href=\"https://profiles.wordpress.org/68kheart/\">Devan Ferguson</a> · <a href=\"https://profiles.wordpress.org/dhamibirendra/\">dhamibirendra</a> · <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruvishah2203/\">Dhruvi Shah</a> · <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dimitrism/\">Dimitris Mitsis</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/itsjustdj/\">DJ</a> · <a href=\"https://profiles.wordpress.org/djcowan/\">dj.cowan</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/doughamlin/\">doughamlin</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/elrae/\">Earle Davies</a> · <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a> · <a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a> · <a href=\"https://profiles.wordpress.org/cais/\">Edward Caissie</a> · <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/elmastudio/\">Ellen Bauer</a> · <a href=\"https://profiles.wordpress.org/emailjoey/\">emailjoey</a> · <a href=\"https://profiles.wordpress.org/codex-m/\">Emerson Maningo</a> · <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a> · <a href=\"https://profiles.wordpress.org/emilyatmobtown/\">Emily Leffler Schulman</a> · <a href=\"https://profiles.wordpress.org/emirpprime/\">emirpprime</a> · <a href=\"https://profiles.wordpress.org/enodekciw/\">enodekciw</a> · <a href=\"https://profiles.wordpress.org/lopo/\">Enrico Battocchi</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/esratpopy/\">Esrat Sultana Popy</a> · <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a> · <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> · <a href=\"https://profiles.wordpress.org/fabiorubioglio/\">Fabio Rubioglio</a> · <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> · <a href=\"https://profiles.wordpress.org/floydwilde/\">floydwilde</a> · <a href=\"https://profiles.wordpress.org/foliovision/\">FolioVision</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/battelfred/\">Fredde Battel</a> · <a href=\"https://profiles.wordpress.org/fzhantw/\">fzhantw</a> · <a href=\"https://profiles.wordpress.org/mintindeed/\">Gabriel Koen</a> · <a href=\"https://profiles.wordpress.org/pauthake015/\">Ganesh Dahal</a> · <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a> · <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/mokagio/\">Gio Lodi</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/gnanasekaran/\">Gnanasekaran Loganathan</a> · <a href=\"https://profiles.wordpress.org/ingeniumed/\">Gopal Krishnan</a> · <a href=\"https://profiles.wordpress.org/90lines/\">GOZER</a> · <a href=\"https://profiles.wordpress.org/gpotter/\">gpotter</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gregross/\">Greg Ross</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a> · <a href=\"https://profiles.wordpress.org/gregfuller/\">gregfuller</a> · <a href=\"https://profiles.wordpress.org/guss77/\">Guss77</a> · <a href=\"https://profiles.wordpress.org/bordoni/\">Gustavo Bordoni</a> · <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> · <a href=\"https://profiles.wordpress.org/priethor/\">H&#233;ctor Prieto</a> · <a href=\"https://profiles.wordpress.org/poran766/\">H.M. Mushfiqur Rahman</a> · <a href=\"https://profiles.wordpress.org/hanneslsm/\">hanneslsm</a> · <a href=\"https://profiles.wordpress.org/hztyfoon/\">Hanzala Taifun</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/tejwanihemant/\">Hemant Tejwani</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> · <a href=\"https://profiles.wordpress.org/hlunter/\">hlunter</a> · <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/incursadesigns/\">Incursa Designs</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/itecrs/\">itecrs</a> · <a href=\"https://profiles.wordpress.org/ivanzhuck/\">Ivan Zhuck</a> · <a href=\"https://profiles.wordpress.org/jaimieolmstead/\">jaimieolmstead</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/jakemgold/\">Jake Goldman</a> · <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a> · <a href=\"https://profiles.wordpress.org/bonkerz/\">James</a> · <a href=\"https://profiles.wordpress.org/thelovelist/\">James Janco</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/james roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/james0r/\">james0r</a> · <a href=\"https://profiles.wordpress.org/jamiemchale/\">Jamie McHale</a> · <a href=\"https://profiles.wordpress.org/perrelet/\">Jamie Perrelet</a> · <a href=\"https://profiles.wordpress.org/codente/\">Jamie VanRaalte</a> · <a href=\"https://profiles.wordpress.org/jane/\">jane</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/yari2u/\">Jari Vuorenmaa</a> · <a href=\"https://profiles.wordpress.org/ipajen/\">Jarko Piironen</a> · <a href=\"https://profiles.wordpress.org/pbking/\">Jason Crist</a> · <a href=\"https://profiles.wordpress.org/jastos/\">jastos</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a> · <a href=\"https://profiles.wordpress.org/jeffeverhart383/\">Jeff Everhart</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffikus/\">jeffikus</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jeflopodev/\">jeflopo</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a> · <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a> · <a href=\"https://profiles.wordpress.org/jesin/\">Jesin A</a> · <a href=\"https://profiles.wordpress.org/jessplease/\">Jessica Duarte</a> · <a href=\"https://profiles.wordpress.org/jessicagoddard/\">Jessica Goddard</a> · <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a> · <a href=\"https://profiles.wordpress.org/jick/\">Jick</a> · <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a> · <a href=\"https://profiles.wordpress.org/jivygraphics/\">jivygraphics</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/bitmachina/\">John Hooks</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/johnregan3/\">John Regan</a> · <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a> · <a href=\"https://profiles.wordpress.org/duck_/\">Jon Cave</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a> · <a href=\"https://profiles.wordpress.org/varjodesigns/\">Joona</a> · <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a> · <a href=\"https://profiles.wordpress.org/jordanpak/\">JordanPak</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> · <a href=\"https://profiles.wordpress.org/joshcanhelp/\">joshcanhelp</a> · <a href=\"https://profiles.wordpress.org/joshuatf/\">joshuatf</a> · <a href=\"https://profiles.wordpress.org/jrtashjian/\">JR Tashjian</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a> · <a href=\"https://profiles.wordpress.org/jyolsna/\">Jyolsna J E</a> · <a href=\"https://profiles.wordpress.org/ashikur698/\">K M Ashikur Rahman</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/kalmang/\">Kalmang</a> · <a href=\"https://profiles.wordpress.org/kalpeshh/\">Kalpesh</a> · <a href=\"https://profiles.wordpress.org/bosskhj/\">Kamrul Hasan</a> · <a href=\"https://profiles.wordpress.org/karlijnbk/\">Karlijn Bok</a> · <a href=\"https://profiles.wordpress.org/karmacharya50/\">karmacharya50</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/thekt12/\">Karthik Thayyil</a> · <a href=\"https://profiles.wordpress.org/1happyplace/\">Katie Ayres</a> · <a href=\"https://profiles.wordpress.org/kawsaralameven/\">kawsaralameven</a> · <a href=\"https://profiles.wordpress.org/kkoppenhaver/\">Keanan Koppenhaver</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kevinfodness/\">Kevin Fodness</a> · <a href=\"https://profiles.wordpress.org/p51labs/\">Kevin Miller</a> · <a href=\"https://profiles.wordpress.org/khleomix/\">khleomix</a> · <a href=\"https://profiles.wordpress.org/khokansardar/\">Khokan Sardar</a> · <a href=\"https://profiles.wordpress.org/kimannwall/\">Kim Coleman</a> · <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a> · <a href=\"https://profiles.wordpress.org/kkmuffme/\">kkmuffme</a> · <a href=\"https://profiles.wordpress.org/olein/\">Koji Kuno</a> · <a href=\"https://profiles.wordpress.org/kovshenin/\">Konstantin Kovshenin</a> · <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a> · <a href=\"https://profiles.wordpress.org/kopila47/\">Kopila Shrestha</a> · <a href=\"https://profiles.wordpress.org/krokodok/\">krokodok</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/ktaron/\">ktaron</a> · <a href=\"https://profiles.wordpress.org/labunchemjong/\">Labun Chemjong</a> · <a href=\"https://profiles.wordpress.org/lancewillett/\">Lance Willett</a> · <a href=\"https://profiles.wordpress.org/lhe2012/\">LarryWEB</a> · <a href=\"https://profiles.wordpress.org/lastsplash/\">lastsplash (a11n)</a> · <a href=\"https://profiles.wordpress.org/laumindproductscomau/\">lau@mindproducts.com.au</a> · <a href=\"https://profiles.wordpress.org/launchinteractive/\">launchinteractive</a> · <a href=\"https://profiles.wordpress.org/lada7042/\">Laura Adamonis</a> · <a href=\"https://profiles.wordpress.org/newyorkerlaura/\">Laura Byrne</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/oncecoupled/\">Lauren</a> · <a href=\"https://profiles.wordpress.org/luckybhumkar/\">Laxmikant Bhumkar</a> · <a href=\"https://profiles.wordpress.org/leewillis77/\">Lee Willis</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/lgladdy/\">Liam Gladdy</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/linsoftware/\">Linnea Huxford</a> · <a href=\"https://profiles.wordpress.org/lloydbudd/\">Lloyd Budd</a> · <a href=\"https://profiles.wordpress.org/thelovekesh/\">Lovekesh Kumar</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a> · <a href=\"https://profiles.wordpress.org/zaguiini/\">Luis Felipe Zaguini</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">Luis Herranz</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/lunaluna/\">lunaluna</a> · <a href=\"https://profiles.wordpress.org/lyndauwp/\">lyndauwp</a> · <a href=\"https://profiles.wordpress.org/pagelab/\">M&#225;rcio Duarte</a> · <a href=\"https://profiles.wordpress.org/maciejmackowiak/\">maciejmackowiak</a> · <a href=\"https://profiles.wordpress.org/madejackson/\">madejackson</a> · <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mhimon/\">Mahbub Hasan Imon</a> · <a href=\"https://profiles.wordpress.org/maahrokh/\">Mahrokh</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/travel_girl/\">Maja Benke</a> · <a href=\"https://profiles.wordpress.org/maltfield/\">maltfield</a> · <a href=\"https://profiles.wordpress.org/maneshtimilsina/\">Manesh Timilsina</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a> · <a href=\"https://profiles.wordpress.org/marcelle42/\">marcelle42</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/pereirinha/\">Marco Pereirinha</a> · <a href=\"https://profiles.wordpress.org/marcoevich/\">Marcoevich</a> · <a href=\"https://profiles.wordpress.org/margolisj/\">margolisj</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/martatorre/\">Marta Torre</a> · <a href=\"https://profiles.wordpress.org/mhkuu/\">Martijn van der Klis</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> · <a href=\"https://profiles.wordpress.org/masoudnkh/\">Masoud NKH</a> · <a href=\"https://profiles.wordpress.org/mathsgrinds/\">mathsgrinds</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/mattkeys/\">Matt Keys</a> · <a href=\"https://profiles.wordpress.org/mwtsn/\">Matt Watson</a> · <a href=\"https://profiles.wordpress.org/mklute101/\">Matthaus Klute</a> · <a href=\"https://profiles.wordpress.org/mattheweppelsheimer/\">Matthew Eppelsheimer</a> · <a href=\"https://profiles.wordpress.org/matthewfarlymn/\">Matthew Farlymn</a> · <a href=\"https://profiles.wordpress.org/mattheu/\">Matthew Haines-Young</a> · <a href=\"https://profiles.wordpress.org/maurodf/\">maurodf</a> · <a href=\"https://profiles.wordpress.org/maxinacube/\">Maxwell Morgan</a> · <a href=\"https://profiles.wordpress.org/maysi/\">maysi</a> · <a href=\"https://profiles.wordpress.org/hrshahin/\">Md HR Shahin</a> · <a href=\"https://profiles.wordpress.org/meaganhanes/\">meagan hanes</a> · <a href=\"https://profiles.wordpress.org/iammehedi1/\">Mehedi Hassan</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/mer00x/\">mer00x</a> · <a href=\"https://profiles.wordpress.org/merel1988/\">merel1988</a> · <a href=\"https://profiles.wordpress.org/michael-arestad/\">Michael Arestad</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/mshowes/\">Michael Showes</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/michalooki/\">Michalooki</a> · <a href=\"https://profiles.wordpress.org/michelleblanchette/\">Michelle Blanchette</a> · <a href=\"https://profiles.wordpress.org/michelleames/\">Michelle Frechette</a> · <a href=\"https://profiles.wordpress.org/michi91/\">Michi91</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a> · <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley (a11n)</a> · <a href=\"https://profiles.wordpress.org/mmcalister/\">Mike McAlister</a> · <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/mikestraw/\">Mike Straw</a> · <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> · <a href=\"https://profiles.wordpress.org/gonzomir/\">Milen Petrinski - Gonzo</a> · <a href=\"https://profiles.wordpress.org/mimitips/\">mimi</a> · <a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a> · <a href=\"https://profiles.wordpress.org/mhshujon/\">Monir</a> · <a href=\"https://profiles.wordpress.org/mrinal013/\">Mrinal Haque</a> · <a href=\"https://profiles.wordpress.org/mrwweb/\">mrwweb</a> · <a href=\"https://profiles.wordpress.org/wparslan/\">Muhammad Arslan</a> · <a href=\"https://profiles.wordpress.org/devmuhib/\">Muhibul Haque</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a> · <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a> · <a href=\"https://profiles.wordpress.org/webdev8800/\">Myles Taylor</a> · <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a> · <a href=\"https://profiles.wordpress.org/nandhuraj/\">nandhuraj</a> · <a href=\"https://profiles.wordpress.org/nazgul/\">Nazgul</a> · <a href=\"https://profiles.wordpress.org/nazsabuz/\">Nazmul Sabuz</a> · <a href=\"https://profiles.wordpress.org/neilorangepeel/\">Neil Hainsworth</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/rahe/\">Nicolas Juen</a> · <a href=\"https://profiles.wordpress.org/nicolefurlan/\">Nicole Furlan</a> · <a href=\"https://profiles.wordpress.org/nicomollet/\">nicomollet</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a> · <a href=\"https://profiles.wordpress.org/nihar007/\">Nihar Ranjan Das</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/rabmalin/\">Nilambar Sharma</a> · <a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez</a> · <a href=\"https://profiles.wordpress.org/niravsherasiya7707/\">niravsherasiya7707</a> · <a href=\"https://profiles.wordpress.org/dasnitesh780/\">Nitesh Das</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/ngreennc/\">Nyasha</a> · <a href=\"https://profiles.wordpress.org/ockham/\">ockham</a> · <a href=\"https://profiles.wordpress.org/ohia/\">Ohia</a> · <a href=\"https://profiles.wordpress.org/okat/\">okat</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a> · <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pannelars/\">pannelars</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> · <a href=\"https://profiles.wordpress.org/pentatonicfunk/\">pentatonicfunk</a> · <a href=\"https://profiles.wordpress.org/gungeekatx/\">Pete Nelson</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a> · <a href=\"https://profiles.wordpress.org/petrosparaskevopoulos/\">petrosparaskevopoulos</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walb&#248; Johnsg&#229;rd</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/piyushdeshmukh/\">piyushdeshmukh</a> · <a href=\"https://profiles.wordpress.org/plugindevs/\">Plugin Devs</a> · <a href=\"https://profiles.wordpress.org/poojabhimani/\">Pooja Bhimani</a> · <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pranavjoshi/\">pranavjoshi</a> · <a href=\"https://profiles.wordpress.org/prashantbhivsane/\">Prashant</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/rlmc/\">r-c</a> · <a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/rcorrales/\">Ramon Corrales</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/rebekowitz/\">Rebekah Markowitz</a> · <a href=\"https://profiles.wordpress.org/tabrisrp/\">Remy Perona</a> · <a href=\"https://profiles.wordpress.org/renyot/\">ren</a> · <a href=\"https://profiles.wordpress.org/renathoc/\">Renatho (a11n)</a> · <a href=\"https://profiles.wordpress.org/rmartinezduque/\">Reyes Martínez</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> · <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> · <a href=\"https://profiles.wordpress.org/robpetrin/\">robpetrin</a> · <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/ryanduff/\">Ryan Duff</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/ohryan/\">Ryan Neudorf</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a> · <a href=\"https://profiles.wordpress.org/mi5t4n/\">Sagar Tamang</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/salcode/\">Sal Ferrarello</a> · <a href=\"https://profiles.wordpress.org/samba45/\">samba45</a> · <a href=\"https://profiles.wordpress.org/viralsampat/\">Sampat Viral</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarahwilliams889/\">sarahwilliams889</a> · <a href=\"https://profiles.wordpress.org/sarathar/\">Sarath AR</a> · <a href=\"https://profiles.wordpress.org/satishprajapati/\">Satish Prajapati</a> · <a href=\"https://profiles.wordpress.org/saulirajala/\">saulirajala</a> · <a href=\"https://profiles.wordpress.org/saxonfletcher/\">saxonfletcher</a> · <a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/hiyascout/\">Scout James</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/seedsca/\">Sergio Scabuzzo</a> · <a href=\"https://profiles.wordpress.org/smrubenstein/\">Seth Rubenstein</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/shawfactor/\">shawfactor</a> · <a href=\"https://profiles.wordpress.org/shooper/\">Shawn Hooper</a> · <a href=\"https://profiles.wordpress.org/shiloey/\">shilo-ey</a> · <a href=\"https://profiles.wordpress.org/shivashankerbhatta/\">Shiva Shanker Bhatta</a> · <a href=\"https://profiles.wordpress.org/shresthaaman/\">shresthaaman</a> · <a href=\"https://profiles.wordpress.org/shubhamsedani/\">Shubham Sedani</a> · <a href=\"https://profiles.wordpress.org/10upsimon/\">Simon Dowdles</a> · <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan Bamber</a> · <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a> · <a href=\"https://profiles.wordpress.org/sofiashendi/\">sofiashendi</a> · <a href=\"https://profiles.wordpress.org/nudge/\">Sonia Gaballa</a> · <a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a> · <a href=\"https://profiles.wordpress.org/virtality-marketing-solutions/\">SourceView</a> · <a href=\"https://profiles.wordpress.org/spenserhale/\">Spenser Hale</a> · <a href=\"https://profiles.wordpress.org/pypwalters/\">Stephanie Walters</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a> · <a href=\"https://profiles.wordpress.org/stephenerdelyi/\">Steve Erdelyi</a> · <a href=\"https://profiles.wordpress.org/stevejonesdev/\">Steve Jones</a> · <a href=\"https://profiles.wordpress.org/subodhsun/\">Subodh Sunuwar</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sujichandran14/\">Suji K Chandran</a> · <a href=\"https://profiles.wordpress.org/sumisubedi/\">Sumi Subedi</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sunitarai/\">Sunita Rai</a> · <a href=\"https://profiles.wordpress.org/suprsam/\">suprsam</a> · <a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/sereedmedia/\">Sé Reed</a> · <a href=\"https://profiles.wordpress.org/tahmidulkarim/\">Tahmid ul Karim</a> · <a href=\"https://profiles.wordpress.org/tahmina1du/\">Tahmina Jahan</a> · <a href=\"https://profiles.wordpress.org/takayukister/\">Takayuki Miyoshi</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a> · <a href=\"https://profiles.wordpress.org/tykoted/\">Teddy Patriarca</a> · <a href=\"https://profiles.wordpress.org/tejadev/\">tejadev</a> · <a href=\"https://profiles.wordpress.org/thinkluke/\">thinkluke</a> · <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a> · <a href=\"https://profiles.wordpress.org/tibbsa/\">tibbsa</a> · <a href=\"https://profiles.wordpress.org/baxbridge/\">Tiffany Bridge</a> · <a href=\"https://profiles.wordpress.org/tnolte/\">Tim Nolte</a> · <a href=\"https://profiles.wordpress.org/timdix/\">timdix</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/tomybyte/\">Tom</a> · <a href=\"https://profiles.wordpress.org/tomjcafferkey/\">Tom Cafferkey</a> · <a href=\"https://profiles.wordpress.org/thomashorta/\">Tom H</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/tomluckies/\">tomluckies</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/toscho/\">toscho</a> · <a href=\"https://profiles.wordpress.org/rilwis/\">Tran Ngoc Tuan Anh</a> · <a href=\"https://profiles.wordpress.org/trinisha/\">Trinisha</a> · <a href=\"https://profiles.wordpress.org/trishasalas/\">Trisha Salas</a> · <a href=\"https://profiles.wordpress.org/tristanleboss/\">tristanleboss</a> · <a href=\"https://profiles.wordpress.org/tv-productions/\">TV productions</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">Upadala Vipul</a> · <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a> · <a href=\"https://profiles.wordpress.org/valentindu62/\">valentindu62</a> · <a href=\"https://profiles.wordpress.org/valmedia2023/\">Valerie Blackburn</a> · <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vipuljnext/\">Vipul Ghori</a> · <a href=\"https://profiles.wordpress.org/vivekawsm/\">vivekawsm</a> · <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a> · <a href=\"https://profiles.wordpress.org/vrajadas/\">Vraja Das</a> · <a href=\"https://profiles.wordpress.org/webashrafians/\">webashrafians</a> · <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whsajid/\">WHSajid</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/wvega/\">Willington Vega</a> · <a href=\"https://profiles.wordpress.org/planningwrite/\">Winstina</a> · <a href=\"https://profiles.wordpress.org/winterstreet/\">winterstreet</a> · <a href=\"https://profiles.wordpress.org/wraithkenny/\">WraithKenny</a> · <a href=\"https://profiles.wordpress.org/wyrfel/\">wyrfel</a> · <a href=\"https://profiles.wordpress.org/yosephtamang/\">Yoseph Tamang</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a> · <a href=\"https://profiles.wordpress.org/letraceursnork/\">Илья</a></p>\n\n\n\n<p>Over <a href=\"https://translate.wordpress.org/stats/\">60 locales have translated 90 percent</a> or more of WordPress 6.4 into their language. Community translators are working hard to ensure more translations are on their way. Thank you to everyone who helps make WordPress available in 200 languages.</p>\n\n\n\n<p>Last but not least, thanks to the volunteers who contribute to the <a href=\"https://wordpress.org/support/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved</h3>\n\n\n\n<p>Participation in WordPress is not limited to coding. If contributing appeals to you, learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a>, and use <a href=\"https://make.wordpress.org/contribute/\">this interactive tool</a> to help you decide which is right for you.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Looking ahead</h2>\n\n\n\n<p>Over the past <a href=\"https://wp20.wordpress.net/\">two decades</a>, WordPress has transformed the digital publishing landscape and empowered anyone to create and share, from <a href=\"https://wordpress.org/showcase/\">handcrafted personal stories to world-changing movements</a>.</p>\n\n\n\n<p>The present and future of WordPress hold exciting opportunities for everyone, builders and enterprises alike. The foundational work for <a href=\"https://make.wordpress.org/core/tag/phase-3/\">Phase 3</a> of the <a href=\"https://wordpress.org/about/roadmap/\">roadmap</a> continues, with efforts focused on fostering real-time collaboration and streamlining publishing flows to improve how creators and teams work together in WordPress.</p>\n\n\n\n<p>Stay on top of the latest news and contributing opportunities by subscribing to <a href=\"https://wordpress.org/news/\">WordPress News</a> and the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing podcast</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">A release haiku</h2>\n\n\n\n<p>The smooth feel of jazz<br />The cutting-edge of the web<br />Install 6.4</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, 07 Nov 2023 19:59:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:97:\"Do The Woo Community: How to Tell Friends and Family What You Do in WordPress with Topher DeRosia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=77925\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://dothewoo.io/how-to-tell-friends-and-family-what-you-do-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:451:\"<p>In this show we talk with Topher about explaining what WordPress pros do for a living, the demographics of WordPress and teaching with video.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/how-to-tell-friends-and-family-what-you-do-in-wordpress/\">How to Tell Friends and Family What You Do in WordPress with Topher DeRosia</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</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, 07 Nov 2023 10:48:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:70:\"WPTavern: Newspack Plugin Update Checker Lets Users Update from GitHub\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=150972\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wptavern.com/newspack-plugin-update-checker-lets-users-update-from-github\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4125:\"<p>Adam Schweigert, an independent media and technology consultant, has released a plugin called <a href=\"https://github.com/aschweigert/newspack-plugin-update-checker?fbclid=IwAR1Z6GWoPLEQvBBuioWJP7wOxO6lRWgam2f1_2JXyTGeB248b6r1Qv6VOl0#newspack-plugin-update-checker\">Newspack Plugin Update Checker</a> that enables self-hosted Newspack users to keep their plugins up-to-date. The Newspack project was launched in 2019 by WordPress.com, with support from the Google News Initiative, the Knight Foundation, and The Lenfest Institute. It provides local news organizations a powerful, yet cost effective publishing platform that promotes financial sustainability.</p>\n\n\n\n<p>More than 200 news sites are on the hosted version of Newspack, which uses WordPress.com&#8217;s cloud platform. Organizations can also host their own Newspack installations independently, which includes a theme, collection of plugins, and blocks. KinshiPress, which publishes news and updates for WordPress publishers, has <a href=\"https://kinshipress.com/newspack-self-hosted/\">a guide to self-hosting Newspack</a> that walks through the process of getting set up. It also mentions the drawback of the plugins being hosted on GitHub.</p>\n\n\n\n<p> Schweigert&#8217;s <a href=\"https://github.com/aschweigert/newspack-plugin-update-checker?fbclid=IwAR1Z6GWoPLEQvBBuioWJP7wOxO6lRWgam2f1_2JXyTGeB248b6r1Qv6VOl0#newspack-plugin-update-checker\">Newspack Plugin Update Checker</a> solves this problem by using a <a href=\"https://github.com/YahnisElsts/plugin-update-checker\">plugin updater library</a> that checks for updates and lets users know when a new version is available. The notice appears in the dashboard in a similar way to how WordPress.org displays updates.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1203\" height=\"107\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/11/image-1.png\" alt=\"\" class=\"wp-image-150980\" />\n\n\n\n<p>The plugin checks for updates for nine of the most commonly-used Newspack plugins, including the following:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/automattic/newspack-plugin\">Newspack Plugin</a></li>\n\n\n\n<li><a href=\"https://github.com/automattic/newspack-ads\">Newspack Ads</a></li>\n\n\n\n<li><a href=\"https://github.com/automattic/newspack-blocks\">Newspack Blocks</a></li>\n\n\n\n<li><a href=\"https://github.com/automattic/newspack-popups\">Newspack Popups (aka Campaigns)</a></li>\n\n\n\n<li><a href=\"https://github.com/automattic/newspack-listings\">Newspack Listings</a></li>\n\n\n\n<li><a href=\"https://github.com/automattic/newspack-sponsors\">Newspack Sponsors</a></li>\n\n\n\n<li><a href=\"https://github.com/automattic/newspack-media-partners\">Newspack Media Partners</a></li>\n\n\n\n<li><a href=\"https://github.com/automattic/newspack-rss-enhancements\">Newspack RSS Enhancements</a></li>\n\n\n\n<li><a href=\"https://github.com/automattic/newspack-supporters\">Newspack Supporters</a></li>\n</ul>\n\n\n\n<p> Schweigert noted that the plugin requires the Newspack plugins be in folders named using their respective slugs. Although the plugin allows users to enable auto-updates, he recommends keeping an eye on the <a href=\"https://newspack.com/release-notes/\">Newspack release notes</a> to be prepared for any potentially breaking changes.</p>\n\n\n\n<p>KinshiPress author Steve Burge recently published an article on the <a href=\"https://kinshipress.com/newspack-ecosystem/\">Newspack ecosystem</a>, contending that Newspack has the potential to do for publishers what WooCommerce has done for e-commerce.</p>\n\n\n\n<p>&#8220;There’s a big audience out for a publishing platform that is open source, highly extendable, and has the backing of a successful company and a strong community,&#8221; Burge said.&#8221; Where else can newspapers, magazines and radio stations go? They mostly go to WordPress already, but the platform we provide them could be much more targeted and helpful.&#8221;</p>\n\n\n\n<p>Although Schweigert&#8217;s plugin is a good stop gap measure, Burge said he thinks putting the Newspack plugins on WordPress.org and improving the documentation would go a long way towards expanding its impact.</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, 04 Nov 2023 03:30: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: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:70:\"WPTavern: WordPress Theme Handbook Updates Chapter on Block Templating\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=150958\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wptavern.com/wordpress-theme-handbook-updates-chapter-on-block-templating\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2584:\"<p>WordPress contributors have updated the <a href=\"https://developer.wordpress.org/themes/\">Theme Handbook</a> to include <a href=\"https://developer.wordpress.org/themes/templates/\">a new chapter on block templating</a>. The chapter covers how the WordPress block template system works, how to build custom templates and parts and include them in a theme. This is critical documentation designed to provide a learning path for those who are building their first block themes.</p>\n\n\n\n<p>Automattic-sponsored developer advocate Justin Tadlock announced the update on Twitter, noting that it also includes a couple of new docs in the Global Settings and Styles chapter for <a href=\"https://developer.wordpress.org/themes/global-settings-and-styles/custom-templates/\">registering template-related features in theme.json</a>, and the same for <a href=\"https://developer.wordpress.org/themes/global-settings-and-styles/template-parts/\">template parts</a>.</p>\n\n\n\n<p>The new chapter on block templating is just one part of a larger effort to overhaul the Theme Handbook for modern day WordPress.  Contributors are transitioning the focus from classic theming to block theming, with just one chapter in the handbook devoted to classic themes.</p>\n\n\n\n<p>&#8220;It was created during a time when classic themes were the only method of front-end design for WordPress,&#8221; Tadlock said in the <a href=\"https://make.wordpress.org/themes/2023/04/04/theme-handbook-overhaul-proposal/\">proposal to overhaul the handbook</a>. &#8220;Much of its content now exists in a transitory state between classic and modern block theming. This has created a scenario where the handbook sometimes reads more like patchwork than if it were built with a single vision. That is often a natural result of adding new documentation over years.&#8221;</p>\n\n\n\n<p>The proposal does not recommend scrapping all of the existing content but rather carrying some of it forward to be updated and reorganized. A good portion of the existing content is still relevant to be migrated to the Classic Themes chapter.</p>\n\n\n\n<p>Overhauling the Theme Handbook is a colossal effort that&#8217;s still ongoing. It&#8217;s being managed under a <a href=\"https://github.com/WordPress/Documentation-Issue-Tracker/issues/816\">tracking ticket</a> on GitHub. The new chapter better supports developers who are just figuring out how the WordPress block template system works, but there are many more chapters that need attention. Anyone who would like to get involved in the project can select any issue on the ticket to get started.</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, 03 Nov 2023 19:36:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:53:\"WPTavern: Add Icons to WordPress’ Core Button 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=150927\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wptavern.com/add-icons-to-wordpress-core-button-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:5605:\"<p>Nick Diego, a developer advocate at Automattic and core contributor, is the author of the popular <a href=\"https://wordpress.org/plugins/icon-block/\">Icon Block</a> plugin that enables users to add custom SVG icons and graphics to the WordPress block editor. He is often asked if the plugin can add icons to the core Button block, but that is outside the scope of what it does. Last week he wrote a plugin that fulfills this feature request in a separate plugin without building a custom block.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Everyone asks me if <a href=\"https://twitter.com/theiconblock?ref_src=twsrc%5Etfw\">@theiconblock</a> can add icons to the core Button block in <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a>. <br /><br />Unfortunately, the answer is no. <br /><br />But while traveling last week, I built a little demo plugin that does just that.<br /><br />It works quite well, and no need for a custom block <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f609.png\" alt=\"😉\" class=\"wp-smiley\" />… <a href=\"https://t.co/jF3T3T8lOA\">pic.twitter.com/jF3T3T8lOA</a></p>&mdash; Nick Diego (@nickmdiego) <a href=\"https://twitter.com/nickmdiego/status/1719871746818314361?ref_src=twsrc%5Etfw\">November 2, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>The Enable Button Icons plugin is <a href=\"https://github.com/ndiego/enable-button-icons\">available on GitHub</a> as an example that demonstrates how developers can lightly extend core blocks for features like this. Diego said he was inspired by WordPress developer Aki Hamano&#8217;s <a href=\"https://github.com/t-hamano/enable-responsive-image#enable-responsive-image\">Enable Responsive Image</a> plugin that adds settings to the Image block to elegantly display different images depending on the width of the screen.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"ja\" dir=\"ltr\">WordPressの画像ブロックで、モバイル時に画像を切り替えたいけど、カスタムブロックを作るまでもなくシンプルにコアブロックを拡張するものが欲しいなと思い、試しに作ってみました。<br />とりあえず追加出来る画像は1枚で、ブレークポイントと解像度だけ切り替えられるように。<a href=\"https://t.co/3OeUEQcGqQ\">https://t.co/3OeUEQcGqQ</a> <a href=\"https://t.co/NxafBGRDfh\">pic.twitter.com/NxafBGRDfh</a></p>&mdash; Aki Hamano / 浜野 哲明 (@tetsuaki_hamano) <a href=\"https://twitter.com/tetsuaki_hamano/status/1712763117174956324?ref_src=twsrc%5Etfw\">October 13, 2023</a></blockquote>\n</div>\n\n\n\n<p>&#8220;I wanted to use the WordPress image block to switch images on mobile, but I wanted something that would simply extend the core block without having to create a custom block, so I tried making one,&#8221; Hamano said. &#8220;For now, you can only add one image, and only the breakpoint and resolution can be switched.&#8221;</p>\n\n\n\n<p> Diego said he doesn&#8217;t plan to add his Enable Button Icons plugin to the official WordPress directory.</p>\n\n\n\n<p>&#8220;It works great, but it is not designed to support an entire library of icons, and I know that will be the first thing people ask for,&#8221; he said. &#8220;So, I&#8217;m thinking of keeping it as an example and encouraging people to take it and modify it as they want.&#8221; </p>\n\n\n\n<p>I tested the plugin and it works perfectly but is certainly ripe for being extended to support a larger selection of icons. Alternatively, it may be useful for a brand that has a set number of custom designed icons they want to be easily accessible for use in Button blocks.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"858\" height=\"610\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/11/image.png\" alt=\"\" class=\"wp-image-150933\" />\n\n\n\n<p>Diego will be running an event at the end of the month about how to extend core WordPress blocks, and the Enable Button Icons plugin will be part of that. It will be another segment in the &#8220;Developer Hours&#8221; series run through the Learn WordPress Online Workshops group on Meetup. Diego and a team of contributors just wrapped up a Developer Hours <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/296946089\">event</a> today featuring a demo/walkthrough of the upcoming Twenty Twenty-Four default theme. Watch for the next event to be added to <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/\">the schedule</a> sometime this week.</p>\n\n\n\n<p>Developers have been asking for more extensibility, hooks, and filters for the block editor, and an upcoming Hallway Hangout event will focus on <a href=\"https://make.wordpress.org/core/2023/11/02/hallway-hangout-issues-triage-extending-gutenberg/\">triaging issues related to extending Gutenberg</a>. Contributors will discuss the 110 outstanding issues labeled &#8220;<a href=\"https://github.com/WordPress/gutenberg/issues?q=is%3Aopen+is%3Aissue+label%3A%22%5BFeature%5D+Extensibility%22+sort%3Areactions-%2B1-desc\">Extensibility,</a>&#8221; and 20 issues labeled &#8220;<a href=\"https://github.com/WordPress/gutenberg/issues?q=is%3Aopen+is%3Aissue+sort%3Areactions-%2B1-desc+label%3A%22%5BFocus%5D+Blocks+Adoption%22\">Blocks Adoption</a>,&#8221; used for issues that directly impact the ability to adopt features of Gutenberg. Anyone who wants to share their opinions about block editor extensibility issues is invited to join.</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, 03 Nov 2023 02:03:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:58:\"Do The Woo Community: Do the Woo Day 3 Recap, WooSesh 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=77702\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://dothewoo.io/do-the-woo-day-3-recap-woosesh-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:367:\"<p>Day 3 recap included a deep look at producing WooSesh, the Seshies awards and conversation around the days sessions.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/do-the-woo-day-3-recap-woosesh-2023/\">Do the Woo Day 3 Recap, WooSesh 2023</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</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, 02 Nov 2023 11:05:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: Wordfence CLI 2.0.1 Update Adds Free Vulnerability Scanning\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=150866\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/wordfence-cli-2-0-1-update-adds-free-vulnerability-scanning\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3294:\"<p><a href=\"https://www.wordfence.com/blog/2023/10/wordpress-vulnerability-scanning/\">Wordfence CLI 2.0.1</a> introduced free vulnerability scanning this week. The new <a href=\"https://www.wordfence.com/products/wordfence-cli/\">CLI product</a> was <a href=\"https://www.wordfence.com/blog/2023/08/wordfence-cli/\">launched at WordCamp US</a> two months ago with malware detection capabilities, but the latest update brings in the most highly requested feature &#8211; vulnerability scanning at scale. </p>\n\n\n\n<p>Wordfence is most well-known for its Web Application Firewall, malware scanner, and login security product, which is packaged as <a href=\"https://wordpress.org/plugins/wordfence/\">a free plugin</a> and installed on more than 4 million websites. The CLI is the first-ever command line malware and vulnerability scanner for WordPress servers. It is targeted at developers, site cleaners who scan large numbers of files for remediation, agencies, and hosting companies that want to scan across entire networks of millions of customers.</p>\n\n\n\n<p>&#8220;Vulnerability scanning in Wordfence CLI 2.0.1 uses our own open vulnerability database,&#8221; Wordfence CEO Mark Maunder said. &#8220;The database itself is completely free for anyone to use, and includes APIs that are open, along with web hooks so that developers can build real-time alerting into their applications. Our mission is to secure the Web, and we think that having an open vulnerability database, with an open source, robust and high performance vulnerability scanner for servers furthers that mission.&#8221;</p>\n\n\n\n<p>The vulnerability database includes responsible disclosures published by researchers for the benefit of the wider community.<br /><br />&#8220;Because most vulnerabilities come from the research community, we believe they are public property,&#8221; Maunder said. &#8220;While some companies do charge for their collection of vulnerabilities, we don’t think it is appropriate to resell public property, which is why we created an open and completely free vulnerability database.&#8221;</p>\n\n\n\n<p>The CLI vulnerability scans use the Wordfence Intelligence Vulnerability API feed, which is free for both personal and commercial use. It contains more than 12,250 unique vulnerability records affecting 7,600 plugins and themes. The Wordfence team adds an average of 82 new vulnerabilities per week. </p>\n\n\n\n<p>Version 2.0.1, code named &#8220;Voodoo Child&#8221; simplifies installation so users no longer have to go to the Wordfence site to get an API key. The tool fetches the API key in the background to make it easier to get started.</p>\n\n\n\n<p>Wordfence CLI is licensed under the GPLv3 and <a href=\"https://github.com/wordfence/wordfence-cli/\">available on GitHub</a>, along with <a href=\"https://www.wordfence.com/help/wordfence-cli/\">documentation</a> for installing, configuring, and running the application.</p>\n\n\n\n<p>&#8220;Wordfence CLI is one of those projects where the product roadmap writes itself because there is such an obvious need for a powerful tool like this in the WordPress server administration space,&#8221; Wordfence lead developer Matt Barry said. &#8220;We’re in this for the long haul and will continue to invest heavily in Wordfence CLI, with your guidance.&#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, 01 Nov 2023 20:48:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.org blog: WordPress 6.4 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16247\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/11/wordpress-6-4-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8050:\"<p>The third release candidate (RC3) for WordPress 6.4 is ready to download!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended that you evaluate RC3 on a test server and site.</p>\n\n\n\n<p>WordPress 6.4 is <a href=\"https://make.wordpress.org/core/6-4/\">slated for release</a> on <strong>November 7, 2023</strong>—less than a week away. If you haven’t tried it, now is the time.</p>\n\n\n\n<p>You can test WordPress 6.4 RC3 in three ways:</p>\n\n\n\n<ol>\n<li><strong>Plugin</strong>: Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Direct download</strong>: Download the <a href=\"https://wordpress.org/wordpress-6.4-RC3.zip\">RC3 version (zip)</a> and install it on a WordPress site.</li>\n\n\n\n<li><strong>Command line</strong>: Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br /><code>wp core update --version=6.4-RC3</code></li>\n</ol>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/10/wordpress-6-4-release-candidate-1/\">Read the RC1 announcement</a> for featured highlights, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-4/\">6.4-related posts</a>. If you are looking for detailed technical notes on new features and improvements, the <a href=\"https://make.wordpress.org/core/2023/10/23/wordpress-6-4-field-guide/\"><strong>WordPress 6.4 Field Guide</strong></a> is for you.</p>\n\n\n\n<p>The WordPress 6.4 release is brought to you by an <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">underrepresented gender release squad</a> to welcome the participation and partnership of those who identify as gender-underrepresented in the WordPress open source project.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 6.4 RC3?</h2>\n\n\n\n<p>Thanks to everyone who has tested the beta and RC releases. Since RC2 was released on October 24, there have been more than 25 issues resolved. You can browse the technical details for all recent updates using these links:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.4\">GitHub commits for 6.4</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F25%2F2023..11%2F01%2F2023&milestone=6.4&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Closed Trac tickets since RC2</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/twentytwentyfour/commits/\">GitHub commits for Twenty Twenty-Four</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">PHP compatibility update</h2>\n\n\n\n<p>It’s recommended to use PHP 8.1 or 8.2 with the upcoming 6.4 release. Refer to <a href=\"https://wordpress.org/news/2023/10/wordpress-6-4s-php-compatibility/\">WordPress 6.4&#8217;s PHP compatibility post</a> for more details.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Contributing to 6.4</h2>\n\n\n\n<p>WordPress is open source software made possible by a community of people collaborating on and contributing to its development. The resources below outline various ways you can help, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Your feedback and help in testing are vital to developing the WordPress software and ensuring its quality. It’s also a meaningful way for anyone to contribute. <a href=\"https://make.wordpress.org/test/2023/09/26/help-test-wordpress-6-4/\">Check out this guide</a> for instructions on testing WordPress 6.4 features.</p>\n\n\n\n<p>The core Query block requires more <a href=\"https://make.wordpress.org/test/2023/09/26/help-test-wordpress-6-4/#query-loop-block-pagination-enhancements\">testing and feedback</a> to ensure the latest changes to prevent full page reloads work smoothly. Please note that this setting was called &#8220;Enhanced pagination&#8221; but has recently been renamed, and it&#8217;s now referred to as &#8220;Force page reload&#8221; instead.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>During the release candidate phase of WordPress 6.4, the <a href=\"https://make.wordpress.org/security/2023/09/26/bug-bounty-for-wordpress-6-4-beta/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>Do you build themes and plugins? Your products play an integral role in extending the functionality and value of WordPress for users worldwide.</p>\n\n\n\n<p>Hopefully, you have already tested your themes and plugins with WordPress 6.4 betas. With RC3, you will want to continue your testing and update the <em>&#8220;Tested up to&#8221;</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin&#8217;s readme file</a> to 6.4.</p>\n\n\n\n<p>Please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> if you find compatibility issues.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Documentation</h3>\n\n\n\n<p>Help the Docs team put the finishing touches on end-user documentation in time for the 6.4 release. Find out what’s needed and how you can help <a href=\"https://make.wordpress.org/docs/2023/10/25/call-for-volunteers-to-help-with-6-4-end-user-documentation/\">in this post</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">A RC3 haiku</h2>\n\n\n\n<p>One more week of prep<br />One more week to test the code<br />One more week til launch</p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post: <a href=\"https://profiles.wordpress.org/meher/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>meher</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/sereedmedia/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sereedmedia</a>, <a href=\"https://profiles.wordpress.org/jorbin/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jorbin</a>, <a href=\"https://profiles.wordpress.org/luisherranz/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>luisherranz</a>, <a href=\"https://profiles.wordpress.org/marybaum/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>marybaum</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, 01 Nov 2023 19:21: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:\"Reyes Martínez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:108:\"WPTavern: #97 – Estela Rueda, Courtney Robertson and Javier Casares on the Future of Translating WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=150878\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"https://wptavern.com/podcast/97-estela-rueda-courtney-robertson-and-javier-casares-on-the-future-of-translating-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:56373:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley. Jukebox is a podcast, which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case how translations of the WordPress project are created now and in the future.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you all your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Estela Rueda, Courtney Robertson and Javier Casares.</p>\n\n\n\n<p>Courtney is a former teacher who now focuses on contributing to WordPress. With a background in education, she understands the challenges faced by English second language learners in the American education system. She&#8217;s passionate about providing access to WordPress in multiple languages, as she believes it&#8217;s unfair to expect non-English speakers to simultaneously translate content and understand it.</p>\n\n\n\n<p>Estela is a language enthusiast who has spent years navigating the challenges of website localization. As a member of the WordPress community, Estela has come across the intricacies of language differences, and the need for accurate translation in various Spanish locales. With 14 Spanish locales to handle Estela&#8217;s expertise in understanding the subtle nuances, and localizations of each language variation has been indispensable.</p>\n\n\n\n<p>Javier is a dedicated member of the WordPress community, with expertise in creating documentation. Javier has been instrumental in developing handbooks for various sites. However, there have been some technical challenges. Despite these obstacles Javier, as you will hear, remains committed to addressing and solving the documentation issues at hand.</p>\n\n\n\n<p>This episode covers the important topic of translations, and making WordPress documentation more accessible to people worldwide. Our guests bring a wealth of knowledge and experience to the table, as they discuss the complexities and challenges of language translation in the WordPress ecosystem.</p>\n\n\n\n<p>We start by highlighting challenges posed in translating WordPress, such as the tangled processes currently in place, as well as more language focused topics. We talk about the extensive collaborative effort involved in translating WordPress, and the plans to expand translation efforts to documentation with the help of dedicated teams.</p>\n\n\n\n<p>We get into how contributors might need to rethink how many of the current translation processes are structured. We discuss the different approaches needed for translating plugins and themes versus documentation. We touch upon how technical aspects of these processes such as content creation and updates also pose significant challenges.</p>\n\n\n\n<p>All three guests stress the importance of global involvement in translation efforts, including translators, reviewers, and project managers. They advocate for the development of standardized style guides for each language to maintain consistency. And they explore the possibility of creating software, or tools, to manage translation tasks.</p>\n\n\n\n<p>Courtney, Estela and Javier all acknowledge the challenges ahead, but express optimism that their ideas will help make WordPress accessible for all. Communicating how WordPress is built and how it works is an endeavor tightly aligned with the projects overall mission of democratizing publishing.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Estela Rueda, Courtney Robertson and Javier Casares.</p>\n\n\n\n<p>I am joined on the podcast today by three fine people. I&#8217;m joined by Courtney Robertson, Estela Rueda and Javier Casares. Hello all three of you.</p>\n\n\n\n<p>[00:04:48] <strong>Javier Casares:</strong> Hello.</p>\n\n\n\n<p>[00:04:49] <strong>Estela Rueda:</strong> Hi Nathan.</p>\n\n\n\n<p>[00:04:50] <strong>Courtney Robertson:</strong> Hello.</p>\n\n\n\n<p>[00:04:51] <strong>Nathan Wrigley:</strong> Very nice to have you on the podcast today. We&#8217;re going to be talking about WordPress translations, and the way that we can make it easier for people from around the globe to get access to WordPress documentation. It&#8217;s a very important subject and there&#8217;s been a lot of work, albeit that you may not know about it. There&#8217;s been an awful lot of work going on over, well more or less a decade, and we&#8217;ll find out more about that in a moment.</p>\n\n\n\n<p>But first of all I think it&#8217;s important that everybody gets a little window to introduce themselves, do a quick bio. So if I take you one at a time and lets start with Courtney. Just tell us who you are. And I know that I&#8217;m going to say can we be brief but I know time is short, so let&#8217;s keep it fairly brief if that&#8217;s all right.</p>\n\n\n\n<p>[00:05:33] <strong>Courtney Robertson:</strong> Sure thing. I&#8217;ve been contributing to WordPress since 2009. A big part of the training team for many years. These days you can also find me over in Meta, Sustainability, and generally around the project on behalf of GoDaddy these days, and I&#8217;ve been there for about two and a half years. Long time contributor. Big fan.</p>\n\n\n\n<p>[00:05:50] <strong>Nathan Wrigley:</strong> Thank you so much. I&#8217;m sure that people have come across Courtney in the past, as would be the case for the next two people. Let&#8217;s go for Estela next. Hello Estela, would you mind giving us your intro?</p>\n\n\n\n<p>[00:06:01] <strong>Estela Rueda:</strong> Hi Nathan. Yes. I&#8217;ve been contributing for about five years already and I am mostly in the design and the documentation teams. But you can find me everywhere. I do mess around everywhere, I ask questions. And my goal has been to rearrange, recategorise the end user documentation. And that&#8217;s been the big project that we finished, it took us three years. And now we want to bring it up to the whole world in every single language we can manage.</p>\n\n\n\n<p>[00:06:33] <strong>Nathan Wrigley:</strong> Okay thank you. And finally Javier, if you want to just give us your short bio.</p>\n\n\n\n<p>[00:06:37] <strong>Javier Casares:</strong> Yeah. Hello everybody. I&#8217;m Javier Casares, I&#8217;m from Spain. I&#8217;ve been involved with WordPress since 2006, so more or less 17 years. I mainly focus on hosting, on the hosting team, and I&#8217;m helping the documentation team mainly with the Advanced Administration Handbook. So that&#8217;s more or less what I do. I do a lot of things but those are the main things.</p>\n\n\n\n<p>[00:07:04] <strong>Nathan Wrigley:</strong> Those are the things which are pertinent to today&#8217;s discussion. Yeah, thank you so much.</p>\n\n\n\n<p>So if, like me, you are a native English speaker, English is your first language. It may very well be that some of the things that we&#8217;re going to talk about today have either never occurred to you, or you&#8217;ve never bumped up against this problem.</p>\n\n\n\n<p>Because broadly speaking, if you are a native English speaker, you can find the documentation, you can find tutorials. You can find almost anything you wish to find out about WordPress, how to use it, how to implement things and so on, by going and doing a Google search. And you&#8217;re off to the races because essentially everything has historically been done in the English language.</p>\n\n\n\n<p>So I guess that, in my case, makes me an incredibly fortunate person. But that&#8217;s not the case throughout the world. And as obviously WordPress has grown, we&#8217;re now 40 plus percent of the internet, it would be not really serving the user base of WordPress if everything was simply in English. It would be a laudable goal to get everything translated.</p>\n\n\n\n<p>Now I guess we should probably outline where all of the things are at the moment. So it&#8217;s not the case that you can go to one website and there it all is, open a Pandora&#8217;s box, open it all and there it all is.</p>\n\n\n\n<p>So let&#8217;s outline that problem first. I don&#8217;t really mind who wishes to tackle this one. Yeah if somebody wants to just outline the problem that we face, where are all the documents stored at the moment?</p>\n\n\n\n<p>[00:08:23] <strong>Estela Rueda:</strong> I can&#8217;t give it a go. There are many, many limitations within WordPress. There are the sites that are called the Rosetta sites, or locales and those are the ones that are written in other languages for local teams.</p>\n\n\n\n<p>But then we have issues, different issues. For instance, in Spanish, we have 14 locales in Spanish. So we have Spanish from Spain, we have Spanish from Mexico, Spanish from Colombia, Spanish from Costa Rica, et cetera. And everybody will think, well don&#8217;t you understand each other? Yeah we do, we understand each other, but there are so many differences in our languages. And there is the localisation of the words, and a lot of little things that we need to figure out. That&#8217;s one thing.</p>\n\n\n\n<p>Then the other thing is that there are never enough contributors to do translations. And then there are all the technical issues that we have, and Javier can talk to you about those, because he&#8217;s more aware than all of the technical issues that we have.</p>\n\n\n\n<p>[00:09:25] <strong>Nathan Wrigley:</strong> Okay, in that case, we&#8217;ll hopefully segue over to Javier. Are you able to take it from there?</p>\n\n\n\n<p>[00:09:29] <strong>Javier Casares:</strong> Yeah. So the main thing is, we have the Rosetta sites. It&#8217;s local team can create their own documentation in a way, because some of the sites have their own handbooks. But there is some technical things there because, for example, the Spanish from Spain is one of the older sites in the WordPress network.</p>\n\n\n\n<p>So it&#8217;s database is in LATIN1, it&#8217;s not in UTF, it&#8217;s a technical thing. But it doesn&#8217;t allow, for example, emojis in the database. That&#8217;s so simple but it&#8217;s something that happens. So we have some problems having documentation there. That&#8217;s one of the things.</p>\n\n\n\n<p>But the other one is we have the documentation right now in wordpress.org/documentation. Also we have the developer.wordpress.org. We have the Learn corpus also in with a lot of documentation. In a lot of ways, WordPress TV should, maybe it&#8217;s another place with documentation, in video in this case. And everything usually is focused on English.</p>\n\n\n\n<p>So the main idea on this project we started like a year ago is, how can we translate everything into, more or less, at least eight languages? Because eight languages cover more or less eighty percent of the WordPress users. And also, where are we going to put that documentation? Because, for example, we can do ses.wordpress.org/documentation, that&#8217;s the easy one. But, for example, the developer documentation is in a subdomain so, where are we going to put all this documentation?</p>\n\n\n\n<p>So that&#8217;s one of the things we are trying to solve. That&#8217;s one technical problem we have to face. And the other one is, where are we going to put all the documentation to be translated? Because we know that WordPress will be multilingual in a way in some years. I hope soon, as soon as possible.</p>\n\n\n\n<p>We have now the phase three, the collaboration part. But we have the problem that we cannot give access in this case. This is something concrete for WordPress, not for a translation or a documentation problem. But we cannot give access to thousands of people to the WordPress network, because it won&#8217;t be able to control the security and everything.</p>\n\n\n\n<p>We decided to start migrating or having the English documentation in GitHub. That&#8217;s one place. Also GitHub has natively, the Markdown editor, so with some commands and some things we can put everything there in a way that everybody can take the English document and translate it into their language.</p>\n\n\n\n<p>For example I&#8217;m doing that, I&#8217;m starting to do that in a beta project for the advanced documentation. That&#8217;s something we&#8217;ve been working on for more or less 8 months. It was a very difficult thing to arrive because it&#8217;s been a big problem. A lot of people have been involved, a lot of languages, people from different countries involved, a lot of teams involved. So it has been a very technical challenge in a way.</p>\n\n\n\n<p>[00:13:00] <strong>Nathan Wrigley:</strong> Thank you so much. I don&#8217;t know if Courtney wants to add anything to that before we move on.</p>\n\n\n\n<p>[00:13:05] <strong>Courtney Robertson:</strong> Yeah. So my background, before going full time contributing to WordPress, was that of a teacher. And in the education space within America we have a lot of ESL, English Second Language. So we have a lot of people that don&#8217;t primarily speak English, and it&#8217;s a disservice to them in the education system to expect them to understand the content on top of having to simultaneously translate a language. That&#8217;s a really big learning difficulty.</p>\n\n\n\n<p>So I very much wholeheartedly believe in providing access for people to learn WordPress in their own languages. Down to reading the captions on videos. If you&#8217;re an English speaker I would encourage you to go over to wordpress.tv, try to find a video that is not in your language, not in your first language, and subject yourselves to reading the captions and think about how fair is that for the rest of the world.</p>\n\n\n\n<p>So with that in mind, in Learn WordPress we have a different workflow perhaps than the Docs team. So Docs again think of as the dictionary and the reference manuals, and Learn as the teacher&#8217;s spot to be, or the direct learner&#8217;s spot to go, if they don&#8217;t find reading the manual version to meet their learning style.</p>\n\n\n\n<p>And that&#8217;s something that we very much want to consider. Some people need a little more instruction to be able to get the concepts. And so Learn WordPress exists for that, both direct learners and educators. And over there we do not get access to Rosetta sites and instead we rely upon one instance of Learn WordPress.</p>\n\n\n\n<p>Whereas in the Rosetta sites and what we&#8217;ve heard from recent episodes with Vagelis and Piermario, just a few episodes back. We could hear that from what they&#8217;ve shared in other parts of the WordPress project there are tools to basically make a whole separate locale instance going on. So if you were in Spain and you wanted to read the same type of content, you would have an entire version of the site that is just for you.</p>\n\n\n\n<p>Whereas with Learn WordPress, what we have going on is all the languages all smooshed into one site. And what becomes difficult is we don&#8217;t have good workflows yet established around if the English language version gets an update, how do I assess what content? I speak only a tiny bit of Spanish and a tiny bit of Latin, of all the things. Good conversation starters.</p>\n\n\n\n<p>So you won&#8217;t find an easy way to identify even what the other topics are with the same title. Let alone somebody that can&#8217;t assess what that content looks like. So we have some locale ambassadors, Piermario is doing a great job with the folks based out of Italy on rounding up some efforts there. Margarita especially, is someone that&#8217;s participating with Piermario on identifying the content to be translated into the Italian locale.</p>\n\n\n\n<p>So we&#8217;re basically duplicating the content, but just in other languages all under the same site. So that&#8217;s not the most efficient way and we&#8217;re using GitHub as well to do some of this work. We have GitHub issues that have a template. So think of GitHub issues as logging something on the WordPress forums, right? It&#8217;s about on par with that. But we prefill what the text of that issue is, and have a workflow to publish that.</p>\n\n\n\n<p>But that&#8217;s not necessarily in conjunction with what the English version, last update, is or plans of how do we maintain those updates? And then, how do we also look and see if the Docs team did a certain bit of update? And how do we find the polyglots that really like these specific areas? You can see this becomes quite a challenge as we&#8217;re looking ahead to Gutenberg phase four with multilingual support natively. We&#8217;re still a ways out from that, but you can see where this is something to start untangling and working on internally before we roll it all into Core.</p>\n\n\n\n<p>[00:16:59] <strong>Nathan Wrigley:</strong> So it sounds like that this is a spaghetti of things just loosely held together simply by people actually understanding what the processes of the different teams are. But we don&#8217;t have this one workflow, which presumably is some kind of goal. But we do have a moment in time, which would be the release of Gutenberg phase four, where hopefully a large proportion of this would be either in progress or completed, because at that point WordPress itself becomes translatable. And I suppose at that point it would be incredibly useful to have this work done.</p>\n\n\n\n<p>I just want to touch on a couple of things that may have confused the listeners because we&#8217;re all speaking, probably in a bit of an echo chamber here. And so there were a couple of things which were mentioned. The first of which was Rosetta, that got dropped a couple of times, and it may be useful for people to actually know what that means. So if anybody&#8217;s willing to just very briefly explain what Rosetta is. I mean we know what the stone is and so we get the connection there but, what is that thing in WordPress?</p>\n\n\n\n<p>[00:17:57] <strong>Javier Casares:</strong> The Rosetta sites are the locale sites in WordPress. So we have wordpress.org, everything is in English, it&#8217;s the main site. Most of everything is there. But, for example, for Spain we have es.wordpress.org, or for Catalan we have ca.wordpress.org or I don&#8217;t know for French we have fr.wordpress.org.</p>\n\n\n\n<p>Those are translation sites from the main site, but not everything is in there. There are the main contents, for example, the download page, everything is in your language. When you download the WordPress from that site, it&#8217;s in your language. It includes the translation files. But each site can be managed by different people.</p>\n\n\n\n<p>For example, in Spain we usually publish one post every week talking about things. It can be translation from general post, or it can be local things about WordCamps in Spain or whatever. So that&#8217;s more or less the thing inside the Rosetta. It&#8217;s the technical name, the project, the Rosetta project is the name or the locale site. So that&#8217;s more or less the thing.</p>\n\n\n\n<p>[00:19:12] <strong>Nathan Wrigley:</strong> Yeah thank you, that&#8217;s perfect. That explains it beautifully.</p>\n\n\n\n<p>The other thing that was mentioned was eight languages have been put forward as the language is to get us to 80%. So I guess it would be quite nice for the listeners to know what those languages are. I don&#8217;t know if a quick Google search needs to be done there, or if anybody&#8217;s got that information to hand. But it would be nice to know eight languages initially are.</p>\n\n\n\n<p>And also to know that isn&#8217;t the entire scope of the project. That&#8217;s more a, let&#8217;s get something over the line with these eight languages, as opposed to that&#8217;s what we&#8217;re doing and that&#8217;s all that we&#8217;ll ever do.</p>\n\n\n\n<p>[00:19:44] <strong>Javier Casares:</strong> Yeah. I have some information from the hosting team, and it was like, okay, I&#8217;m going to analyse where and what language are the most downloaded in WordPress. So these languages are not the eight most top languages in the world, they are are the most used in the WordPress ecosystem.</p>\n\n\n\n<p>So that&#8217;s the main idea behind having those languages as the main ones. German, more or less the 6% in the WordPress scope. English, the 48%, Spanish 7%, French 5%, Italian 4%, Japanese 6%, Portuguese 5%, and Russian 3%. More or less that covers the 80% of the documentation or languages that WordPress has installations.</p>\n\n\n\n<p>[00:20:34] <strong>Nathan Wrigley:</strong> Okay thank you, that&#8217;s great. That clears that one up.</p>\n\n\n\n<p>So I guess we&#8217;ve highlighted a problematic past, well not really problematic, it&#8217;s just the way the project evolved where everything is done in a unique way depending on the team, or which part of WordPress you&#8217;re touching. And maybe this one is for Estela. The enterprise of this podcast really is to highlight some future where we improve things and we take things forward, and you have outlined, I guess a project is the best way to describe it.</p>\n\n\n\n<p>What is your idea? What is it that you want to happen in the future? We don&#8217;t have to create timelines or anything, but let&#8217;s just imagine that we&#8217;re a decade out from now and it&#8217;s all been achieved, what would be your north star for all of this?</p>\n\n\n\n<p>[00:21:16] <strong>Estela Rueda:</strong> This is where we are, you know where we are working at right now, where we are starting. I started with this Spanish team. They are my trial team. And the only reason why I started with them is because I speak Spanish and it&#8217;s easier for me to guide them. We had to start the project in, you know, baby steps, go little by little. The idea is to create a process or a model that we can replicate into other languages.</p>\n\n\n\n<p>I started with the style guide and how to write documentation in Spanish, because we have many grammar issues with the language. First of all, you know, we have the way we address each other, like formal, informal or we have the language is genderised, completely genderised. Everything is either female or male, there is no neutral gender in Spanish.</p>\n\n\n\n<p>There are so many issues that we need to address. And I&#8217;m pretty sure other languages have the same or similar problems in their grammar, you know, grammatically speaking. And we need to address those and, how are we going to use them in documentation, in order to make it as neutral as possible and as easy to understand? They&#8217;re going to be like, you know, writing rules.</p>\n\n\n\n<p>Then we have the translation of the sitemap. Now, what I did with the Spanish team, we spent during a WordC amp, a whole contributor day, translating the site map for end user documentation. But I sat the marketing, the polyglots, and the documentation teams together. And I told them, okay, we&#8217;re going to translate but I don&#8217;t want you to translate literally. I asked marketing, give us words that are searched for, that will help with the SEO of the site. So that way we can localise also, and we can increase the use of the translation of WordPress.</p>\n\n\n\n<p>After that, I guess we&#8217;re going to start working into translating documentation. We&#8217;re going to create teams, and we&#8217;re going to start working on it. My idea is to start some sort of triage hours with teams. And let&#8217;s say twice a month, to review what we have written and to continue writing and just that sort of thing.</p>\n\n\n\n<p>Because I know that if I leave it to every contributor day for every WordCamp it&#8217;s just never going to happen. And this is something that we need. If we want to progress we need to work, you know, a little bit every day, a little bit every day.</p>\n\n\n\n<p>So if we don&#8217;t put set goals then this is not going to happen. But that&#8217;s where I am right now. And I will reach out to the Brazilian team who approached me and may be the second team that I start working with.</p>\n\n\n\n<p>[00:23:56] <strong>Nathan Wrigley:</strong> So Estela, just to be clear the intention here is to delve into, in your case, the Spanish language and come up with a rule set, like a workflow. Where, okay, if we receive things in English, these are the set of constraints that we&#8217;ve got when we translate into Spanish. So somebody who is new to the team would be able to look at those guidelines, the workflow document, whatever it may be and have a very strong idea of, okay, this is the way to do it. When you&#8217;re going from English to Spanish, this is how you do it. Have I understood that correctly?</p>\n\n\n\n<p>[00:24:29] <strong>Estela Rueda:</strong> Yes. But those writing rules, or the style guide, I call them the writing rules because that&#8217;s what they are. But I want to apply that for every language, just not for the Spanish team. And that style guide has to be according to the language grammar, not to what we like.</p>\n\n\n\n<p>[00:24:45] <strong>Nathan Wrigley:</strong> In my head I&#8217;m seeing a website when you say that, but of course, you&#8217;re talking about the style of the language, in your case the sort of gender that you&#8217;ve got to go to and things like that. That&#8217;s interesting. And, can you give us some sort of insight into how that&#8217;s going? Has it proven to be fairly straightforward to put that workflow together or is it a really thorny thing to unpick?</p>\n\n\n\n<p>[00:25:03] <strong>Estela Rueda:</strong> We are just at the beginning of it. I just pitched this idea at the WordCamp in Pontevedra, which was last month, two months ago. And I realised that I need to sit down and start writing. So I gave them some sort of topics that might affect the language, and gave it to the team, to the Spanish team actually.</p>\n\n\n\n<p>They are going to start writing the style guide. And I said listen, I write something, ideas that I have and if they are not okay, feel free to go ahead and edit and change them. And let&#8217;s see what affects us where. Is it easy? No it&#8217;s not easy. It&#8217;s going to be difficult because like I said, we have 14 locales, or 14 Rosetta sites, for 14 different versions of Spanish. And we need to come together to a point where, what is the most common use for everybody?</p>\n\n\n\n<p>[00:26:03] <strong>Nathan Wrigley:</strong> So this question is going to sound a bit meta, meta in the real sense of the word. You are creating a document which then you will be able to share to other teams in order that they can run their own process. So a silly example, the Latin version of WordPress would need to look at what your team have put together, how to go through the process? Which they can then implement with their own locale.</p>\n\n\n\n<p>[00:26:28] <strong>Estela Rueda:</strong> Yes. I will be documenting. Actually this week I&#8217;m going to publish a post in the Polyglots team regarding about this step one, step two. So what is the writing style guide and why are we writing it? And what happened to the sitemap and how we came up to what we have.</p>\n\n\n\n<p>[00:26:44] <strong>Nathan Wrigley:</strong> So just talking about it on this podcast, it seems like a fairly solvable problem, but of course when you actually apply thought to it, this really is a gigantic plate of spaghetti. There&#8217;s an awful lot to be unpicked. There&#8217;s an awful lot of work to be done. And I&#8217;m just wondering how you feel about this, whether you&#8217;re sanguine.</p>\n\n\n\n<p>And it&#8217;s not necessarily for Estela, it&#8217;s for everybody on the call. How you feel about whether this project is going to be able to ship its aspiration in the, well let&#8217;s say, it&#8217;s probably a matter of years not months certainly, but probably under a decade, before Gutenberg four comes out.</p>\n\n\n\n<p>Because it does sound, on the face of it, it sounds like you&#8217;ve got an awful lot of work to be done. If you complete the Spanish, then you&#8217;ve got to move on to another one. You&#8217;ve got to get people&#8217;s buy in, you&#8217;ve got to re educate those people who are contributing their time, as translators. They&#8217;ve got to be re educated to do it in a different way. How positive, sanguine do you feel that this is achievable?</p>\n\n\n\n<p>[00:27:41] <strong>Courtney Robertson:</strong> Nathan, I&#8217;ll jump in here. One of the ideas that a coach in my life has shared with me, the motto of this company is, a world that works for everyone with no one left out. And I think about that a lot in the context of open source, and how we make WordPress possible for the whole globe, right?</p>\n\n\n\n<p>We are trying to make this tool that we have available, be available for as many people as would have used it, and make the best of that situation. And if we take that backwards to a place where we might need a mindset shift to go on, let&#8217;s think about a couple of features in the WordPress project that have rolled out within the last few versions of releases, and the naming that goes into it.</p>\n\n\n\n<p>I know the community would like to improve how we name things from this outset, so that we don&#8217;t have to rename them later. So one example that I thought went really, really well is what became the Command Palette. The initial proposal was to call it something along the lines of Wayfinder. And one of the great insights, because we were able to identify and put this kind of call out across social media and other places, it was not something that was just buried and obscure over in GitHub.</p>\n\n\n\n<p>It was raised throughout the community and a lot of folks said, that doesn&#8217;t make sense in my language. If you do a direct translation this does not make sense. So it&#8217;s not just about translating after the fact, but it&#8217;s also about how we name things really even before it gets widely publicly released.</p>\n\n\n\n<p>And so that&#8217;s a mindset shift that I think, I&#8217;ll say as an English speaker, I really think that we need to experience more of being the second language to truly appreciate and understand the depth of why naming things matters so greatly. The depth of why we need to consider how this will work with other languages. Consider the workflow process. To the point where we&#8217;re not just, yes, it will probably remain English forward first.</p>\n\n\n\n<p>But to always tuck in mind the processes that go on downstream after we get the thing out in English or what have you. What are we asking our translation folks to do, and how does this impact somebody in a different language? I learned that when Learn was added the navigation menu across all WordPress sites, that the way it had been translated, particularly into Russian, Olga caught this one, it didn&#8217;t make sense in the way that it was translated. And so we have to think about these things before we just ship sometimes.</p>\n\n\n\n<p>[00:30:22] <strong>Nathan Wrigley:</strong> I have this intuition that if the Command Palette had been called something, even adjacent to the Command Palette, it would have stayed like that. It the controversy of it being so poorly named that led the community to sort of say, well that&#8217;s really not the right idea.</p>\n\n\n\n<p>And so sometimes I wonder if backing yourself into a corner is the best way to get attention, if you know what I mean. It&#8217;s probably not the desirable outcome but it is possibly a way that, you know, people get enraged by something and so they go out on social media and change happens more quickly.</p>\n\n\n\n<p>From what I&#8217;m hearing there Courtney, you&#8217;re basically making a moral argument for this. It&#8217;s the right thing to do. It doesn&#8217;t matter what the goal is, whether we achieve this in a matter of 2 years, 6 years, 10 years, whatever it may be. The journey is the important thing, making the steps now to make this possible is the important point, not the end goal.</p>\n\n\n\n<p>[00:31:11] <strong>Courtney Robertson:</strong> Absolutely true. Yes.</p>\n\n\n\n<p>[00:31:13] <strong>Nathan Wrigley:</strong> Okay, thank you.</p>\n\n\n\n<p>So I guess in order for this to happen, as with many things in WordPress, bodies need to be on the ground. We need people actually doing this work. There&#8217;s probably a whole lot of people listening to this who are already committing their time to translations, but there&#8217;s probably a lot of people who haven&#8217;t. So I guess we need to speak to them.</p>\n\n\n\n<p>Firstly, I suppose we need to reassure people that if in the future, if this project has wings and takes off and it all goes in this direction, that they will be educated in the new ways of doing things. But also a call out to people who haven&#8217;t yet committed their time and feel that they could commit their time. How do they go about doing it?</p>\n\n\n\n<p>So let&#8217;s tackle it in two parts. The first one, to people who are already translating, will there be education materials? Will there be instruction as to whatever comes out of this whole process?</p>\n\n\n\n<p>[00:32:04] <strong>Javier Casares:</strong> Okay. So for me, we will need two different teams. This is not a polyglots project in a way. Obviously everybody will be invited to participate on everything, but I don&#8217;t think that the same people translating WordPress plugins, themes or whatever, needs to be the same people translating documentation.</p>\n\n\n\n<p>So in a way, at least for me, because I think those are two very different things. As Courtney was saying, translating a plugin for example, or WordPress per se, maybe you need to be a little more literal in the translation. But documentation is different because people need to learn about what you are explaining. So you need to relate with that person.</p>\n\n\n\n<p>So in this case that&#8217;s the work Estela is doing. You need to know how to communicate to these people, and that&#8217;s very different than translating a thing. So for me, it&#8217;s not like translating documentation is adapting or doing your own documentation based on one in another language.</p>\n\n\n\n<p>So we don&#8217;t need to have the same documentation because, cultural things or whatever. Because not everybody in all the countries, in all the languages, use the same tools, the same things. So that&#8217;s one thing we need to have in mind. For example, as I was saying at the beginning, I just started leading the advanced administration handbook like one year or two years ago. That&#8217;s something Milana gave me as a gift in a way.</p>\n\n\n\n<p>So one thing I started, for me this is the pilot in the technical part, not in the documentation part. But now the only thing, or main thing we have in GitHub, in English, everything synchronised with WordPress, is the advanced admin handbook. So for me the next step is to do the technical part for this translation.</p>\n\n\n\n<p>We need to check also the technical part because writing right is one thing, but doing the thing is another step we need to check. And that creates a lot of new problems in a way. Because we have new content, we have updates, and we have changes in the documentation. Because it&#8217;s not the same changing or creating a new feature, because I don&#8217;t know the command palette and everything. It&#8217;s a new thing from one, two versions ago.</p>\n\n\n\n<p>So we need to create all the documentation. We need to notify everybody in all the languages that we have this new. So we need to translate everything and we need to check with the Polyglots team, how are you going to name the palette in your language and everything? Everybody should be involved in a way, because documenting in all the languages should be a global thing, not a local thing.</p>\n\n\n\n<p>And also, the notifications. We need to have like three levels in the translation part, because we need the translators. We need people doing the translation per se. And we need something like the GTEs. So people can check that the translation is doing fine, the translation is right. And we need project managers because each documentation is not the same. The advanced admin handbook, the end user documentation, the Learn WordPress whatever, the plugins handbook, the themes handbook, developers handbook. Each documentation needs one or two or a team that can control the publication that everything is right.</p>\n\n\n\n<p>For example, one thing we talk in WordCamp US was how we are going to relate it&#8217;s language? Because we don&#8217;t have that now. So if we publish the documentation in Spanish and somebody wants to go from this page to another language, how are we going to do that? Because that&#8217;s not something we have now.</p>\n\n\n\n<p>So we are trying to solve phase four before we have phase four. So we have a lot of challenge in the organisation and in the technical part. Also with the translation or the organisation about how we are going to talk to people. Because, for example, the Spanish for me is one of the best examples, because in Spain we have a more direct, we talk to people and in Latin American they talk in another way.</p>\n\n\n\n<p>So we need to find like a common ground because we cannot maintain the Spanish documentation in 12 or 15 different ways. So we need to create a standard or international Spanish. That&#8217;s something that more or less exists, but we cannot create a lot of different documentation. So we need to have that in the translation part. We need to have that documentation, that style guide. We need to have one international Spanish because we cannot maintain, we don&#8217;t have a lot of people maintaining some little languages or whatever, because it&#8217;s not possible right now in the WordPress ecosystem.</p>\n\n\n\n<p>[00:37:35] <strong>Nathan Wrigley:</strong> Thank you. That was really insightful. I got an awful lot out of that. I just have a little question off the back of that. So, is the intention then to build I guess more or less software to take care of this notification problem? And obviously there&#8217;s a lot more than notifications. There&#8217;s, you know, the work that needs to be done, and perhaps the order that it needs to be done, and who it&#8217;s going to be assigned to.</p>\n\n\n\n<p>Is the intention to have that as, if you like, paper based web pages or is the intention to have a piece of software that people can log into and assign themselves tasks, and offload tasks, and check things out, and then finally hit publish if something meets all of the different criteria? And it sounded like it was partially done but I don&#8217;t know if that&#8217;s falling on your shoulders Javier. Just a little guidance around that.</p>\n\n\n\n<p>[00:38:18] <strong>Javier Casares:</strong> Yeah. that was one of the main things we have pending. We started talking about this in WordCamp US, in the contributor day. Right now, for example, for the advanced admin handbook I&#8217;m going to lead everything in the Spanish part because I think we need to test everything, and I&#8217;m going to test this development part or whatever we are doing. I know Milana is doing it for the end user. She&#8217;s creating like teams in GitHub and doing actions and everything.</p>\n\n\n\n<p>She&#8217;s starting to automatising more or less the notifications and everything. So the main idea is we will have translation teams. So for example, the Spanish translation team, or the German translation team. And you will apply in those teams. And when something changed, in the English part, you will get a notification.</p>\n\n\n\n<p>For example, there is a new page. This document has changed because of whatever. So we need to inform people that we need a new version, or to update something, or to add something to the documentation. And then we need another step that when somebody translates something, it needs some checking or review or whatever. So we need like the GTEs in Polyglots more or less, the general translation editor. So people that know imperfection, the style guide or whatever. And they will check that this document is ready to be published.</p>\n\n\n\n<p>This is something we start talking and I think it will be something good for the project, is to create versions for the documentation. When we have 6.4 or 6.5 or whatever version, we can create a new batch of documentation, and we can create the 1.2 version of the end user documentation. So we can have a history of everything that changed, and we don&#8217;t need to put the documentation every day.</p>\n\n\n\n<p>So we can have a weekly or a monthly updating. So it&#8217;s control, it&#8217;s more like the WordPress. So everybody will know where the new version is going to be published. If you need to add this document, priorities or whatever. So that&#8217;s something we are working on now, but there are a lot of people involved testing different things.</p>\n\n\n\n<p>So for example, Estela is doing the documentation for Spanish. I&#8217;m testing the technical part. Milana is testing this notification system. So we need to check everything because we don&#8217;t really know if this project is going to be real, but we think it will be. But we need to check everything, and we need to do this in parallel because we cannot wait to have all the work from one person to do the next step.</p>\n\n\n\n<p>I think that&#8217;s something we are going to work on in the next contributor days in some places. At least in Spain I&#8217;m going to try to do this. And for example, that&#8217;s my next step in the documentation part, is going to test this technical part. How are we going to organise everything?</p>\n\n\n\n<p>So everybody is invited to participate. So if anybody wants to check things, we can talk. Probably in the Polyglots or the documentation channel in Slack. So I think a lot of people are doing the right steps right now, and before 2024 we have some pilot or something finished.</p>\n\n\n\n<p>[00:42:02] <strong>Nathan Wrigley:</strong> If you&#8217;ve ever been involved in creating software, you&#8217;ll know that the devil is in the detail. And although it&#8217;s easy to say what you&#8217;ve just said, I suspect that it will be fiendishly challenging.</p>\n\n\n\n<p>Firstly, good luck, I hope that your endeavors pay off. And it does sound like you would desperately want some people to cast their eyes over this.</p>\n\n\n\n<p>And we&#8217;ll get onto that in a moment. We&#8217;ll figure out a way where people can get in touch if they wish to. But you&#8217;re clearly all good people. You have the, what I&#8217;m going to describe as the right moral intentions here. You are giving up lots of your time for this worthy cause. Nobody could deny that this is a fabulous endeavor.</p>\n\n\n\n<p>But for people who are listening to this and sitting on the fence, thinking to themselves, what would I get out of translating? It&#8217;s a bit of an ephemeral question really, but I&#8217;m wondering if you could portray or explain to us, what do you get out of this? Apart from the fact that you&#8217;ve translated a software project, that much is obvious. But, do you get like a warm, fuzzy feeling out of this? Does it make you feel good? Is there a good community? Are there nice people sitting behind translation that you&#8217;ve become friends with? I&#8217;m trying to offer a path for people who kind of want to commit but haven&#8217;t committed, because they just see it as there&#8217;s more things to do on my plate each week.</p>\n\n\n\n<p>[00:43:13] <strong>Estela Rueda:</strong> I think that friendships, they just come. They are just like part of it. But that&#8217;s not the reason why I do it. For me it&#8217;s more about empowering people. I think that, you know, if I can translate more of the documentation in another language then there will be more plugin developers, or theme developers, or agencies in that country. And then you will empower people. You will empower more people because they will be able to start their own businesses, you know, create their own little plugins and start small like we all did at some point, and then become bigger and bigger.</p>\n\n\n\n<p>I don&#8217;t know, I kind of took into that Matt&#8217;s dream about a hundred years. I think that if we open everything up for more countries, more cultures to join, then WordPress will be bigger and bigger and more people will use it.</p>\n\n\n\n<p>[00:44:10] <strong>Nathan Wrigley:</strong> Thank you so much, Courtney. I think maybe you want to chip in there.</p>\n\n\n\n<p>[00:44:13] <strong>Courtney Robertson:</strong> I really love solving complex puzzles. And so if we look, devils in the details. Relaying communications between docs and training becomes pretty important. So not only do we want to leverage Milana&#8217;s system about the GitHub actions, some of that automation work that can notify people in other languages. But also the communication between the teams about the same topics or the areas in which our topics overlap. It&#8217;s a fun thing for me to do that.</p>\n\n\n\n<p>But then in addition, as I kind of look more broadly like Estela, I firmly believe in empowering others. And that&#8217;s really what open source and the four freedoms give us. You are free to do what you would like with this thing.</p>\n\n\n\n<p>So to make that possible my method is to solve big problems, I guess. To work on these interesting challenges so that more people can leverage what&#8217;s going on and get involved along the way, and have mentors and others to connect with. Because for every time that I felt personally like I didn&#8217;t know what was going on, or I didn&#8217;t understand the value that I brought, or understand how I could start contributing with something small, I want to remove those barriers for other people. I want to make their lives a lot better from that process.</p>\n\n\n\n<p>[00:45:34] <strong>Nathan Wrigley:</strong> What a fabulous set of answers. Thank you so much.</p>\n\n\n\n<p>We&#8217;re running short of time. I guess the only thing that we should say before we wrap up is to give out a shout to people who are sitting on the fence, who haven&#8217;t contributed so far. What is the best way, the quickest route to finding out more? Is there a particular page that you would highlight more than any others? Is there a particular venue to go to? Is this a contributor day kind of thing? What would you recommend? We could take that one at a time. So let&#8217;s start with, well let&#8217;s go back to Courtney.</p>\n\n\n\n<p>[00:46:05] <strong>Courtney Robertson:</strong> Sure. Since our process looks a little bit different than what you see in Docs, for instance, I would encourage folks to swing by the training team. You can find our main site at make. wordpress. org slash training. There is a handbook in our top navigation area and inside of that has some information on how to get started with content localization. I&#8217;ll make sure that we have all those show notes. As well as a GitHub issue to log if you want to take part in that translation effort.</p>\n\n\n\n<p>And for those inside the WordPress project that are really skilled with amazing things like GitHub Actions, if you understand how to make GitHub automate some stuff, there is a channel if you search for GitHub inside of the channels area, you&#8217;ll find a channel where we share tips and tools about GitHub activity.</p>\n\n\n\n<p>[00:46:51] <strong>Nathan Wrigley:</strong> Thank you so much, Courtney. Estela, anything that you wanted to add?</p>\n\n\n\n<p>[00:46:55] <strong>Estela Rueda:</strong> You can go into documentation Slack channels. We meet on Tuesdays, 2 PM UTC, and just join us. And then we can talk about it. We are trying to look now for Documentation writers, but they are also bilingual. So they do need to dominate at least one word so that they can help us in the future once we move into their own language.</p>\n\n\n\n<p>We have, actually the documentation team is, most of us are non English speakers. English is not our first language, so we have a lot of people that speak other languages, and they do help when it&#8217;s necessary. Now, we have several posts. I&#8217;m posting, like I said, I&#8217;m documenting what I&#8217;m doing, and we&#8217;ll be documenting it both in Documentation and polyglots, and just pick it up from there. Join the polyglots team. They are open to every language, or every Rosetta side, locale team. They all need contributors. They all need translators. So that&#8217;s the best way.</p>\n\n\n\n<p>[00:48:01] <strong>Nathan Wrigley:</strong> Thank you so much. And Javier, if you&#8217;ve got anything to add there.</p>\n\n\n\n<p>[00:48:05] <strong>Javier Casares:</strong> Yeah. In my case if anybody wants to check the most technical part or be involved in the testing, they can ask me directly in Slack. Because right now it&#8217;s like I&#8217;m doing the test alone. I probably when I do the main testing, I will explain everything because we did the proposal in the make.wordpress.org slash project. You can look for a proposal, documentation, translation, localization.</p>\n\n\n\n<p>That&#8217;s the main document explaining everything. It explains why we are doing this. How we are going to do that. I think, right now, Estela, Courtney, Milana, and I are the ones involved. So another way is to, at least for this project, is to contact us, and we will try to put you in the right place to contribute.</p>\n\n\n\n<p>Yeah, we are always open to help people. So another way is to contact directly to us.</p>\n\n\n\n<p>[00:49:09] <strong>Nathan Wrigley:</strong> Well, Thank you so much, the three of you, for joining us today. Thank you Courtney, Estela, and Javier. I really appreciate it. Obviously, a very complicated set of challenges to come, but hopefully with your and other people&#8217;s contributions, WordPress will be readable by all the world. Thank you so much for your contributions today.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>, <a href=\"https://courtneyr.dev/\">Courtney Robertson</a> and <a href=\"https://wordpress.org/support/users/javiercasares/\">Javier Casares</a>.</p>\n\n\n\n<p>Courtney is a former teacher who now focuses on contributing to WordPress. With a background in education, she understands the challenges faced by English Second Language (ESL) learners in the American education system. She’s passionate about providing access to WordPress in multiple languages, as she believes it is unfair to expect non-English speakers to simultaneously translate content and understand it.</p>\n\n\n\n<p>Estela is a language enthusiast who has spent years navigating the challenges of website localization. As a member of the WordPress community, Estela has come across the intricacies of language differences and the need for accurate translation in various Spanish locales. With 14 different Spanish locales to handle, Estela&#8217;s expertise in understanding the subtle nuances and localizations of each language variation has been indispensable.&nbsp;</p>\n\n\n\n<p>Javier Casares is a dedicated member of the WordPress community. With expertise in creating documentation, Javier has been instrumental in developing handbooks for various sites. However, there have been some technical challenges. Despite these obstacles, Javier, as you will hear, remains committed to addressing and solving the documentation issues at hand.</p>\n\n\n\n<p>This episode covers the important topic of translations and making WordPress documentation more accessible to people worldwide. Our guests bring a wealth of knowledge and experience to the table as they discuss the complexities and challenges of language translation in the WordPress ecosystem.</p>\n\n\n\n<p>We start by highlighting challenges posed in translating WordPress, such as the tangled processes currently in place, as well as more language focussed topics. We talk about the extensive collaborative effort involved in translating WordPress and the plans to expand translation efforts to documentation with the help of dedicated teams.</p>\n\n\n\n<p>We get into how contributors might need to rethink the way that&nbsp; many of the current translation processes are structured. We discuss the different approaches needed for translating plugins and themes versus documentation. We touch upon how technical aspects of these processes, such as content creation and updates, also pose significant challenges.</p>\n\n\n\n<p>All three guests stress the importance of global involvement in translation efforts, including translators, reviewers, and project managers. They advocate for the development of standardised style guides for each language to maintain consistency, and they explore the possibility of creating software or tools to manage translation tasks.</p>\n\n\n\n<p>Courtney, Estela, and Javier all acknowledge the challenges ahead, but express optimism that their ideas will help make WordPress accessible for all. Communicating how WordPress is built and how it works is an endeavour tightly aligned with the project&#8217;s overall mission of democratising publishing.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Notes provided by the guests</h2>\n\n\n\n<p>We want to offer non-English speaking people the possibility to access all the WordPress documentation in their language. To accomplish that we need to translate all the actual documentation at HelpHub, DevHub, Learn WordPress and some Handbooks.</p>\n\n\n\n<p>But, the problems are not to do the translations per sé, but where to put that in each language, how to get the updates from the English primary documentation, and then how to maintain everything in place.</p>\n\n\n\n<p>First, we need to know where are we putting the documentation, because this project cannot wait until Gutenberg Phase 4. This means that Local Communities should be involved here (for example, where are we putting the documentation in Spanish? es.wordpress.org/documentation, developer.es.wordpress.org?)</p>\n\n\n\n<p>After having the right place&#8230; how are we going to know if something changes? The best way is probably using the same way we are translating right now: translate.wordpress.org, (GlotPress). If we can use this platform, each page can be translated and, when arrived to the 90% threshold, it will be shown in the local language page.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Links provided by the guests</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/polyglots/2023/08/15/discussion-for-a-proposal-for-wp-org-content-translation-and-localization/\">Discussion for a proposal for WP.org content translation and localization</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/docs/2023/01/24/new-look-new-site-new-helphub/\">New look, new site, new HelpHub</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/docs/2023/02/07/future-plans-for-helphub/\">Future plans for HelpHub</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/handbook/training-team-how-to-guides/content-localization/\">Content Localization</a></p>\n\n\n\n<p><a href=\"https://github.com/WordPress/Learn/issues/new?assignees=&labels=Awaiting+Triage%2C+Translation%2C+Needs+Translation+Reviewer&projects=&template=content-translation.md&title=LANGUAGE+translation+for+CONTENT+TYPE+%22CONTENT+TITLE%22\">GitHub&#8230; Issue: Content Translation Template</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/project/2023/09/06/documentation-translation-localization/\">Proposal: Documentation translation / localization</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://developer.wordpress.org/advanced-administration/\">WordPress Advanced Administration Handbook</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/polyglots/handbook/for-locale-managers/rosetta-for-the-community/\">Rosetta for the Community</a></p>\n\n\n\n<p>Previous podcast episodes with <a href=\"https://wptavern.com/podcast/93-piermario-orecchioni-on-how-and-why-wordpress-gets-translated\">Piermario</a> and <a href=\"https://wptavern.com/podcast/91-vagelis-papaioannou-on-how-to-learn-to-use-wordpress-and-help-with-events\">Vagelis</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Nov 2023 15:15:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:58:\"Do The Woo Community: Do the Woo Day 2 Recap, WooSesh 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=77699\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://dothewoo.io/do-the-woo-day-2-recap-woosesh-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:370:\"<p>Conversations around AI and customer support, Amazon Pay, personalization and privacy in ecommerce and shipping trends.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/do-the-woo-day-2-recap-woosesh-2023/\">Do the Woo Day 2 Recap, WooSesh 2023</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Nov 2023 12:23:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:49:\"HeroPress: From Sci-fi Dreams to Software Reality\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=5985\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"https://heropress.com/essays/from-sci-fi-dreams-to-software-reality/#utm_source=rss&utm_medium=rss&utm_campaign=from-sci-fi-dreams-to-software-reality\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7038:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/11/103123.webp\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Failures are just milestones, not endpoints.\" /><p>Growing up, my family didn&#8217;t have much. Yet, a quote always resonated with me: &#8220;If you&#8217;re born poor, it&#8217;s not your fault. But if you die poor, it&#8217;s your fault.&#8221; My humble beginnings never deterred my aspirations.</p>\n\n\n\n<p>As a child, my exposure to technology was limited. In our village, neither schools nor homes had computers or mobile phones. My fascination with technology was sparked by sci-fi movies I watched on television, where characters operated these machines called &#8220;computers.&#8221;. That first moment when I laid my eyes on a computer, I knew my life was about to change. The real encounter with a computer came in 2006 when a neighbor purchased one.</p>\n\n\n\n<h2 class=\"kt-adv-heading5985_7896f3-28 wp-block-kadence-advancedheading\">Finding The Internet</h2>\n\n\n\n<p>In 2008, My family moved to the town and it opened up a world of opportunities. Later that year a friend introduced me to a Cyber Café, where for just 20 Indian Rupees (24 cents US), I could play games for an hour. After saving the money for two weeks, I visited the café for the first time. Over time, my interest shifted from playing games to exploring the computer itself. It was a Windows XP machine, and I recall being intrigued by its features. This exploration continued almost every month for the next two to three years.</p>\n\n\n\n<p>By 2011, I had become proficient with the internet and was familiar with operating systems like Windows, Linux, and Mac. That year, my father bought me my first phone, a Nokia 7210 Supernova. While it wasn&#8217;t a smartphone, it sparked my curiosity about the creation of software and websites. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>I researched &#8220;how to make a website&#8221; and encountered HTML and CSS. </p>\n</blockquote>\n\n\n\n<p>Initially overwhelmed by the complexity, I decided to push forward, and by the end of the year, I had launched my first website using an online builder and my Nokia phone.</p>\n\n\n\n<h2 class=\"kt-adv-heading5985_4d0263-45 wp-block-kadence-advancedheading\">Teaching Myself, Teaching Others</h2>\n\n\n\n<p>My passion for technology only grew from there. I self-taught programming languages like JavaScript, PHP, Python, Java, C, and C++. I also learned computer hardware maintenance and served as a go-to tech helper in my community. Impressively, I became a full-time Teacher and SysAdmin for a local school, managing five servers and around a hundred computers. All of this knowledge came from internet tutorials.</p>\n\n\n\n<p>I truly developed a passion for web technologies. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>My first encounter with WordPress.com in 2012 was underwhelming, as I perceived it to be just another blogging platform like blogger.com. </p>\n</blockquote>\n\n\n\n<p>Yet, a few months later, my discovery of WordPress.org profoundly shifted my perspective. By 2014, I had set up my own WordPress blog. Despite juggling a demanding college schedule and coursework, I consistently set aside time each night to keep up with the latest developments in WordPress and other web technologies. Much of what I&#8217;ve learned comes from the generosity of online communities. In gratitude, I&#8217;m eager to share my own experiences, hoping to guide others on similar paths.</p>\n\n\n\n<p>Being a teacher was a fulfilling and enjoyable experience. One of the highlights for me was the opportunity to share my knowledge with the children and witness their growth and development. Teaching stands out as one of the most rewarding endeavors of my life.</p>\n\n\n\n<h2 class=\"kt-adv-heading5985_5fbc60-f3 wp-block-kadence-advancedheading\">Shifting Gears</h2>\n\n\n\n<p>Driven by a strong desire to delve deeper into web technology, I realized I had become too comfortable in my current role, working as a Teacher. In October 2020, I made the difficult decision to leave my teaching position and venture into the realm of Web Technologies. This decision did not come easily, as I had no alternate source of income and my savings were limited, only sufficient to last a few months. For the next three months, I found myself unemployed, but I utilized this time to extensively explore web technology, with a particular focus on WordPress.</p>\n\n\n\n<p>Despite grappling with imposter syndrome at the time, I was completely unaware of its impact on me. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>I found myself reluctant to apply for job positions at various companies, filled with doubt about my abilities, and questioning whether I had acquired sufficient knowledge or was proficient enough to undertake the work. </p>\n</blockquote>\n\n\n\n<p>What I failed to realize then was that all I needed was a little push—a smidgen of encouragement—to help me advance with the skills and knowledge I possessed. I am immensely grateful to Topher DeRosia for providing me with that much-needed push. His encouragement was priceless, and it spurred me to send my resume to three different WordPress-related companies. To my delight and relief, I received a response from one of them.</p>\n\n\n\n<p>From those early days in the cyber café to securing a position at rtCamp, my journey has been anything but ordinary. In light of my experiences and the passion I developed from my early encounters with technology, I secured a position as a WordPress developer at rtCamp in February 2021. This was a significant milestone for me, especially recalling my days without a computer in my village and the hours spent in cyber cafes learning the complexities of the digital world. The journey to this point was challenging, especially since I navigated it largely on my own, without a mentor or assistance from anyone./</p>\n\n\n\n<h2 class=\"kt-adv-heading5985_0a7790-86 wp-block-kadence-advancedheading\">Because Of WordPress&#8230;</h2>\n\n\n\n<p>Now, working full-time with WordPress, not only am I able to comfortably cover my bills, but I can also provide for my family. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Most crucially, it has enabled me to fund my brother’s necessary neurological treatments. </p>\n</blockquote>\n\n\n\n<p>I’m delighted to share that he has successfully recuperated and no longer requires medication.</p>\n\n\n\n<p>Throughout this path, I&#8217;ve faced countless challenges, sleepless nights, and stress. Yet, one truth remains clear: moving forward, no matter the obstacle. Failures are just milestones, not endpoints. With perseverance, success is not just a destination but a beautiful journey. If you’re facing doubts about your abilities, remember, we all start somewhere. It’s the perseverance that counts.</p>\n<p>The post <a href=\"https://heropress.com/essays/from-sci-fi-dreams-to-software-reality/\">From Sci-fi Dreams to Software Reality</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Nov 2023 00:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Tremi Dkhar\";s: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:37:\"WPTavern: WooCommerce Rebrands as Woo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=150841\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/woocommerce-rebrands-as-woo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2569:\"<p>WooCommerce is <a href=\"https://woo.com/posts/say-hello-to-woo-com/\">rebranding</a>  to &#8220;Woo,&#8221; a shorter, more playful version of the company name that many customers are already using.  <a href=\"https://wptavern.com/automattic-acquires-woocommerce\">Automattic acquired WooCommerce</a> in 2015, along with WooThemes. The open source commerce platform now powers more than 4.4 million live websites, including 33% of the top 1 million online stores.</p>\n\n\n\n<p>The rebranding extends to the Woo Marketplace, WooExperts program, and all other aspects of the Woo experience. It also includes a migration of WooCommerce.com to the <a href=\"https://woo.com/\">woo.com</a> domain.</p>\n\n\n\n<p>&#8220;&#8216;Woo&#8217; is how many loyal customers have referred to us for years. And now we’re leaning into that name for our company and brand,&#8221; Woo VP of Creative and Communications David Callaway said. &#8220;It’s a fun, punchy name that shows how excited we are to empower success for merchants and developers. Switching to Woo.com is part of this larger strategy.</p>\n\n\n\n<p>&#8220;The move to Woo also allows us to standardize and streamline the names of our products and services. For example, we recently renamed WooCommerce Payments to WooPayments, and we’re gradually changing other product names to support this simplified naming system and better connect our core software, extensions, and programs.&#8221;</p>\n\n\n\n<p>Callaway also noted that while Woo is how they refer to the brand and company, WooCommerce is the open-source e-commerce platform for WordPress, Woo&#8217;s core product. </p>\n\n\n\n<p>Woo Express is another recently launched product that already bears the shorter name. During the <a href=\"https://wptavern.com/state-of-the-woo-2023-woocommerce-highlights-ai-powered-future-and-continued-core-blockification\">2023 State of the Woo</a>, delivered at WooSesh, the team highlighted a few milestones for Woo Express, the company&#8217;s all-in-one Woo plan hosted on WordPress.com&#8217;s infrastructure. It launched in 2023 as what the team described as “Woo’s biggest bet ever.” Free trials began in April 2023 and by July 2023, Woo Express had more than 1,000 customers. It features a new onboarding flow and store personlization experience for merchants, with a setup guide and recommendation engine powered by an AI-driven assistant.</p>\n\n\n\n<p>Woo customers will not be affected by the name change, although merchants may see a note about it in their dashboard or emails. No action is required from store owners.</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, 31 Oct 2023 12:51:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:44:\"Do The Woo Community: Do the … Woo dot Com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=77718\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://dothewoo.io/do-the-woo-dot-com/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:335:\"<p>Inside Woo. Today the WooCommerce site becomes Woo.com as a strategic part of their branding and product line. </p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/do-the-woo-dot-com/\">Do the &#8230; Woo dot Com</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</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, 31 Oct 2023 12:12: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:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:58:\"Do The Woo Community: Do the Woo Day 1 Recap, WooSesh 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=77694\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://dothewoo.io/do-the-woo-day-1-recap-woosesh-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:372:\"<p>Day one started with State of the Woo, conversations on open source and hosting, scalable ecommerce and website security.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/do-the-woo-day-1-recap-woosesh-2023/\">Do the Woo Day 1 Recap, WooSesh 2023</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</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, 31 Oct 2023 10:54:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:65:\"WPTavern: WP Data Dashboard Tracks WordPress.org Themes Ecosystem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=150809\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/wp-data-dashboard-tracks-wordpress-org-themes-ecosystem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7244:\"<p>Munich-based digital agency owner Hendrik Luehrsen has been <a href=\"https://docs.google.com/spreadsheets/d/11X38e9w86XcgT4tybqfjKhrL0PIbDlIsUEJwLiKtJ7Q/edit#gid=931695972\">tracking the usage of themes with the FSE tag</a> (block themes) using a spreadsheet that pulls in data from the WordPress.org API. Wrangling the data in a spreadsheet became too cumbersome, so Luehrsen launched <a href=\"https://www.wp-data-dashboard.com/\">WP Data Dashboard</a> over the weekend as a &#8220;centralized hub for exploring, analyzing, and visualizing data across the WordPress landscape.&#8221;</p>\n\n\n\n<p>The new website is currently tracking 6,017 themes hosted on WordPress.org with 250 snapshots. It offers stats and data-based insights for those interested in getting a bird&#8217;s-eye view on themes hosted in the official directory.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1280\" height=\"684\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/10/image-4.png\" alt=\"\" class=\"wp-image-150818\" />\n\n\n\n<p>&#8220;Right now, the WP Data Dashboard has one main function: It crawls the WordPress Theme Repo (API) and crunches the numbers to identify trends,&#8221; Luehrsen said. &#8220;With the data stored in my own database, I can analyze and combine it in exciting new ways.&#8221;</p>\n\n\n\n<p>WP Data Dashboard has two unique stats that are interpretations of the data available. The first is a &#8220;Usage Score,&#8221; which is calculated based on a theme&#8217;s active installs vs. total downloads:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>A high score indicates a theme that not only has been downloaded frequently but also remains actively installed on many sites. The score undergoes a significant decay if the proportion of active installs to downloads is low, indicating that while the theme might be frequently downloaded, it&#8217;s not retained by users. This metric provides insight into both the initial appeal of a theme and its lasting utility to users.</p>\n</blockquote>\n\n\n\n<p>The second unique stat is a &#8220;Diversity Score,&#8221; which compares the downloads of a single theme author to the overall theme directory (or a tag) and scales that value from 0 to 100:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>A high score indicates that downloads are spread across many authors, suggesting a diverse and competitive marketplace. On the other hand, a low score suggests that a few authors dominate the downloads, indicating less diversity. This metric provides insight into the variety of theme offerings and the balance of power in the theme marketplace.</p>\n</blockquote>\n\n\n\n<p>The Usage Scores can be seen on the <a href=\"https://www.wp-data-dashboard.com/themes/list\">List</a> page, which is an index of all the themes, as well as on the <a href=\"https://www.wp-data-dashboard.com/themes/tags/\">Tag</a> pages.  </p>\n\n\n\n<img width=\"739\" height=\"575\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/10/image-5.png\" alt=\"\" class=\"wp-image-150825\" />\n\n\n\n<p>The Diversity Score is only displayed on the <a href=\"https://www.wp-data-dashboard.com/themes/stats/\">Stats</a> page as a percentage representing the entire WordPress.org ecosystem. The Diversity score goes up when the stats are calculated without the default themes, which get a large number of downloads from the same &#8220;WordPress.org&#8221; author every year.</p>\n\n\n\n<img width=\"1057\" height=\"808\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/10/image-6.png\" alt=\"\" class=\"wp-image-150826\" />\n\n\n\n<p>In a <a href=\"https://twitter.com/hluehrsen/status/1718689888848023568\">thread on X</a>, Luehrsen highlighted a few data points he has extracted so far from the dashboard. </p>\n\n\n\n<p>&#8220;Fun fact: Did you know that the most downloaded themes ever are Twenty Seventeen, Twenty Fifteen, and Astra?&#8221; he said. &#8220;Each has crossed over 10 million downloads! But only Astra managed to retain its users and remains today as one of the most widely used themes.</p>\n\n\n\n<p>&#8220;What&#8217;s somewhat surprising is the decline in downloads for the newer default themes. While Twenty-Twenty garnered over 8 million downloads, Twenty Twenty-One managed only 6 million, and Twenty Twenty-Two a mere 3 million.&#8221;</p>\n\n\n\n<p>This may be related to the <a href=\"https://wptavern.com/contentious-review-process-leads-ollie-theme-to-remove-innovative-onboarding-features-amid-stagnating-block-theme-adoption\">slow adoption</a> of block themes, which still <a href=\"https://docs.google.com/spreadsheets/d/11X38e9w86XcgT4tybqfjKhrL0PIbDlIsUEJwLiKtJ7Q/edit#gid=931695972\">appears to be stagnating</a> at the end of October. The number of block theme active installs declined from August to September, but is now inching its way back up to previous numbers.  </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1138\" height=\"283\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/10/image-7.png\" alt=\"\" class=\"wp-image-150828\" />\n\n\n\n<p>&#8220;Did you know that only 2% of overall theme downloads come from themes tagged as &#8216;<a href=\"https://www.wp-data-dashboard.com/themes/tag/full-site-editing\">Full Site Editing</a>&#8216;?&#8221; Luehrsen said. &#8220;Given that they&#8217;re relatively new, it&#8217;s not too surprising!&#8221;</p>\n\n\n\n<p>When asked if he has considered trying to include numbers for themes like Elementor and Divi, which make up a large segment of the commercial theme market, Luehrsen said he would like to include external data but the compatibility of that data would be very limited, which in turn limits comparability with WordPress.org-hosted themes.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Have you considered trying to include numbers for themes like Elementor and Divi? At the very least using resources such as BuiltWith? Elementor’s are eye opening. Absolutely dwarfs everything. Divi’s also higher than any on that list. The fragmentation is huge.</p>&mdash; Carl Hancock <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f680.png\" alt=\"🚀\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e8-1f1f7.png\" alt=\"🇨🇷\" class=\"wp-smiley\" /> (@carlhancock) <a href=\"https://twitter.com/carlhancock/status/1718762077156757510?ref_src=twsrc%5Etfw\">October 29, 2023</a></blockquote>\n</div>\n\n\n\n<p>The WP Data Dashboard is a useful way to track trends in WordPress.org themes over time, and the site appears primed to add data for plugins at a future date. It would be even more helpful if Luehrsen could make some of the calculated data available for visitors at a glance, such as 2% of overall theme downloads coming from <a href=\"https://www.wp-data-dashboard.com/themes/tag/full-site-editing\">Full Site Editing</a> tagged themes. There are a lot of ways this data could be visualized with graphs and charts in the future, as the database adds more information over time. </p>\n\n\n\n<p>The project is <a href=\"https://github.com/luehrsenheinrich/wp-data-dashboard\">hosted on GitHub</a> under a GPL license, so anyone can dig deeper into the code to see how it works or submit contributions to extend its capabilities.</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, 30 Oct 2023 20:30:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:63:\"WordPress.org blog: WP Briefing: Episode 65: Little Sun Success\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=16227\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2023/10/episode-65-little-sun-success/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21522:\"<p>Join WordPress Executive Director Josepha Haden Chomphosy as she looks at a recent WordPress success story, the clean energy solution Little Sun, and learns about their WordPress story.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br />Special Guest: Romane Guégan<br />Special Guest: Ashley Mrozek <br />Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br />Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li>Website: <a href=\"https://littlesun.org/\">Little Sun</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/10/state-of-the-word-2023/\" target=\"_blank\" rel=\"noreferrer noopener\">State of the Word</a> &#8211; This year&#8217;s annual keynote, State of the Word, will be on December 11. Save the date to hear the WordPress project&#8217;s co-founder, <a href=\"https://ma.tt/\" target=\"_blank\" rel=\"noreferrer noopener\">Matt Mullenweg</a>, share reflections on the project&#8217;s progress and aspirations for the future of open source.</li>\n\n\n\n<li>Celebrating 10,000 Photos in the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a> &#8211; On October 11, the 10,000th photo was approved! <a href=\"https://make.wordpress.org/photos/\" target=\"_blank\" rel=\"noreferrer noopener\">The Photo Team</a> is one of the newest ways to contribute to the WordPress open source project. </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/10/18/community-team-training-11-using-the-translate-live-tool/\" target=\"_blank\" rel=\"noreferrer noopener\">Community Team Training #11: Using the Translate Live tool</a>&nbsp;&#8211; Uncover the potential of the &#8220;Translate Live&#8221; tool, which is ideal for presenting at local meetups to engage and onboard new translators for your native language. If you&#8217;re organizing a WordCamp, consider introducing this tool during your Contributor Day.</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/10/a-new-wordpress-showcase/\" target=\"_blank\" rel=\"noreferrer noopener\">A New WordPress Showcase</a>&nbsp;&#8211; The&nbsp;journey to update&nbsp;<a href=\"https://wordpress.org/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress.org</a>&nbsp;continues with the launch of a new&nbsp;<a href=\"https://wordpress.org/showcase/\" target=\"_blank\" rel=\"noreferrer noopener\">Showcase</a>&nbsp;design. The Showcase is a natural starting point for visitors arriving on&nbsp;WordPress.org, and it both inspires creativity and demonstrates what&#8217;s possible with WordPress.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-16227\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> 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>[00:00:28] (Intro music)&nbsp;</p>\n\n\n\n<p>[00:00:40] <strong>Josepha:</strong> Today, I&#8217;ve got a special guest with me. I have here a couple of folks from Little Sun, a nonprofit organization that recently moved its entire online presence to WordPress. And we&#8217;re talking everything from their mission statement and donations all the way to their blog and shop.</p>\n\n\n\n<p>Welcome both to the WordPress Briefing.&nbsp;</p>\n\n\n\n<p>[00:00:59] <strong>Ashley:</strong> Thank you.</p>\n\n\n\n<p>[00:01:00] <strong>Romane:</strong> Thank you.&nbsp;</p>\n\n\n\n<p>[00:01:01] <strong>Josepha:</strong> We have with us Little Sun today. Can you start by introducing yourselves and your organization? Just tell us a little bit about what you all do.&nbsp;</p>\n\n\n\n<p>[00:01:08] <strong>Romane:</strong> Hi, my name is Romane Guégan. I&#8217;m a Senior Press and Communications Manager at Little Sun.&nbsp;</p>\n\n\n\n<p>[00:01:14] <strong>Ashley:</strong> And I am Ashley Mrozek. I&#8217;m the Senior Digital Manager.&nbsp;</p>\n\n\n\n<p>[00:01:17] <strong>Josepha:</strong> So what does Little Sun do for the folks who are listening and maybe don&#8217;t know about it yet?&nbsp;</p>\n\n\n\n<p>[00:01:22] <strong>Romane:</strong> Little Sun brings full power and light to communities that live off the grid, with the focus on sub-Saharan Africa because most of the people who lack access to electricity and need them. And we also inspire people to take climate action globally.&nbsp;</p>\n\n\n\n<p>[00:01:39] <strong>Ashley:</strong> So access to solar energy helps kids who don&#8217;t have electricity and study at night. They can complete their homework at night. If their schools are in a more rural area, they will have a light to kind of guide them back home.</p>\n\n\n\n<p>We also work on a lot of electric vocation projects and hospitals. So we&#8217;re, we&#8217;re kind of supporting labors that are, are taking place in the evening, after the sun goes down, among other things.&nbsp;</p>\n\n\n\n<p>[00:02:07] <strong>Josepha:</strong> Yeah. It&#8217;s, I, I think that that is one of the things that folks, probably most of my listeners, probably take for granted, like the easy access to light. And as we all know, the sun is around a lot. And so that is one of our most readily available resources other than potentially wind power. But I think that that is a great mission. And I really think that that&#8217;s wonderful work that y&#8217;all are doing.</p>\n\n\n\n<p>So, is there a particular reason that you focus on sub-Saharan Africa? Is that where you find a majority of people who don&#8217;t have access to that kind of resource are?&nbsp;</p>\n\n\n\n<p>[00:02:43] <strong>Romane:</strong> Yeah. 70% of those people actually need in sub-Saharan Africa, where solar is actually a viable source of energy. Actually, it&#8217;s only 1% of solar, of the solar capital of the generation when we actually deliver solar energy there because there is so much potential.</p>\n\n\n\n<p>[00:03:04] <strong>Josepha:</strong> That&#8217;s amazing. So you said that you all were funded in 2012. I imagine that your business has evolved over time. So, obviously, you all are WordPress users. That&#8217;s why we have you here with us today. But before we get into the questions about WordPress itself. Why don&#8217;t you tell us a bit about how your business needs evolved over time and how you wound up needing a solution that did use WordPress?</p>\n\n\n\n<p>[00:03:31] <strong>Ashley:</strong> So I would say our focus and kind of the different initiatives that we&#8217;ve taken on since 2012 have shifted a lot based on various reasons, where our donors are, where we&#8217;ve kind of found the most need, and where we can be the most impactful.</p>\n\n\n\n<p>And I think as we go into those new geographies, our online presence has become more and more important.&nbsp;</p>\n\n\n\n<p>[00:03:55] <strong>Josepha:</strong> So, before you all switched to WordPress, I understand that you had several sites that you had to merge into one. And so I assume that as you evolved the business and your focus has changed, you realized you needed something a bit more streamlined. So, how was that transition, that migration from a lot of different sites to one big site?&nbsp;</p>\n\n\n\n<p>[00:04:17] <strong>Romane:</strong> Yeah, because we started as a global project. And then, with the time, we evolved, actually also getting new donations. And in the past, we used to have one website where we have our webshop and our mission, our vision, all of our project descriptions.</p>\n\n\n\n<p>But then we had another website only for the foundation. And then you had another foundation in the U.S. So it was the question, okay, how do we put everything together? So we actually switched from littlesun.com to littlesun.org with WordPress, and it was amazing to see how we managed with the team to create an ecosystem approach, including impact, but also sales, and fundraising.&nbsp;</p>\n\n\n\n<p>[00:05:02] <strong>Josepha:</strong> That was a big footprint that you all had, and you kind of consolidated it into one. And for all of our folks listening on the podcast, I&#8217;m going to include some links, not only to their site but then also to a few other things that we&#8217;ve mentioned in here today. So, since you made that change, how has it, how has that impacted the way that you all work with your site or with your online presence?</p>\n\n\n\n<p>[00:05:27] <strong>Ashley:</strong> Yeah, I think using WordPress and having access to WordPress has been hugely valuable for us. We&#8217;re a small team, we&#8217;re a nonprofit, so it is pretty scrappy. Everyone is kind of doing a lot of different things. We don&#8217;t have a dedicated development team. And so being able to easily customize our pages and create new landing pages or make adjustments on the site without that development help has been valuable.</p>\n\n\n\n<p>[00:05:55] <strong>Josepha:</strong> Yeah, so you don&#8217;t have a developer team now. Did you have a developer team when you had all the sites?&nbsp;</p>\n\n\n\n<p>[00:06:01] <strong>Romane:</strong> We just still work with freelancers. </p>\n\n\n\n<p>[00:06:03] <strong>Josepha:</strong> Okay, yeah. I am also not a developer, for what it&#8217;s worth, and have been working with nonprofits for a while. And I understand that problem where you have all these things you need to do and want to do, but there are also things you absolutely have to focus on in order to make your mission possible and your vision come true.</p>\n\n\n\n<p>[00:06:23] <strong>Ashley:</strong> Yeah, and I think, I think WordPress has given us a lot more, like a lot more flexibility to kind of produce new content quickly. And because of that, it&#8217;s just been a lot more efficient, too, for us, you know.&nbsp;</p>\n\n\n\n<p>[00:06:38] <strong>Josepha:</strong> And you all are using Blocks? Are you, like, the best Block builders?</p>\n\n\n\n<p>[00:06:42] <strong>Romane:</strong> Yeah, I love Blocks.&nbsp;</p>\n\n\n\n<p>[00:06:43] <strong>Josepha:</strong> Blocks are a fairly new innovation for the history of WordPress. WordPress has been around for 20 years, so we&#8217;re a nice, mature project. And we&#8217;ve really only had blocks as a functional part of the CMS for probably the last five or so. We&#8217;ve been working on the project a little bit longer. And it has been fascinating to me, like, in my own work that I have done with WordPress, kind of outside of my work with the project, to see, like, how much autonomy you get to have back as somebody who is not a developer, maybe isn&#8217;t a designer, but you do know exactly what you need to have on your site today, right?</p>\n\n\n\n<p>And having to stop and find a freelancer or stop and find some set of developers who can make those changes. For me, when I was specifically working on nonprofit stuff. That was always kind of a moment where I was like, well, I guess I&#8217;ll just go to Facebook and put that on there or something because I was faster than trying to find someone to come help you. And so, I&#8217;m so glad you love the block.</p>\n\n\n\n<p>[00:07:48] <strong>Ashley:</strong> We&#8217;ve created many a landing page.&nbsp;</p>\n\n\n\n<p>[00:07:50] <strong>Josepha:</strong> Also, your site is adorable, and your brand is adorable, in case no one&#8217;s mentioned that lately. Super cute. Super cute.</p>\n\n\n\n<p>[00:07:58] <strong>Josepha:</strong> So, we&#8217;ve talked about how you kind of took a bunch of stuff and made it into one big thing and how that&#8217;s been easier for you all to manage it. But from the standpoint of just, like, somebody who&#8217;s running a nonprofit, someone who&#8217;s running an organization, how has that transition been for your team? I know you said you don&#8217;t have a huge team, but was the move toward WordPress a net benefit over time, or was it immediately beneficial? Like, how has that been for your team? </p>\n\n\n\n<p>[00:08:27] <strong>Romane:</strong> So what&#8217;s interesting actually is that we have a team that is spread also all over the world. And so we have teams in Berlin and in U.S., and New York. In Zambia, too. What was really interesting was how people identify to the new website because now we have to really think, okay, what is the content we want people to see, but also we want our critics to see. And so it kind of unified all of our content at Little Sun. And it was much more like much easier to understand afterwards. </p>\n\n\n\n<p>[00:09:03] <strong>Josepha:</strong> Yeah.&nbsp;</p>\n\n\n\n<p>[00:09:04] <strong>Romane:</strong> And it was because we also work at the intersection of creative communications, impacts, fundraising, technology, and to be able to put everything and have it on the front. And then have the stories to tell the stories from sub-Saharan Africa, from universities who got either a Little Sun lamps or solar systems, and then we have the donation page, so basically everything could be integrated in a super easy way, and it could target different audiences easily, either it&#8217;s someone who wants to partner with us, or a donor, or just someone who wants to be part of our solar training.</p>\n\n\n\n<p>[00:09:46] <strong>Josepha:</strong> Yeah, and I mean, I think that no one will be surprised to hear that if you have multiple things that you have to get everybody to, it really increases the amount of marketing that you have to accomplish, rather than having one place for everyone to go too, and they can see everything that they might want once they arrive. So, that&#8217;s wonderful.</p>\n\n\n\n<p>[00:10:06] <strong>Ashley:</strong> I think I was just going to say, or kind of echo what Romane said about the fact that we have so many different audiences, we have partners, we have donors, we have people who are just coming to learn about solar energy, or who are interested in purchasing a lamp. I think prior to this, it was a little bit confusing for those different audiences to kind of navigate to where they were intended to go to on the site, and now it&#8217;s much more cohesive. And we often hear that from people where it&#8217;s like, it&#8217;s quite easy to, to kind to find what they need to find on the site.&nbsp;</p>\n\n\n\n<p>[00:10:39] <strong>Josepha:</strong> I define the WordPress community as anyone who is using WordPress, regardless of whether they know it or not. And so you all, in my mind, are part of the WordPress Community. And I just wondered if being part of that community has changed your approach to the way that you manage your content online or the way that you have chosen work with your business as like an online entity that also does on-the-ground, in-person thing?</p>\n\n\n\n<p>[00:11:06] <strong>Ashley:</strong> I think definitely. I think we&#8217;re kind of going back to what I said before. I think we&#8217;re much more efficient now. I think in the past, it&#8217;s the idea of, like, well, getting this web page live or publishing this is going to be, you know, we have to think about a huge timeline, that&#8217;s, is going to require a lot of resourcing, a lot of different types of expertise and people, and everything now feels like something that we can, we can launch pretty immediately, which is really wonderful too.</p>\n\n\n\n<p>I would also say just like being a part of the WordPress community too. It&#8217;s the sort of support that we&#8217;ve gotten from your team. It&#8217;s always really tailored. And I think as a nonprofit working with a, like, a much bigger business, you can be apprehensive sometimes, feeling like you won&#8217;t really get that personalized support.&nbsp;</p>\n\n\n\n<p>And I think that&#8217;s something that&#8217;s been so nice with WordPress. Is really feeling like the people we&#8217;re working with are understanding our business and taking the time to understand our needs. And I think that makes us think differently about our online presence as well because then we feel like we have that additional support, which is great.</p>\n\n\n\n<p>[00:12:12] <strong>Josepha:</strong> I&#8217;m always a fan of hearing that people who are passionate about WordPress are also passionate about helping others with WordPress. That&#8217;s one of my favorite things about us. That&#8217;s not true. I have like 25 favorite things about us. And so I need to stop saying that I have one favorite, but I never will.</p>\n\n\n\n<p>Okay, well, do you all have any last thoughts that you just want to share with me or podcast listeners that we have?&nbsp;</p>\n\n\n\n<p>[00:12:36] <strong>Ashley:</strong> Yeah, I think the, the plugins and integrations have been really useful for us. I think it can be really intimidating to bring on, like, a new tech solution or tool and feel like everything that you are already working with or have is going to become outdated or obsolete in some way. And I think it&#8217;s just been really nice to work with WordPress and have all of those transitions be really seamless for everything to connect really well. Yeah, I think that&#8217;s been. That&#8217;s hugely helpful too.&nbsp;</p>\n\n\n\n<p>[00:13:07] <strong>Josepha:</strong> So, was that part of the decision-making process? Like, do I know that this software will be around in the future so that you&#8217;re making an investment in the site now and know that it&#8217;s going to hang around now you can find people help? Like, was that part of the decision-making process?</p>\n\n\n\n<p>[00:13:21] <strong>Ashley:</strong> I think so. I mean, I guess I wasn&#8217;t completely around during the time, but I would say, like, that&#8217;s definitely something that we&#8217;re considering in any kind of tech that we&#8217;re thinking about is it can require so much work to, to kind of bring something on with such a small team. So we want to ensure that, yeah, it&#8217;s going to last, it has longevity, and it&#8217;s going to work with the tools that we already have. So I think all of that is really important for sure.&nbsp;</p>\n\n\n\n<p>[00:13:48] <strong>Josepha:</strong> Well, thank you both so much for joining me. Like I said, we&#8217;ll have a link to littlesun.org in the notes so that you all can learn more about their project and see their beautiful site with their beautiful little solar sunflowers.</p>\n\n\n\n<p>Thank you both for being with me today.&nbsp;</p>\n\n\n\n<p>[00:14:04] <strong>Romane:</strong> Thank you so much.&nbsp;</p>\n\n\n\n<p>[00:14:05] <strong>Ashley:</strong> Thank you so much for having us.</p>\n\n\n\n<p>[00:14:07] (Music interlude)</p>\n\n\n\n<p>[00:14:11] <strong>Josepha:</strong> What a wonderful organization. I&#8217;m so glad that they found WordPress and that it works for them. Let&#8217;s continue our tour today with the small list of big things.</p>\n\n\n\n<p>Item number one, it&#8217;s time to save the date: December 11th, 2023, for this year&#8217;s State of the Word. State of the Word is the annual keynote address delivered by the WordPress Project co-founder Matt Mullenweg. Every year, the event shares reflections on the project&#8217;s progress and aspirations for the future of open source. And so, if that is something that you like to tune into, December 11th is your day.&nbsp;</p>\n\n\n\n<p>Second thing on our list is that we are celebrating our 10,000th photo submission. So, on October 11th, the 10,000th photo was approved. The Photo Team is one of the newest ways to contribute to the WordPress open source project, and it feeds all of those photos into Openverse as well.</p>\n\n\n\n<p>The third thing on our list today is that I want to tell you about a community team training module that just came out. It&#8217;s specifically about the Translate Live tool, and it is ideal for presenting at your local meetups to engage and onboard new translators for your native language. If you&#8217;re organizing a WordCamp, consider introducing this tool during your Contributor Day. I will leave a link for this in the show notes so that it is easy to find.&nbsp;</p>\n\n\n\n<p>And item number four, the journey to update WordPress.org, continues with the launch of a new Showcase design. The Showcase is a natural starting point for a lot of visitors who are on WordPress.org. It inspires creativity and also demonstrates what&#8217;s possible with WordPress. So, stop on by there, it&#8217;s WordPress.org/showcase, and give it a bit of a look.</p>\n\n\n\n<p>[00:15:58] <strong>Josepha:</strong> And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. And don&#8217;t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You&#8217;ll get a friendly reminder whenever a new episode drops. And if you like what you heard today, share it with a fellow WordPresser. Or, if you had questions about what you heard today, you can share those with me at wprebriefing@WordPress.org. </p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks. </p>\n\n\n\n<p>[00:16:24] (Music outro)</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, 30 Oct 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:100:\"WPTavern: Gutenberg 16.9 Lets You Rename (Almost) Any Block, Adds Experimental Form and Input 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=150720\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://wptavern.com/gutenberg-16-9-lets-you-rename-almost-any-block-adds-experimental-form-and-input-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:4201:\"<p>Delivering on an <a href=\"https://github.com/WordPress/gutenberg/pull/42605#issuecomment-1475904839\">highly-requested feature</a>, Gutenberg contributors have made it possible to rename almost any block in the List View. <a href=\"https://make.wordpress.org/core/2023/10/25/whats-new-in-gutenberg-16-9-25-october-2/\">Version 16.9</a> was released this week with the new feature, which builds on <a href=\"https://make.wordpress.org/core/2023/09/28/whats-new-in-gutenberg-16-7-27-september/\">Gutenberg 16.7</a>&#8216;s introduction of the ability to rename Group blocks.</p>\n\n\n\n<p>It works in a similar way to naming Photoshop layers. Users can now open the list view, click on the ellipsis menu, select &#8220;Rename,&#8221; and enter a custom name.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\nvideo credit: Gutenberg <a href=\"https://github.com/WordPress/gutenberg/pull/54426\">PR #54426</a>\n\n\n\n<p>&#8220;Allowing users to distinguish between blocks in the List View is becoming increasingly important as the scope of the Site Editor grows,&#8221; Automattic-sponsored contributor Dave Smith said in the original ticket proposing the feature for the Group block. &#8220;Given that all blocks are currently labelled by the block name (e.g. <code>Group</code>) it can be difficult to distinguish between them. This is especially important if your Groups represent distinct &#8216;sections&#8217; of a given page/template.&#8221;</p>\n\n\n\n<p>Every block can be renamed with the exception of these four:</p>\n\n\n\n<ul>\n<li><code>core/block</code></li>\n\n\n\n<li><code>core/template-part</code></li>\n\n\n\n<li><code>core/pattern</code></li>\n\n\n\n<li><code>core/navigation</code></li>\n</ul>\n\n\n\n<p>More renaming capabilities have been added in 16.9, including the ability to duplicate and rename patterns, as well as pattern categories.</p>\n\n\n\n<p>This release <a href=\"https://github.com/WordPress/gutenberg/pull/44214\">introduces new experimental form and inputs blocks</a> to allow building basic forms. It&#8217;s a feature that has taken many by surprise, as few would have predicted WordPress core would be adding form building. A very early version is available under Gutenberg > Experiments, under the &#8220;Form and input blocks&#8221; experiment setting.</p>\n\n\n\n<p>&#8220;Why has there been no proactive outreach to the many developers of longstanding WordPress form solutions currently used by millions and millions of WordPress sites?&#8221; Gravity Forms co-founder Carl Hancock commented on the PR.</p>\n\n\n\n<p>&#8220;It seems like proactive outreach to people who are experts in this space and who could do the most to help drive adoption (beyond comments/search/etc.) would have been a good thing. On many levels. Trying to get them on board with contributing, learning from their shared historical knowledge, and even more important of all&#8230; building on top of it and adopting it instead of introducing a point of more fragmentation.&#8221;</p>\n\n\n\n<p>The forms feature is still in the very early stages of experimentation, and more information may be published to the November edition of &#8220;<a href=\"https://github.com/WordPress/developer-blog-content/issues/174\">What&#8217;s New For Developers?</a>&#8220;</p>\n\n\n\n<p>A few other notable highlights from this release include the following:</p>\n\n\n\n<ul>\n<li>New media categories: <a href=\"https://github.com/WordPress/gutenberg/pull/55236\">Audio and Video</a> for organizing patterns by media type</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/55388\">Sort pages by date</a> in the Site Editor&#8217;s page management screen</li>\n\n\n\n<li>Command Palette now shows <a href=\"https://github.com/WordPress/gutenberg/issues/53539\">block-specific commands as contextual suggestions</a></li>\n\n\n\n<li>Experiments: <a href=\"https://github.com/WordPress/gutenberg/pull/55246\">Added featured image field</a> to the page list</li>\n</ul>\n\n\n\n<p>Check out the release post for <a href=\"https://make.wordpress.org/core/2023/10/25/whats-new-in-gutenberg-16-9-25-october-2/\">Gutenberg 16.9</a> to see the full changelog and more details on bug fixes and enhancements to performance, tooling, documentation, code quality, and accessibility. </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, 27 Oct 2023 22:00: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: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:71:\"WPTavern: WordPress 6.4 Disables Attachment Pages for New Installations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=150736\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/wordpress-6-4-disables-attachment-pages-for-new-installations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4090:\"<p>The upcoming 6.4 release, expected on November 7, will <a href=\"https://make.wordpress.org/core/2023/10/16/changes-to-attachment-pages/\">disable attachment pages for new installations</a>. Up until now, WordPress automatically created attachment pages when users upload a file through the media upload system. It has been treated as a special post type that holds information about the file and each attachment is accessible under its own URL. SEO plugins have been redirecting attachment pages for years, as they rarely have any significant purpose.</p>\n\n\n\n<p>&#8220;Until WordPress 6.4 was released, WordPress created attachment pages by default for every attachment uploaded,&#8221; WordPress contributor Joost de Valk said in the <a href=\"https://make.wordpress.org/core/2023/10/16/changes-to-attachment-pages/\">dev note</a> for this <a href=\"https://core.trac.wordpress.org/ticket/57913\">change</a>. &#8220;On the vast majority of sites, these attachment pages don’t add any meaningful information. They do, however, exist, get indexed by search engines, and sometimes even rank in search results, leading to bad results for users and site owners.&#8221;</p>\n\n\n\n<p>There will be no changes to existing sites. They will continue to work as they always have, but new sites will have their attachment pages redirected to the attachment URL. Site admins who want to enable or disable attachment pages can use the new  <code>wp_attachment_pages_enabled</code> database option to control attachment pages&#8217; behavior.</p>\n\n\n\n<p>There is no interface for changing whether a site disables attachment pages, which was somewhat controversial in the comments on the Trac <a href=\"https://core.trac.wordpress.org/ticket/57913\">ticket</a> and the dev note.</p>\n\n\n\n<p>&#8220;In light of the WordPress mantra &#8216;decisions, not options,&#8217; we’ve decided against making a setting for this,&#8221; de Valk said.</p>\n\n\n\n<p>WordPress plugin developer Sybre Waaijer mades a case for <a href=\"https://make.wordpress.org/core/2023/10/16/changes-to-attachment-pages/#comment-45721\">giving users an option</a> with an interface for toggling it on or off:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The problem with filtering options is that when another&nbsp;plugin&nbsp;provides the option toggle, the option&nbsp;filter&nbsp;will go against user expectations.</p>\n\n\n\n<p>This is where “decisions, not options” becomes paradoxical because we’re now deciding to set an option while also not giving the option.</p>\n\n\n\n<p>So, as plugins fill in this gap, then A) where will plugins put the option (likely on their custom page instead of options-media.php), and B) of the dozens of types of plugins that are in the market to juggle this, who will ultimately be in control of the option?</p>\n\n\n\n<p>If it’s a filter, each plugin promises to set a toggle via a simple condition. But since it’s an option, plugins can add an option to filter an option and add an option to toggle the option. It’ll become a source of bugs because of the logical biconditionals (XNOR).</p>\n</blockquote>\n\n\n\n<p>While an interface isn&#8217;t in the cards for WordPress 6.4, and may never be back on the table for consideration, contributors are discussing the possibility of putting this in a core plugin.</p>\n\n\n\n<p>&#8220;Should we not have a core plugin for re-enabling attachment pages on new sites?&#8221; Automattic-sponsored contributor Justin Tadlock said. &#8220;If there’s not going to be a UI for this, then a plugin that’s not buried in a Trac ticket would be ideal.&#8221;</p>\n\n\n\n<p>de Valk agreed this would be a good idea to have a plugin that simply adds a setting to the Options -> Media page. Users likely will not understand the purpose of attachment pages unless they are looking to enable them for a specific, niche use case. A plugin like this would be useful for those who are not able to write the code to change attachment pages&#8217; behavior, as described in the <a href=\"https://make.wordpress.org/core/2023/10/16/changes-to-attachment-pages/\">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:\"Fri, 27 Oct 2023 17:42:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:51:\"Do The Woo Community: Never Say Never with LinkedIn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=77372\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://dothewoo.io/never-say-never-with-linkedin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:363:\"<p>I have had many people in the WordPress and WooCommerce space ask me why I use and like LinkedIn. Here is my answer, finally.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/never-say-never-with-linkedin/\">Never Say Never with LinkedIn</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</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, 27 Oct 2023 09:54:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:74:\"WPTavern: TaxoPress Adds New AI Integrations for Generating Taxonomy Terms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=150700\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wptavern.com/taxopress-adds-new-ai-integrations-for-generating-taxonomy-terms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2498:\"<p><a href=\"https://wordpress.org/plugins/simple-tags/\">TaxoPress</a>, a plugin that allows users to create and manage Tags, Categories, and taxonomy terms, has joined a growing number of WordPress products using AI to innovate and enhance user experience. The latest release adds support for <a href=\"https://taxopress.com/tag/openai/\">OpenAI</a> and <a href=\"https://taxopress.com/tag/ibm-watson/\">IBM Watson</a> to auto-detect the best taxonomy terms for content.</p>\n\n\n\n<p>&#8220;Honestly, I&#8217;m amazed how good these services are,&#8221; TaxoPress founder Steve Burge said. &#8220;For a long time, TaxoPress supported Dandelion and also LSEG / Refinitiv. These services are from a previous generation of AI tools. They could scan your content and suggest taxonomy terms. They support a couple of languages and have some options.</p>\n\n\n\n<p>&#8220;In comparison, I&#8217;m blown away with the potential of these new services, particularly <a href=\"https://taxopress.com/tag/openai/\">OpenAI</a>.&#8221;</p>\n\n\n\n<p>This <a href=\"https://taxopress.com/taxopress-ai/\">first version of TaxoPress AI</a> also introduces an updated metabox on the post editing screen with options to manage post terms, suggest existing terms, and connect to external AI services for scanning content and suggesting terms. The AI features are only available in <a href=\"https://taxopress.com/tag/taxopress-pro/\">TaxoPress Pro</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2048\" height=\"701\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/10/image-2.png\" alt=\"\" class=\"wp-image-150701\" />\n\n\n\n<p>The inclusion of OpenAI and IBM Watson <a href=\"https://taxopress.com/docs/comparing-the-ai-integrations/\">expands support to nearly two dozen different languages</a>. Users can test different services to see which one produces the best terms for the content.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1352\" height=\"1154\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/10/image-3.png\" alt=\"\" class=\"wp-image-150703\" />\n\n\n\n<p>AI-based auto-tagging is an exciting new  way to enhance an otherwise conventional, established utility plugin. It introduces a bit of magic that produces better results with a far wider reach into the world&#8217;s languages.</p>\n\n\n\n<p>Burge said TaxoPress will soon be adding more AI features for categorizing WordPress content and will focus on enabling more tools that are available through OpenAI and IBM Watson.</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, 27 Oct 2023 03:09:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"Do The Woo Community: Navigating the WordPress Ecosystem and Marketing Automation Evolution with Rytis Lauris\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=77365\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://dothewoo.io/navigating-wordpress-ecosystem-marketing-automation-evolution-rytis-lauris/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:456:\"<p>From political science to tech, Rytis Lauris, co-founder of Omnisend takes us on his product and WordPress journey.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/navigating-wordpress-ecosystem-marketing-automation-evolution-rytis-lauris/\">Navigating the WordPress Ecosystem and Marketing Automation Evolution with Rytis Lauris</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</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, 26 Oct 2023 09:01:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:55:\"WordPress.org blog: WordPress 6.4’s PHP Compatibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=16235\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2023/10/wordpress-6-4s-php-compatibility/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2287:\"<img width=\"2400\" height=\"1350\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/WordPress-6.4s-PHP-comp.png?resize=2400%2C1350&ssl=1\" alt=\"\" class=\"wp-image-16236\" />\n\n\n\n<p>In an effort to keep the WordPress community up to date, this post provides an update on the PHP compatibility of the upcoming WordPress 6.4 release scheduled for November 7, 2023.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Recommended PHP version for WordPress 6.4</strong></h3>\n\n\n\n<p>It’s recommended to use PHP 8.1 or 8.2 with this upcoming release. Please refer to the Hosting page for more detailed information, including <a href=\"https://make.wordpress.org/core/handbook/references/php-compatibility-and-wordpress-versions/\">a few known issues</a>.&nbsp;</p>\n\n\n\n<p>Reach out to your hosting company to explore PHP upgrade options.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Why does compatibility matter?</strong></h3>\n\n\n\n<p>PHP is a programming language on which the WordPress code is based. This language runs on the server, and it is critical to keep it updated for security and functionality. Various teams within the WordPress open source project work to both test and fix any issues with new PHP versions so you can update with confidence that the WordPress core software is compatible.&nbsp;</p>\n\n\n\n<p>Happy WordPress-ing!&nbsp;</p>\n\n\n\n<p><em>Thank you to <a href=\"https://profiles.wordpress.org/annezazu/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>annezazu</a> <a href=\"https://profiles.wordpress.org/barry/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>barry</a> <a href=\"https://profiles.wordpress.org/ironprogrammer/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>ironprogrammer</a> <a href=\"https://profiles.wordpress.org/hellofromtonya/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>hellofromtonya</a> <a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a> <a href=\"https://profiles.wordpress.org/costdev/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>costdev</a> <a href=\"https://profiles.wordpress.org/javiercasares/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>javiercasares</a> for reviewing and contributing to the effort of this post.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Oct 2023 08:40:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:59:\"WPTavern: WordPress 6.4. RC2 Released and Ready for Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=150642\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wordpress-6-4-rc2-released-and-ready-for-testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4296:\"<p><a href=\"https://wordpress.org/news/2023/10/wordpress-6-4-release-candidate-2/\">WordPress 6.4 RC2</a> was released this week with more than 25 issues resolved since RC1. These include a few <a href=\"https://github.com/WordPress/gutenberg/pull/55481\">cherry-picked commits</a> from the Gutenberg repository, additional <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F18%2F2023..10%2F24%2F2023&milestone=6.4&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">closed Trac tickets since RC 1</a>, and more than a dozen housekeeping <a href=\"https://github.com/WordPress/twentytwentyfour/commits/\">commits for Twenty Twenty-Four</a>.</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/2023/10/23/wordpress-6-4-field-guide/\">6.4 Field Guide</a> is now published with technical notes. It&#8217;s a lengthy document that collates all the <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-4/\">dev notes</a> for important changes that developers will want to review. A few examples include the following:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/10/17/improvements-to-template-loading-in-wordpress-6-4/\">Improvements to Template Loading in WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/17/new-option-functions-in-6-4/\">New option functions in 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/18/image-loading-optimization-enhancements-in-6-4/\">Image loading optimization enhancements in 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/21/updates-to-the-html-api-in-6-4/\">Updates to the HTML API in 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/24/framework-for-storing-revisions-of-post-meta-in-6-4/\">Framework for storing revisions of Post Meta in 6.4</a></li>\n</ul>\n\n\n\n<p>In addition to these important updates to core, WordPress 6.4 will roll six Gutenberg releases into the core – <a href=\"https://make.wordpress.org/core/2023/07/14/whats-new-in-gutenberg-16-2-12-july/\">16.2</a>, <a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">16.3</a>, <a href=\"https://make.wordpress.org/core/2023/08/10/whats-new-in-gutenberg-16-4-9-august/\">16.4</a>, <a href=\"https://make.wordpress.org/core/2023/08/23/whats-new-in-gutenberg-16-5-23-august/\">16.5</a>, <a href=\"https://make.wordpress.org/core/2023/09/06/whats-new-in-gutenberg-16-6-06-september/\">16.6</a>, <a href=\"https://make.wordpress.org/core/2023/09/28/whats-new-in-gutenberg-16-7-27-september/\">16.7</a>. </p>\n\n\n\n<p>The Documentation team is looking for <a href=\"https://make.wordpress.org/docs/2023/10/25/call-for-volunteers-to-help-with-6-4-end-user-documentation/\">volunteers to assist with updating and revising the End User Documentation</a> on HelpHub. A  <a href=\"https://github.com/orgs/WordPress/projects/141/views/2\" target=\"_blank\" rel=\"noreferrer noopener\">6.4 project board</a> tracks the tasks in the Documentation repository on GitHub, and it has been sorted by priority. New documentation contributors are invited to join, and the onboarding process is well documented for getting started.</p>\n\n\n\n<p>The emails have gone out to extension developers, who are encouraged to test against 6.4 and update the current &#8220;Tested up to&#8221; values for each extension.</p>\n\n\n\n<p>One of the easiest ways to test the upcoming release is by using Playground: <a href=\"https://playground.wordpress.net/?wp=beta\">https://playground.wordpress.net/?wp=beta</a>.  The Playground environment can be further customized for different storage types, PHP versions, and the WordPress version.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2046\" height=\"1294\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/10/Screen-Shot-2023-10-25-at-11.32.54-AM.png\" alt=\"\" class=\"wp-image-150646\" />\n\n\n\n<p>A comprehensive <a href=\"https://make.wordpress.org/test/2023/09/26/help-test-wordpress-6-4/\">6.4 testing guide</a> has been published with video demonstrations of how each of the key new features should behave. This makes it easy for testers to know if something is not working the way it should. </p>\n\n\n\n<p>WordPress 6.4 is now under two weeks away from its scheduled release day of November 7, 2023. </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, 25 Oct 2023 19:42: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: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:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: #96 – Jake Goldman on Agency Mergers and AI in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=150562\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/podcast/96-jake-goldman-on-agency-mergers-and-ai-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:60281:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, the recent merger of 10up and Fueled, as well as some thoughts on how WordPress will adapt with AI.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast you can do that by searching for WP Tavern in your podcast player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcasts players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Jake Goldman. Jake is the president and founder of 10up, a digital agency that builds websites and tools for content creators, leveraging open platforms like WordPress.</p>\n\n\n\n<p>We start the conversation with an exploration of the recent merger with 10up, Fueled and Insignia. For many years 10up has been one of the leading enterprise WordPress agencies. With a roster of well-known clients, Jake has grown the company from himself to hundreds of employees.</p>\n\n\n\n<p>Whilst the journey has been exciting and challenging, Jake talks about some of the areas in which 10up has not been able to compete, and how the merger with Fueled will enable them to position themselves for projects which used to be out of reach. Fueled brings their experience of crafting mobile experiences, and Insignia brings their financial expertise, as well as the industry connections they have built up.</p>\n\n\n\n<p>Jake shares how this new venture will continue to leverage WordPress as their CMS of choice. These new partners understand and support 10up&#8217;s commitments to contributing to WordPress. There are no plans to immediately alter the structure of either 10up or Fueled. It&#8217;s more about building an understanding of the capabilities of each partner, working towards a future in which the company grows into one entity over time.</p>\n\n\n\n<p>We talk about the intentional pursuit of potential partners, and Jake reflects on the importance of cultural alignment and connections. He shares how his prior experience has shaped both his personal journey as a leader, and the success of 10up. And we explore the milestones, challenges, and key moments that have brought them to where they are today.</p>\n\n\n\n<p>Towards the end of the podcast, we pivot to talk about the role of AI in the future of WordPress. It&#8217;s clear that AI is coming, and it&#8217;s coming rapidly. Any agency working with WordPress would find this topic hard to ignore. But what impact will it really have? Are we expecting entire websites to be built in seconds by just clicking a button?</p>\n\n\n\n<p>Jake expresses his view that these tools are to be seen as accelerants, complementing human website development, rather than replacing it, particularly at the enterprise level. We delve into 10up&#8217;s ongoing exploration and experimentation with AI, discussing some of the tools they have freely released.</p>\n\n\n\n<p>If you&#8217;re interested in how enterprise agencies grow or the future of AI with WordPress, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so, without further delay, I bring you Jake Goldman.</p>\n\n\n\n<p>I am joined on the podcast today by Jake Goldman. Hello Jake.</p>\n\n\n\n<p>[00:04:31] <strong>Jake Goldman:</strong> Hey!</p>\n\n\n\n<p>[00:04:32] <strong>Nathan Wrigley:</strong> Very nice to have you on the podcast today. Really appreciate you joining us. Jake is joining us from 10up.</p>\n\n\n\n<p>10up very recently had some really quite seismic news. In the WordPress community 10up is one of those companies that you have probably heard of. They&#8217;re an enterprise level agency, they deal with some of the largest projects in the WordPress space, and they had some news around a merger. So we&#8217;ll get into that in a little bit and we&#8217;ll also get into some AI topics probably towards the end.</p>\n\n\n\n<p>Prior to that though Jake, I&#8217;ve just given a little bit of an introduction about where you work, but I&#8217;m curious about your backstory, particularly as regards WordPress, this is after all a WordPress podcast. So would you mind just giving us a little bit of your backstory. Where you fit into the WordPress ecosystem? What is the company that you work for and how did you set that up?</p>\n\n\n\n<p>[00:05:22] <strong>Jake Goldman:</strong> Sure. I&#8217;ll see if I can do this concisely. I feel like there&#8217;s so much to the backstory. 10up today is a shop that I have run for twelve and a half years now, as we&#8217;ll talk about. Part of a larger organisation. We are a web agency and we have been very proudly advocates of open source, open technologies, WordPress is our tool of choice. We also very much believe apropos of open source and giving back to the web, and helping continue to make the web an open platform where people, you know don&#8217;t have to pay huge licensing fees to be involved, be able to make websites, be able to learn new technologies and new skills.</p>\n\n\n\n<p>And we very much believe that as we have climbed up that ladder of an open web that we need to keep that ladder extended to the next generation. So we are also very large contributors to the project, we donate thousands of hours every year to open source. A large part of that goes to WordPress Core. Goes to a rich ecosystem of extensions that we contribute, that we think solve some hard problems, particularly in the enterprise, the kind of customers that we serve.</p>\n\n\n\n<p>Before this new event, just as 10up we&#8217;ve been about 300 people. That is a company that has grown organically from 2011 when we were founded, with just me writing code and doing a little bit of UX, and doing all the business side of things and built it sort of brick by brick.</p>\n\n\n\n<p>I got into WordPress circa 2007, 2008. I was working at a shop as many were at the time focused on commercial CMSs and closed platforms. We kind of wanted to diversify, saw the writing on the wall. Started exploring with different popular open platforms at the time that was WordPress. One of the partners in that company was focused on Drupal.</p>\n\n\n\n<p>I saw a lot of potential in that platform that came, I thought, to pass over the next few years, and when it was time for me to go out on my own and start my own business, I was pretty determined that if I believed in an open web and wanted to see open technology thrive, that WordPress was a good horse to bet on. And so started 10up. Determined to become one of those agencies of record in the space. I guess the rest is history.</p>\n\n\n\n<p>[00:07:02] <strong>Nathan Wrigley:</strong> Did you have any intuition back then that WordPress was, you spoke about it in terms of it being you know a good horse to back. Did you have any intuition that it was the horse to back? Or would you have been prepared at any moment to swap horses mid race you know had Drupal pushed ahead? Because I had all sorts of intuitions, many of them which turned out to be completely wrong in terms of Drupal and other open source platforms.</p>\n\n\n\n<p>And eventually after WordPress became successful, I joined that ecosystem. But it sounds like you made a bit of a serendipitous choice. It was a bit of good luck possibly. And I wonder what your thoughts are around that.</p>\n\n\n\n<p>[00:07:38] <strong>Jake Goldman:</strong> Yeah I mean there&#8217;s always an element of luck. I could have chosen never to look at WordPress, right? Or taken it seriously as a platform. I certainly thought I saw potential. I mean, you work in web from 1996 to 2007, you&#8217;ve tried and dabbled in lots of different technologies. I think it was, maybe this is the older man in me speaking now, but I think it was easier at the time to move between different technologies. There wasn&#8217;t so much friction trying new things, trying new platforms.</p>\n\n\n\n<p>As somebody that&#8217;s very, that likes engineering, and likes tech, and likes the geeky side but also has a strong appreciation for user interface and making things easy and putting myself in the shoes of people that are actually just trying to publish something on a website. Actually trying to manage content, always wanting throughout my entire time in web to be able to like hand off a website, maintain it, but be able to hand off and have a delightful experience for those website owners to keep updating their website and managing the content on their website.</p>\n\n\n\n<p>It was very clear to me even 2008, 2009, I think it was around the time of the first big UI change in WordPress, you know the menu on the left and still elements of that echos of that design today in WordPress. It was very clear to me that in terms of platforms that we&#8217;re creating really focused on, what is that website owner, what is that content publisher experience that WordPress was, I thought, just running circles around the other platforms?</p>\n\n\n\n<p>So I saw a lot of potential. I was experimenting with even doing things that were custom post type like before there was really custom post types in core, and saw where the core project was heading in terms of adding more taxonomy support, adding more different content types and some of those fundamentals of a bigger CMS.</p>\n\n\n\n<p>So I guess a bit lucky that I happened to be stumbling and playing and looking closer at the platform at the time, but I guess the short answer is yeah, I mean it was very palpable to my instincts that this thing was going to go places.</p>\n\n\n\n<p>[00:09:11] <strong>Nathan Wrigley:</strong> If you were to look back over the time since 2011, that number of years, the ground will be littered with people who tried to do what you did, but didn&#8217;t quite make it. You know they endeavored to have an enterprise level agency, they wished to grow their agency. But for some people clearly that worked, you being one of them. For other people, perhaps it didn&#8217;t work out.</p>\n\n\n\n<p>And I&#8217;m just wondering if you&#8217;ve got any intuitions as to what the key moments were in those years. If you look back and think, okay that was the moment, that was another moment, that was a third moment. What were the pivotal bits, the decisions that you made, the projects that you took up, which allowed you to become the sort of force that you are now?</p>\n\n\n\n<p>[00:09:48] <strong>Jake Goldman:</strong> It&#8217;s a great question and, you know, I&#8217;ll be earnest, I never really look at the sort of long journey and arc as, it&#8217;s nice to think of it as like there was this moment and everything changed. But it wasn&#8217;t really like that. It was a brick by brick, year over year kind of effort. I mean when I look back at moments that I could call out, you know certainly when starting the company, I&#8217;m not sure if this is a moment so much as a story you know sort of a narrative about, I think why we were able to be successful.</p>\n\n\n\n<p>But I&#8217;ve always emphasised that the trick to, I think, 10up&#8217;s success is that I did not descend out of the sky one day out of college and say I&#8217;m a business owner. Before I started 10up I spent over a decade working for other people, doing side consulting. There was a whole story before 10up started which was time in the industry, building connections, building a network, investing in relationships, learning from mentors about how to think about a budget, and a P and L, and what&#8217;s really involved in hiring people. Having the joy of hiring someone great and the torture of having to let people go before I ever started the company. Knowing how to put numbers together, had fantastic mentors.</p>\n\n\n\n<p>If you want the honest answer, the real story of our success is, it was everything that happened before starting 10up. It was the relationships I was able to bring into that company, clients like side consulting projects I had been doing on the side for over a decade that I was able to bring in to the company.</p>\n\n\n\n<p>I think there&#8217;s a lot of people today that sort of drop out of the sky and say you know my role in life is to be an entrepreneur and day one I&#8217;m starting a company and I just, I can&#8217;t imagine I would have been nearly as successful, 10up would have been nearly as successful as it was if I didn&#8217;t have that whole backstory.</p>\n\n\n\n<p>I can point to some other moments, you know winning in the first year. Getting introductions vis-à-vis those connections to customers like TechCrunch that we still work with to this day, on their site that have obviously become very powerful items in your portfolio. I can point to bringing on strong leaders including our CEO who joined us in 2014, still with us today, John Eckman.</p>\n\n\n\n<p>I think one other thing that has made 10up different than some companies in the space is I like to believe it is not a company that revolves around its founder&#8217;s ego. That I&#8217;ve always tried to build it with a mindset of, I want this thing to be much more than Jake Goldman. I want the brand to be 10up not Jake&#8217;s company. I could ramble on but I think, that&#8217;s probably what I would leave you with.</p>\n\n\n\n<p>[00:11:51] <strong>Nathan Wrigley:</strong> Well thank you. The thing that we&#8217;re going to talk about from now is the joining of forces between 10up and a company which in the WordPress space maybe people haven&#8217;t heard about, and that is Fueled. We&#8217;ll talk about a piece which went on the 10up blog, I will link to it in the show notes. It&#8217;s called Fueled Up, 10up joins forces with Fueled Digital Media. And so that&#8217;s the direction of travel for the majority of the rest of the podcast.</p>\n\n\n\n<p>But I&#8217;m just wondering, in that journey, was the endeavor always growth? Grow, grow, grow, make the agency bigger. And if that was the case, what kind of changed your, direction? Because it seems like you had a bit of an epiphany earlier in the year of 2023. The article paints a picture that you were working with Fueled and then just have this sudden realisation, actually do you know what they are like us. They do something different but their alignment, the sort of direction of travel, their ethics, and all of that seems to match very well.</p>\n\n\n\n<p>And then all of a sudden, well I say sudden, probably months and months in the making, you announced that you&#8217;ve joined forces. So I just wonder, what changed about the company that suddenly made you think let&#8217;s do something different, let&#8217;s join with some other company?</p>\n\n\n\n<p>[00:12:55] <strong>Jake Goldman:</strong> It&#8217;s a fantastic question and the reality is, I&#8217;ve written about this a little bit online, like my prior story. It was not a wake up one morning, my you know light bulb went off and the next day we closed the transaction kind of a thing. The reality is, I think we have to go all the way back to saying like, per my last remarks, I have always seen 10up as something that is, I want it to be much more than Jake Goldman Inc. That was always my vision.</p>\n\n\n\n<p>If you think of me as an engineer at heart, I always sort of believe like the best thing you engineer is a thing that continues to live on and be used well beyond the time you spend on it, well beyond your focus on that project. And I&#8217;ve always felt the same way about a company, like the perfect business, the ideal company, the ideal team that you build.</p>\n\n\n\n<p>There&#8217;s a world where you can someday step back and not be worried if I&#8217;m not in the room that this thing doesn&#8217;t keep succeeding, this team doesn&#8217;t keep thriving. That&#8217;s always been on my mind. It was on my mind when I think I surprised a lot of people, again, going all the way back to 2014, and hired a CEO that was not me into the company to help us build it. It&#8217;s always been on my mind as I built out different divisions and empowered strong leaders within the business.</p>\n\n\n\n<p>I think there was a moment for me in the, you know the first few years of the 2020s, to me sort of peaking in 2022. Not sure intentionally but probably not accidentally after probably two or three of the most difficult and challenging years to be a business leader probably weighing on my mind as well. Any business leader who does not tell you there was a certain fatigue in 2020, 2021, 2022 is probably not being honest with you.</p>\n\n\n\n<p>At the same time, more consciously I just felt like look, we&#8217;re about to break through $40 million in revenue, we think by the end of this year. We think we&#8217;re on a trajectory for 300 people at this company. I have been the overwhelming owner of the business, decision maker for you know, at that point for I guess 11 and a half years. And really felt like as we move forward this company needs to have more governance, a different kind of structure, a different kind of ownership that can A, help keep propelling it forward.</p>\n\n\n\n<p>I&#8217;ve never run a company of that scale in size before. I think some of what you have to do to manage and invest in a company of that scale is a little bit different when you start to reach that kind of size. And I frankly want to make sure this company is taken care of in the event that I ever, you know I could get sick, I could get hit by a bus.</p>\n\n\n\n<p>I don&#8217;t think the company even as it existed previously, would suddenly just disappear overnight by any means. But there was a certain amount of like legal structure, a certain amount of like ownership management, and share structure. A certain amount of where are the other highly experienced, growing companies of this size kind of leaders and investors that were missing.</p>\n\n\n\n<p>And when I thought about I can go through the effort to do that on my own, think about like employee owned companies or think about how to completely restructure stock and legal formations. To be honest with you, when I started thinking about that, I was struggling to imagine being excited to get out of bed for the next two years focused on like legal apparatus, and being that different kind of owner of that larger company which just. You know so I guess I&#8217;m rambling a little bit to say like that mindset that I was in of I think we need something more in terms of governance, ownership, to a degree, diluting the degree to which it sort of sits on my lap as an owner.</p>\n\n\n\n<p>Combine that with my sense that the next phase of growth is, I think, going to come from moving even further up market to being even more of a serious competitor to like the Deloitte Digitals and the Code and Theory&#8217;s of the world, the people that are not coming in saying you know we&#8217;re great WordPress integrators, or just great website makers but were true full digital experience shops.</p>\n\n\n\n<p>I think those things kind of collided for me in a way that said maybe it&#8217;s time to look at M&amp;A. Maybe it&#8217;s time to look at who we can join forces with. And I&#8217;ll be transparent, we went on a very intentional journey, we had advisors in that process. It was you know help guide me through an exploration of you know who might be the kind of company that you can join forces with. And let&#8217;s not just wait for it to fall in my lap, or just go on this blind exercise and all the you know, all my copious spare time of hunting.</p>\n\n\n\n<p>But be intentional about seeking who those partners would be. Spoke to a lot of different companies, had different sort of, I would say suitors, or even offers of which we walked away from. But as we got to know Fueled in particular and then started to do some projects together, and started to understand each other, it felt very clear to me that this was a unique and special fit.</p>\n\n\n\n<p>[00:16:45] <strong>Nathan Wrigley:</strong> Okay so let&#8217;s talk a little bit about Fueled. So I&#8217;m curious to know, what is it about them that make that fit special? So presumably you went out and I&#8217;m obviously going to paraphrase the whole process, but there must&#8217;ve been a series of check boxes that needed to be checked. The company needs to behave in this way, it needs to have this, it needs to have this, we need to be going in this direction, whatever it may be.</p>\n\n\n\n<p>I&#8217;m just wondering, why was it Fueled as opposed to all the other companies? And you can take that in whichever direction you like. It may have just been personnel, it may have been turnover, it may have been, I don&#8217;t know attitude, roster, anything you like.</p>\n\n\n\n<p>[00:17:16] <strong>Jake Goldman:</strong> Yeah it&#8217;s definitely not just a one thing, but I have to say a lot of it sounds very non business like in a sense. But a lot of it was ineffable. A lot of it was just when you go and you meet with these different suitors, or these different potential partners, or companies that you could merge with. And you sit down in the room with them or you have, you know you start with the Zoom chat. I find myself sort of imagining okay, I&#8217;m in a boardroom in a hard time or a good time with them, a year from now, two years from now, how does that feel to me?</p>\n\n\n\n<p>It&#8217;s a sort of cultural, does this feel natural? Does this feel like somebody that if I had to have hard conversations it wouldn&#8217;t be stilted, and more painful than it needs to be? Do I feel like I would be energised and sort of like an extroverted kind of way, like walk out of meetings and planning sessions more excited about what we&#8217;re doing, or would I feel a bit tired from that exercise?</p>\n\n\n\n<p>And I&#8217;m trying to think how else to express it. It was just like when I sat down with them, when I met with them, when we actually worked on projects together and collaborated. It felt like if I had brought these people to, you know, if I just brought them to my team and said I just hired this person as a new key executive, or a new key director, or leader, everybody would have just said like you know great hire Jake, what an amazing fit for our culture.</p>\n\n\n\n<p>And I think that was extraordinarily important to me. Yes, there were other boxes to check. The financial side of everything had to make sense. The legal apparatus had to make sense. They had to be in a, obviously, you know reasonably healthy condition as a business. There were things I did not want in terms of like kind of companies that I thought could like destroy what&#8217;s precious about 10up and its culture.</p>\n\n\n\n<p>I could talk about all of those things, but at the end of the day when sort of settling down on that gut feeling of, is this a company that I want to be with, that I want to work with, that I want to join forces with? It was the checking of the boxes, different kind of skills, different kind of capabilities, all of those things.</p>\n\n\n\n<p>But at the end of the day, a lot of it came down to these are good people that I would enjoy working with. I would look forward to going to a board meeting. I would look forward to going to an exec planning session. They will make me a better leader. They will make my team better. My team will enjoy collaborating with these people in ways that you know going through this journey and talking to so many companies, even before 2020 like we&#8217;ve been approached before, and we&#8217;ve had conversations with different companies.</p>\n\n\n\n<p>You start to realise how precious that match is. We can all sort of like be in our bubbles. But really when you start to talk to a lot of these different companies and agencies, you really realise pretty quickly that there are a lot of companies, a lot of people who are doing fantastic work, impressive businesses, but just very different kind of mindsets, cultures, communication styles, ways of thinking about the world. So when you find someone that you actually go and sit down in the meeting and it&#8217;s like I could hire you, I wish we could do more projects together, that&#8217;s something you latch on to.</p>\n\n\n\n<p>[00:19:39] <strong>Nathan Wrigley:</strong> Yeah what a great answer. I really enjoyed listening to that. The next thing I want to talk about is, how Fueled overlaps with you? So I&#8217;m imagining in my head a Venn diagram of two circles. And in the past, in the WordPress space, we&#8217;ve often seen one agency, for want of a better word, consume another agency. And it almost feels like the two circles are now completely overlapping. One is inside the other. So you can no longer see two circles. You just see one slightly bigger circle.</p>\n\n\n\n<p>But it does seem as if with Fueled we&#8217;ve got a nicely fitting Venn diagram. There&#8217;s Fueled over here, there&#8217;s 10up over here, and there&#8217;s some elements of overlap but it&#8217;s not entire. The two circles are not colliding. And I&#8217;m just wondering, what it is that they do? What it is that you do? What&#8217;s the differentiators, and what is that lovely sweet spot in the middle where you both overlap?</p>\n\n\n\n<p>[00:20:23] <strong>Jake Goldman:</strong> So I&#8217;ll start with the sweet spot in the middle. The sweet spot in the middle, to be a little highfalutin about it for a second, is like the desire to use technology, to use cutting edge innovative tech to create fantastic experiences for clients in an agency setting. It really is in some sense that crisp and that simple. We are a professional services business. We use online technologies to make great experiences for our customers.</p>\n\n\n\n<p>Now to be a little less flippant and a little bit more specific about it, like where we have skill set overlap. Fundamentals of doing design systems, whether it&#8217;s on mobile for a product, whether it&#8217;s on a website. Those are not fundamentally different like technical skill sets that you use every single day. There is an overlap and some like you know Next.js, React kind of front end technologies. They do some web applications in addition to mobile. In fact probably a growing part of their business relatively speaking.</p>\n\n\n\n<p>But when you get beyond the sort of like core common technologies and practices you use when you&#8217;re a creative agency, and expand out to okay, what do we actually work on day to day? There is a healthy, non overlapping parts of the circles, outside parts of the Venn circles. Which is to say like I would say that they are predominantly focused on what they are good at, what they are known for, what they have repute in, is doing product development in the sense of mobile applications. Some web applications, but not marketing websites and publishing websites. Not CMS driven experiences really. Like applications, you know e commerce kind of functionality. Think of some of the projects they work on where it&#8217;s really you know shopping and user intention driven.</p>\n\n\n\n<p>10up is more on the website marketing, web publishing, web content creation. Again, we overlap a little bit, we&#8217;ve even done mobile apps in the past, but we are really strong in how to make a great website that can be put in the hands of those site owners, those site publishers with a strong content management system implementation behind it. And a major focus on content together. That&#8217;s media and publishing, or corporate newsrooms, or you know content marketing, or just flat out marketing websites and informational websites. When that was not something conversely that Fueled had really focused on or was good at.</p>\n\n\n\n<p>And we both sort of you know looked at those two sides of the Venn diagram and sort of said, I bet we have a bunch of customers who could use the others services. And there&#8217;s a bunch of customers out there who don&#8217;t want a shop that sort of neatly fits in one bucket and is kind of stretching and reaching to have a compelling story about the other side.</p>\n\n\n\n<p>[00:22:35] <strong>Nathan Wrigley:</strong> I don&#8217;t know exactly what the audience demographic is, but I&#8217;m sure there&#8217;ll be a lot of people who don&#8217;t work in enterprise agency land. And so this conversation is really interesting, and I am wondering if you&#8217;ve had to, probably this is the wrong word, but turn down work, or move away from work, or pivot away from work that, you simply as 10up, didn&#8217;t feel you would be doing the best job with. But now you feel, okay we can push forward with projects such as this in the future, because now it&#8217;s this bigger enterprise, it&#8217;s Fueled, it&#8217;s 10up, it&#8217;s whatever that&#8217;s going to be called in the future.</p>\n\n\n\n<p>[00:23:06] <strong>Jake Goldman:</strong> Oh yeah for certain. I mean literally can think of projects over the last few years where we had great enterprise, large scale, huge spending customers who needed, just to say it plainly, in some cases needed a mobile application built, put out RFPs for that and probably would have, hoping I&#8217;m not being hubristic here, probably would have loved to work with us, at least would have taken very seriously a submission from 10up. Where we just felt like we would not meet qualifications, we&#8217;re not confident that we could do a good job, in a way that would not diminish our entire relationship with them.</p>\n\n\n\n<p>It&#8217;s the more common scenario that I think about is where we are given opportunities to pitch business, we&#8217;re given opportunity, we have an introduction, we have a connection, and we just don&#8217;t quite compete in the right way in terms of coming across as having a real platform that you would describe as a full digital experience solution.</p>\n\n\n\n<p>While it&#8217;s true that we have customers, we have business that I would say has been left on the table because we didn&#8217;t have these capabilities. What I&#8217;m more focused on is where do we not compete well for opportunities? Where do we not get invited into the room or just not last long in the conversation? Because to overstate melodramatically for a fact, we come across as a WordPress integrator implementation shop, not a full digital experience business.</p>\n\n\n\n<p>[00:24:12] <strong>Nathan Wrigley:</strong> There&#8217;s a third circle in this Venn diagram which we haven&#8217;t mentioned so far and it&#8217;s a venture capital company called Insignia Capital. I confess I don&#8217;t know anything about Insignia Capital. So I&#8217;m just wondering, probably fairly quickly, I don&#8217;t know if you want to dwell on this, but I&#8217;m just wondering if you could explain how that fits in.</p>\n\n\n\n<p>[00:24:29] <strong>Jake Goldman:</strong> Sure. So at the risk of splitting hairs for your audience they&#8217;re a private equity company which is a little bit different from venture capital. Probably not a very material difference for most of the people listening to this but it&#8217;s a little bit different. Sort of like, what are the returns they expect? How do they operate? Where do they get their funding? And so forth.</p>\n\n\n\n<p>Still the same principle in terms of, I guess the short version would be that they are the money people. So the way that they fit, to try to make it concise, they joined forces with, made a massive investment in Fueled about one year ago. Which is to say they&#8217;re not the full ownership of Fueled. Fueled&#8217;s owners still hold a large share of that company, but they have controlling ownership, vis a vis putting a huge investment into Fueled.</p>\n\n\n\n<p>And what Fueled, other than of course some opportunities for some liquidity for their owners wanted out of that, is a real partner who knows how to, from the investor side, has both connections, has both capital, has sort of financial and industry sophistication to help them build a bigger business together.</p>\n\n\n\n<p>So to put it in plain terms, what Insignia wants to do is work with a platform, which for them that was Fueled as the initial partnership, the initial investment. To build a bigger, more valuable company that increases the value of the equity that they have in that business. The way that they do that oftentimes, like the strategy in professional and digital services is you do what&#8217;s called add ons.</p>\n\n\n\n<p>So you bring in other companies into the fold, you attach them to that company and you end up with something that is much more valuable for a number of reasons. It&#8217;s higher revenue, but it&#8217;s also everything I just described about you have a you know, a shop that looks like a full digital services provider with CRM capability and sales force and CMS and mobile apps, is just a more valuable business than one that&#8217;s kind of pigeonholed in one of those spots.</p>\n\n\n\n<p>So you can kind of make smart investments with investors that really raise the overall value of the business. Like 10up, I would say Fueled&#8217;s ownership really did not have the sort of the sophistication, appetite, capital to do that on their own. Which is why they partnered up with Insignia. Insignia has sort of the financial vehicle, all those things I described earlier in the conversation, where it&#8217;s what does it mean to restructure legally 10up to have multiple ownership, and to have shares and to have stock and to have investors with a lot of influence and connections in the space.</p>\n\n\n\n<p>So long story short, they help us restructure to be able to join with Fueled, to be able to make one business out of these two companies. And that happens, in large part, by helping purchase a significant amount of 10up equity, so I am no longer the dominant controlling owner of 10up.</p>\n\n\n\n<p>It&#8217;s a little muddy, and I guess like the short version of it is like they are the financial backers for this combined entity. They make it possible to restructure the business and combine into one through capital, and they also bring quite a bit of sophistication around how to build these platforms. They have connections with other companies that can be acquired, they have a lot of connections with very senior, influential people in the decision making space, in the agency space and in the B2B space. So it&#8217;s not that they just bring money, they also bring a lot of wisdom about how to build these larger companies as investors, advisors, board members with strong connections.</p>\n\n\n\n<p>[00:27:12] <strong>Nathan Wrigley:</strong> Now that the ink is dry on the contracts and you&#8217;ve had a little bit of water flowing under the bridge, I&#8217;m just wondering if you can tell us how 10up particularly has changed? I know that your company is broadly distributed, and I just wondered, what is it that it&#8217;s going to look like if we can cast our eyes forward a year into the future? What are you endeavoring to create there? Is the idea that this one entity, everybody will be mixed? It will be a homogenous entity or will we have, broadly speaking, will we still have the WordPress side? What are you planning?</p>\n\n\n\n<p>[00:27:42] <strong>Jake Goldman:</strong> So the first thing to say is when we get like sort of in the weeds of how it&#8217;s going to operate, and a question of like what has changed today. So far that is still a journey of discovery that we are on. That&#8217;s not BS, that is authentic. I can speak to what we all sort of I think share as like a heading and vision and ultimate destination, when you talk about the one, two, three years out.</p>\n\n\n\n<p>But we don&#8217;t think that means like jumping in and month one, this is not like shifting around 17 different divisions and immediately restructuring in three months. No, we are learning from each other, we are still deep in the process of teams and project management, and design, and growth, and sales, and engineering. Sort of comparing notes, getting to understand each other better, getting more insight into each other&#8217;s businesses. Sharing leads, sharing opportunities that we think might be better fit to one team or the other. Sometimes sharing personnel where they&#8217;re skillsets overlap and one team or the other could use help.</p>\n\n\n\n<p>But really operating essentially as two, continuing to operate as we did before the merger, as two strong partners with a bunch of research, discovery, integration, exploration going on in the background of the company.</p>\n\n\n\n<p>In terms of where we are headed. Yes, our goal is ultimately not to be like there&#8217;s a 10up and there&#8217;s a Fueled out there competing in the agency space, and sometimes sharing opportunities. Our ultimate goal is to be a unified business, to have a clear, centralised governance. To be able to go to market as one entity, one brand and sell a story of not two different partners working together, but one fully integrated set of capabilities.</p>\n\n\n\n<p>Now what that looks like again, there&#8217;s a lot to color in there that I just don&#8217;t have the answer for. I don&#8217;t even know that I have an answer, a definitive answer today for where like the brand question would even land. We might find ourselves in 12 months in a model that is still fairly divisional. Which is to say maybe more centralised leadership, centralised operations, more marketing and business development consolidation, but could still sort of like operate with divisions within the business.</p>\n\n\n\n<p>One more focused on applications. One more focused on web and CMS. Could end up with some teams that are totally cross functional. The honest to god answer is that is what we are exploring and trying to work on with our teams and find the best path today. Better right than quickly is our point of view.</p>\n\n\n\n<p>[00:29:35] <strong>Nathan Wrigley:</strong> In terms of the roster that you&#8217;ve currently got. Now you mentioned TechCrunch, and we know that there&#8217;s a whole bunch of other enormous companies that you&#8217;ve worked with. Did you feel compelled to go out and communicate with them prior to heading down the direction of merging with Fueled? Was there any intuition that maybe your clients would be interested to know that information or potentially you know, nervous to hear that you were doing this, and how would it affect their incredibly important property?</p>\n\n\n\n<p>[00:30:00] <strong>Jake Goldman:</strong> In a spiritual sense we did not have a lot of concern about it. We thought it would make sense. This is not a case of say it rather crassly like being gobbled up by some international conglomerate that might be controversial to some customers. This was not a case of like changing to foreign ownership of a business.</p>\n\n\n\n<p>It was hard to see how any customers would be anything but sort of happy to hear that we have maybe more sophistication as an entity and a governance and ownership model than, one guy in California owning the business. And pleased to hear that we were expanding our capabilities and could offer more solution and more services to them in the future. So we didn&#8217;t really have any sense that like somebody was going to be very upset to hear about this.</p>\n\n\n\n<p>There is a process, there is a certain amount of like notifying, interviewing a small number of customers beforehand that are seen as, maybe riskier because they have strong terms in their contracts around change of ownership. Or just large clients where you know nobody&#8217;s going to be happy if for some shocking reason it changed the game afterwards.</p>\n\n\n\n<p>So were some that were informed and brought into the loop, not because we had deep existential concern about it, but because it was a part of a due diligence process. We did speak to a few customers but otherwise the process was largely once we knew this was closing, once we knew this deal was going to get done, it was a rapid notification process. A harried two or three weeks right after the deal closed to make sure that we had a very orderly structure. But a quick way, inform those clients, let them know what that meant for them, deal with any contract language implications or updates. And I have to say I think that went exceptionally smoothly.</p>\n\n\n\n<p>[00:31:24] <strong>Nathan Wrigley:</strong> Just touching on WordPress, this is after all a WordPress podcast. You have mentioned that your team over the years has contributed really quite large amounts of time and effort and resources to the WordPress project itself. And so I&#8217;m just curious as to whether this has changed anything. Or whether you are still everything pointing towards WordPress going to be contributing in the same way. Still using that as the platform of choice for the web side of things, if nothing else.</p>\n\n\n\n<p>[00:31:50] <strong>Jake Goldman:</strong> So in terms of contribution nothing has changed. My hope is that this will open up added opportunities to contribute, make impact in the space. I think all of our new partners, Fueled, Insignia, understand that you know endemic to our strategy, our culture, our core values is that level of contribution that we make to the space.</p>\n\n\n\n<p>It is, you know even if you don&#8217;t believe in it from an ethical sense, from a business sense it has made sense for us and it has helped us grow and it&#8217;s helped us acquire business, and helped us have impact, and build culture. So you know there are no plans to change that level of investment that we make.</p>\n\n\n\n<p>In terms of WordPress as a CMS platform, yeah, I mean at the end of the day Fueled and Insignia fully understood that that is our preferred CMS platform, that is the dominant platform that we use. Fully understood that, you know making a bet on 10up was also making a bet on WordPress continuing to be healthy and grow as a platform. The CEO, a lovely fellow named Rameet literally spoke to Matt Mullenweg, as I understand, before I even knew he did about WordPress and about 10up.</p>\n\n\n\n<p>At the end of the day they are looking, you know they chose to merge with us and are looking for us to be the experts in CMS implementation and looking for us to be the experts in how to make these websites and experiences. They don&#8217;t have a hubris to think they&#8217;re going to come in and tell us, we wanted to merge with you but we think you&#8217;ve been doing it wrong the whole time, and you need to change platforms, right? That&#8217;s almost silly as a way of thinking about it.</p>\n\n\n\n<p>The short answer is I mean yes, they very much understand what they were buying. They see us as the experts. They look up for us to continue guiding and we continue to see WordPress as our dominant platform that we work with.</p>\n\n\n\n<p>[00:33:14] <strong>Nathan Wrigley:</strong> I hope you don&#8217;t mind me asking you some personal question. I&#8217;m just wondering how this is going to affect you? You may decline to answer this question if you wish, and we can just cut it out entirely. But I&#8217;m just curious. From a lot of what you said there did seem to be some little bits of, you were intimating that some of these things were going to be wonderful for you as well as the company.</p>\n\n\n\n<p>And I&#8217;m just wondering if you&#8217;ve had any of those experiences? Has work become more pleasurable? Have you managed to get out of this what you want? Have you managed to make new friendships and new alliances? Is it everything you hoped it would be?</p>\n\n\n\n<p>[00:33:46] <strong>Jake Goldman:</strong> That&#8217;s a big question. I mean there&#8217;s two ways to answer that. I think there&#8217;s, I&#8217;m not trying to dodge, I think there&#8217;s a couple of different, two different ways of looking at that question. So the biggest sort of like aspiration that I wanted out of this, which is new partners, having people that are more my equals or even my seniors in this combined business. New advisors, new people that take true, you know in addition to some people on our team, new people, new additions to the team that take real, literal ownership of the business.</p>\n\n\n\n<p>Yes, that is the case and it is welcome for me to have that, those kind of additions. I adore many of my new peers, feel energised when I work with them, when we sit down and plot out the future and work together. All of that is true. Now I think in the moment, four weeks in would I say that my life is now flowers and roses and better and easier? Let&#8217;s be earnest here. There&#8217;s two things going on at the moment. One is I had the same full time job that I had the week before, with a little less heavy as the head that wears the crown going on. But the same job that I had the month before in terms of like, again, we didn&#8217;t snap our fingers and transform the business operations overnight.</p>\n\n\n\n<p>And now I also have this additional responsibility, which I take very seriously of that, playing a key role in facilitating change management and a longer term integration strategy. So if I was being very honest at the moment, my feeling is delight with the partners that we&#8217;ve chosen. A little bit of overwhelm and fatigue on like how much more there is to do at the moment. The seriousness with which I take this whole process is not a light burden. Doing big change management across a team of our scale is not a light duty for lack of a better word.</p>\n\n\n\n<p>[00:35:13] <strong>Nathan Wrigley:</strong> This question would be best answered in a year&#8217;s time.</p>\n\n\n\n<p>[00:35:15] <strong>Jake Goldman:</strong> A hundred percent it would.</p>\n\n\n\n<p>[00:35:17] <strong>Nathan Wrigley:</strong> Let&#8217;s put that topic behind us and just get onto a subject which is completely nothing to do with what we&#8217;ve been talking about. Just for a few moments. I&#8217;m interested because AI is all the rage, if we were to rewind the clock two years, just two years, I don&#8217;t think anybody really in the WordPress space was really talking about AI. Maybe tangentially or some aspirational talk about what it could do.</p>\n\n\n\n<p>And now fast forward to today. We&#8217;ve just had a year of utterly seismic change in the capabilities of what AI can do. Most of it disconnected completely with website building. So we&#8217;ve got OpenAI and Anthropic and a bunch of other companies launching really seismically amazing products. And I&#8217;m just wondering what your thoughts are? What your intuitions are about where this is going to land with website building, with WordPress?</p>\n\n\n\n<p>Now I know that&#8217;s an incredibly broad question but I feel that&#8217;s all we&#8217;ve got at the moment because we don&#8217;t have concrete things to pin our discussion to. So I&#8217;m just wondering what your general thoughts are.</p>\n\n\n\n<p>[00:36:16] <strong>Jake Goldman:</strong> Great question. Hang on one second while I type that question into ChatGPT. So we have lots of thoughts and lots of initiatives going on there. I think the first one to call out, and this is a bit of a plug, we have an extension we&#8217;ve been working on since before this was cool, since 2018. Back when we called this machine learning more often than artificial intelligence, called Classifai, that&#8217;s C L A S S I F A I, because we&#8217;re too clever with our puns. So ClassifaiPlugin.com, or just look up Classifai or 10up and AI, it&#8217;ll probably come up. I&#8217;m sure I&#8217;ll put it in show notes or something.</p>\n\n\n\n<p>That plugin has been an experiment staging ground with us for, again, going back to 2018. It is not focused on like how to, I&#8217;m not sure I buy that this is the right use case for our kind of customers or you know the dominant part of the market. It does not try to be one of these like, we&#8217;re going to build your whole website for you. We&#8217;re going to write your story for you and your content. And those are cool demos, there are probably some very small business kind of use cases where you just need kind of like a boilerplate, you know you need to have the brochure. That just has to be a checkbox put next to we have a website.</p>\n\n\n\n<p>But for the kind of market we work with I don&#8217;t think those are more than frankly sort of novelty demos at this point in time. That might change as the technology gets better in a year or two, but I don&#8217;t think a serious marketer is saying I&#8217;m going to write my pages and do my layouts just using AI on its own.</p>\n\n\n\n<p>What we do think is that AI integrated with WordPress, which is what Classifai aims to do, can be extraordinarily powerful in simplifying repetitive tasks, and being an assistant and support to people that are creating and publishing content. So it does things like integrate natively with image generation services. If you want to generate a photo for your site, it will do things like create alt tags, and text descriptions for images, smart crop. It&#8217;ll take a pass at making paragraphs shorter or longer, individually in form on your site. It&#8217;ll tag images so you can navigate your media library better. It&#8217;ll suggest alternative titles you might want to consider.</p>\n\n\n\n<p>So we are very focused in Classifai on what we would describe as extremely pragmatic, realistic, not novelty demo, kind of integration so that WordPress can compete. You know it&#8217;s completely open source, free plugin. You have to pay sometimes for the third party services, like the image generation services are mostly licensed. But we don&#8217;t make anything off of that, you just buy those services and plug your keys into Classifai settings.</p>\n\n\n\n<p>So this very pragmatic setup where we think that customers, we hope other people using WordPress, can look to Classifai to be a very sort of modern, sort of high end, prosumer enterprise solution that gives an answer to, how do you use WordPress and AI?</p>\n\n\n\n<p>On the technology, engineering side we have a working group. We have ongoing exploration of how do we in a safe way, in a private way, that respects our customers but in a way that keeps us competitive, continues to make sure that we don&#8217;t fall behind or suddenly become just wildly out of league and what it costs us to make something. Is experimenting with things like GitHub Copilot and more structured ways we can use that across projects. Experimenting with things like code generation with chat GPT. I don&#8217;t think the kind of websites we make are going to be like, build a whole website or 80 percent of the code with those tools.</p>\n\n\n\n<p>I see it as an accelerant, no different than like when we had IDEs or even when we shifted from writing machine code to more natural languages like C and C++ and Swift and all the rest. And I think it&#8217;s still early in that exploration. There are certainly signals that there are some kinds of tasks, certain migration tasks, certain repetitive scripting tasks in the shell that you can automate, that you can accelerate.</p>\n\n\n\n<p>And our job right now, and that job&#8217;s not done, is to figure out when you have a scale of you know 300 people and 100 or 200 some engineers. How do you create a standard? How do you create a process? What does it mean to create an expectation? Not across one or two people who are smart, curious and hungry to use these, but across an entire team to stay competitive and stay ahead of the curve.</p>\n\n\n\n<p>I wish I could bring you all the answers other than to say like I think that technology will keep getting better. I do think it will help. I am not in the camp of at least for the next you know sort of five years. I am not in the camp of, this is going to replace the need for engineers. You know there are certain leaders in the WordPress space who I think would say like they imagine a few years from now their engineering teams go down from like a hundred to like five.</p>\n\n\n\n<p>Maybe I&#8217;ll eat these words. I think it&#8217;s a bit silly when we think about the next two, three, four, even five years. I think it&#8217;s more like an extreme version of the leap again to like things that would have seemed very foreign 40 years ago, 50 years ago when the industry was frankly smaller, not larger. Where we started to have tools you know template patterns like you know the internet and access to Stack Overflow and good code completion tools.</p>\n\n\n\n<p>These accelerant tools did not obliterate the industry, right? The industry is larger than it&#8217;s ever been. Which is to say like a rapid, rapid, huge changes that make engineering and technical tasks easier has never in the history of tech and computing and the web made for a smaller industry. It has always made a larger industry. It just gives people more time to think, to be creative, to make things that are more advanced. It&#8217;s raised the bar higher on what people expect in terms of quality and completeness of the experiences they get. I think that is more the world that we live in for the next three, four, five years now.</p>\n\n\n\n<p>[00:40:59] <strong>Nathan Wrigley:</strong> I&#8217;m just wondering if there is some little part of AI which you&#8217;ve looked at, and again you know if this encroaches on business processes and things like that, you need not divulge what it is. I just wondered if at the level that you&#8217;re working at, if there are certain aspects of AI which you&#8217;re thinking, boy that really would save us a lot of time. That really does look like something which we should invest. It sounded like everything that you were developing, the Classifai is for the end user broadly.</p>\n\n\n\n<p>It enables people like me to do my work quicker. But I&#8217;m just wondering if there was something that you were curious about on the AI side which would make your business processes quicker. And again, feel free to not divulge if you don&#8217;t wish to.</p>\n\n\n\n<p>[00:41:36] <strong>Jake Goldman:</strong> I mean the short answer is yes, I think there is. I&#8217;m not not divulging anything to say like I&#8217;m not sure in a sustainable way what those things are yet. I know what we&#8217;re experimenting with. I know what we see some promise in. I kind of take the longer view and feel like it&#8217;s not clear yet which of these are sort of novelties in their appeal. Which of these are have enduring power as change forces in our process. It still feels like we&#8217;re in a little bit of a, I think, still in the getting to know it phase. I do think there are some things around like more baseline tasks in an estimate, or when we&#8217;re building certain kind of projects or certain kind of sites.</p>\n\n\n\n<p>My suspicion is some migration work, some sort of like more fundamental lower level like set up, the v1 of just setting up a basic added functionality. That will go faster, that will be accelerated. But I have to just be honest. I&#8217;m still not even confident enough that we&#8217;ve done that enough times, tried that enough times, to know whether this is more like when GitHub comes along, becomes popular whether it totally changes the way we work, or it&#8217;s just another tool that helps people be more efficient.</p>\n\n\n\n<p>[00:42:39] <strong>Nathan Wrigley:</strong> My intuitions are that anybody that puts their flag in the sand and says AI will enable this is probably setting themselves up for having to admit that they were wrong. Almost everything that I&#8217;ve predicted has not come to pass. Yeah we just have to be, roll with the punches, be flexible I suppose.</p>\n\n\n\n<p>Jake it&#8217;s been lovely chatting to you today about all of this. I wonder if you make yourself available elsewhere online. Whether or not you want to divulge a social handle that you use, or a good place where people can contact you. Having listened to this there may be people who wish to do that, and if you wish to spread the word about that please do.</p>\n\n\n\n<p>[00:43:14] <strong>Jake Goldman:</strong> Here&#8217;s a phrase I never thought I would say five years ago. So the place to most get my insight and hear what I&#8217;m thinking about business and 10up is LinkedIn. So if you just search for Jake Goldman on LinkedIn I should pop right up, or Jake Goldman in WordPress. That&#8217;s probably the best place to go. I mean go to 10up.com and follow our blog. I mean again all of our business activity as a company is there. In terms of like personal posting, not terribly active on any social media at this point.</p>\n\n\n\n<p>[00:43:36] <strong>Nathan Wrigley:</strong> Well thank you Jake for chatting to me on the podcast today. I really appreciate it.</p>\n\n\n\n<p>[00:43:40] <strong>Jake Goldman:</strong> Thank you for having me. It was a pleasure.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://www.linkedin.com/in/jacobgoldman/\">Jake Goldman</a>.</p>\n\n\n\n<p>Jake is the President &amp; Founder of 10up, a digital agency that builds websites and tools for content creators, leveraging open platforms like WordPress.</p>\n\n\n\n<p>We start the conversation with an exploration of the recent merger with 10up, Fueled and Insignia. For many years, 10up has been one of the leading Enterprise WordPress agencies. With a roster of well-known clients, Jake has grown the company from himself to hundreds of employees.</p>\n\n\n\n<p>Whilst this journey has been exciting and challenging, Jake talks about some areas in which 10up has not been able to compete and how the merger with Fueled will enable them to position themselves for projects which used to be out of reach.</p>\n\n\n\n<p>Fueled brings their experience of crafting mobile experiences, and Insignia brings their financial expertise, as well as the industry connections they have built up.</p>\n\n\n\n<p>Jake shares how this new venture will continue to leverage WordPress as their CMS of choice; these new partners understand and support 10up’s commitment to contributing to WordPress. There are no plans to immediately alter the structures of either 10up or Fueled, It’s more about building an understanding of the capabilities of each partner, working towards a future in which the company grows into one entity over time.</p>\n\n\n\n<p>We talk about the intentional pursuit of potential partners, and Jake reflects on the importance of cultural alignment and connections. He shares how his prior experience has shaped both his personal journey as a leader and the success of 10up, and we explore the milestones, challenges, and key moments that have brought them to where they are today.</p>\n\n\n\n<p>Towards the end of the podcast, we pivot to talk about the role of AI in the future of WordPress. It’s clear that AI is coming, and it’s coming rapidly. Any agency working with WordPress would find this topic hard to ignore. But what impact will it really have? Are we expecting entire websites to be built in seconds by just clicking a button? Jake expresses his view that these tools are to be seen as accelerants, complementing human website development rather than replacing it, particularly at the Enterprise level. We delve into 10up’s ongoing exploration and experimentation with AI, discussing some of the tools they have freely released.</p>\n\n\n\n<p>If you’re interested in how Enterprise agencies grow, or the future of AI with WordPress, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://10up.com/\">10up website</a></p>\n\n\n\n<p><a href=\"https://techcrunch.com/\">TechCrunch website</a></p>\n\n\n\n<p><a href=\"https://fueled.com/en-gb\">Fueled</a></p>\n\n\n\n<p><a href=\"https://10up.com/blog/2023/10up-joins-forces-with-fueled-digital-media/\">Fueling Up: 10up joins forces with Fueled Digital&nbsp;Media</a></p>\n\n\n\n<p><a href=\"https://openai.com/\">OpenAI</a></p>\n\n\n\n<p><a href=\"https://www.anthropic.com/\">Anthropic</a></p>\n\n\n\n<p><a href=\"https://classifaiplugin.com/\">ClassifAI plugin</a></p>\n\n\n\n<p><a href=\"https://www.linkedin.com/in/jacobgoldman/\">Jake Goldman on LinkedIn</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Oct 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:64:\"WPTavern: Automattic Acquires Texts, An All-in-One Messaging App\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=150606\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/automattic-acquires-texts-an-all-in-one-messaging-app\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2807:\"<p>Automattic has acquired <a href=\"https://texts.com/\">Texts</a>, an all-in-one messaging platform, for $50 million. Texts is a newer company founded in 2020 that creates a centralized inbox for all major messaging platforms, including iMessage, WhatsApp, Instagram, Telegram, Signal, Twitter, LinkedIn, Slack, and Discord. </p>\n\n\n\n<p>The proliferation of messaging apps and inboxes has made responding to communication more complicated than it was in previous years. Most companies would prefer to keep users on their own platforms, but Texts offers a new level of interoperability between messaging apps that doesn&#8217;t require the use of its own servers. The website states that users&#8217; messages never touch Texts&#8217; servers. They are encrypted and sent directly to the messaging platforms. Texts charges a monthly subscription, instead of making money by selling users&#8217; data. It also offers a number of AI-powered features for chat summaries, drafts, and translation.</p>\n\n\n\n<p>Automattic&#8217;s Texts acquisition <a href=\"https://wordpress.com/blog/2023/10/24/texts-joins-automattic/\">announcement</a> states that the company is moving &#8220;into a fourth market that’s integral to the modern web experience: messaging.&#8221;</p>\n\n\n\n<p>Mullenweg has been eying the messaging market for years and has previously spoken of his fascination with messaging platforms and their relationship with the independent web. In an <a href=\"https://youtu.be/P2qbSMdCvis\">interview with Om Malik</a> at WordCamp Europe 2017, he mentioned that Automattic was experimenting with Telegram’s group broadcasting feature. More recently, it 2020, <a href=\"https://wptavern.com/automattic-invests-4-6m-in-new-vector-creators-of-the-matrix-open-standard-for-decentralized-communication\">Automattic invested $4.6M in New Vector</a>, a company founded by the creators of <a href=\"https://matrix.org/\">Matrix</a>, an open standard that powers decentralized conversations with end-to-end encryption. </p>\n\n\n\n<p>Texts&#8217; founder, Kishan Bagaria, will take on a new role as Head of Messaging at Automattic and the rest of the 10-person team was retained to continue working on the product.</p>\n\n\n\n<p>In response to an inquiry about the status of the iOS and Android mobile apps for Texts, a representative from Automattic said the company is currently testing an iOS beta with a subset of users. Android support is on the roadmap. The representative also confirmed there are no plans to change pricing right now but Automattic is considering the addition of a freemium plan in the future.</p>\n\n\n\n<p>Texts will be expanding its coverage to streamline messages across more platforms. Matrix, Tumblr, and many more integrations are on the roadmap, including Snapchat, Google Messages, and Reddit.</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, 25 Oct 2023 02:19: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: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:28:\"Matt: Texts Joins Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=102049\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://ma.tt/2023/10/texts-joins-automattic/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3203:\"<p><a href=\"https://texts.com/\">Texts is a fun application (desktop only for now) that brings all of your messages into one inbox</a>. It currently supports iMessage, WhatsApp, Telegram, Signal, Messenger, X/Twitter DMs, Instagram DMs, LinkedIn, Slack, and Discord DMs, with more on the way soon. It runs entirely on the desktop so it&#8217;s super fast and secure. It&#8217;s founded and led by <a href=\"https://kishanbagaria.com/\">Kishan Bagaria</a>, a really unique entrepreneur and technical talent, and has a slate of amazing investors including <a href=\"https://twitter.com/lachygroom\">Lachy Groom</a>, <a href=\"https://rauchg.com/\">Guillermo Rauch</a> (former Automattician!), <a href=\"https://sahillavingia.com/\">Sahil Lavingia</a>, and <a href=\"https://twitter.com/KishanBagaria/status/1716778353439486291\">many others</a>—and I&#8217;m excited to announce that it&#8217;s now part of <a href=\"https://automattic.com/\">Automattic</a>!</p>\n\n\n\n<p>This was announced today on <a href=\"https://pca.st/zkesr4d4\">the Pivot podcast with Kara Swisher and Scott Galloway (my part starts 48:50 in)</a>, and also covered <a href=\"https://www.theverge.com/2023/10/24/23928685/automattic-texts-acquisition-universal-messaging\">in The Verge</a>, <a href=\"https://techcrunch.com/2023/10/24/wordpress-com-owner-buys-all-in-one-messaging-app-texts-com-for-50m/\">TechCrunch</a>, <a href=\"https://www.macstories.net/news/automattic-acquires-interoperable-messaging-service-texts/\">MacStories</a>, and <a href=\"https://www.techmeme.com/231024/p10#a231024p10\">a few others</a>.</p>\n\n\n\n<p>Today is also my 18th anniversary at Automattic! So, an exciting day all around.</p>\n\n\n\n<p>Using an all-in-one messaging app is a real game-changer for productivity and keeping up with things. Texts is a paid app, with discounted student pricing, and I think a lot of people will find value in it. It&#8217;s quickly become one of the top three apps I spend time using.</p>\n\n\n\n<p>This is obviously a tricky area to navigate, as in the past the networks have blocked third-party clients, but I think with the current anti-trust and regulatory environments this is actually something the big networks will appreciate: it maintains the same security as their clients, opens them up in a way consumers will love and is very user-centric, and because we&#8217;re committed to supporting all their features it can actually increase engagement and usage of their platforms.</p>\n\n\n\n<p>We&#8217;re still working out everything for mobile, so if you&#8217;re looking for the all-in-one experience on iOS or Android in the meantime, I recommend checking out <a href=\"https://www.beeper.com/\">Beeper</a>. It really is great to have everything together.</p>\n\n\n\n<p>If you&#8217;re a reverse engineer hacker that is interested in working with a super-small elite team in this space with the fun of a startup and the air cover of Automattic, get in touch with <a href=\"https://twitter.com/KishanBagaria\">Kishan on Twitter DM</a> or email (kb at texts). Here&#8217;s a fun video for Texts. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f604.png\" alt=\"😄\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Oct 2023 18:58: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: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: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:53:\"WordPress.org blog: WordPress 6.4 Release Candidate 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=16219\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/10/wordpress-6-4-release-candidate-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:6558:\"<p>The second release candidate (RC2) for WordPress 6.4 is now available!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended that you evaluate RC2 on a test server and site.</p>\n\n\n\n<p>WordPress 6.4 is <a href=\"https://make.wordpress.org/core/6-4/\">slated for release</a> on <strong>November 7, 2023</strong>—two weeks from today. If you haven’t tried it, now is the time.</p>\n\n\n\n<p>You can test WordPress 6.4 RC2 in three ways:</p>\n\n\n\n<ol>\n<li><strong>Plugin</strong>: Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Direct download</strong>: Download the <a href=\"https://wordpress.org/wordpress-6.4-RC2.zip\">RC2 version (zip)</a> and install it on a WordPress site.</li>\n\n\n\n<li><strong>Command line</strong>: Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br /><code>wp core update --version=6.4-RC2</code></li>\n</ol>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/10/wordpress-6-4-release-candidate-1/\">Read the RC1 announcement</a> for featured highlights, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-4/\">6.4-related posts</a>. If you are looking for detailed technical notes on new features and improvements, the <a href=\"https://make.wordpress.org/core/2023/10/23/wordpress-6-4-field-guide/\"><strong>WordPress 6.4 Field Guide</strong></a> is for you.</p>\n\n\n\n<p>The WordPress 6.4 release is brought to you by an <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">underrepresented gender release squad</a> to welcome the participation and partnership of those who identify as gender-underrepresented in the WordPress open source project.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 6.4 RC2?</h2>\n\n\n\n<p>Thanks to everyone who has tested the beta and RC releases. Since RC1 was released on October 17, there have been more than 25 issues resolved. You can browse the technical details for all recent updates using these links:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.4\">GitHub commits for 6.4</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F18%2F2023..10%2F24%2F2023&milestone=6.4&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Closed Trac tickets since RC1</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/twentytwentyfour/commits/\">GitHub commits for Twenty Twenty-Four</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Contributing to 6.4</h2>\n\n\n\n<p>WordPress is open source software made possible by a community of people collaborating on and contributing to its development. The resources below outline various ways you can help, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Your feedback and help in testing are vital to developing the WordPress software and ensuring its quality. It’s also a meaningful way for anyone to contribute. <a href=\"https://make.wordpress.org/test/2023/09/26/help-test-wordpress-6-4/\">Check out this guide</a> for instructions on testing WordPress 6.4 features.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>During the release candidate phase of WordPress 6.4, the <a href=\"https://make.wordpress.org/security/2023/09/26/bug-bounty-for-wordpress-6-4-beta/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>Do you build themes and plugins? Your products play an integral role in extending the functionality and value of WordPress for users worldwide.</p>\n\n\n\n<p>Hopefully, you have already tested your themes and plugins with WordPress 6.4 betas. With RC2, you will want to continue your testing and update the <em>&#8220;Tested up to&#8221;</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin&#8217;s readme file</a> to 6.4.</p>\n\n\n\n<p>Please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> if you find compatibility issues.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A RC2 haiku</h2>\n\n\n\n<p>You have been waiting<br />Download and give it a test<br />RC2 is here</p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post: <a href=\"https://profiles.wordpress.org/meher/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>meher</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/michelleames/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>michelleames</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</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:\"Tue, 24 Oct 2023 16:45: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:10:\"Meher Bala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:75:\"WordCamp Central: WordCamp Lahore 2023 is looking for Speakers and Sponsors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=4251876\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://central.wordcamp.org/news/2023/10/wordcamp-lahore-2023-is-looking-for-speakers-and-sponsors/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3228:\"<p>Are you a WordPress enthusiast looking for an exciting event to attend? WordCamp Lahore 2023 has just the ticket for you! This official conference, organized by WordPress Lahore, is set to be a fantastic opportunity for WordPress users, developers, and open-source enthusiasts to come together, share knowledge, and contribute to the WordPress community.</p>\n\n\n\n<p>Here&#8217;s what you need to know about WordCamp Lahore 2023:</p>\n\n\n\n<h2 class=\"wp-block-heading\">Early Bird Tickets:&nbsp;</h2>\n\n\n\n<p>If you&#8217;re eager to attend this dynamic conference, you&#8217;re in luck! Early bird tickets are now available for registration at a discounted price. It&#8217;s the perfect chance to secure your spot and save some money. Don&#8217;t miss out on this fantastic offer &amp; visit this link to avail this discounted price.<br /><a href=\"https://lahore.wordcamp.org/2023/tickets/\">https://lahore.wordcamp.org/2023/tickets/</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Date and Schedule:</h2>\n\n\n\n<p>&#8211; Contributor Day: December 9th, 2023</p>\n\n\n\n<p>&#8211; Formal Conference Day: December 10th, 2023</p>\n\n\n\n<p>On December 9th, WordCamp Lahore will host a Contributor Day where attendees can receive training on how to contribute to WordPress open-source projects. This is a unique opportunity to learn how to give back to the WordPress community and make a real impact on the world&#8217;s most popular content management system.</p>\n\n\n\n<p>The formal conference day on December 10th will feature a diverse range of sessions and workshops, all focused on WordPress. Whether you&#8217;re a beginner looking to learn the basics or an experienced developer seeking advanced insights, there will be something for everyone.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Sponsorship Opportunities:</h2>\n\n\n\n<p>WordCamp Lahore is currently seeking sponsors to help make this event a success. Sponsoring a WordCamp is not just an excellent way to support the WordPress community, but it also provides visibility for your brand among an audience passionate about WordPress.https://lahore.wordcamp.org/call-for-sponsors/</p>\n\n\n\n<p>Each package offers unique benefits, allowing you to choose the level of support that aligns with your goals and budget. If you&#8217;re interested in becoming a sponsor, you can find more information about the packages and their respective benefits on the WordCamp Lahore 2023 website. Just visit this link: <a href=\"https://lahore.wordcamp.org/2023/call-for-sponsors/\">WordCamp Lahore 2023 &#8211; Call for Sponsors</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Don&#8217;t Miss Out:</h2>\n\n\n\n<p>WordCamp Lahore 2023 promises to be an exciting and enriching experience for anyone passionate about WordPress and open-source technologies. Early bird tickets are available, and sponsorship opportunities await those who want to make a difference in the WordPress community.</p>\n\n\n\n<p>Mark your calendar for December 9th and 10th, and be a part of this thriving WordPress community event in Lahore. Get your tickets, explore the sponsorship options, and get ready for a memorable WordCamp!</p>\n\n\n\n<p>For more information and updates, visit the official WordCamp Lahore 2023 website. We look forward to seeing you there!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Oct 2023 14:55:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Abdullah Ramzan\";s: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:108:\"Do The Woo Community: Agency Growth, Challenges, Workflow and Team Building with Matt Nelson and Neil Harner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=77356\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://dothewoo.io/woocommerce-agency-growth-challenges-workflow-client-focus/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:462:\"<p>Matthew Nelson of FirstTracks Marketing and Neil Harner of Inverse Paradox, share their experiences in growth, workflow and team building.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/woocommerce-agency-growth-challenges-workflow-client-focus/\">Agency Growth, Challenges, Workflow and Team Building with Matt Nelson and Neil Harner</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</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, 24 Oct 2023 12:23:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:58:\"WPTavern: The 2024 State of Open Source Survey Is Now 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:30:\"https://wptavern.com/?p=150592\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/the-2024-state-of-open-source-survey-is-now-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:1481:\"<p>The Open Source Initiative (OSI), a non-profit organization that plays an important role in the open source ecosystem as stewards of the <a href=\"https://opensource.org/docs/osd\">Open Source Definition (OSD)</a>, has opened its <a href=\"https://www.surveymonkey.com/r/open-source-initiative\">2024 State of Open Source</a> survey. This is the third year OSI has published the survey in collaboration with OpenLogic by Perforce, who has sponsored it in previous years. The organizations will be joined by the Eclipse Foundation for the 2024 edition.</p>\n\n\n\n<p>Both users and contributors to open source software are invited to participate in the survey, but the questions are more geared towards organizations using and building open source software. The survey gathers information on technology trends, how open source is being used, challenges, growth areas, and more. The data will be used in the 2024 State of Open Source Report, which will be freely available on the OpenLogic website in early 2024.</p>\n\n\n\n<p>&#8220;The data collected in this survey shines a light on the importance of tracking the evolution of Open Source licenses, especially at a time when those licenses are changing from OSI-approved to proprietary,&#8221; OSI Executive Director Stefano Maffulli said.</p>\n\n\n\n<p>The survey is open through November 10, and takes approximately 7-10 minutes to complete. All responses will be anonymized and the data will be published under an open source license.</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, 24 Oct 2023 04:01: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: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:57:\"WPTavern: LiteSpeed Cache 5.7 Patches XSS Vulnerability \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=150578\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wptavern.com/litespeed-cache-5-7-patches-xss-vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2583:\"<p>The <a href=\"https://wordpress.org/plugins/litespeed-cache/\">LiteSpeed Cache plugin</a>, used on more than four million WordPress sites, has patched an XSS vulnerability in version 5.7. The plugin provides all-in-one site acceleration capabilities, server-level caching, and a collection of optimization features. It is compatible with WordPress multisite, and popular plugins like WooCommerce, bbPress, and Yoast SEO, which may contribute to its popularity. </p>\n\n\n\n<p>Wordfence security researcher István Márton discovered the XSS vulnerability and responsibly disclosed it to the LiteSpeed Cache Team on August 14, 2023. The Wordfence <a href=\"https://www.wordfence.com/blog/2023/10/4-million-wordpress-sites-affected-by-stored-cross-site-scripting-vulnerability-in-lightspeed-cache-plugin/\">advisory</a> describes how the vulnerability might make it possible for an attacker to inject malicious scripts:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The LiteSpeed Cache plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the ‘esi’ shortcode in versions up to, and including, 5.6 due to insufficient input sanitization and output escaping on user supplied attributes. This makes it possible for authenticated attackers with contributor-level and above permissions to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.</p>\n</blockquote>\n\n\n\n<p>Márton also cautioned that previous versions of WordPress contained a vulnerability that allowed shortcodes supplied by unauthenticated commenters to be rendered in certain configurations. All versions since WordPress 5.9 were subject to this vulnerability and if users aren&#8217;t on <a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\">a patched version of WordPress</a>, the vulnerability would &#8220;make it possible for unauthenticated attackers to exploit this Cross-Site Scripting vulnerability on vulnerable installations.&#8221; </p>\n\n\n\n<p>LiteSpeed Cache patched the vulnerability in version 5.7, released to WordPress.org on October 10. Although the update has been available for two weeks, only 30% of the plugin&#8217;s user base is running the latest version.</p>\n\n\n\n<p>LiteSpeed Cache users are recommended to update to the latest patched version as soon as possible. Check out the <a href=\"https://www.wordfence.com/blog/2023/10/4-million-wordpress-sites-affected-by-stored-cross-site-scripting-vulnerability-in-lightspeed-cache-plugin/\">advisory</a> from Wordfence for more details and a full technical analysis.</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, 24 Oct 2023 00:28:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:63:\"WPTavern: Ollie Dash Plugin Now Available for Ollie 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=150508\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/ollie-dash-plugin-now-available-for-ollie-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:3324:\"<p>The <a href=\"https://olliewp.com/\">Ollie block theme</a>, created by Mike McAlister and Patrick Posner, now has a companion plugin available called Ollie Dash. The theme made headlines earlier this month after <a href=\"https://wptavern.com/contentious-review-process-leads-ollie-theme-to-remove-innovative-onboarding-features-amid-stagnating-block-theme-adoption\">a contentious WordPress.org review process led its authors to remove the innovative onboarding features</a>. Ollie was approved for WordPress.org but without the time-saving onboarding features its authors initially hoped to include. </p>\n\n\n\n<p>Testing the plugin, it is a night and day difference between having onboarding for a theme with so many patterns and options, versus getting dropped into a new theme with no direction. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2582\" height=\"1308\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/10/Screen-Shot-2023-10-21-at-4.07.23-PM.png\" alt=\"\" class=\"wp-image-150521\" />\n\n\n\n<p>Instead of hunting around for various settings, the plugin helps users get everything set up with just a few clicks. It includes settings for the color palette, brand color, logo, and site icon. </p>\n\n\n\n<p>The wizard also enables fast page creation where users can check a box for any of the full-page designs that they want to be created as pages.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2092\" height=\"1202\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/10/Screen-Shot-2023-10-21-at-4.21.49-PM.png\" alt=\"\" class=\"wp-image-150522\" />\n\n\n\n<p>One particularly time-saving screen on the onboarding wizard is the one with the homepage settings. Getting the homepage set can be a confusing part of setup for new WordPress users, especially if they don&#8217;t know where to look for the setting.  Ollie Dash allows a user to select the homepage from a dropdown before they even begin customizing the site. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2084\" height=\"1208\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/10/Screen-Shot-2023-10-21-at-4.26.47-PM.png\" alt=\"\" class=\"wp-image-150524\" />\n\n\n\n<p>At the end of the onboarding wizard, users have the option to instantly create and activate a child theme. It&#8217;s not necessary for every website, but is a major time saver for those who intend to further customize the theme&#8217;s code.</p>\n\n\n\n<p>The onboarding includes docs and video resources for getting started, which can be loaded directly inside the wizard without leaving the site.</p>\n\n\n\n<p>McAlister said Ollie Dash will be the foundation for more features his team has in development. They are taking the plugin route as an opportunity to add more functionality than would generally be allowed in a WordPress.org-hosted theme.</p>\n\n\n\n<p>McAlister said he plans to make the plugin available on WordPress.org in the future. There are currently 1,062 plugins awaiting review in the queue today, with a wait time of 87 days for an initial review. In the meantime, Ollie Dash can be <a href=\"https://olliewp.com/download/\">downloaded</a> from the Ollie website and can also be found <a href=\"https://github.com/OllieWP/ollie-dash\">on GitHub</a>. Users will be notified in the dashboard when there is an update.</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, 21 Oct 2023 20:53: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: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:44:\"WPTavern: Elementor Postpones DreamWeb 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=150480\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/elementor-postpones-dreamweb-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:2470:\"<p><a href=\"https://elementor.com/\">Elementor</a>, the most popular website builder plugin for WordPress with more than 5 million active installations, has postponed its upcoming <a href=\"https://elementor.com/pages/dreamweb/\">DreamWeb</a> event. The Israel-based company was set to host its first in-person conference  on November 2, in Berlin, Germany, but has postponed it due to the circumstances following Hamas&#8217; terrorist attack on Israel on October 7.</p>\n\n\n\n<p>In 2022, Elementor hosted more than 400 meetup events. DreamWeb was set to be a one-day event at the <a href=\"https://alte-muenze-berlin.de/\">Alte Münze</a> venue with keynotes, knowledge-sharing, activities, networking opportunities, and an evening gala. Early bird tickets went on sale for 99€ in early October.</p>\n\n\n\n<p>The event was postponed shortly after the attacks, with a statement on the DreamWeb page:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>At Elementor we can’t ignore the devastation that has been experienced in Israel over the last few days. We’ve decided to postpone the Dream Web event and announcement of the ShowOff winner, until we return to calmer days.&nbsp;</p>\n\n\n\n<p>We stand in solidarity supporting family, friends and fellow citizens.</p>\n</blockquote>\n\n\n\n<p>Many of the company&#8217;s employees are based in Israel and have friends and family affected by the ongoing conflict. </p>\n\n\n\n<p>&#8220;Guided by our values of putting people first, we are diligently taking every measure to ensure the well-being of our employees in Israel, all the while operating to continue our global work with and for Web Creators,&#8221;  Elementor representatives <a href=\"https://www.facebook.com/elemntor/posts/634991428782709:1405926339959966?__cft__[0]=AZVZJVxprAGYm2s5mHtlJUr-PEOwwzScmGpg2TYLgbzKArtxcBHcZpgHPXW4uNW7zSlR5bBPDtIir6NMIG8tY5z_sg55Kxnh80uwvIY2R9cuMYStNBWEBgE6azpYGwwlWrhj24Bnqgc6jNknY8Jx_479p67M7KoLTp6TwhIY7ZnPx7D8COpVs8R2e_X8WAuKpLY&__tn__=%2CO%2CP-R\">wrote</a> on the product&#8217;s Facebook account on October 15.</p>\n\n\n\n<p>&#8220;Some of us are hiding with children in shelters as rockets are fired on our cities, and some managed to escape from the Hammas terrorists in the south of Israel to safer places. All of us, unfortunately, know someone who was murdered, or kidnapped.&#8221;</p>\n\n\n\n<p>The DreamWeb event has been postponed indefinitely, and Elementor stated that &#8220;a new date will be announced as peaceful days return.&#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:\"Fri, 20 Oct 2023 21:39: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: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:57:\"Do The Woo Community: Do the Woo Podcast Hits Episode 400\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=77171\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://dothewoo.io/do-the-woo-podcast-hits-episode-400/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:371:\"<p>As we hit episode 400, Ronald chats with BobWP with a look back and into the next few months with the Do the Woo podcast.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/do-the-woo-podcast-hits-episode-400/\">Do the Woo Podcast Hits Episode 400</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</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, 20 Oct 2023 10:23:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:79:\"WPTavern: State of the Word 2023 Will Broadcast Live from Madrid on December 11\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=150447\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/state-of-the-word-2023-will-broadcast-live-from-madrid-on-december-11\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1494:\"<p>WordPress co-founder Matt Mullenweg will be delivering his annual State of the Word (SOTW) address <a href=\"https://wordpress.org/news/2023/10/state-of-the-word-2023/\">from Madrid</a> before a live audience on December 11, at 15:00 UTC. </p>\n\n\n\n<p>Last year&#8217;s event took place in New York City with attendance by invitation only, and 2023 will mark the first year the SOTW will take place from a city outside North America. This change may be a deliberate recognition of the majority (<a href=\"https://wordpress.org/about/stats/\">51.4%</a>) of WordPress users who run the software in a non-English language. WordPress adoption has the most potential for growth in emerging markets and locales where Spanish, Arabic, and Chinese languages are spoken. </p>\n\n\n\n<p>Traditionally, Mullenweg has used the State of the Word address to make important announcements, share progress, galvanize the contributor base, and recast the vision for WordPress. As the Gutenberg project is now into Phase 3 focusing on collaboration, I would not be surprised to see a demo of functionality that users can expect to see in 2024.</p>\n\n\n\n<p>Live attendees will need to reserve a ticket for their seats at the in-person event. A live stream will be available for the vast majority of the WordPress world who will not be able to attend. As in previous SOTW events, anyone will be able to submit questions for the live Q&amp;A portion. The team managing the event plans to release more details in November.</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, 20 Oct 2023 03:58:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: WordPress Relaunches Showcase Powered by 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=150376\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wptavern.com/wordpress-relaunches-showcase-powered-by-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:4711:\"<p>WordPress.org has launched the redesign of the <a href=\"https://wordpress.org/showcase/\">Showcase</a>, with new block-based components, through a collaboration between the Design, Marketing, and Meta teams that began last year. It&#8217;s part of a larger effort to modernize WordPress.org and comes two months after the project relaunched a <a href=\"https://wordpress.org/news/2022/08/a-new-wordpress-org-homepage-and-download-page/\">new design for the WordPress.org homepage and Download page</a>.</p>\n\n\n\n<p> The updated Showcase allows visitors to browse via categories and tags and offers a significantly improved experience on mobile.  It included 101 sites at launch, which can be filtered by five categories: Business, Community, Creative, Publication, and Store, along with nearly half a dozen tags. Visitors can also select from three flavors: WordPress, WordPress Enterprise, and Multisite.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1432\" height=\"1196\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/10/Screen-Shot-2023-10-18-at-11.08.40-PM.png\" alt=\"\" class=\"wp-image-150379\" />\n\n\n\n<p>The featured listing at the top of the Showcase randomly updates on refresh. Individual listings in the showcase include screenshots of both desktop and mobile views, along with a brief overview of why the site was included. The background for the screenshots is automatically matched to complement the website&#8217;s main colors.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1430\" height=\"1164\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/10/Screen-Shot-2023-10-18-at-11.27.45-PM.png\" alt=\"\" class=\"wp-image-150382\" />\n\n\n\n<p>The showcase was designed to inspire visitors and show them what WordPress can do. It contains a diverse representation of some of the best WordPress-powered sites on the web, including the <a href=\"https://wordpress.org/showcase/meta-newsroom/\">Meta Newsroom</a>, <a href=\"https://wordpress.org/showcase/harvard-university/\">Harvard University</a>, <a href=\"https://wordpress.org/showcase/nasa/\">NASA</a>, <a href=\"https://wordpress.org/showcase/rolling-stone/\">Rolling Stone</a>, <a href=\"https://wordpress.org/showcase/usain-bolt/\">Usain Bolt</a>, <a href=\"https://wordpress.org/showcase/the-white-house/\">The White House</a>, among many other high profile web properties. The showcase also includes some lesser known, beautifully designed sites, featuring art and creativity across a wide range of disciplines, highlighting the endless possibilities and versatility of the WordPress platform. </p>\n\n\n\n<img width=\"2402\" height=\"1088\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/10/Screen-Shot-2023-10-19-at-6.22.19-PM.png\" alt=\"\" class=\"wp-image-150435\" />\n\n\n\n<p>This new implementation of the showcase is powered by blocks, built on a <a href=\"https://github.com/WordPress/wporg-showcase-2022\">custom child theme</a> for WordPress.org&#8217;s <a href=\"https://github.com/WordPress/wporg-parent-2021\">parent block theme</a>.</p>\n\n\n\n<p>&#8220;This structure allows the site to take advantage of Core functionality like Group and Query blocks as well as custom blocks explicitly built for WordPress.org,&#8221; Automattic-sponsored WordPress core contributor Nick Diego said.</p>\n\n\n\n<p>&#8220;The Showcase also introduces new block-based functionality and several components that will be used elsewhere on the WordPress.org network. Improvements, such as the standardization of layout and spacing variables (<a href=\"https://github.com/WordPress/wporg-parent-2021/issues/105\">#105</a>) and the new Query Filter block (<a href=\"https://github.com/WordPress/wporg-mu-plugins/pull/441\">#441</a>), will make it easier to update other areas of WordPress.org to blocks.&#8221;</p>\n\n\n\n<p>The updated showcase is an invaluable resource for agencies and freelancers who are building sites for clients and need to demonstrate the capabilities of WordPress to scale and serve any industry. It&#8217;s also still <a href=\"https://wordpress.org/showcase/\">open for new submissions</a>, which meet the following criteria:</p>\n\n\n\n<ul>\n<li>Using WordPress in a unique or innovative way</li>\n\n\n\n<li>Representing a notable organization, government entity, or corporation as an official blog or website</li>\n\n\n\n<li>Using modern WordPress</li>\n</ul>\n\n\n\n<p>Contributors are working to streamline and <a href=\"https://github.com/WordPress/wporg-showcase-2022/issues/223\">automate</a> the submission process, although it will still include a manual review.  As this process improves, the showcase will become easier to maintain than it has been in previous years.</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, 19 Oct 2023 23:15: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: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:60:\"WordPress.org blog: State of the Word 2023 – Save the Date\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=16116\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2023/10/state-of-the-word-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1591:\"<img width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/Web-SOTW-Image-1200x800-2.png?resize=1024%2C683&ssl=1\" alt=\"Madrid State of the Word 2023, Dec 11, 2023 at 15:00 UTC, Madrid, Spain\" class=\"wp-image-16208\" />\n\n\n\n<p>It’s time to save the date, December 11, 2023, for this year’s State of the Word!</p>\n\n\n\n<p>State of the Word is the annual keynote address delivered by the WordPress project’s co-founder, <a href=\"https://ma.tt/\">Matt Mullenweg</a>. Every year, the event shares reflections on the project’s progress and aspirations for the future of open source.&nbsp;</p>\n\n\n\n<p>For the first time, State of the Word will take place outside North America–this time with the Spanish community in <strong>Madrid, Spain</strong>. The event will be live-streamed to WordPress enthusiasts around the globe via WordPress.org social media platforms.&nbsp;</p>\n\n\n\n<p>Join Matt as he provides a retrospective of 2023, demos the latest in WordPress tech, and comments on the future of the WordPress open source project.</p>\n\n\n\n<p>Details including how to reserve a ticket for the in-person event, the link to watch the live stream, and information on how to submit questions for the Q&amp;A portion will be provided in November and shared on <a href=\"https://wordpress.org\">WordPress.org</a> and affiliated social media accounts.</p>\n\n\n\n<p></p>\n\n\n\n<p><em>Thanks to <a href=\"https://profiles.wordpress.org/rmartinezduque/\">Reyes Martínez</a> and <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a> for reviewing this post.</em> </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Oct 2023 17:45: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:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:100:\"Gutenberg Times: Gutenberg Changelog #91 – WordPress 6.4, Gutenberg 16.8 and what’s in the works\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=26071\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/podcast/gutenberg-changelog-91-wordpress-6-4-gutenberg-16-8-and-whats-discussed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:48195:\"<p>Joni Halabi and Birgit Pauli-Haack discuss WordPress 6.4, Gutenberg 16.8 and what’s been worked on outside current releases</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<p><strong>Joni Halabi</strong>, senior developer at Georgetown University</p>\n\n\n\n<ul>\n<li><a href=\"https://gutenbergtimes.com/live-q-a-design-systems-and-theme-json/\">Live Q &amp; A: Design Systems and theme.json</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/02/static-vs-dynamic-blocks-whats-the-difference/\">Static vs. dynamic blocks: What’s the difference?</a></li>\n\n\n\n<li>Book: <a href=\"https://jhalabi.com/book/\">Sweet Little You by Joni Halabi</a></li>\n\n\n\n<li>X (former Twitter) <a href=\"https://twitter.com/jonihalabi\">@jonihalabi</a></li>\n\n\n\n<li>WordPress <a href=\"https://profiles.wordpress.org/thatdevgirl/\">@thatdevgirl</a></li>\n\n\n\n<li><a href=\"https://talks.jhalabi.com/svg-in-wordpress/\">Slides: Creating Accessible SVG</a> (WP Accessibility Day) (Recording will be <a href=\"https://www.youtube.com/@WPA11yDay\">published in YouTube</a> soon) </li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s released</h2>\n\n\n\n<p><strong>First Dev Notes for WordPress 6.4 </strong></p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/10/15/introducing-block-hooks-for-dynamic-blocks/\">Introducing Block Hooks for dynamic blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/16/editor-components-updates-in-wordpress-6-4/\">Editor Components updates in WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/16/new-registerinsertermediacategory-api/\">New `registerInserterMediaCategory` API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/16/wordpress-core-is-now-using-playwright-for-all-browser-based-tests/\">WordPress core is now using Playwright for all browser-based tests</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/16/introducing-admin-notice-functions-in-wordpress-6-4/\">Introducing admin notice functions in WordPress 6.4</a></li>\n</ul>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/10/wordpress-6-4-release-candidate-1/\">WordPress 6.4 Release Candidate 1</a></p>\n\n\n\n<p><strong>Gutenberg 16.8</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/10/11/whats-new-in-gutenberg-16-8-11-october/\">What’s new in Gutenberg 16.8 (11 October)</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/gutenberg-16-8-makes-cover-block-smarter-adds-experimental-pages-list-in-site-editor\">Gutenberg 16.8 Makes Cover Block Smarter, Adds Experimental Pages List in Site Editor</a></li>\n</ul>\n\n\n\n<p><strong>What&#8217;s discussed and worked on</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/53788#top\">Site editor: 🥝 Media library proof of concept&nbsp;</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/44214#top\">Introduce experimental form &amp; inputs blocks to allow building basic forms</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/54494#top\">Update the default JSX pragma to React instead of @wordpress/element</a></li>\n\n\n\n<li><strong>The Gutenberg repo has now a new label:</strong><a href=\"https://github.com/WordPress/gutenberg/labels/%5BFeature%5D%20Data%20Views\"> Data Views</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<ul>\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hello and welcome to our 91st episode of the Gutenberg Changelog podcast. In today&#8217;s episode, we will talk about WordPress 6.4 a little bit and Gutenberg 16.8, and then we also will talk about what&#8217;s already been worked outside the current releases. I&#8217;m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and a full-time core contributor for the WordPress Open Source Project, sponsored by Automattic&#8217;s Five for the Future Program. Today, my co-host and special guest is Joni Halabi. She is not a stranger to the Gutenberg Times&#8217; subscribers. She&#8217;s a senior developer at Georgetown University and has been building blocks since forever.&nbsp;</p>\n\n\n\n<p>Our recent adventure together was the Gutenberg Life Q&amp;A with David Bowman and Alec Geatches, and a fascinating discussion about design systems and how WordPress slowly becomes one. Joni is also the author of a great article on the WordPress developer blog explaining the difference between a static and a dynamic block. A lot of people have read this, so you made an impact there definitely, Joni. It&#8217;s my great pleasure to have you on the show tonight, Joni. Welcome. How are you today?&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: I&#8217;m doing great, thank you. I&#8217;m really excited to be on this show.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Awesome, awesome. Well, we can go right in there.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Announcements</h3>\n\n\n\n<p>The first developer notes for 6.4 have been published on the Make blog, and one is for a new extensibility feature for the block editor. That&#8217;s about the block box. It&#8217;s only for dynamic blocks and it&#8217;s only the first iteration, though there are some, but it&#8217;s actually the first time that you can, as a developer, automatically insert a block next to another block. You can decide, okay, for every comment block, I want a like button in there. You create the like button block and then you say, &#8220;Okay, put it on every comment.&#8221; The user will be able to see that in the sidebar, but it will be automatically added, but a user can switch them on and off if they want to. So, that&#8217;s definitely for developers to dive in.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah, I just wanted to say I am particularly excited about this feature. I just recently saw that this was being added, and it&#8217;s probably no secret that I am a very big advocate of dynamic blocks. So, many of the blocks that we&#8217;ve created over at Georgetown are dynamic, and I see so many use cases for that. I think it&#8217;s going to give our users a lot of flexibility. I think it&#8217;s going to give users overall across all WordPress sites, so much flexibility and different options. I can&#8217;t wait to see where this is going. I know that this is a first iteration.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It still has some restrictions on there. Right now, it&#8217;s only working for template post types, template parts or patterns. So, it&#8217;s more usable for theme developers or those who want to change the front end a little bit and add it there. It&#8217;s a great feature to add a little shopping cart in the header of a template, shopping cart block. Yeah, there are quite a few other use cases. I could think about the like button going everywhere.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Oh, yeah.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Another use case could be to have a little anchor link on every paragraph, so you can share it everywhere and not have to share the full page, but just the paragraph thing if you want to cite it on a different blog post or something like that. Yeah, it would be helpful. I know a few bloggers actually do that in their self-built blog site.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Do you see any other use cases off the top of your head?&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Oh, goodness. Thinking about it, I think you gave some really, really great examples. Yeah, I definitely see a lot for e-commerce usage. Maybe even have a related products block going along that e-commerce theme.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s a good one.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, I think people can get really creative with this one.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I think so too. Yeah, so check it out. We will have the link in the show note and with all the stuff in there.&nbsp;</p>\n\n\n\n<p>Then the editor components updates, that&#8217;s a roundup post of all the different changes in the component&#8217;s package of the editor. It has nothing to do with the WordPress components, which are totally different. There are 60 of those, but that&#8217;s different. So, it talks about the new props for the modal component, making a popup slot available in the sidebar, rewriting tooltip and tab panel to use a better accessibility library for that, improving size consistency, all different.&nbsp;</p>\n\n\n\n<p>Those are the few off the top of my head or top of the list of those. Then there is a very nice new feature, it&#8217;s called the registerInserterMediaCategory API and Nick Tsekouras published that about a new hook or API. Yeah, depends on what it is, how you would say it. That is that you can add another category in the inserter for the image block.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: I love categorization. I think this is going to really enable people to better organize their media or organize their images. I don&#8217;t know too much about this, but this one looks like a very, very useful one.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It definitely comes with an example code that actually adds a new open verse category to it, but it limits the search to exclude some sources. It&#8217;s just an example of that when people search in the open source category, open verse category. But other than that, there are some great comments in the example code and check it out.&nbsp;</p>\n\n\n\n<p>Then the next one that I wanted to mention is WordPress Core, and both Gutenberg and Core now are using Playwright for all browser-based unit tests. There had been a great effort to rewrite many of the unit tests to Playwright and downsize the Puppeteer exposure of the code base.&nbsp;</p>\n\n\n\n<p>It&#8217;s not done yet, but it&#8217;s definitely progressing very fast. Playwright just has a few advantages over Puppeteer, and most of them have to do with the browser testing. So, visual regression testing is a little bit more stable for both the Core and the Gutenberg.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: The article on this, if anybody is interested, there&#8217;s a link to Playwright documentation. There is a link to migrating tests, so that&#8217;s definitely something that&#8217;s worth checking out. If you&#8217;re in that business of writing automated tests, then it looks like it&#8217;s going to be much more stable now.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, but we still will see some flaky tests coming through the issue tracker, but I think it&#8217;s one of the oddities of the Gutenberg repo that you see flaky tests coming up and then they&#8217;re gone again because it has run through it.&nbsp;</p>\n\n\n\n<p>Then there&#8217;s also a new admin notice function in WordPress 6.0 and Colin Stewart wrote the death note for it with new functions get admin notice and then the parameters for it and the filters and the actions and example code for that and also how to create a collection of notices so they can be output at once.&nbsp;</p>\n\n\n\n<p>I&#8217;m not sure it&#8217;ll offset what many people see in the WordPress Admin. Right now, that is a page long admin notices for something, if that offsets that, but I think a lot of people were working on it for several years. So, I think that is really cool that it&#8217;s coming in now. Right now, I think it&#8217;s not mandatory to use.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, I think it&#8217;s going to make it easier for plugin authors to create admin notices. So, for example, if your plugin is introducing a breaking change or if your plugin requires a database update, things like that, I see a lot of those notices come across.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, no, it&#8217;s definitely raising the whole field for plugin extenders. So, this and many, many more. There are many more dev note, not many, but I would say six or seven additionally being worked on for the field guide of the release.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress 6.4</h3>\n\n\n\n<p>Just an update on WordPress 6.4, October 17th is the day of release candidate one and that&#8217;s also the deadline for the field guide. We all know if it weren&#8217;t for the last minute, nothing would get done. So, also, the death notes will come in at the last minute tomorrow to get into the field guide.&nbsp;</p>\n\n\n\n<p>People, if you haven&#8217;t tested your theme plugin or sites with a new release, now is the time. The final release is only three weeks away, and that&#8217;s only three weeks to fix things if something doesn&#8217;t work right. Not every plugin or theme developer is that. Best ones are of course updating their plugins and the themes ahead of time, but you definitely need to make sure.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi:</em> Yes, super, super important. Use that beta test or plugin and test, test, test.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Test, test, test. I wanted to give a shout-out to a plugin called Site Health and Troubleshooting, because that plugin has saved my bacon many, many times when I was working with clients for our agency. It comes from Core developers and is a switch. Remember when you want to troubleshoot something and support says, &#8220;Did you disable all plugins and themes?&#8221; Yeah, how do you do that on a live site? It&#8217;s really hard and this plugin to the rescue, because you can as an admin switch off all plugins and themes at once without affecting the front end of your website. It&#8217;s really the best plugin testing tool ever. You get all the information from the Site Health features, and then you can enable each theme or plugin one at a time without affecting the front page. You see where the error comes in.&nbsp;</p>\n\n\n\n<p>Within minutes, most of the time, you figure out which plugin is the culprit and then get connected with the plugin support of that plugin and to make it. So, Site Health and Troubleshooting, the troubleshooting part isn&#8217;t a plugin. Site Health is built into WordPress. So, if you run into trouble, especially site owners that have no technical knowledge whatsoever, it&#8217;s really hard to disable all the plugins without offsetting this live site. Who does that? But yeah, I did for a while.</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, and not everybody is lucky enough to have a staging site, for example. I had never heard of this plugin, but I&#8217;m writing that down. I&#8217;m going to check that out.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Of course, there will be a link in the show notes for everyone to check it out and have a better life with updating any plugins as well as themes. Yeah, so that&#8217;s my spiel around 6.4. It was a short release cycle. There were only five Gutenberg plugin releases between 6.3 and 6.4. So, that&#8217;s only half of what other major WordPress releases had before. So, 6.2 had 10 and 6.3 had 10 too, 6.4 is only five. But also, we have very early in the year and I think over all the times when we do major plugin releases during Christmastime or holiday time. So, thank God for that, but that&#8217;s why there&#8217;s also not so many new features in the version.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, that makes sense. Yeah, it did feel fairly light. I was surprised it was coming so quickly. But yeah, no, it has been about that time.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s Released &#8211; Gutenberg 16.8</h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Otherwise, if you do five more Gutenberg cycles, 16.8 was released at October 11. So, you would go right into the holiday time with your release, especially with the major part of the release, which is getting everything ready for beta and then getting every documentation death note written for release candidate one. So, I think this is a better way on clearing out the year, which brings us to what&#8217;s released in Gutenberg. Gutenberg 16.8 came out. Vicente Canales released it on October 11. There&#8217;s also a minor release, 16.8.1 available now, and it mainly contains its fixes and improvements that were necessary after WordPress 6.4 beta testing.&nbsp;</p>\n\n\n\n<p>Out of the 160 PRs, still a big release. 49 were backport to the WordPress 6.4 beta releases. So, there are definitely additional bug fixes in that release. Of course, we have the show notes for the release post that Vicente published, but we go through the show notes. There is one new feature that I wanted to point out, and that is that when you edit pages in the site editor, it now has a template toggle to show the template. The site editors in 6.3 is now also the place where you can edit your content on pages or edit the page template and now you have a toggle in that. So, it&#8217;s easier and accessible. But yeah, I saw some of the feedback coming back from the call for testing that Anne McCarthy did with the site editor.&nbsp;</p>\n\n\n\n<p>There&#8217;s still some really confusion in, &#8220;When are we editing content and when are we adding template?&#8221; There&#8217;s still something that confuses people, including people who do content editing every day and still get confused. Where am I now and what am I doing? So there&#8217;s still something to be had about that.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, I can see that. There are a lot of things that we call editors within the scope of WordPress. So, I mean, there&#8217;s the editor, the site editor, the post editor. Editor is a loaded word. I think it&#8217;s really going to come down to the UI of all of these editing structures that we have.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Then you have the person editor, the editor with the capabilities of editing stuff. So, we use the same word for a lot of things. It&#8217;s confusing and you always need to figure out the context in which you are talking about, but I saw in Gutenberg, there is actually the effort to streamline the post editor with the site editor and the widget editor and all that, the navigation editor. They&#8217;re all coming into the same iframe and have now almost all the same features with a sidebar, with a list view. So, I think that the efforts are really good to streamline those interfaces.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, for sure. There&#8217;s so much going on right now and I&#8217;m really looking forward to that effort being completed because then I think that&#8217;s the point where we&#8217;re going to get to true full site editing where everything is just on the same screen.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right? Yeah.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: That&#8217;s going to be a good day.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Yeah. I&#8217;m never sure if we will ever get to the completion part. Well, this is a web. Yeah, you need to let it go. Yeah. There is no perfect though. There is no complete. It&#8217;s all in flux. Yeah.</p>\n\n\n\n<p><em>Joni Halabi</em>: It&#8217;s an evolution. Yeah.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So, what&#8217;s next?&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: So the next, there are a number of updates in the block library, and the first one that I&#8217;d like to call out is one about the footnotes. So, the footnotes now using the Core&#8217;s meta revisioning, if it&#8217;s available, which footnotes in general is a very, very interesting new feature that I really want to start diving into. But yeah, this one is specifically in terms of making sure that those revisions stay in line with what&#8217;s going on with Core.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The new feature, you&#8217;re thinking about footnotes or you&#8217;re thinking about meta revisions?&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Oh, footnotes.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Okay.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: I&#8217;m very hard focused, but yeah, no, footnotes. I think footnotes are going to be really great, especially in terms of the blogging aspects of people&#8217;s sites. I have makeshift footnotes in the posts on my own site, so streamlining the ability to create footnotes like this is….</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Especially with academic settings. Yeah, academic settings, yeah. It&#8217;s really important. Also, when you&#8217;re citing other third sources, you cannot always link from the&#8230; I think it&#8217;s easier to put it in footnotes for the reader than getting bogged down and following the link and missing the rest of the post when you link-</p>\n\n\n\n<p><em>Joni Halabi</em>: Exactly.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; in between. Yeah.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, that and annotations too. I tend to write and I also want to annotate my work. I don&#8217;t want to necessarily lead my reader down the same rabbit hole that I am in when I&#8217;m writing the post, but if they want more information, yes, please go down to the footnotes. Take a look at this rabbit hole that I have created and then please go back to my main points.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, but footnotes are stored in post meta, but there has never been a revision feature for post metadata and that&#8217;s why it&#8217;s that particular PR phrased that way. So, it uses the meta revision once available if it&#8217;s available, and there is a track ticket that the meta revisions actually are coming into 6.4. So, it&#8217;s what comes first kind of thing, but they figured it out in that. Yeah. So, the next part I wanted to point out is adding design tools to as many blocks as possible is on the way. The login, logout block now has spacing support, which is really helpful. So, you don&#8217;t have to use the spacer anymore. You can just do it through the block as well, block sidebar.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Yup, and then the next one is being able to set a custom color when applying an initial background image. So, I love anything that lets somebody set a custom color, because then you can really control the accessibility of that background color in case your image fails for whatever reason. You can default to that custom color and it maintains the accessibility of the page. So, if your text is white and you have a dark background image, for example, then for whatever reason you&#8217;re on a poor connection, for whatever reason, the image doesn&#8217;t load, you&#8217;re not stuck with a page that&#8217;s showing white text on top of a white background because nobody can read that. Being able to set that custom color to be that fallback for the image that hopefully loads but might not.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I think one of the features here is also that it&#8217;s actually automatically detecting the background of the image that you load and setting it automatically, so you don&#8217;t have to think about it, because I wouldn&#8217;t think about that accessibility piece unless somebody points it out to me. Oh yeah, you&#8217;re right. Yeah, I should have set a custom color, but doing it automatically I think is one of those great features that you don&#8217;t have to think about and it really supports accessibility without making a fuss about it.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, absolutely. Especially if it&#8217;s right on that cusp where if you are a fully cited user, you might be able to read that text and you might not realize, &#8220;Oh wait, this red text on a blue background, I can read it, but maybe somebody else can&#8217;t.&#8221; Yeah, I love automation like that.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So, the next thing is default suggested links to pages. So, that&#8217;s in context of external links. So, that&#8217;s a very interesting diagram in the PR that makes me think, &#8220;Is that too complicated or is that very easy?&#8221; It&#8217;s mainly for the navigation block. When you have a third party link, it suggests that. What does it do?&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: So what my takeaway from this was that I actually had a really hard time reading this diagram that&#8217;s in here, because there is a lot going on, but it seems like the suggestions that were originally coming up in the navigation lock were just everything, post pages, what have you. It seems that they are limiting that to only pages, instead of posts, which I think narrows the scope. I like this narrowing of the scope, because when you&#8217;re creating a navigation block, you&#8217;re more likely to want to link to a more evergreen page than to a post that might be fresh now, but might be out of date in six months or a year or what have you. That&#8217;s not necessarily something you want in your navigation. So, narrowing that scope I think makes it a little bit easier to find links.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, thank you so much for jumping in there. I was drawing a blank. Yeah.</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, absolutely.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The navigation in terms of posts, you probably would link more to category pages where a list of posts on a certain topic are there. The narrowing down of the scope is really helpful for the user there. Yeah, absolutely. Yeah. The next one I&#8217;m really happy about because now I get a confirmation when I move a post to trash.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: We have had so many accidental deletions of the homepage.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I was going through the developer notes and somehow I had a post published that was previously by accident deleted, came back from trash, and then had trashed in the permanent link. So, it was really, &#8220;What?&#8221; So I needed to just delete the permanent link and then it would automatically create a normal link, but it was kind of, &#8220;Huh? Why would that be?&#8221; So having a confirmation yes or no, do you really want to trash it, because it had so many ramifications to rectify that situation again. Yes, it was really hard.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: So the next one is it&#8217;s titled add template replace flow to template inspector. What it really boils down to is it looks like there is a change to just the way that you replace a template when you&#8217;re editing a page. When I was diving a little bit deeper into this, I feel like this is maybe a first pass or that there are some more passes of this to come, because I did see some comments that the UI could be streamlined a little bit more than it is, but there&#8217;s a great video that demonstrates this, where you are on the page editor.&nbsp;</p>\n\n\n\n<p>You can go and replace a template and then it brings you to this modal where you can choose whatever template that you want. It gives you a bunch of selections. You can choose one and your page just updates to that new template and then you can just go about your day. I recommend checking that out. It might be something, especially if you&#8217;re heavily using templates, something to keep an eye on for future updates as well.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So before it was just a dropdown box in the site bar for the pages, and now it opens up a modal. So, you actually can preview the template that you would associate it with a page if you want to change it. So, I think that&#8217;s a really good way to think about templates that &#8220;Oh, I can reorganize the content on this page by just changing another template.&#8221; I get a preview on how that&#8217;s going to look because we are all about avoiding that piece where we say safe and pray. I think Helen Hou-Sandi uses it a lot. That&#8217;s the previous way to do editing, is you do something and then you need to look at frontend how it looks, and the block editor is all about what you see is what you get.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Before I heavily relied on preview, which some of the previous updates to the previous functionality I was very thankful for.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, yeah. Then the next one were updates in the block library. The search block got some enhancements and one is to allow the space for the input field only when the form expands and not when it&#8217;s collapsed. That was always a little bit hard to place. Then the alignment and the icon button got a little correction on the width, so it looks a little bit more streamlined. The search block is an odd block. I really liked it, but it&#8217;s always a little harder for me to add it to a navigation block definitely. But even if you want to have it standalone on top of your blog post or something like that on a template, it&#8217;s always a little bit harder to organize, I think.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah, I can see that. So, the next changeup is in the site editor, and it&#8217;s something regarding the template parts. So, basically, we are no longer displaying the navigation section in the template parts details when the menu is missing, which sounds very obvious. If there&#8217;s no navigation menu, don&#8217;t display it. So, there&#8217;s some great screenshots that illustrate this in the GitHub issue. Very, very straightforward in those details. If there&#8217;s no navigation menu, you just don&#8217;t see the navigation in the details for that template part.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: These are the quality of life issues or things that you don&#8217;t know unless you read the changelog. Oh, we needed to change that. Yes.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Right.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The next one that I want to point out was for the font library, unfortunately, it&#8217;s not going to be in 6.4, but the management screens got a new tab and that is for the font uploads. So, if you as a user want to add additional fonts to your site, you can upload that. That was before, but now you have a separate tab for it. Before it was you needed to scroll all the way down past all the fonts and go to the upload section. Now it&#8217;s just one tab. So, it&#8217;s much easier to find. Unfortunately, for many, many people, we won&#8217;t have it in 6.4. It definitely needed more time to get finished, especially in the rest API endpoints and then have more testing going on, because I think it was only in 16.7 that it actually was merged into Gutenberg.&nbsp;</p>\n\n\n\n<p>They tried for two beta sessions to get it actually to a place where users can really use it. There were always something. So, the release team said, &#8220;Well, I think that&#8217;s a sign that we need to have it simmer for more moments, for a few more rounds in the Gutenberg plugin and have some more testing being done because it&#8217;s not ready yet.&#8221; Yeah.</p>\n\n\n\n<p><em>Joni Halabi</em>: That makes sense. I&#8217;m looking forward to it for the next version of Core, but that sounds like a really nice update. The next update affects the list views. So, there were some performance issues when a user or a content editor rather would come in and select all the blocks on the page, and there is now a fix for that. So, this affects pages that have just a lot, a lot of blocks. So, the example in the testing instructions says, &#8220;Add 150 or more paragraphs,&#8221; for example. So, before when a content editor would go in, open list view, do a command + A or control + A to select all of the blocks on the page and there are a couple hundred blocks, the editor would just freeze. It would just freeze up on you because that&#8217;s a lot of information.&nbsp;</p>\n\n\n\n<p>So, this particular PR that solves that performance issue. So, they&#8217;re noting that there will be a slight delay for rendering items, but there shouldn&#8217;t be any huge, huge slowdowns to the point where it makes you think that your site is broken.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah. No, that&#8217;s for the power users. It&#8217;s not uncommon to have a weakened edition with many, many things and then have a couple hundred blocks in there, because we have a separator block or a spacer block or something like that. Power users really don&#8217;t want their site to be broken especially, or losing content, especially with those large posts. The next one is the image block. With the 6.4 version, the image block becomes a light box feature with it. But this Gutenberg plugin PR that I point out now fixes actually that the duo tone has not been applied to the image in the light box.&nbsp;</p>\n\n\n\n<p>So, you had maybe a gray filter on the duo tone filter on your image, and then people clicked on it, and then on the front end, it still has the image original colors and not the duo tone. There is a reason why there&#8217;s duo tone on an image. That was definitely a bug and it was fixed, but it was so visual that I thought we definitely want to talk about that when people tested it before. Yeah.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah, for sure. Next up is an accessibility fix to what might be my favorite new block or favorite new feature, footnotes. They have added aria labels to the return links. On the footnotes, when you go down, you click on a footnote, you go down to the bottom of the page, you read your footnote. There is a little link at the end of that footnote that will take you back to the main content of the page where you picked up your footnote. Now, there is an aria label, which is great for accessibility. It will tell screen reader users, &#8220;Hey, this is where I&#8217;m going back to.&#8221; Very small but impactful change for people.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, absolutely. You don&#8217;t want to lose your place in the post just because you&#8217;re following a footnote and not going back to where it was. Yeah, same for the table of content block. There have been quite a few accessibility improvements. Them missing was actually part of the reason why the table of content block that&#8217;s in the plugin actually did not make it into WordPress 6.4 because it was not complete from how you access it. Even for the abled people, it was really hard to use the table of content, because it didn&#8217;t have a whole lot of styling options. With additional accessibility of movements, now it can be tested more and in a broader reach as well.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: I would throw this under accessibility as well. There is a small fix to the patterns, where for a block pattern that is not synced, the terminology that was being used for that was they were using standard. So, this change replaces that use of the word standard, to use not synced instead for block patterns that are not synced. I think that makes it more obvious, because standards can be&#8230; What is standard? Some people might have questions, but it just brings a level of clarity to what&#8217;s going on there.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, especially in patterns, because right now, we only have two, but we will have a third type of pattern and that will be partially synced. So, a standard, what is that? So that it really brings it home. Yeah, thank you for pointing that out as well. I think I skipped over one of the documentation items that I wanted to point out for our listeners who are looking a little bit further beyond the WordPress Gutenberg usage. Oh, that&#8217;s the real-time collaboration experiment is now switched. You can switch that on in 16.8, and there&#8217;s also a document now available in the block editor handbook about the current state of the real-time collaboration experiment. So, you can follow along on what&#8217;s going to be next year for the Gutenberg editor.&nbsp;</p>\n\n\n\n<p>There have been a lot of documentation changes, don&#8217;t get us wrong, but they&#8217;re mostly removing redundant stuff like remove the full site editing documentation because it will be in the themes handbook. Rename block hooks to block filters, because now block hooks are a different feature. So, it&#8217;s all a little bit, but the team is really working very hard to get the documentation up to par with 6.4 as well. Yeah, I think that was the changelog for 16.8, the Gutenberg plugin version. Thank you so much for going through that with me.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s in Active Deveopment or Discussed</h3>\n\n\n\n<p>We are now at the section what&#8217;s in active development or what&#8217;s in discussed. I would say with WordPress 6.4 almost out the door, Gutenberg developers are shifting gears now and also working on some new things.&nbsp;</p>\n\n\n\n<p>Those need your input opinion, design use, and I share with you in the show notes four links. The first one would be a media library proof of concept in the site editor. The contributor has done some really experiment with that on how to add images right through your media library there, have a list view there. Now, list view, not from the editor but from a list of media and how you can navigate that and how you can preview that and all that. So, that&#8217;s really a first version of it. Take a look. It&#8217;s not yet merged. The PR itself has been closed. I just see that, but there is a replacement of that, right?&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah. That PR in particular is labeled as purely an experiment, but at the top of that PR, there is a great video that demonstrates this proof of concept, which I personally really like it. I think it&#8217;s far more intuitive. It only shows the list view. There is also a grid view that if you dive a little bit more into the PR, you can see some screenshots of the grid view as well.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The developer now that his experiments, he went through them, he now opened a tracking issue on GitHub called Collaboration Media Library. I&#8217;m sure there will be quite a few discussion threads going on there. The whole feature is now divided up into certain tasks and defines a little bit more than scope and all that. So, you can read up more about what the developers are thinking right now.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, this is exciting. It&#8217;s nice to see the media library getting a little bit of love here.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it definitely needs a lot of love. Yes, I have seen tickets or track tickets that are 18 years old and you say, &#8220;Okay, yeah, I wonder if we ever get categories for our media libraries or better views or bulk updates, all kinds of things.&#8221; So if you look at the track tickets that are concerned in the media library, there are quite a few that could use some love.&nbsp;</p>\n\n\n\n<p>All right. The second link of what active development or discussed is introduce an experimental form and input blocks to allow building basic forms. So, the ecosystem of WordPress has a huge amount of plugins that help you with creating forms. Forms are very, very important. A lot of interactivity is built on top of forms and there has been a 15-year history of what forms need to be or could be.&nbsp;</p>\n\n\n\n<p>Ari did an experiment to figure out, &#8220;Okay, if we had a standard on how blocks are built for forms, maybe the plugins can build on top of the standards.&#8221; Then when you switch out the plugin for forms, it wouldn&#8217;t destroy all your forms and you had to recreate them. Of course, some of the plugins have imports of other plugins forms, but that&#8217;s just good common sense because otherwise they wouldn&#8217;t be able to sell to existing customers or those who have existing forms. That is definitely something that&#8217;s merged in Gutenberg already.&nbsp;</p>\n\n\n\n<p>It&#8217;s an experiment, so when you activate Gutenberg in your website, you could scroll down to the menu Gutenberg and then there is a section there called experiments. There you can switch on the experiment you are interested in. So, this one actually also deals with block bindings, data bindings, and that kind of thing. So, it&#8217;s going to be really interesting to see what you think when you use it.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, this is an exciting one because I can see in the future people creating block patterns for just really common use cases. So, the demo video shows like a send a message pattern, but I see patterns all over the internet for subscribe to my newsletter, get on my mailing list, things like that. Forms are so common on sites in general. I&#8217;m excited about this one too.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, all really good too. There are even some plugins that actually provide input blocks already, but also, it narrows down the openness again when you have to have a separate plugin for your forms and then what happens afterwards when you don&#8217;t use the plugin anymore.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, exactly. Having this just part of Core is great.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it&#8217;s really good. Then the third one is for the insiders of using React quite a bit is that the default JSX import is done through React rather than the WordPress elements package. So, it automatically updates when React updates and the front page of WordPress elements package is actually a wraparound the React package. So, taking it out, taking the JSX feature out of that makes it more streamlined with React.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, for sure. Just for clarity, for block creators, this should not affect your code at all. This is really just how JSX is getting pulled in. So, if you&#8217;re using JSX, you should not need to change anything. This is really a very backend change.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, and the WordPress elements package will still be around because it&#8217;s already in Core and there is this backwards compatibility promise as well. Yeah, yeah. So, thank you for pointing it out. There&#8217;s always this fear. Are there breaking changes? Yeah.</p>\n\n\n\n<p><em>Joni Halabi</em>: That was my first thought when I read that one actually. That&#8217;s why I wanted to point it out.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, thank you. So, good to have you on the show, Joni. You pointed out quite a few things that I didn&#8217;t think about. So, yeah.&nbsp;</p>\n\n\n\n<p>So, the last one on the section what&#8217;s active or what&#8217;s discussed is that the Gutenberg has now new labels for the data views. Normally, I wouldn&#8217;t point out new labels at the Gutenberg repo that come and go. I think we have about 400 or so labels there. So, yeah, I wouldn&#8217;t do it on the podcast. But with the new admin changes that are coming with the Gutenberg phase number three, many people want to be on the forefront or want to keep track of what&#8217;s happening. Do I have to change things or can I influence how it&#8217;s going and stay on top of it? This new label was created to label for the data views work.&nbsp;</p>\n\n\n\n<p>So, every time there is a custom post type list or a media list in various things, so that in the WP Admin, like your post list, it&#8217;ll all be reimagined in the site editor paradigm kind of thing. The label tracks the high level work for that. So, you can really follow along with that and even subscribe to that without getting the fire hose of the rest of the Gutenberg repo that has a lot of issues and PRs every week.&nbsp;</p>\n\n\n\n<p>I think we are at the end of our show today, and I ask every special guest in that section now. So, Joni, if there&#8217;s anything that you want to announce or you want to point out that you didn&#8217;t get a chance to talk about because you didn&#8217;t get a chance, now is your chance.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Oh, my.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: How can people reach you? What are you working on? Is there something exciting in your life that you released?</p>\n\n\n\n<p><em>Joni Halabi</em>: Nothing coming just yet. I did a talk a little while ago at WordPress Accessibility Day that I think the recordings are coming out. I don&#8217;t know if they&#8217;re already out, but I will announce it on my socials. I am @JoniHalabi almost everywhere, and you can also find me&#8230; I infrequently blog at my website, which is <a href=\"https://jhalabi.com/\">jhalabi.com</a>.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, yeah, thank you for pointing out the WordPress Accessibility Day. So, what did you present about, what&#8217;s your talk about?&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: It was actually a plugin that I initially created a while ago. I call it Besan Block, but it is essentially a way to create accessible SVG bar charts on your website and it integrates with Google Sheets. So, you can automatically import your content from a Google sheet and it will create a bar chart. It&#8217;s accessible and tabable and readable by screen readers. So, I walked folks through how to do that. The primary focus of that particular talk was the creation of the accessible SVG.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Okay. Yeah, so I&#8217;m definitely going to mention that in the show notes as well. Is that plugin available in the repo or is it on GitHub?&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: It is. It&#8217;s available in GitHub, but it is also in the WordPress plugin directory. It is called Besan Block, B-E-S-A-N.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: B-E-S-A-N. Okay. I&#8217;ll find it. Thank you so much. Yeah. Thank you for being on the show. As always, the show notes, dear listeners, will be published on gutenbergtimes.com/podcast. This is episode 91. If you have any questions or suggestions or news that you want us to include the next time, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s an email address and it&#8217;s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. So, thank you so much, Joni, for joining us today. Thank you all of the listeners for listening. If you want, it would be really, really helpful if you would do a review on your favorite podcast app.</p>\n\n\n\n<p>We haven&#8217;t had any reviews because we didn&#8217;t ask for it, but it always helps with the distribution of the changelog. Absolutely, you will get it read on the next episode. So, there&#8217;s a little shout-out if it&#8217;s a good review of course. Maybe if it&#8217;s a mediocre review. All right. So, that&#8217;s it. Thank you for listening. Goodbye, and I&#8217;ll talk to you in probably four weeks. Thank you so much.&nbsp;</p>\n\n\n\n<p><em>Joni Halabi</em>: Thank you, 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, 19 Oct 2023 12:52: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: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: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:119:\"Do The Woo Community: Maintaining Client Relationships and Providing Evolving Services with Julia Eden and Matt Woodman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=77154\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://dothewoo.io/maintaining-client-relationships-and-providing-evolving-services-with-julia-eden-and-matt-woodman/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:510:\"<p>In this Woo AgencyChat Julia Eden and Matt Woodman from Atomic Smash talk about evolving services, accessibility, UX/UI design and more.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/maintaining-client-relationships-and-providing-evolving-services-with-julia-eden-and-matt-woodman/\">Maintaining Client Relationships and Providing Evolving Services with Julia Eden and Matt Woodman</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</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, 19 Oct 2023 11:38:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:12:\"Matt: Wowza!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=101511\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://ma.tt/2023/10/wowza/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1610:\"<img width=\"604\" height=\"340\" src=\"https://i0.wp.com/ma.tt/files/2023/10/IMG_1643-edited-scaled.jpeg?resize=604%2C340&ssl=1\" alt=\"\" class=\"wp-image-101520\" />\n\n\n\n<p>Okay, I&#8217;ve seen a lot of things in my life, but this has me fairly floored. I was at an <a href=\"https://ecoamerica.org/\">EcoAmerica</a> board meeting dinner and afterward instead of calling an Uber like I usually would, I tried a self-driving car, a <a href=\"https://waymo.com/\">Waymo</a>. (The name inspired by my friend, <a href=\"https://jaimewaydo.com/\">Jaime Waydo</a>.) As I got home I was so excited to tell my Mom what just happened.</p>\n\n\n\n<p>I feel like every cell in my body is charged, it&#8217;s like the first time I got a script to run, or committed code into b2/cafelog, this is definitely a before and after moment. Here&#8217;s a video as the car arrived and I got out. I&#8217;m really at a loss for words. The &#8220;wow&#8221; you hear me say in one of my most genuine in my life. The thing is <em>I know</em> these self-driving cars exist, I&#8217;ve seen them around San Francisco forever, but the <em>experience</em> of being picked up and dropped off by a robot navigating the tricky SF hills and streets just hits different.</p>\n\n\n\n		\n			<div class=\"jetpack-videopress-player__wrapper\"> </div>\n			\n		\n		\n\n\n<blockquote class=\"wp-block-quote\">\n<p>“The future is already here – it&#8217;s just not evenly distributed.&#8221; </p>\n<cite>William Gibson</cite></blockquote>\n\n\n\n<p>One thing that always brings me back to San Francisco is you feel like you&#8217;re living in the future. Tonight was no exception.</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, 19 Oct 2023 03:54:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:94:\"WPTavern: Kinsta Launches Free Static Site Hosting for Up to 100 Websites, Including 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=150341\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/kinsta-launches-free-static-site-hosting-for-up-to-100-websites-including-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:4911:\"<p>Kinsta <a href=\"https://kinsta.com/changelog/static-site-hosting/\">launched its static site hosting</a> product today, making a strong entrance into the market with a free tier that is competitive with established solutions from Vercel, Netlify, and GitHub Pages. Companies can host up to 100 static sites for free, including static WordPress sites, which Kinsta deploys from its global edge network of more than 300 locations.</p>\n\n\n\n<p>Static sites are those that serve HTML pages, media, and assets like JavaScript and CSS. These are usually more suitable for brochure websites, landing pages, personal portfolios, and other simple sites that don&#8217;t require pages to be dynamically generated by code running on a server. Static sites are generally more performant and secure.</p>\n\n\n\n<p>Kinsta&#8217;s free static hosting tier comes with the following features and limitations:</p>\n\n\n\n<ul>\n<li>1 concurrent build/site</li>\n\n\n\n<li>100 sites/company</li>\n\n\n\n<li>600 build minutes/month/company</li>\n\n\n\n<li>100 GB bandwidth/month/company</li>\n\n\n\n<li>1 GB build size limit/site</li>\n\n\n\n<li>API access</li>\n\n\n\n<li>Integration with GitHub, GitLab and BitBucket</li>\n\n\n\n<li>Diff-based Uploads</li>\n\n\n\n<li>Custom domains</li>\n\n\n\n<li>Free SSL support</li>\n</ul>\n\n\n\n<p>Customers can host pre-built static sites or sites built with static site generator frameworks that use Node.js. Kinsta has created <a href=\"https://kinsta.com/docs/static-site-hosting/static-site-quick-start-examples/\">quick start example repositories</a> for many popular static site generators, including Astro, Cuttlebelle, Docusaurus, Eleventy, Gatsby, Nuxt, Qwik, React, React with Vite, and VuePress.</p>\n\n\n\n<p>WordPress users can also deploy static sites to the platform and host it for free by converting an existing site to static. Kinsta published a <a href=\"https://kinsta.com/blog/static-wp-site/\">tutorial</a> on the process for converting a WordPress site using a free plugin. The static hosting can also be used to set up a frontend with any kind of backend or host a headless WordPress site.</p>\n\n\n\n<img width=\"1105\" height=\"1039\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/10/static-wp-add-static-site.png\" alt=\"\" class=\"wp-image-150366\" />\n\n\n\n<p>Users can launch a static site to Kinsta&#8217;s infrastructure by deploying from a Git repository hosted by BitBucket, GitHub, or GitLab, selecting a branch, and adding a build command and directory to deploy. Kinsta can detect some static site generators automatically, which makes the process easier. A connection and configuration settings can be managed through the MyKinsta dashboard. </p>\n\n\n\n<img width=\"960\" height=\"935\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/10/kinsta-static-site-build-settings.png\" alt=\"\" class=\"wp-image-150362\" />\n\n\n\n<p>Kinsta plans to introduce add-ons and other features in the future that might be paid, but is committed to keeping the service and this tier free forever.</p>\n\n\n\n<p>&#8220;Just like with every free product or freemium model, our goal is to spread the word with the help of it and let users try out our service, the dashboard in a frictionless way and host a project here for completely free,&#8221; Kinsta Chief Business Officer Tom Zsomborgi said. </p>\n\n\n\n<p>&#8220;The ability of using and testing out a platform and getting first hand experience is the ultimate way of forming an opinion about a provider. We let everyone use the service and host their projects. If the developers and agencies like the Static product we hope they will consider us for their other web projects and start using the paid services.&#8221;</p>\n\n\n\n<p>Kinsta is targeting enterprises, agencies, and companies that need to create websites and landing pages for high-traffic campaigns. The company is working on more features for static site hosting, including the following on the roadmap:</p>\n\n\n\n<ul>\n<li>Wildcardless domains</li>\n\n\n\n<li>Extended Kinsta API support</li>\n\n\n\n<li>Serverless functions, which could be utilized by static sites</li>\n\n\n\n<li>Previews</li>\n\n\n\n<li>Maintenance mode</li>\n\n\n\n<li>Password protection</li>\n\n\n\n<li>Ability for HTML Forms to work</li>\n\n\n\n<li>More builders</li>\n\n\n\n<li>Choose a build template</li>\n\n\n\n<li>Detailed Analytics</li>\n</ul>\n\n\n\n<p>Kinsta&#8217;s static site hosting solution is similar to what the competition offers for building and deploying sites, but Zsomborgi said he thinks that having application, database, and WordPress hosting all under one roof sets them apart. Kinsta also offers analytics for free and unlimited users/seats, the same as Vercel, but Netlify only offers these under paid plans.</p>\n\n\n\n<p>&#8220;The biggest things that we are missing are functions (Vercel, Netlify, and Cloudflare Pages have them) and deploy previews,&#8221; Zsomborgi said. &#8220;Both of those are in the backlog and will be released soon.&#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, 18 Oct 2023 22:18: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: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: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:44:\"WordPress.org blog: A New WordPress Showcase\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=16173\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2023/10/a-new-wordpress-showcase/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4919:\"<p>The <a href=\"https://wordpress.org/news/category/meta/\">journey to update WordPress.org</a> continues with the launch of a new <a href=\"https://wordpress.org/showcase/\">Showcase</a> design. The Showcase is a natural starting point for visitors arriving on WordPress.org, and it both inspires creativity and demonstrates what’s possible with WordPress. From unique personal blogs and portfolios to enterprises and celebrity fan sites, the Showcase celebrates WordPress’s flexibility, popularity, and the freedom to own one’s content.</p>\n\n\n\n\n<img width=\"1024\" height=\"954\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/2-showcase-site-1.png?resize=1024%2C954&ssl=1\" alt=\"Screenshots from the new Showcase design\" class=\"wp-image-16187\" />\n\n\n\n<img width=\"1024\" height=\"954\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/3-showcase-starry-theme-1.png?resize=1024%2C954&ssl=1\" alt=\"A grid of new design elements\" class=\"wp-image-16184\" />\n\n\n\n<img width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/4-showcase-websites-curaction-1.png?resize=1024%2C576&ssl=1\" alt=\"A collage of Showcased websites\" class=\"wp-image-16185\" />\n\n\n\n\n<p>This new design provides much-needed improvements to the aesthetics and user experience. It emphasizes bold visuals and a more dynamic browsing experience through tags and categories. Individual site pages now include desktop and mobile screenshots, while the site introduces an improved layout on mobile devices.&nbsp;</p>\n\n\n\n<p>This redesign also brings new <a href=\"https://wordpress.org/blocks/\">block-based functionality</a> and several components that will be used elsewhere on WordPress.org. All of this was made possible through collaboration between Design, Marketing, and Meta teams. Thank you to everyone.</p>\n\n\n\n<p class=\"is-style-wporg-props-medium\"><a href=\"https://profiles.wordpress.org/adamwood/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>adamwood</a> <a href=\"https://profiles.wordpress.org/alexstine/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>alexstine</a> <a href=\"https://profiles.wordpress.org/annezazu/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>annezazu</a> <a href=\"https://profiles.wordpress.org/bengreeley/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>bengreeley</a> <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a> <a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a> <a href=\"https://profiles.wordpress.org/dufresnesteven/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>dufresnesteven</a> <a href=\"https://profiles.wordpress.org/eidolonnight/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>eidolonnight</a> <a href=\"https://profiles.wordpress.org/fcoveram/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>fcoveram</a> <a href=\"https://profiles.wordpress.org/joen/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>joen</a> <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jonoaldersonwp</a> <a href=\"https://profiles.wordpress.org/jpantani/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jpantani</a> <a href=\"https://profiles.wordpress.org/laurlittle/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>laurlittle</a> <a href=\"https://profiles.wordpress.org/matt/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>matt</a> <a href=\"https://profiles.wordpress.org/markoserb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>markoserb</a> <a href=\"https://profiles.wordpress.org/ndiego/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>ndiego</a> <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>pablohoneyhoney</a> <a href=\"https://profiles.wordpress.org/paulkevan/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>paulkevan</a> <a href=\"https://profiles.wordpress.org/renyot/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>renyot</a> <a href=\"https://profiles.wordpress.org/ryelle/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>ryelle</a> <a href=\"https://profiles.wordpress.org/sereedmedia/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sereedmedia</a> <a href=\"https://profiles.wordpress.org/_dorsvenabili/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>_dorsvenabili</a></p>\n\n\n\n<p>If you would like to propose a change or report an issue, please do so in the <a href=\"https://github.com/WordPress/wporg-showcase-2022\">wporg-showcase-2022</a>&nbsp; GitHub repository. Also, make sure to join the <a href=\"https://wordpress.slack.com/archives/C04U953K77A\">#website-redesign</a> Slack channel if you are interested in additional updates coming to WordPress.org and want to contribute.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Oct 2023 17:34:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:92:\"WPTavern: #95 – Pooja Derashri on Diversity, Equity, Inclusion, and Belonging in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=150290\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/podcast/95-pooja-derashri-on-diversity-equity-inclusion-and-belonging-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:39320:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how we can promote diversity, equity, inclusion, and belonging in the WordPress project and community.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you, and hopefully get you, or your idea, featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Pooja Derashri. Pooja is a co-founder of WPVibes, a plugin development company based in India. With a passion for WordPress, pooja has been actively involved in the community since 2013. Her journey as a contributor began in 2017 when she attended her first local WordCamp. Her expertise and dedication have under various key roles in the WordPress ecosystem. She currently serves as co-team rep for the training team, and GTE for the Hindi local. In addition, she holds key positions in the WordPress release squad for version 6.3 and 6.4, where she heads up the test team.</p>\n\n\n\n<p>Pooja shares her insights on the importance of diversity, equity, inclusion, and belonging within the WordPress community, and explores how you don&#8217;t need to be a coder to be a part of the community and all that it is.</p>\n\n\n\n<p>We discussed the work of teams like polyglots, who focus on translating WordPress projects into different languages, and docs, who provide much needed documentation to help users understand and contribute to the platform. These initiatives alone make it clear that WordPress is reliant on non-coding contributions, and there are more ways to contribute than have a before.</p>\n\n\n\n<p>I ask Pooja about her experiences with diversity and inclusivity in the tech industry, and she reflects on the challenges she has faced, discussing the importance of recognizing and addressing unconscious biases. She shares her insights on the need for training and workshops that empower diverse individuals to contribute and speak up within the WordPress community.</p>\n\n\n\n<p>We delve into Birgit Olzem&#8217;s proposal to form an official D E I B team within WordPress, aiming to implement diversity, equity, inclusion, and belonging throughout the whole community. I express my excitement about the potential outcome of this proposal, and we think about how WordPress compares to other parts of the tech industry.</p>\n\n\n\n<p>We explore the various initiatives and efforts being made to build a more inclusive WordPress culture. From mentorship programs, to targeted outreach and safe spaces, we uncover the ways in which underrepresented voices are being uplifted.</p>\n\n\n\n<p>If you&#8217;re interested in creating a more inclusive community, this episode is for you.</p>\n\n\n\n<p>If you&#8217;d like to find out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Pooja Derashri</p>\n\n\n\n<p>I am joined on the podcast today by Pooja Derashri. Hello Pooja!</p>\n\n\n\n<p>[00:04:09] <strong>Pooja Derashri:</strong> Hi Nathan. So glad to join you.</p>\n\n\n\n<p>[00:04:12] <strong>Nathan Wrigley:</strong> Yeah thank you for joining me today. We&#8217;re going to be talking a little bit today about a subject which you may well have heard me talk about before. I had an interview with Jill Binder and Birgit Olzem quite recently. This episode is going to follow on shortly after that. We&#8217;re going to be talking about an acronym, DEIB or Diversity, Equity, Inclusion and Belonging.</p>\n\n\n\n<p>Before we get into the subject at hand though. Pooja I wonder, would you mind just introducing yourself? Tell us a bit about who you are, where you are, and what it is that brought you to WordPress, what it is that you do within WordPress and so on?</p>\n\n\n\n<p>[00:04:50] <strong>Pooja Derashri:</strong> Yeah. My name is Pooja Derashri, and I am from India. I&#8217;m a co founder of WPVibes, a plugin development company, and I am also a WordPress contributor. Currently I&#8217;m a co team rep for the training team and GTE for Hindi locale. Along with this, I&#8217;m also in the WordPress release squad for 6.3 and 6.4, where I&#8217;m leading the test team.</p>\n\n\n\n<p>Basically I&#8217;ve been working in WordPress since 2013. But my contribution journey started in 2017 when I was first introduced to WordPress community in one of the local WordCamps.</p>\n\n\n\n<p>[00:05:30] <strong>Nathan Wrigley:</strong> That&#8217;s an amazing story. You&#8217;ve got a lot of past, and heritage, and interest in the community. I&#8217;m guessing if you are part of the WordPress community and you&#8217;ve been part of the release squad, and it sounds like you are attending events and things like that as well. You&#8217;ve got a real interest in the community being diverse, equitable, inclusive, and the last word in the acronym, belonging.</p>\n\n\n\n<p>Do you want to just tell us a little bit about how you came to be interested in this subject? Obviously, if you&#8217;ve got a plugin development company, one might expect that all of your endeavours would be towards coding and plugins and documentation and all of those kind of things, but clearly not. You&#8217;ve got an interest in all of these things. Tell us why it is that you&#8217;ve found this to be important.</p>\n\n\n\n<p>[00:06:13] <strong>Pooja Derashri:</strong> Yes. Basically I have a short story to tell about. In my region, where I&#8217;m belonging, there is a conception that women are not good for tech jobs and women can&#8217;t do coding. In my first job there were members of 10 to 12 in my company. They have a stereotype thinking that women are not for the tech jobs, women are not good for tech jobs. And at that time I feel like an outsider, and I&#8217;m not good for that.</p>\n\n\n\n<p>In that company they were not giving me challenging tasks, and they were just giving me simple, easy tasks. So I was thinking like, what am I doing here? Then soon I realised, I switched from that company, in just two months. Then I joined a different company which is far better than that company.</p>\n\n\n\n<p>And there I got respected. I was welcomed. They gave me equal chances to work, and they gave me equal opportunities to work on coding. That was quite a nice experience. If I was not being treated unfairly, then I would never know about how that feeling was.</p>\n\n\n\n<p>When I got that feeling, then I searched about and heard in a workshop, what is DEIB, and why it matters? And I just connected the dots, like I similarly faced that issue in my first job and I should do something about it. So in my opinion diversity is all about making sure that everyone feels welcome, respected and treated fairly no matter who they ,are.</p>\n\n\n\n<p>[00:07:52] <strong>Nathan Wrigley:</strong> Thank you. That&#8217;s a really interesting story that you&#8217;ve got there. I wonder if we might just delve into that a little bit more deeply. You obviously had two fairly different experiences there. One, which was fairly negative, and you wish to separate yourself from that company and go and work at a different company. And it sounds like that was a much better experience.</p>\n\n\n\n<p>You&#8217;re obviously coming out of India on this call today. Do you feel that this is a problem which is systemic where you live? Do you, in other words, feel that this bias, for want of a better word, this lack of diversity and equity and inclusion, is something which is endemic where you live? So what I&#8217;m really asking is, do you think that there&#8217;s a problem in your part of the world that maybe isn&#8217;t quite so pronounced in other parts of the world?</p>\n\n\n\n<p>[00:08:44] <strong>Pooja Derashri:</strong> Yeah. Actually I come from a rural background where people have held certain fixed mindsets, and they are being biased in some situations. So yeah, we can say that they are not treated, they are thinking like this tech world is only for male or something like that, particularly in my region.</p>\n\n\n\n<p>I&#8217;m not talking about the whole of India. We have some better mindsets, and better conceptions in other part of India. But in my region, in my small city, that is a very unfair, or we can say biased, conception or misconception.</p>\n\n\n\n<p>[00:09:23] <strong>Nathan Wrigley:</strong> Thank you for that. I wonder if there&#8217;s legislation in place in your part of the world to tackle this kind of thing. And whether or not there&#8217;s legislation, doesn&#8217;t of course mean that it does not happen, I think the same would be true in other parts of the world as well. Simply because there are laws to prevent this kind of thing, doesn&#8217;t mean that those laws are obeyed.</p>\n\n\n\n<p>So quick question around that, we&#8217;ll go off piste for a moment. In the part of the world where you are, is there laws around this kind of thing, around discrimination and inclusion? In other words, from a legal point of view, is this not tolerated?</p>\n\n\n\n<p>[00:09:58] <strong>Pooja Derashri:</strong> Yes we have very tough laws on these things. But we can&#8217;t change any person&#8217;s conception. But I was lucky enough that my parents were not thinking that if a female can do that. They gave us equal rights. For my in laws, they gave me the equal opportunities and encouraged me, motivated me always to do whatever I wanted to do. So it&#8217;s about the few people in my first company. They had that mindset but not every people is going with the same mindset.</p>\n\n\n\n<p>[00:10:35] <strong>Nathan Wrigley:</strong> I have a follow up question, and it&#8217;s about the place where you described first, the job where that organisation wasn&#8217;t particularly diverse, and they certainly don&#8217;t sound like they were particularly inclusive. Was there any part of you that felt like throwing in the towel? And what I mean by that is just thinking okay this is what tech is like, I&#8217;m just going to change industry altogether.</p>\n\n\n\n<p>Now it sounds like you have got a background where you described your parents making sure that everything was equal for you. But despite that, did you at any point think well if this is what the tech industry is going to be like, I&#8217;m not going to be a part of it?</p>\n\n\n\n<p>And I wonder really if that&#8217;s the root of the problem here. In that we&#8217;re trying to get it to the point where no person, no matter what their background is, no matter what their ethnicity is or religion or whatever it may be. Where they feel that they can&#8217;t be part of the industry because they&#8217;re getting signals from their employers, and the industry more broadly that they don&#8217;t belong. So yeah, the question basically is, did you ever feel like, okay I shan&#8217;t be part of tech if this is what it&#8217;s going to be like?</p>\n\n\n\n<p>[00:11:43] <strong>Pooja Derashri:</strong> No, I never thought that. I was always encouraged by my close circle that you should do whatever you want, despite what other people think. You should face that problem and overcome from that.</p>\n\n\n\n<p>I thought in my first job that if they are not accepting me and they are not finding me good enough then, why shouldn&#8217;t I change the job? I can&#8217;t change their mindset but I can change my job. I can change my company.</p>\n\n\n\n<p>[00:12:13] <strong>Nathan Wrigley:</strong> Yeah that&#8217;s a very enlightening approach, isn&#8217;t it? Okay so you&#8217;ve laid out what the problem is. I think this question may be not particularly relevant, but I would be interested to know. Why do you find this to be so important a cause? I mean it&#8217;s obvious the answer to that, isn&#8217;t it? But I want to hear you express in your own words why you&#8217;ve attached yourself to this and why you believe it&#8217;s important.</p>\n\n\n\n<p>[00:12:36] <strong>Pooja Derashri:</strong> DEIB basically means we are making a big circle of friends where everyone is invited, treated fairly and feels like they are one of them. And it is important because when people work, play, and live together with love and respect, then the world becomes a happier and stronger place for everyone.</p>\n\n\n\n<p>When we talk about open source projects, open source projects make sure that everyone is included and feels they belong to this community. It encourages other people to come and share their skills.</p>\n\n\n\n<p>So it is important basically because our world will be more happier, stronger, and people live with peace and harmony. If they are not biased, they are living together with respect. All person are welcomed.</p>\n\n\n\n<p>[00:13:29] <strong>Nathan Wrigley:</strong> What a lovely answer. I&#8217;m really quite touched by that, that&#8217;s beautiful. The next thing that you wanted to talk about is really interesting to me, because I haven&#8217;t given this too much thought. And it&#8217;s the idea that the problem may not be something that people are necessarily conscious of. And in the share notes that you&#8217;ve shared with me, you&#8217;ve talked about this thing called unconscious bias. And I have an intuition as to what you&#8217;re meaning there but I&#8217;d like you to explain that. What is unconscious bias? Let&#8217;s delve into that a little bit.</p>\n\n\n\n<p>[00:14:01] <strong>Pooja Derashri:</strong> Basically, a sneaky or hidden friend in your mind, brain. Who sometimes make a decision for you, without you even realising it. For example, imagine your favorite color is blue. Sometimes without thinking much, you choose blue color in everything, because your brain automatically likes them. What if that happens with people not color? If your mind is unconsciously like a certain kind of people then you will be not inclusive in environment.</p>\n\n\n\n<p>[00:14:35] <strong>Nathan Wrigley:</strong> So the idea being that, and I guess we can all admit to this in many aspects of our lives, we have things that instinctively, we can&#8217;t quite necessarily understand why, there are certain things that we are drawn to. The taste of a particular meal, a particular color, the kind of vacation that you want to go on, the kind of things that you like to do in your spare time.</p>\n\n\n\n<p>We have all of these biases, that have crept into our lives over time, and we may not be aware of them but they impact the decisions that we make. So we may feel that we&#8217;re being equal and thoughtful, and we&#8217;re giving everybody the greatest opportunity possible. But somehow, somewhere, our brain is stepping in and making a slightly different decision.</p>\n\n\n\n<p>So if that&#8217;s the case, how do you spot your unconscious bias? Because, by definition, it&#8217;s unconscious. You&#8217;re unaware that it&#8217;s happening, but clearly there must be a way of short circuiting that problem, and figuring out, okay take a step back, have a think about that, was that the right decision? What&#8217;s the conversation that you need to have with yourself or your colleagues, or whatever it may be?</p>\n\n\n\n<p>[00:15:38] <strong>Pooja Derashri:</strong> Yeah. When you or your colleague indicate that you are facing unconscious biased to someone, for example, I will explain this with a core contributor example. Like imagine two programmers submitting code changes to a project. One programmer is well known to the community, and the other is new and less known, less famous.</p>\n\n\n\n<p>Due to our unconscious bias, the community might pay more attention to the code changes from the well known programmer, assuming that they are of higher quality. But it is not like that. Your newcomer can be a good coder and he might of submitted a nice or similar coding. This can lead to the new programmer&#8217;s contribution being overlooked or undervalued.</p>\n\n\n\n<p>If we are doing this kind of bias then we are not doing intentionally. This is something unconsciously we are doing, if we say about in open source. So when someone indicates this to us, first we should accept that we are becoming a biased person for some particular coder, or some particular person. Then we should self realise that how we can give both of them a fair chance by looking into their code or by giving them fair opportunities.</p>\n\n\n\n<p>[00:16:59] <strong>Nathan Wrigley:</strong> It&#8217;s very difficult, isn&#8217;t it, to be as reflective as that. So I would imagine that in almost any unconscious bias that you may have, be it towards code or, you know the kind of food that you like, there is something very deep in that. And so when somebody points it out that you have a bias, sometimes the shutters go up if you like, and you feel that that&#8217;s a, well I guess you could describe it as a personal attack.</p>\n\n\n\n<p>You&#8217;ve been biased there. You&#8217;ve clearly exhibited some bias. It&#8217;s not always straightforward to admit to yourself that you have these biases. And so I guess that&#8217;s the enterprise that we&#8217;re going to discuss now. How do we build an inclusive culture? In which people are able to recognise that, yes they have biases, yes they need to pay attention to that, or at least listen to other people&#8217;s opinions.</p>\n\n\n\n<p>So let&#8217;s move on to that. Your third point, if you like, building inclusive cultures. Before we get into the meat and the bones of that, I&#8217;d like to ask what you think broadly about how WordPress as a community is doing with all of this. Because it feels like at the moment this is a particularly hot topic, for want of a better word. It feels like it&#8217;s getting lots of coverage, lots of endeavors are being made.</p>\n\n\n\n<p>I&#8217;m not making the claim that everything is perfect, but it feels like this is a conversation which is becoming increasingly normal. We&#8217;re constantly being told about this and we&#8217;re constantly alert and aware of this. So, how do you think we do as a community, the WordPress community? What can we do, and how are we doing?</p>\n\n\n\n<p>[00:18:32] <strong>Pooja Derashri:</strong> Actually in my perspective taking the DEIB initiative doesn&#8217;t mean just ticking the boxes. It is all about where people feel they are among all of us. And nurturing the community of where everyone feels respected, valued, and their voices are heard. As you said, this is already a hot topic that is discussed everywhere in the community right now.</p>\n\n\n\n<p>Few of the initiatives, in my opinion, are very great, WordPress community is taking. Like WordPress 6.4 release, it is lead by all women, and non binary people. So that many underrepresented people will get a chance to be part of the release squad, in spite of their background or something.</p>\n\n\n\n<p>In another way, if we speak about workshop, that is a great initiative. Like Jill Binder is doing workshops on diversity in every part of the world. And for a few years Jill Binder has been running a workshop, and promoting and uplifting diverse people who are not so comfortable in public speaking, but are expert in their respective fields. There she&#8217;s uplifting them, and creating an inclusive environment. So they feel comfortable, and can deliver their talk, and can be a part of this WordPress family.</p>\n\n\n\n<p>And one of the great examples, great initiatives taken by Birgit Olzem, she submitted a proposal for forming an official Make WordPress DEIB team, so that DEIB can be implemented in every aspect of WordPress, with every WordPress Make team, and can align with other make teams.</p>\n\n\n\n<p>This will be discussed in the community summit. I guess today this is going to be discussed. I must say I&#8217;m really excited, what happened and what the outcome and decision was made on this topic. And I would be really happy if this team was to be in existence.</p>\n\n\n\n<p>And if you heard about a month ago, there was a mentorship program initiated by Hari Shanker. Initiatives taken by Hari Shanker started a project called Mentorship Program, Contributor Mentorship Program. In this a dedicated mentor is assigned to a mentee, or what we say, new contributor who wants to contribute to WordPress, but doesn&#8217;t know how to contribute, how to start.</p>\n\n\n\n<p>So the mentor can guide them, and help them to onboard as a contributor. Basically they are creating a path for them to feel included in this environment and get settled. As soon as they join they feel belonging. They have a sense of belonging in this WordPress community as soon as they join.</p>\n\n\n\n<p>So it was great I must say. It was a pilot project but it was a great success. So many contributers who are now regularly contributing to the WordPress projects, and bringing their fresh ideas and innovation to that. So these are a few examples or initiatives community is taking now.</p>\n\n\n\n<p>[00:21:55] <strong>Nathan Wrigley:</strong> How do you feel then about how the WordPress community is doing? I should add that I will link in the show notes to the make.wordpress.org piece which is talking about the establishment of a diversity, equity, inclusion, and belonging team. And there&#8217;s also, as I said, an episode with Birgit and Jill which you can find in the WP Tavern podcast archive if you want to go a little bit deeper, but I will link to those.</p>\n\n\n\n<p>How do you feel that wordPress as a community is doing in comparison to other parts of the tech industry? Do you feel that WordPress is perhaps at the cutting edge? Or are we taking our cues from other communities which have been there, done that, tackled this problem before us?</p>\n\n\n\n<p>It feels a lot of the things that WordPress is doing are fairly innovative. So we are having to create, as a community, these things for ourselves. But I could be wrong about that. So perhaps we could just have a chat about whether WordPress is at the vanguard of this or not.</p>\n\n\n\n<p>[00:23:00] <strong>Pooja Derashri:</strong> Yes, in my opinion if we go back five or ten years back in WordPress community then the WordPress community was not that diverse. But in the past few years the community is taking diversity very seriously, and taking a great initiative so every person all across the globe can share their feelings, or share their ideas, and they are implemented.</p>\n\n\n\n<p>I&#8217;m taking one of my example, when I joined the training team in 2019, the team was gearing up for the initial WordPress launch. Then Courtney Robertson and Hauwa Abashiya was the team rep at that time. And I was like, I was having a coding background, I don&#8217;t know about how content works, and how I can contribute and help in that. They helped me in a lot in onboarding to the training team, and they helped me to learn the process. And soon after I got involved and Learn WordPress launched.</p>\n\n\n\n<p>After that we worked hard on the training team to make it as diverse across the globe. That time from basically APAC region, there was not much contribution. So we created an inclusive environment in team, everyone can come and ask everything. We were available. We all work from different parts of the world. So we can say we were available 24 hours at that time.</p>\n\n\n\n<p>We were trying our best to treat everyone equally, no matter where they are from. At that time I started APAC meetings to boost the contribution in this region. We run some workshops to explain what the training team, and what it does.</p>\n\n\n\n<p>I understand the true meaning of how a diverse team can work together to raise awareness and bring all other members on board, and then they can become a part of the regular contribution.</p>\n\n\n\n<p>[00:25:09] <strong>Nathan Wrigley:</strong> Yeah thank you. The fifth part that I&#8217;ve got written down here in our shared show notes is your desire to make sure that underrepresented voices are empowered. And I wonder if you could expand on that a little bit. What was it that you were meaning there? Who are you meaning by underrepresented? What are the things that need to be done in order to empower those voices?</p>\n\n\n\n<p>[00:25:35] <strong>Pooja Derashri:</strong> So it depends. If we talk about the tech world, basically in the programming field there are more male coders involved in comparison. Not like I&#8217;m saying all programmers are male, but in comparison to that there are more male representative are there.</p>\n\n\n\n<p>The lack of representation can be based on various factors just like gender, race, ethnicity, age, geographic location. There can be a more diverse perspective and less inclusive community that can be underrepresented. Few examples like female minorities, people of color, non English speakers, developing countries, accessibility advocates.</p>\n\n\n\n<p>One more example can be non technical roles, LGBTQ+ individuals. It&#8217;s important to address the underrepresented of these groups to ensure that the WordPress community is diverse, inclusive, and welcoming to everyone. No matter who they are and what background they came from. As a community, our efforts to promote diversity and inclusion can include targeted outreach, like some mentorship programs, creating a safe space, providing them resources if they want.</p>\n\n\n\n<p>Your question was, how can we empower the underrepresented voices? It&#8217;s crucial for creating a more diverse and inclusive environment in community, or in an organisation, or in industries, including open source or WordPress community. We can amplify their achievements like recognising and highlighting their contributions, and provide them equal opportunities and their voices are heard in bigger roles.</p>\n\n\n\n<p>We can provide diverse leadership. We can create a safe space for them so they feel comfortable in speaking, or in putting their skills in front of everyone. Basically a long term commitment, empowering in underrepresented voices is an ongoing effort. It requires consistent dedication, and a commitment to sustainable change.</p>\n\n\n\n<p>[00:28:02] <strong>Nathan Wrigley:</strong> I&#8217;m curious in your last little portion there you mentioned quite a few different things. When I hear conversations around diversity and inclusion and DEIB in general, there are certain topics which come into my mind, and it might be things in the community which I&#8217;ve heard of recently. So I don&#8217;t know, it might be that there&#8217;s equal representation at WordPress events, that we make sure that the speaker lineup is diverse.</p>\n\n\n\n<p>But curious there that you listed out quite a few other things as well. So for example, just geographical, the spread of where you are on the planet. You need to think perhaps differently depending on where you&#8217;re based, and the metrics by which you would measure how you&#8217;re doing in this sphere may be different in, for example, India than it would be where I am in the UK.</p>\n\n\n\n<p>So it doesn&#8217;t feel like there&#8217;s one size fits all. There&#8217;s no standard operating procedure for making sure this is all done correctly. Different parts of the world may be on a different journey and have a different trajectory, and have different things that they need to focus on. Would you say that&#8217;s true?</p>\n\n\n\n<p>[00:29:10] <strong>Pooja Derashri:</strong> Yes, different parts of countries may have different perceptions regarding diversity. I agree with your point that our WordPress related events are focusing on diverse speaker lineup. If we check our WordCamp US speaker lineup, that is much diverse. And similarly in WordCamp Asia, where I was part of speaker organising teams, we put our full efforts in creating a diverse speaker lineup. So yeah, I completely add with your point. We might have different perceptions, we might have different geographical location. There are different means of diversity.</p>\n\n\n\n<p>[00:29:50] <strong>Nathan Wrigley:</strong> Now inevitably when this kind of conversation comes around, there are always people in the community who have a very different opinion. And they have the opinion that, well really I&#8217;m only here for the code. I want to be able to download the WordPress code base, I want to be able to use WordPress, I want to make it the foundation of my business and so on and so forth.</p>\n\n\n\n<p>And they push back and they say look conversations like this, they&#8217;re not relevant. It&#8217;s code, that&#8217;s all it is to me. What do you say to them? Clearly you would have a different opinion but, how do we get those people interested, and make it so that they feel that this is important? Because I feel that there&#8217;s quite a few members of the community who just say oh, can we just concentrate on the code? We don&#8217;t need to be worried too much about all these other tangential things.</p>\n\n\n\n<p>[00:30:41] <strong>Pooja Derashri:</strong> If we talk about specifically WordPress, there is nothing we can only do with code. There are other things as well like non code contribution. There are other teams, other contributors that are putting in their efforts to make it a successful project. Like a Polyglots team is putting so many efforts into converting WordPress projects into the other languages, so it can be used by so many other people.</p>\n\n\n\n<p>Similarly if we talk about docs team. Docs team is not putting coding efforts, but they are working on providing documentation so everyone can understand the process. Understand how to use WordPress, how you can build something on it, and how you can contribute.</p>\n\n\n\n<p>So basically it is not about you can only do it with code. Diversity in terms of every aspect in non code contribution also matters. The whole community came from coding, non coding and other. All the people came together and built a community. Not only one person or one kind of people, like all coders can build a community. It should be a collective effort and it should be a collective output in my opinion.</p>\n\n\n\n<p>[00:32:03] <strong>Nathan Wrigley:</strong> Yeah thank you, I think that was really nicely put. A good explanation of the problem at hand. Yeah that&#8217;s brilliant. Thank you.</p>\n\n\n\n<p>If we were to be a listener to this podcast and some of the messages that you&#8217;ve talked about click with us, and we think, yeah everything that Pooja said, that&#8217;s vitally important. I&#8217;m not involved in it yet. I&#8217;d like to be more involved with it. I wonder if you could give us some pointers as to how you might get involved. Perhaps you could tell us about places that we could go. I can link to anything that you mention in the show notes, so they&#8217;ll all be in there. But also maybe you could highlight some of the people who are doing good work in this area.</p>\n\n\n\n<p>So there&#8217;s obviously, you know you, yourself. But you mentioned Birgit Olzem and you&#8217;ve also mentioned Jill Binder, there&#8217;s a couple of other voices. But maybe there&#8217;s some other literature that you can point us in the direction of. Some websites, some project or endeavour that WordPress itself is doing, so that we can dig into this a little bit more.</p>\n\n\n\n<p>[00:33:03] <strong>Pooja Derashri:</strong> Yes. I would like to mention the mentorship program lead by Hari Shanker. More contributors from diverse community come and join the WordPress project. It is a nice initiative in my opinion.</p>\n\n\n\n<p>The WordPress six point release, they can join the WordPress six point release Slack channel and people will go through the process of how release works, and how, if they want to be a part of Core. There is not only they can part of Core by just coding. There are so many other areas like testing, like documentation, marketing, content training team. There are so many other teams they can also join.</p>\n\n\n\n<p>Courtney Robertson is also raising awareness about diversity and she is putting so much effort into onboarding to people from different parts of the world. So yeah these are the few things I would like to mention.</p>\n\n\n\n<p>[00:34:00] <strong>Nathan Wrigley:</strong> Okay, that&#8217;s great. Thank you very much. And on a more personal note, if somebody has listened to this and they would like to make contact with you. Do you have a web page or a social media profile that you would point people towards?</p>\n\n\n\n<p>[00:34:17] <strong>Pooja Derashri:</strong> I&#8217;m available on Twitter at PoojaDerashri, the same handle as my name, P O O J A D E R A S H R I. I&#8217;m available on Make WordPress Slack channel. So if anyone wants to contact me they can contact me through Twitter or Make Slack WordPress channel.</p>\n\n\n\n<p>[00:34:38] <strong>Nathan Wrigley:</strong> Well Pooja, thank you for joining me today. I think I have asked all of the questions that I wish to ask. I&#8217;ll just end by giving you the opportunity, if there was anything else that you wanted to add. If not I will say thank you very much for joining us and giving us some really important information about this really important subject. So over to you if there&#8217;s anything that I missed.</p>\n\n\n\n<p>[00:35:00] <strong>Pooja Derashri:</strong> No actually you have covered everything very well and I think there is nothing I would like to mention in hand. Just one thing I would like to state here, I heard in one of the workshops by Jill Binder that many underrepresented are experts. She shared in one of the workshops where people sometimes have a misconception that there are two different type of people, like WP experts and the underrepresented. But there is not something like that. My personal conception was changed after hearing her workshop that she stated that many underrepresented people are also experts.</p>\n\n\n\n<p>[00:35:45] <strong>Nathan Wrigley:</strong> Okay thank you. Pooja Derashri, thank you so much for joining us on the podcast today. I really appreciate it.</p>\n\n\n\n<p>[00:35:51] <strong>Pooja Derashri:</strong> Thank you. Thank you so much</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://twitter.com/poojaderashri\">Pooja Derashri</a>.</p>\n\n\n\n<p>Pooja is a co-founder of <a href=\"https://wpvibes.com/\">WPVibes</a>, a plugin development company based in India. With a passion for WordPress, Pooja has been actively involved in the community since 2013. Her journey as a contributor began in 2017, when she attended her first local WordCamp. Her expertise and dedication have earned her various key roles in the WordPress ecosystem. She currently serves as a co-team rep for the training team and GTE for the Hindi locale. In addition, she holds key positions in the WordPress release squad for versions 6.3 and 6.4, where she heads up the test team.</p>\n\n\n\n<p>Pooja shares her insights on the importance of diversity, equity, inclusion, and belonging within the WordPress community, and explores how you don’t need to be a coder to be a part of the community and all that it is.</p>\n\n\n\n<p>We discuss the work of teams like Polyglots, who focus on translating WordPress projects into different languages, and Docs, who provide much needed documentation to help users understand and contribute to the platform. These initiatives alone make it clear that WordPress is reliant on non-coding contributions, and there are more ways to contribute than ever before.</p>\n\n\n\n<p>I ask Pooja about her experiences with diversity and inclusivity in the tech industry, and she reflects on the challenges she has faced, discussing the importance of recognising and addressing unconscious biases. She shares her insights on the need for training and workshops that empower diverse individuals to contribute and speak up within the WordPress community.</p>\n\n\n\n<p>We delve into Birgit Olzem&#8217;s proposal to form an official DEIB team within WordPress, aiming to implement diversity, equity, inclusion, and belonging throughout the whole community. I express my excitement about the potential outcome of this proposal, and we think about how WordPress compares to other parts of the tech industry.</p>\n\n\n\n<p>We explore the various initiatives and efforts being made to build a more inclusive WordPress culture. From mentorship programs, to targeted outreach and safe spaces, we uncover the ways in which underrepresented voices are being uplifted.</p>\n\n\n\n<p>If you’re interested in creating a more inclusive community, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links mentioned in the podcast</h2>\n\n\n\n<p><a href=\"https://wptavern.com/podcast/94-birgit-olzem-and-jill-binder-on-creating-a-diverse-and-sustainable-wordpress-community\">Jukebox Podcast #94 – Birgit Olzem and Jill Binder on Creating a Diverse and Sustainable WordPress Community</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/\">Training team</a></p>\n\n\n\n<p><a href=\"https://twitter.com/poojaderashri\">Pooja&#8217;s Twitter</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Links supplied by Pooja in relation to the podcast</h2>\n\n\n\n<p><a href=\"https://heropress.com/\" target=\"_blank\" rel=\"noreferrer noopener\">HeroPress</a> by Topher DeRosia</p>\n\n\n\n<p><a href=\"https://yoast.com/yoast-diversity-fund/\" target=\"_blank\" rel=\"noreferrer noopener\">Yoast Diversity Fund</a></p>\n\n\n\n<p><a href=\"https://wordpressfoundation.org/projects/kim-parsell-memorial-scholarship/\" target=\"_blank\" rel=\"noreferrer noopener\">Kim Parsell Memorial Scholarship</a></p>\n\n\n\n<p><a href=\"https://opencollective.com/thewpcc\" target=\"_blank\" rel=\"noreferrer noopener\">The WP Community Collective</a>&nbsp;by Courtney Robertson, Sé Reed, and Katie Adams Farrell</p>\n\n\n\n<p><a href=\"https://www.underrepresentedintech.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Underrepresented in Tech</a>&nbsp;by Allie Nimmons and Michelle Frechette</p>\n\n\n\n<p><a href=\"https://wpspeakers.com/\" target=\"_blank\" rel=\"noreferrer noopener\">WP Speakers</a>&nbsp;by Michelle Frechette</p>\n\n\n\n<p><a href=\"https://womeninwp.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Women in WP Show</a> by  Amy Masson,  Tracy Apps, and Angela Bow</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\" target=\"_blank\" rel=\"noreferrer noopener\">DEIB Make WordPress team proposal</a> by Birgit Olzem</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/diversity-speaker-training-workshop/\" target=\"_blank\" rel=\"noreferrer noopener\">Diversity Workshops</a> by  Jill Binder</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/project/2023/08/11/the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program-has-concluded/\" target=\"_blank\" rel=\"noreferrer noopener\">Contributor Mentorship Program&nbsp;</a>by&nbsp; Hari Shanker</p>\n\n\n\n<p><a href=\"https://www.youtube.com/@gowithwp\" target=\"_blank\" rel=\"noreferrer noopener\">Go with WP</a> podcast by the Nepal Community</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Oct 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:69:\"Akismet: 10 Powerful AI Marketing Tools to Grow Your Business in 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=281899\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://akismet.com/blog/ai-marketing-tools-for-business/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:38655:\"<p>AI (artificial intelligence) has drastically changed the way many industries operate. In particular, there are tons of AI marketing tools that make it quicker and easier to manage (and expand) your business. But with the growing popularity of these tools, you might find it difficult to keep up with your competitors.&nbsp;</p>\n\n\n<p>Luckily, you can retain your competitive edge and expand your business by implementing the best AI marketing tools. You can find anti&#8209;spam software, customer service automation tools, email marketing programs, and more that can take care of routine tasks and procedures. This way, you can get more done with less&nbsp;time.</p>\n\n<p>In this post, we’ll take a closer look at the features you should look for in AI marketing tools. Then, we’ll explore ten of the best AI tools for&nbsp;business.</p>\n\n\n<span id=\"more-281899\"></span>\n\n\n<h2 class=\"wp-block-heading\">What features should businesses seek in an AI marketing&nbsp;tool?</h2>\n\n\n<p>With the emergence of AI in the marketing industry, it’s much quicker and easier to complete many routine tasks. You can find tools that help you automate email campaigns, research keywords, write content, and more.&nbsp;</p>\n\n\n\n<p>When you’re able to get these tasks done faster, you can free up time to invest into other aspects of your business. Or, you can implement AI tools that help you improve your current practices. For instance, you can find advanced programs to conduct competitor research or optimize your ad campaigns.&nbsp;</p>\n\n\n<p>No matter what your motivation for using artificial intelligence marketing tools, there are a few key features to look out for when choosing them. Here are some of the main factors to&nbsp;consider:</p>\n\n\n<ul><li><strong>Automation. </strong>Automated tools, as the name suggests, work automatically. Since these tasks take place in the background, they often require minimal effort and input once&nbsp;configured.</li>\n\n<li><strong>Customization options. </strong>It’s important to find a solution that offers various customization options. This way, you can create a unique tool that fits in seamlessly with the rest of your business and&nbsp;brand.</li>\n\n<li><strong>Personalization. </strong>The drawback of using automated solutions is that you can end up adopting a one&#8209;size&#8209;fits&#8209;all approach. Still, the best AI marketing tools will provide a great deal of personalization both for you and your&nbsp;customers.</li>\n\n\n<li><strong>Data analytics. </strong>It’s vital to have access to analytics for any marketing activity for your business. This way, you can identify what’s working and what isn’t. Then, you can adjust your approach accordingly.&nbsp;</li>\n</ul>\n\n\n<p>With these things in mind, you’ll be better equipped to find the right AI marketing tools to complement your marketing&nbsp;strategy.</p>\n\n\n<h2 class=\"wp-block-heading\">The 10 best AI tools for marketing&nbsp;</h2>\n\n\n<p>Now that you know what to look for in an AI marketing tool, let’s check out ten of the best options to help grow your&nbsp;business.</p>\n\n\n<img width=\"1600\" height=\"866\" src=\"https://akismet455732288.files.wordpress.com/2023/09/image-9.png\" alt=\"Akismet home page design\" class=\"wp-image-282629\" />\n\n\n<h3 class=\"wp-block-heading\">1. <a href=\"https://akismet.com/\">Akismet: AI anti&#8209;spam that boosts conversion&nbsp;rates</a></h3>\n\n\n<p>Akismet is an automated tool that filters out comment and form spam with an accuracy rating of 99.99 percent. Better yet, the tool analyzes every piece of user-submitted content in real time to protect your site from attacks.&nbsp;</p>\n\n\n<p>The Akismet plugin provides an easy way to save time, since it can take hours to manually review comments and form submissions. In fact, the average Akismet user saves 20 hours a month by switching over from manual&nbsp;filtering.</p>\n\n<p>One of the most common ways to block spam online is to <a href=\"https://akismet.com/blog/wordpress-captcha/\">implement a CAPTCHA</a>. But this adds friction to the user experience, which can result in fewer conversions and sales. <a href=\"https://akismet.com/features/\">Akismet</a>, on the other hand, blocks spam without disrupting the user experience.&nbsp;</p>\n\n\n<p>Trusted by companies like Microsoft, Bluehost, <a href=\"https://akismet.com/blog/convertkit-customerstory/\">and ConvertKit</a>, Akismet blocks bots, but provides a quicker, smoother process for real people. Without the need to find all the stop lights or decipher jumbled text, more people will complete your forms and your bottom line can improve overnight.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Key features:</h4>\n\n\n\n<ul><li>Spam filters with 99.99 percent&nbsp;accuracy</li>\n\n<li>Form, text, and <a href=\"https://akismet.com/blog/best-wordpress-comment-plugins-compared/\">comment spam</a>&nbsp;protection</li>\n\n<li>The ability to save 20 hours per month managing&nbsp;spam</li>\n\n\n<li>Real-time analysis</li>\n\n\n<li>An open API&nbsp;key</li>\n\n<li>Customizable enterprise&nbsp;solutions</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Ease of&nbsp;use:</h4>\n\n\n<p>You can install and activate the Akismet plugin directly through your WordPress dashboard. Then, simply access the dedicated interface to find out how many pieces of spam have been blocked. You can also configure your privacy, filtering, and comments settings using simple checkboxes.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Pricing:</h4>\n\n\n\n<p><a href=\"https://akismet.com/pricing/\">Akismet plans</a> for businesses start at $4.95 per month.&nbsp;</p>\n\n\n\n<img width=\"1600\" height=\"627\" src=\"https://akismet455732288.files.wordpress.com/2023/09/image-23.png\" alt=\"HubSpot homepage, with details about the tool\" class=\"wp-image-283373\" />\n\n\n<h3 class=\"wp-block-heading\">2. <a href=\"https://www.hubspot.com/products/marketing/marketing-automation\" target=\"_blank\" rel=\"noreferrer noopener\">HubSpot Marketing&nbsp;Automation</a></h3>\n\n<p>HubSpot provides one of the easiest ways to automate your marketing campaigns. The software uses intuitive workflows to help you launch campaigns quickly — across mediums like email, websites, SMS, and&nbsp;more.</p>\n\n<p>For instance, you can build beautiful email templates with no code. Then, configure triggers and actions to send the right emails to the right people at the right time. This way, you’re able to create more email campaigns, generate more leads, and conduct regular&nbsp;follow&#8209;ups.</p>\n\n\n<h4 class=\"wp-block-heading\">Key features:</h4>\n\n\n\n<ul><li>Email drip campaigns (with triggers, conditions, and&nbsp;actions)</li>\n\n<li>Targeted workflows with a visual&nbsp;editor</li>\n\n\n<li>Advanced segmentation</li>\n\n\n<li>The ability to personalize campaigns with CRM&nbsp;data</li>\n\n<li>Internal notification triggers following key&nbsp;actions</li>\n\n\n<li>Automated task reminders&nbsp;</li>\n\n\n<li>Logs of important campaign&nbsp;metrics</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Ease of&nbsp;use:</h4>\n\n<p>Some of HubSpot’s tools can be complex and difficult to work with. But the marketing automation platform makes nearly every function accessible from the primary&nbsp;dashboard.</p>\n\n\n<p>It doesn’t require any coding experience, though coding is still an option for users who want to refine their marketing assets. Better yet, you’ll get access to a growing library of templates, reusable layouts, and resources to help you get started.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Pricing:</h4>\n\n\n\n<p>You can try HubSpot’s marketing tools for free after creating an account. Or upgrade to the <a href=\"https://www.hubspot.com/pricing/marketing/\" target=\"_blank\" rel=\"noreferrer noopener\">Starter plan</a> for $18 per month.&nbsp;</p>\n\n\n\n<img width=\"1600\" height=\"630\" src=\"https://akismet455732288.files.wordpress.com/2023/09/image-24.png\" alt=\"Grammarly homepage with screenshots\" class=\"wp-image-283375\" />\n\n\n\n<h3 class=\"wp-block-heading\">3. <a href=\"https://www.grammarly.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Grammarly</a></h3>\n\n\n<p>Grammarly is a popular AI marketing tool that instantly generates clear, concise content. While Grammarly is well known for its spelling and grammar checking abilities, you can also use the software to improve your writing style and brand voice throughout your content&nbsp;creation.</p>\n\n\n<p>One of the best parts about Grammarly is that you can use it directly within your desktop applications and across the web. So you can easily improve all content from emails and social media posts, to documents.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Key features:</h4>\n\n\n\n<ul><li>GrammarlyGo, which enables you to write full content pieces with just a&nbsp;prompt</li>\n\n<li>Summarized emails, and the ability to respond using context&#8209;specific&nbsp;prompts</li>\n\n<li>Integration on desktop and&nbsp;mobile</li>\n\n<li>Guidance to adjust the tone and attitude of your&nbsp;writing</li>\n\n<li>The ability to create shared guidelines across your&nbsp;team</li>\n\n<li>Integrations with over 500,000 applications, like Gmail, Google Docs, Microsoft, and&nbsp;Slack</li>\n\n<li>Enterprise&#8209;grade privacy and&nbsp;security</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Ease of&nbsp;use:</h4>\n\n\n<p>Once you install Grammarly, you can select your preferred English dialect and writing style in your account settings. Then, the tool works automatically to elevate your writing.&nbsp;</p>\n\n\n\n<p>You’ll receive various types of suggestions, highlighted in different colors. Then, you’re able to click on each suggestion to find more information about it. Plus, it’s easy to accept or reject the suggestions.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Pricing:</h4>\n\n\n\n<p>It’s completely free to create a Grammarly account. Or, opt for the <a href=\"https://www.grammarly.com/plans\" target=\"_blank\" rel=\"noreferrer noopener\">Premium plan</a> to access full-sentence rewrites, tone suggestions, and vocabulary ideas. This costs $12 per month with an annual subscription.&nbsp;</p>\n\n\n\n<img width=\"1600\" height=\"673\" src=\"https://akismet455732288.files.wordpress.com/2023/09/image-25.png\" alt=\"Synthesia homepage with a video\" class=\"wp-image-283378\" />\n\n\n\n<h3 class=\"wp-block-heading\">4. <a href=\"https://www.synthesia.io/\" target=\"_blank\" rel=\"noreferrer noopener\">Synthesia</a>&nbsp;</h3>\n\n\n<p>Synthesia is a neat AI marketing tool that instantly converts your written content into high&#8209;quality videos. You can choose from a bunch of natural&#8209;sounding AI voices in over 120 languages. Meanwhile, you’re able to make your videos more engaging with over 140&nbsp;avatars.</p>\n\n\n<p>Synthesia is a great choice for agencies that produce training videos at scale. You can create, share, and edit videos all in one place. And, there are plenty of e-learning courses in sales, customer service, and marketing to help get your team up to speed.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Key features:</h4>\n\n\n\n<ul><li>Consistent voices in over 120&nbsp;languages</li>\n\n<li>Automatic closed&nbsp;captions</li>\n\n<li>The ability to clone your own&nbsp;voice</li>\n\n<li>Over 140 avatars (or create your&nbsp;own)</li>\n\n<li>Video prototypes that you can share with your&nbsp;team</li>\n\n\n<li>One-click video updates&nbsp;</li>\n\n\n\n<li>SOC 2 and GDPR compliance&nbsp;&nbsp;</li>\n\n\n\n<li>Over 200 free templates&nbsp;</li>\n\n\n<li>Integrations with WordPress and&nbsp;YouTube</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Ease of&nbsp;use:</h4>\n\n\n<p>This AI video generator is very easy to use thanks to Synthesia’s clean, simple interface. To start making videos, you’ll enter your audience and topic before generating a script.&nbsp;</p>\n\n\n\n<p>Next, you’re able to choose a layout for all the different scenes. Then, you can replace avatars, edit your script directly, and overlay text, images, or your business logo. When you’re done, you can download the video to share as part of your social media marketing or generate a handy link to embed it on your website.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Pricing:</h4>\n\n\n\n<p>Synthesia provides custom enterprise packages for large companies following a demo. But, you can get started with the <a rel=\"noreferrer noopener\" href=\"https://www.synthesia.io/pricing\" target=\"_blank\">Synthesia Personal plan</a> for $22.50 per month.&nbsp;</p>\n\n\n\n<img width=\"1999\" height=\"912\" src=\"https://akismet455732288.files.wordpress.com/2023/09/image14-1.png\" alt=\"Albert homepage with a dark background\" class=\"wp-image-283379\" />\n\n\n\n<h3 class=\"wp-block-heading\">5. <a href=\"https://albert.ai/\" target=\"_blank\" rel=\"noreferrer noopener\">Albert.ai</a></h3>\n\n\n<p>Albert is one of the best AI&#8209;powered tools for business because it can help you improve the effectiveness of your digital advertising. For instance, Albert can group keywords, build campaigns and audiences, manage budget allowance, optimize media, and provide reports with key&nbsp;insights.</p>\n\n<p>It’s a fully autonomous solution that can pretty much run the bulk tasks for certain marketing campaigns. This makes it one of the most valuable options on the list. All&#8209;in&#8209;all, it can save you tons of time, and improve the success of your&nbsp;campaigns.</p>\n\n\n<h4 class=\"wp-block-heading\">Key features:</h4>\n\n\n\n<ul><li>Analytics with data&nbsp;visualization</li>\n\n<li>A dedicated dashboard to manage&nbsp;campaigns</li>\n\n\n<li>Calendar management</li>\n\n\n<li>A/B split&nbsp;testing</li>\n\n\n<li>Ad variations</li>\n\n\n<li>Budget allocation and&nbsp;scheduling</li>\n\n\n<li>Bid optimization&nbsp;</li>\n</ul>\n\n\n<h4 class=\"wp-block-heading\">Ease of&nbsp;use:</h4>\n\n\n<p>Albert gives you access to an intuitive dashboard where it’s easy to track your budget allowance and oversee your advertising tasks. Additionally, Albert can handle super complex tasks with ease, which saves your business time and resources. It’s constantly learning and adapting, so your campaigns will be continually improving.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Pricing:</h4>\n\n\n<p>Albert offers customized pricing plans. That means you’ll need to <a href=\"https://albert.ai/pricing/\" target=\"_blank\" rel=\"noreferrer noopener\">request an estimate</a> to get an idea of what you can expect to&nbsp;pay.</p>\n\n\n<img width=\"1600\" height=\"685\" src=\"https://akismet455732288.files.wordpress.com/2023/09/image-26.png\" alt=\"Phrasee homepage with examples of the tool in use\" class=\"wp-image-283381\" />\n\n\n\n<h3 class=\"wp-block-heading\">6. <a href=\"https://phrasee.co/\" target=\"_blank\" rel=\"noreferrer noopener\">Phrasee</a></h3>\n\n\n<p>Phrasee provides one of the easiest ways to elevate your online marketing messaging. You can use the software to predict what content will resonate most with your audience. Plus, you can optimize all of your content, and gain insight into what’s working and what’s&nbsp;not.</p>\n\n<p>What’s more, Phrasee is a great option for agencies, since each team member will get access to a stylish dashboard where they’ll find performance data and language insights. Here, you can also automate A/B split tests, and create high&#8209;performing marketing content for every stage of your customer journey to more effectively implement your marketing&nbsp;strategy.</p>\n\n\n<h4 class=\"wp-block-heading\">Key features:</h4>\n\n\n\n<ul><li>Copy generation in real&nbsp;time</li>\n\n<li>Content Engine, which crafts material that’s backed by&nbsp;data</li>\n\n<li>Brand compliance&nbsp;support</li>\n\n<li>Support for all major digital channels, from emails to blog&nbsp;posts</li>\n\n<li>The ability to adjust the distribution of your message variants on the&nbsp;fly</li>\n\n<li>Integration with leading ESPs, CDPs, and digital engagement&nbsp;platforms</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Ease of&nbsp;use:</h4>\n\n\n<p>Phrasee is a complex tool, but it’s easy to learn how to use. You can access all of Phrasee’s AI features from one intuitive dashboard.&nbsp;</p>\n\n\n\n<p>Plus, the platform offers planning, creation, optimization, and analytics, so you won’t need separate solutions for each of these tasks. Better yet, it’s a great option for enterprise marketing teams, since the package includes unlimited seats.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Pricing:</h4>\n\n\n<p><a href=\"https://phrasee.co/pricing/\" target=\"_blank\" rel=\"noreferrer noopener\">The Starter plan</a> costs $500 a month, but includes unlimited content writing and unlimited seats. Phrasee also offers flexible enterprise solutions which might be best for larger&nbsp;businesses.</p>\n\n\n<img width=\"1600\" height=\"736\" src=\"https://akismet455732288.files.wordpress.com/2023/09/image-27.png\" alt=\"FullStory homepage with stats about their success\" class=\"wp-image-283384\" />\n\n\n\n<h3 class=\"wp-block-heading\">7. <a href=\"https://www.fullstory.com/\" target=\"_blank\" rel=\"noreferrer noopener\">FullStory</a></h3>\n\n\n\n<p>FullStory uses proprietary autocapture technology to monitor the quality of your digital experience. For instance, you can see where (and why) visitors are struggling with your website or mobile app.&nbsp;</p>\n\n\n\n<p>Better yet, the software flags opportunities for improvement, and prioritizes these changes by quantifying impact. This way, you can reduce friction on your site and increase sales and conversions. And, with tons of integrations, FullStory can work seamlessly with tools that your team is already using.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Key features:</h4>\n\n\n\n<ul><li>Tagless web&nbsp;autocapture</li>\n\n<li>Core product&nbsp;analytics</li>\n\n\n<li>Conversion analysis</li>\n\n\n\n<li>Retention analysis</li>\n\n\n\n<li>Session replays</li>\n\n\n<li>Robust privacy&nbsp;settings</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Ease of&nbsp;use:</h4>\n\n\n<p>FullStory is a highly user-friendly tool, especially when it comes to developing analytics. All you need to do is create a metric and add it to your dashboard.&nbsp;</p>\n\n\n\n<p>You can also set up different dashboards with different metrics. Better yet, FullStory adapts a “set it and forget it” model, so you can simply return to the dashboard to check on your website’s performance.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Pricing:</h4>\n\n\n<p>FullStory offers <a href=\"https://www.fullstory.com/plans/\" target=\"_blank\" rel=\"noreferrer noopener\">three plans</a>: Business, Advanced, and Enterprise. But, you won’t find prices on the website. The good news is that you can test the product for 14 days. Plus, you can speak with a professional to choose the right plan for your&nbsp;business.</p>\n\n\n<img width=\"1600\" height=\"793\" src=\"https://akismet455732288.files.wordpress.com/2023/09/image-28.png\" alt=\"Zapier homepage with icons of tools it integrates with\" class=\"wp-image-283385\" />\n\n\n\n<h3 class=\"wp-block-heading\">8. <a href=\"https://zapier.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Zapier</a></h3>\n\n\n<p>Zapier is a handy AI marketing tool that enables you to build custom workflows and automate many routine tasks. Better yet, it can connect tons of apps that you’re currently using to help save time and&nbsp;energy.</p>\n\n<p>All you need to do is describe what you want to automate and Zapier will write the code and build the Zaps for you. Additionally, many tasks can be automated directly within the ChatGPT interface where you can execute over 30,000 Zapier&nbsp;actions.</p>\n\n\n<h4 class=\"wp-block-heading\">Key features:</h4>\n\n\n\n<ul><li>More than 30 AI app&nbsp;partners</li>\n\n\n<li>Multistep Zaps</li>\n\n\n<li>The ability to save multiple versions of your&nbsp;Zaps</li>\n\n<li>Retries for any task&nbsp;failures</li>\n\n<li>Custom logic based on certain&nbsp;conditions</li>\n\n\n<li>Advanced workflows</li>\n\n\n<li>Shared app connections (Team&nbsp;plan)</li>\n\n<li>Live chat (Team&nbsp;plan)</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Ease of&nbsp;use:</h4>\n\n\n<p>Zapier easily makes connections between various apps, so you don’t need to manage them all separately. Better yet, since Zapier automates actions between apps, you don&#8217;t need to monitor tasks yourself. In Zapier’s well-organized interface, you’ll lay out the triggers and steps that you want to occur, and the tool takes care of all the behind-the-scenes coding.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Pricing:</h4>\n\n\n\n<p>You can start with Zapier for free, but this will only give you access to 100 tasks per month and single-step Zaps. <a href=\"https://zapier.com/pricing\" target=\"_blank\" rel=\"noreferrer noopener\">Premium Zapier plans</a> are highly customizable. You can choose from four tiers, then select the number of tasks you can use per month, paying accordingly. Plans start at $19.99 per month for 750 tasks per month.&nbsp;</p>\n\n\n\n<img width=\"1600\" height=\"853\" src=\"https://akismet455732288.files.wordpress.com/2023/09/image-29.png\" alt=\"Chatfuel homepage with a bright green background\" class=\"wp-image-283386\" />\n\n\n\n<h3 class=\"wp-block-heading\">9. <a href=\"https://chatfuel.com/\" target=\"_blank\" rel=\"noreferrer noopener\">ChatFuel</a></h3>\n\n\n<p>ChatFuel is one of the best AI tools for ecommerce businesses and marketers. It can help boost your lead generation and increase revenue on WhatsApp. It enables you to improve your customer service and response times by adding unlimited agents to just one business&nbsp;number.</p>\n\n\n<p>You’ll also get the verified green badge, so customers know you’re trustworthy. Then, you can display personalized messages, collect customer feedback, and activate drip campaigns with an automated triggering system.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Key features:</h4>\n\n\n\n<ul><li>99.99 percent uptime&nbsp;guarantee</li>\n\n\n<li>GDPR compliance</li>\n\n\n\n<li>A/B testing</li>\n\n\n<li>Audience segmentation based on behavior and&nbsp;preferences</li>\n\n<li>Auto&#8209;replies to Instagram messages or&nbsp;mentions</li>\n\n<li>The ability to chat with visitors via the Messenger&nbsp;button</li>\n\n<li>Integration with&nbsp;ChatGPT</li>\n\n<li>The ability to sell products on&nbsp;WhatsApp</li>\n\n<li>Personalized messages to recover abandoned&nbsp;carts</li></ul>\n\n\n<h4 class=\"wp-block-heading\">Ease of&nbsp;use:</h4>\n\n\n<p>ChatFuel provides one of the easiest and most intuitive chatbots on the market. It gives you access to a straightforward platform that’s simple and scalable. Plus, there’s a wide range of features to configure more complex chatbots if you need them.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Pricing:</h4>\n\n\n<p>You can try out ChatFuel at no cost. The free plan supports 50 conversions per month. You can upgrade, with <a href=\"https://chatfuel.com/pricing-main\" target=\"_blank\" rel=\"noreferrer noopener\">premium ChatFuel plans</a> starting at $14.99 per&nbsp;month.</p>\n\n\n<img width=\"1600\" height=\"698\" src=\"https://akismet455732288.files.wordpress.com/2023/09/image-30.png\" alt=\"Keyword Insights AI homepage\" class=\"wp-image-283388\" />\n\n\n<h3 class=\"wp-block-heading\">10. <a href=\"https://www.keywordinsights.ai/\" target=\"_blank\" rel=\"noreferrer noopener\">Keyword Insights&nbsp;AI</a></h3>\n\n<p>With Keyword Insights AI, you’re able to generate thousands of keyword ideas and group them into topic clusters. Then, it’s easy to create and optimize content without spending lots of time implementing key search engine optimization&nbsp;techniques.</p>\n\n<p>Better yet, you can quickly identify the search intent behind your chosen keywords, whether it’s transactional, informational, or something else. Then, when you’re happy with your keyword choice, you can send the cluster for brief creation in just a click. All of this contributes to a smoother, faster content creation&nbsp;process.</p>\n\n\n<h4 class=\"wp-block-heading\">Key features:</h4>\n\n\n\n<ul><li>Clusters for up to 45,000&nbsp;keywords</li>\n\n<li>The ability to create content&nbsp;briefs</li>\n\n<li>Up to 20 keyword searches per&nbsp;month</li>\n\n<li>Live Chat&nbsp;support</li>\n\n<li>SERP Similarity&nbsp;Pro</li>\n\n<li>SERP Explorer&nbsp;Pro</li>\n\n<li>Team sharing and reporting (with paid&nbsp;plans)</li>\n\n\n<li>Cluster analysis</li>\n</ul>\n\n\n<h4 class=\"wp-block-heading\">Ease of&nbsp;use:</h4>\n\n\n<p>Keyword Insights AI gives you access to a user-friendly interface where you can generate a large list of keywords around a certain topic quickly and easily. Then, you can group keywords and uncover topical clusters that are missing from your content.&nbsp;</p>\n\n\n\n<p>Next, with the AI-driven content brief generator, you’re able to create an outline for a piece of content. And in just one click, you can send off the outline to your team for review, or direct the brief straight to your content writer.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Pricing:</h4>\n\n\n<p>You can try Keyword Insights AI for $1 for four days. Then, upgrade to one of its <a href=\"https://www.keywordinsights.ai/pricing/\" target=\"_blank\" rel=\"noreferrer noopener\">paid plans</a> from $58 per month. This includes 6000 keyword clusters, ten content briefs, and five keyword searches per&nbsp;month.</p>\n\n\n<h2 class=\"wp-block-heading\">Factors to consider when choosing an AI marketing tool&nbsp;</h2>\n\n\n<p>While there are many useful AI marketing tools available, it’s important to find the right option for your unique business needs. Here are some key factors to consider when choosing artificial intelligence platforms to&nbsp;implement.</p>\n\n\n<h3 class=\"wp-block-heading\">Algorithm type</h3>\n\n\n<p>There are four main types of machine learning algorithms to choose from. Since each algorithm can result in a different level of accuracy and performance, this is an important factor to consider before opting for a particular AI&nbsp;tool.</p>\n\n<p>For instance, supervised learning algorithms can draw conclusions, make estimations, and develop an understanding between different algorithms. Typically, this type of learning is used to analyze trends or make predictions about your&nbsp;content.</p>\n\n\n<p>You can also find tools that rely on semi-supervised learning. This works similarly to supervised learning, but it uses labeled (contains tags to help sort information) and unlabeled data.&nbsp;</p>\n\n\n<p>Meanwhile, unsupervised learning is a great way to identify patterns and correlations. It’s often used to cluster similar data sets for tasks like customer&nbsp;segmentation.</p>\n\n\n<p>Lastly, reinforced algorithms provide a set of parameters to teach the software using trial and error. These tools learn through experience and can adapt their approach according to different situations.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">Integration with other&nbsp;systems</h3>\n\n<p>While there are plenty of excellent AI tools, it’s important to assess whether the platform will fit nicely within your current workflow. So, it’s a good idea to take a look at the possible integrations, and how easy it is to connect the&nbsp;platforms.</p>\n\n\n<img width=\"1600\" height=\"916\" src=\"https://akismet455732288.files.wordpress.com/2023/09/image-31.png\" alt=\"list of available Akismet integrations\" class=\"wp-image-283390\" />\n\n\n<p>What’s more, it’s best to plan ahead when possible. For example, if you plan on expanding your business, you might be looking to upgrade certain systems. Keep this in mind when selecting your AI marketing tools. This way, you can prevent any future disruptions to your usual&nbsp;procedures.</p>\n\n<h3 class=\"wp-block-heading\">Ease of&nbsp;use</h3>\n\n\n<p>Most platforms that feature AI boast about speed and automation. It’s these qualities that enable you to increase productivity and manage (or monitor) your business more efficiently.&nbsp;</p>\n\n\n\n<p>But some AI tools for businesses can be tricky to set up. For instance, some complex platforms can require access to your CRM or other types of data, which can be difficult to establish.&nbsp;</p>\n\n\n<p>Additionally, while most AI tools don’t require any coding skills, they might not be suitable for beginners. That’s why it’s a good idea to thoroughly read the customer reviews to get a sense of a tool’s&nbsp;usability.</p>\n\n<p>Sometimes, you can even try a demo or access a free trial first. That way, you can determine whether the tool will be accessible and manageable for everybody on your team. Plus, you can sometimes find free resources and forums where you can gain support and solutions to your&nbsp;problems.</p>\n\n\n<h3 class=\"wp-block-heading\">Updates</h3>\n\n\n\n<p>No matter what kind of tool you add to your business (whether AI or not), it’s important to make sure that it’s updated regularly. This way, you know that the development team is still active, and the tool isn’t running outdated technology. You should expect new features to be released, which can give your business a competitive edge.&nbsp;</p>\n\n\n<p>But updates are also important for security. That’s because the longer a piece of software has been available, the more likely hackers can find a way around its security barriers. Meaning, outdated software can be used as a backdoor to your site. Plus, most updates come with fixes for common bugs and&nbsp;errors.</p>\n\n\n<p>When you’re dealing with an AI-powered tool specifically, updates are even more vital to the success of your business. This is because AI content creation tools are trained on resources until a certain point.&nbsp;</p>\n\n\n<p>For instance, <a href=\"https://openai.com/blog/chatgpt\" target=\"_blank\" rel=\"noreferrer noopener\">ChatGPT</a> is only trained on data until late 2021. Essentially, if your chosen AI tool isn’t being updated frequently, you risk publishing outdated content, which can affect your search ranking and&nbsp;trustworthiness.</p>\n\n\n<h3 class=\"wp-block-heading\">Scalability</h3>\n\n\n<p>Typically, when business owners and marketers start looking for new tools, they consider their current situation. But it’s important to consider future plans as well. Are you expecting any significant growth? Does your business fluctuate at certain times of the&nbsp;year?</p>\n\n<p>If this is the case, you can outgrow your new tool and require an upgrade, or, an entirely new solution. Therefore, it’s best to factor this into your decision&#8209;making process. You can even find specific AI marketing tools that offer plans that make it easy to scale resources up and&nbsp;down.</p>\n\n<h3 class=\"wp-block-heading\">Security and&nbsp;privacy</h3>\n\n<p>One of the most important factors when choosing the best AI tool is security and privacy. You’ll want to make sure that your business is protected, and that any sensitive data like customer information and payment details are kept&nbsp;confidential.</p>\n\n\n<p>With this in mind, pay attention to the tool’s data handling practices, encryption methods, and compliance with regulations like GDPR. That way, you can assess whether there are any risks associated with implementing the tool on your website.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently asked questions&nbsp;</h2>\n\n\n<p>Up to now, we’ve tried to cover everything you need to know about AI marketing tools, but you still may have a few doubts. So, in this section, we’ll answer some of the most common questions on the&nbsp;subject.</p>\n\n<h3 class=\"wp-block-heading\">How do I know which AI marketing tool to&nbsp;choose?</h3>\n\n\n<p>Since there are so many diverse AI marketing tools, it can be difficult to choose the right solution for your business. Typically, this will depend on your own unique needs.&nbsp;</p>\n\n\n\n<p>In any case, Akismet is a great tool for practically every business, since spam will always be an issue for any website. With Akismet, you can block all comment, form, and text spam without the need to manually analyze every submission.&nbsp;</p>\n\n\n<p>Better yet, Akismet boasts a 99.99% detection accuracy rate. Unlike other anti&#8209;spam solutions such as CAPTCHAs, Akismet performs these tasks without disrupting the user&nbsp;experience.</p>\n\n<h3 class=\"wp-block-heading\">How can AI tools help businesses improve their marketing&nbsp;strategies?</h3>\n\n<p>There are tons of artificial intelligence tools that can help businesses improve their marketing strategies. Most of these platforms make it easier and quicker to perform certain functions, enabling you to increase your content output and make your campaigns more&nbsp;effective.</p>\n\n\n<p>For instance, you can identify thousands of keywords and topical clusters using a content strategy tool like AI Keyword Insights. Meanwhile, ChatFuel enables you to boost lead generation and revenue across social media marketing apps like WhatsApp, Instagram, and Facebook. Synthesia transforms simple text prompts into engaging videos in just a few minutes.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">How does AI help businesses with lead&nbsp;generation?</h3>\n\n\n<p>By implementing the best AI marketing tools, you can improve many aspects of your business, including lead generation.&nbsp;</p>\n\n\n\n<p>In particular, Akismet is a great way to get more leads on your website. That’s because the tool <a href=\"https://akismet.com/blog/best-anti-spam-wordpress-plugins-compared/\">protects your site against spam</a> (and the associated risks), without adding friction to the user experience.&nbsp;</p>\n\n\n\n<p>Many websites ask visitors to prove that they’re not a robot using protocols like CAPTCHA, this can be frustrating for visitors who might decide to exit your page.&nbsp;</p>\n\n\n<p>Akismet is more user&#8209;friendly, so it can help you increase conversions and sales on your&nbsp;site.</p>\n\n<h3 class=\"wp-block-heading\">What are the technical requirements for implementing AI tools in&nbsp;marketing?</h3>\n\n\n<p>The requirements for integrating and using AI tools will vary depending on your choice. Adding them to your workflows and practices may take a while, though the efficiency gained will quickly make it a worthwhile effort.&nbsp;</p>\n\n\n<p>But, if your site is on WordPress, implementing Akismet is as easy as installing the plugin directly from your WordPress&nbsp;dashboard.</p>\n\n\n<p>To do this, go to <strong>Plugins </strong>→ <strong>Add New </strong>within your WordPress dashboard. Here, search for “Akismet” and it will be the top option that’s presented.&nbsp;</p>\n\n\n\n<img width=\"1280\" height=\"636\" src=\"https://akismet455732288.files.wordpress.com/2023/09/image-32.png\" alt=\"Akismet plugin in the WordPress dashboard\" class=\"wp-image-283393\" />\n\n\n\n<p>Then, select <strong>Install Now </strong>→ <strong>Activate. </strong>After that, navigate to <strong>Settings </strong>→ <strong>Akismet Anti-Spam.&nbsp;</strong></p>\n\n\n\n<img width=\"316\" height=\"548\" src=\"https://akismet455732288.files.wordpress.com/2023/09/image-33.png\" alt=\"Aksimet Anti-Spam settings in the dashboard\" class=\"wp-image-283394\" />\n\n\n<p>If you already have an API key, click on <strong>Manually enter an API key. </strong>Or, choose <strong>Set up your Akismet&nbsp;account</strong>.</p>\n\n\n<img width=\"1600\" height=\"760\" src=\"https://akismet455732288.files.wordpress.com/2023/09/image-34.png\" alt=\"Akismet setup wizard\" class=\"wp-image-283395\" />\n\n\n\n<p>Since the tool starts working automatically, you can start enjoying robust anti-spam protection without lifting a finger.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">What is an example of an AI tool that addresses a significant marketing&nbsp;challenge?</h3>\n\n<p>One of the biggest challenges in marketing is finding a way to block spam without ruining the user experience. Traditionally, website owners and marketers use methods like CAPTCHA to reduce spam, since this entails the visitor proving that they aren’t a&nbsp;robot.</p>\n\n\n<img width=\"770\" height=\"925\" src=\"https://akismet455732288.files.wordpress.com/2023/09/image-35.png\" alt=\"CAPTCHA example with red spheres\" class=\"wp-image-283396\" />\n\n\n<p>The problem with CAPTCHA is that it can lead to fewer conversions since it adds friction to the user experience. This can be frustrating for visitors who might choose to leave your website, ditch your form, or abandon their&nbsp;cart.</p>\n\n<p>But, Akismet is a clever AI tool that filters your comment, text, and form spam automatically. It eliminates the need for CAPTCHA by analyzing submissions in real&#8209;time with 99.99%&nbsp;accuracy.</p>\n\n<h3 class=\"wp-block-heading\">What are the benefits of using Akismet’s AI&#8209;powered spam&nbsp;protection?</h3>\n\n<p>There are tons of benefits to using Akismet’s AI&#8209;powered spam protection. First off, it enables you to filter spam from your site without implementing intrusive alternatives like CAPTCHA. This way, you can keep visitors on your website and increase your conversion&nbsp;rate.</p>\n\n<p>Akismet blocks form and comment spam with incredible accuracy. By analyzing any piece of user&#8209;submitted text, you can keep your website better protected against common security&nbsp;threats.</p>\n\n\n<p>What’s more, using Akismet saves site administrators an average of 20 hours per month when it replaces a manual spam filtering process.&nbsp;</p>\n\n\n<p>Akismet provides a flexible API, so it’s easy to build it into any enterprise application your organization may&nbsp;use.</p>\n\n<h3 class=\"wp-block-heading\">What types of companies generally use&nbsp;Akismet?</h3>\n\n<p>Akismet is a powerful anti&#8209;spam solution that can be used by complete beginners. But, it’s also a great option for small businesses and <a href=\"https://akismet.com/enterprise/\">large&nbsp;enterprises</a>.</p>\n\n\n<p>For instance, there are currently over 100 million websites using the AI-powered Akismet tool. Some of these brands include Microsoft, WordPress.com, Bluehost, and ConvertKit. And across these websites, Akismet has blocked over 545,000,000,000 pieces of spam.&nbsp;</p>\n\n\n<h2 class=\"wp-block-heading\">Akismet: AI&#8209;powered spam protection that boosts conversion&nbsp;rates</h2>\n\n<p>AI marketing tools can simplify many aspects of running your business. This way, you can complete tons of tasks in a much shorter time frame. Plus, you can offload routine procedures and free up time to invest into other areas of your business, like&nbsp;growth.</p>\n\n<p>With this in mind, you might want to implement a tool like <a href=\"https://www.grammarly.com/\">Grammarly</a> to enhance your copy. <a href=\"https://zapier.com/\">Zapier</a> can enable you to build custom workflows by connecting tons of apps. Or you could use a tool like <a href=\"https://www.synthesia.io/\">Synthesia</a> to create high&#8209;quality videos with no&nbsp;equipment.</p>\n\n<p>Additionally, Akismet provides robust anti&#8209;spam protection. Using advanced AI, Akismet filters out comment and form spam with 99.99% accuracy. Better yet, user submissions are analyzed in real time, and Akismet works without disrupting the user experience. <a href=\"https://akismet.com/pricing/\">Get started with Akismet&nbsp;today</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Oct 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jen Swisher\";s: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:18:\"Matt: Cost of Spam\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=101397\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ma.tt/2023/10/cost-of-spam/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1551:\"<p><a href=\"https://fortune.com/2023/10/17/twitter-x-charging-new-users-1-dollar-year-to-tweet/\">Twitter/X is testing charging users $1/year</a> with the idea that will keep out bots and spam. It&#8217;s an appealing idea, and charging definitely does introduce a &#8220;proof of work&#8221; that wasn&#8217;t there before, but the history of the web shows this is not really a big deterrent. Domains cost money, usually a lot more than a dollar a year, and millions are used for spam or nefarious purposes. The spammers obviously thought their benefit would be more than the cost of the domain, or they use stolen credit cards and identities. Charging may cause a short-term drop in bots while the bad guys update their scripts, but the value of manipulating X/Twitter is so high I imagine there is already millions of dollars being spent on it.</p>\n\n\n\n<p>Long term to keep a platform healthy you really have to take a nuanced look at behavior and content, like Automattic does with <a href=\"https://akismet.com/\">Akismet</a>, and have a fairly sophisticated trust and safety operation with great engineers. T&amp;S is really important, not an enemy of progress, which would have been my chief edit to the otherwise exciting <a href=\"https://a16z.com/the-techno-optimist-manifesto/\">The Techno-Optimist Manifesto by Marc Andreessen</a>. (If you missed Marc&#8217;s <a href=\"https://a16z.com/ai-will-save-the-world/\">Why AI Will Save the World</a>, that&#8217;s also an excellent read with dozens of references you can go down a rabbit hole with.)</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, 18 Oct 2023 09:18: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: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: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:104:\"HeroPress: The Fuel Of Everything That’s Great In The World – Rotițele care fac lumea să se miște\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=5952\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:168:\"https://heropress.com/essays/the-fuel-of-everything-thats-great-in-the-world/#utm_source=rss&utm_medium=rss&utm_campaign=the-fuel-of-everything-thats-great-in-the-world\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24674:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/10/101723-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I think people are the fuel of everything that’s great in this world. — Cred că oamenii sunt catalizatorul a ceea ce este mai bun în lume.\" /><p><a href=\"https://heropress.com/feed/#romanian\">Eseul este disponibil și în română.</a></p>\n\n\n\n<p>It&#8217;s a beautiful coincidence how, at the time of writing this story, I&#8217;m a few weeks shy of celebrating nine years of working at Themeisle. I think it&#8217;s a big deal to have this continuity and consistency in something.&nbsp;</p>\n\n\n\n<p>This anniversary also marks nine years of being part of the WordPress community. But let&#8217;s start from the beginning.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-from-journalism-to-content-writing\">From journalism to content writing</h2>\n\n\n\n<p>When I started working at Themeisle, I barely knew anything about WordPress. My only links to it were a personal blog on WordPress.com that I had created in college and writing for a few press websites in Romania that were built on WordPress.&nbsp;</p>\n\n\n\n<p>That was all I knew about WordPress, which was not zero (I just knew how to write a post and publish it) but still far from what I should have known for the job. I was willing to learn, though, and here I am nine years later. Actually, I would say that I got here, in the WordPress community, rather accidentally than intentionally.</p>\n\n\n\n<p>Having a degree in Journalism and Communication Studies, my initial plans were revolving around being a sports reporter or press journalist. Funny enough, I ended up doing a different kind of press… WordPress. Haha!</p>\n\n\n\n<p>But before getting into the WordPress world, I was an aspiring journalist for a short time. Or a wanna-be journalist, if you will. I was adding brick by brick to the career in journalism that I had envisioned for myself.&nbsp;</p>\n\n\n\n<p>One of these bricks was an <a href=\"https://www.sportrevolution.ro/catalina-ponor-mi-am-dorit-sa-fiu-printre-putinele-gimnaste-din-tara-care-au-mers-la-doua-olimpiade/\">interview with Cătălina Ponor</a> &#8211; a three-time Olympic champion in artistic gymnastics and one of the best Romanian gymnasts. She used to be one of my sports idols growing up.&nbsp;</p>\n\n\n\n<p>Another brick to the journalism career was a feature article about how corruption in Romania was slowly killing performance in sports. This article, initially published on a website called Semnal Plus, received a lot of engagement and appreciation from Romanian sports fans. It eventually <a href=\"https://treizecizero.ro/burse/2015/12/08/sportul-comoara-nationala-care-ne-scapa-printre-degete/\">ended up on a popular tennis publication</a> in Romania &#8211; Treizecizero &#8211; as part of a writing contest, which brought me an internship with their editorial team.</p>\n\n\n\n<p>I did write more similar content during college about sports for a popular sports newspaper in Romania and about rock/metal music for a niche news website. I remember being particularly proud of a bunch of them. They gave me the confidence that I had it in me for this career.&nbsp;</p>\n\n\n\n<p>But the future had different plans for me.&nbsp;</p>\n\n\n\n<p>Soon after, I began to realize that being a reporter or press writer would bring too much stress, lack of free time, and little money. Let alone giving away a little bit of your dignity every day. At least, this is how I would describe most of the journalism work in Romania.&nbsp;</p>\n\n\n\n<p>For me, these factors played a big role in thinking that maybe, just maybe, I could explore some other options to see if there was something there for me that wasn’t a direct affront to these values that were paramount to me.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-working-at-themeisle\">Working at Themeisle</h2>\n\n\n\n<p>I’m not exaggerating for the sake of the story when I tell you that I got lucky finding Themeisle’s job announcement on a Facebook group. They were looking for a WordPress content writer. I didn’t even know what that meant, really. I just knew that yes, I did publish some articles on WordPress, so what could go wrong? I mean, I’ve used the platform before.&nbsp;</p>\n\n\n\n<p>Well, it turned out to be different from what I expected because the job didn’t imply writing on WordPress but writing <em>about</em> WordPress. Which got me confused. So I had to learn the inside-outs of WordPress <em>while</em> I was trying to do my job.</p>\n\n\n\n<p>Even more, the job implied writing in English, which I had never done before. All my writing up until that point used to be in Romanian. This was also a struggle, to completely switch the language and make it sound okay and readable.&nbsp;</p>\n\n\n\n<p>It was not easy to start from almost zero experience and knowledge. And not once did I feel like an impostor seeing other people excelling at their jobs. I used to be so hard on myself, beating myself up for every little mistake and feedback that was not meeting my expectations.&nbsp;</p>\n\n\n\n<p>In a way, that’s a good thing because this is how you evolve. But now, as I’m getting wiser, I understand that this was a sign of perfectionism, which I will never achieve and I don’t even want to anymore. Simply because it doesn’t exist.&nbsp;</p>\n\n\n\n<p>As I was saying, I started my journey at Vertigo Studio (the company behind <a href=\"https://themeisle.com/\">Themeisle</a> and <a href=\"https://www.codeinwp.com/\">CodeinWP</a>) at the age of 22. At that time, the company had around six or seven employees. This picture was taken a few years after when new people got on board:</p>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/10/image1.jpg\"><img width=\"1024\" height=\"685\" src=\"https://heropress.com/wp-content/uploads/2023/10/image1-1024x685.jpg\" alt=\"\" class=\"wp-image-5958\" /></a>\n\n\n\n<p>My role was that of a content writer. But I&#8217;m a person who loves to experiment and try new things, so I have juggled many roles over the years.&nbsp;</p>\n\n\n\n<p>I went through social media, recruiting interns, mentoring, copywriting, outreach, email marketing, interviews, and partnerships with WordPress companies. The variety of activities kept me engaged, curious, and motivated. It’s always exciting and challenging when you do something for the first time.&nbsp;</p>\n\n\n\n<p>But my favorite would still be writing. My first love.&nbsp;</p>\n\n\n\n<p>Even though I was mainly writing content for the Themeisle and CodeinWP blogs, I had the opportunity to collaborate with other WordPress blogs, too. So I contributed a few pieces of content to websites like <a href=\"https://www.smashingmagazine.com/author/adelina-tuca/\">Smashing Magazine</a>, <a href=\"https://torquemag.io/2018/04/is-that-plugin-reliable-how-to-test-wordpress-plugins/\">TorqueMag</a>, <a href=\"https://www.wpexplorer.com/wordpress-block-patterns/\">WPExplorer</a>, <a href=\"https://oceanwp.org/blog/are-ad-blockers-affecting-your-income-heres-how-to-prevent-them-from-harming-your-wordpress-business/\">OceanWP</a>, or <a href=\"https://www.wpzoom.com/blog/how-to-start-travel-blog-wordpress/\">WPZoom</a>.&nbsp;</p>\n\n\n\n<p>Even if I&#8217;m doing it in different forms, it all comes down to writing in the end. Interviews, for example, do count as writing plus a little bit of spice to the mix, which is connecting and meeting inspiring people in the community. It&#8217;s always interesting to meet people &#8211; even virtually &#8211; and hear their perspectives. You learn and become more open to different ideas and standpoints.&nbsp;</p>\n\n\n\n<p>It&#8217;s also interesting how a socially anxious person like me finds meaning in connecting with other people. It&#8217;s like a paradox, healing my social anxiety through socializing.</p>\n\n\n\n<p><a href=\"https://themeisle.com/blog/category/wordpress-community/interviews/\">Here</a>’s the full collection of interviews that I did on the Themeisle blog with the cool people we have in our WordPress ecosystem.&nbsp;</p>\n\n\n\n<p>At Themeisle, I grew not only as a professional but also as a person. As a bonus, I had the chance to meet the amazing people that are my colleagues. In our company, we always motivate each other to grow and improve. So I had the opportunity to build meaningful bonds and valuable friendships that I hope will last a long, long time.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-contributing-to-wordcamps\">Contributing to WordCamps</h2>\n\n\n\n<p>As a team, we always strove to engage more with the WordPress community. This means getting involved in the local and international community. I, personally, enjoy WordCamps more when I play a bigger part than just attending.&nbsp;</p>\n\n\n\n<p>Almost every year I either volunteered or enrolled in the media partners program which, yet again, meant meeting and interviewing people in person. The latter made me feel that journalist vibe again, bringing back old memories and emotions. It was about conversing with someone live, in real time, and getting into that nice sense of belonging. I wrote about this unique experience from WordCamp Europe <a href=\"https://www.codeinwp.com/blog/behind-the-scenes-of-wceu-media-partners/\">here</a>.&nbsp;</p>\n\n\n\n<p>I still remember my first WordCamp Europe in Vienna, which I will never forget. I was all over the place, trying to do many things at once. I remember that I barely slept back then, trying to be on my volunteer duty early in the morning and also not miss any parties that would take place at night. That one was an event when I kind of forgot about my social anxiety and simply went with the flow, socializing and making friends. At that time I was a <a href=\"https://twitter.com/WCEurope/status/967051319923150849\">volunteer in the Communication Team</a>.</p>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/10/image2.jpg\"><img width=\"1024\" height=\"673\" src=\"https://heropress.com/wp-content/uploads/2023/10/image2-1024x673.jpg\" alt=\"\" class=\"wp-image-5959\" /></a>\n\n\n\n<p>I mean, yes, signing up for extra work does put some pressure on your shoulders. But it’s worth it. You feel more fulfilled and useful to the world.&nbsp;</p>\n\n\n\n<p>My message is, if you’re up for something, try to step out of your comfort zone a little bit. Know your comfort zone and step out a little bit every time. You’ll enjoy the experience more and most of the time you’ll be surprised by the outcome. This is how you grow.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-s-next\">What’s next</h2>\n\n\n\n<p>Honestly, I don’t know what the future has in store for me. I might find myself doing a totally different thing years from now or, who knows, still being part of the WordPress community. But no matter what’s next for me, I wouldn’t change a thing about the past and these awesome experiences that I shared together with amazing, inspiring people.&nbsp;</p>\n\n\n\n<p>I think people are the fuel of everything that’s great in this world. And I want to believe that I’m one of these people who always strive to bring their best into the world and do good. At least, I’m trying.</p>\n\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id5952_c190c2-15 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top\">\n\n<div class=\"wp-block-kadence-column kadence-column5952_1ad0f6-31\"><div class=\"kt-inside-inner-col\">\n<h2 id=\"work-environment\" class=\"kt-adv-heading5952_886b34-83 wp-block-kadence-advancedheading\">Adelina&#8217;s Work Environment</h2>\n\n\n\n<p>We asked Adelina for a view into her development life and this is what she sent! </p>\n\n\n	<div class=\"hotspots-image-container\">\n		<img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2023/10/office-workspace-twin-peaks.jpg\" alt=\"Adelina Tuca\" class=\"hotspots-image skip-lazy\" />\n	</div>\n\n\n\n\n<p class=\"kt-adv-heading5952_976380-bf wp-block-kadence-advancedheading has-theme-palette-9-background-color has-background\">HeroPress would like to thank <a href=\"https://wpdrawattention.com/\">Draw Attention</a> for their donation of the plugin to make this interactive image!</p>\n</div></div>\n\n</div></div>\n\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h1 id=\"romanian\" class=\"kt-adv-heading5952_361701-44 wp-block-kadence-advancedheading\">Rotițele care fac lumea să se miște</h1>\n\n\n\n<p>E o frumoasă coincidență că, în timp ce scriu acest articol, sunt foarte aproape de a celebra nouă ani de când lucrez la Themeisle. Mai lipsesc câteva săptămâni până la aniversare. Cred că este mare lucru să ai o continuitate și consistență în ceva, oricare ar fi acel ceva.</p>\n\n\n\n<p>Această aniversare mai înseamnă și nouă ani de când fac parte din comunitatea WordPress. Dar să începem cu începutul.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-de-la-jurnalism-la-content-writing\">De la jurnalism la content writing</h2>\n\n\n\n<p>Când am început să lucrez la Themeisle, abia dacă știam ceva despre WordPress. Toate cunoștințele mele legate de asta se rezumau la un blog personal avut în facultate și câteva articole scrise pe niște site-uri de presă din România care foloseau platforma WordPress.</p>\n\n\n\n<p>Cam asta știam despre WordPress. Nu înseamnă neapărat că nu știam nimic, dar eram totuși departe de ce ar fi trebuit să știu pentru job. Totuși, eram o persoană dornică să învețe, așa că iată-mă tot aici nouă ani mai târziu. De fapt, aș putea spune că am nimerit în comunitatea WordPress mai mult dintr-un accident decât intenționat.&nbsp;</p>\n\n\n\n<p>Având studii în Jurnalism și Științele Comunicării, planul meu inițial era să ajung reporter sportiv sau jurnalist de presă sportivă. Ca să fac un joc de cuvinte care are sens mai mult în engleză, am sfârșit prin a face tot un fel de press, doar că WordPress. Sună mai bine în engleză partea asta. Haha!&nbsp;</p>\n\n\n\n<p>Dar înainte să pătrund în lumea WordPress, am făcut jurnalism pentru puțin timp. Eram o jurnalistă în devenire, dacă pot să spun așa. Cert e că începusem să construiesc în această direcție, punând cărămidă cu cărămidă.&nbsp;</p>\n\n\n\n<p>Una dintre aceste cărămizi a fost <a href=\"https://www.sportrevolution.ro/catalina-ponor-mi-am-dorit-sa-fiu-printre-putinele-gimnaste-din-tara-care-au-mers-la-doua-olimpiade/\">interviul pe care l-am făcut cu Cătălina Ponor</a> &#8211; triplă campioană olimpică la gimnastică artistică și una dintre cele mai bune gimnaste din istoria României. Ea a fost unul dintre idolii mei din sport când eram copil și chiar adolescentă.</p>\n\n\n\n<p>O altă cărămidă pe care o puneam la cariera în jurnalism a fost un articol de tip feature despre cum corupția din România ucide performanța sportivă încetul cu încetul. Inițial, articolul fusese publicat pe un website numit Semnal Plus, unde a primit multe reacții și apreciere din partea consumatorilor de sport din România. Acum mai apare online într-o populară publicație despre tenis &#8211; <a href=\"https://treizecizero.ro/burse/2015/12/08/sportul-comoara-nationala-care-ne-scapa-printre-degete/\">Treizecizero</a> &#8211; ca urmare a unui concurs la care am participat cu acest articol și pentru care am primit un internship la ei în redacție.</p>\n\n\n\n<p>Tot cam în aceeași perioadă am mai scris conținut similar despre sport pentru o publicație sportivă cunoscută în țară și despre muzica rock/metal pentru un site de știri de nișă. Îmi amintesc că am fost mândră de multe dintre ele. Toate acestea la un loc îmi dăduseră încredere că aveam ce îmi trebuie ca să continui pe drumul ăsta.</p>\n\n\n\n<p>Dar viitorul avea alte planuri pentru mine.&nbsp;</p>\n\n\n\n<p>La puțin timp după, începeam să realizez că a fi reporter sau jurnalist de presă venea la pachet cu mult prea mult stres, puțin timp liber și puțini bani în comparație cu efortul depus. Lăsând la o parte faptul că trebuia să îți calci pe demnitate puțin câte puțin, până când aveai să ți-o pierzi pe toată. Cel puțin, așa aș descrie eu jurnalismul din România din acest moment.&nbsp;</p>\n\n\n\n<p>Pentru mine, acești factori au jucat un rol foarte important când am început să mă gândesc că poate aș putea să mă reorientez către ceva mai apropiat de valorile mele morale. Valori pe care nu îmi permiteam să mi le încalc.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-munca-la-themeisle\">Munca la Themeisle</h2>\n\n\n\n<p>Nu de dragul poveștii spun că am dat ca printr-un noroc de anunțul celor de la Themeisle pe un grup de Facebook. Căutau un content writer care să scrie despre WordPress. Nici măcar nu știam ce însemna asta. Știam doar că mai folosisem WordPress în trecut, deci ce putea să fie așa de greu?&nbsp;</p>\n\n\n\n<p>Ei bine, s-a dovedit a fi diferit față de ce mă așteptam eu pentru că jobul nu presupunea a scrie pe platforma WordPress, ci a scrie <em>despre</em> platforma WordPress. Lucru care m-a bulversat puțin. Așa că am fost nevoită să învăț WordPress de la zero.&nbsp;</p>\n\n\n\n<p>Mai mult decât atât, jobul presupunea să scriu în limba engleză, ceea ce nu mai făcusem înainte. Tot ce scrisesem până atunci fusese în română. Asta iarăși a îngreunat puțin lucrurile pentru că trebuia să schimb complet limba și s-o fac într-un mod în care să sune bine, inteligibil.&nbsp;</p>\n\n\n\n<p>Nu a fost ușor să o iau aproape de la zero cu experiența și cunoștințele. Și nu de puține ori m-am simțit ca un impostor văzând cum alte persoane erau atât de bune în domeniul lor. Eram foarte dură cu mine, criticându-mă pentru orice greșeală sau feedback care nu îmi îndeplinea așteptările.</p>\n\n\n\n<p>Într-un fel, asta poate fi un lucru bun pentru că te ajută să evoluezi. Dar acum, cu cât devin mai înțeleaptă, înțeleg că era perfecționismul din mine care nu-mi dădea pace. Un perfecționism pe care nu-l voi atinge niciodată pentru că el nu există. Acum sunt mai tolerantă cu mine.&nbsp;</p>\n\n\n\n<p>Mi-am început călătoria la Vertigo Studio (compania din spatele <a href=\"https://themeisle.com/\">Themeisle</a> și <a href=\"https://www.codeinwp.com/\">CodeinWP</a>) la vârsta de 22 de ani. La acea vreme, compania avea în jur de șase sau șapte angajați. Poza următoare a fost făcută câțiva ani mai târziu, când deja firma angajase colegi noi:</p>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/10/image1.jpg\"><img width=\"1024\" height=\"685\" src=\"https://heropress.com/wp-content/uploads/2023/10/image1-1024x685.jpg\" alt=\"\" class=\"wp-image-5958\" /></a>\n\n\n\n<p>Rolul meu era acela de content writer. Dar, fiind o persoană căreia îi place să experimenteze și să încerce lucruri noi, am explorat mai multe roluri de-a lungul anilor.&nbsp;</p>\n\n\n\n<p>Am făcut social media, recrutare de interni, mentorat, copywriting, outreach, email marketing, interviuri și parteneriate cu companii din comunitatea WordPress. Această varietate de activități m-a ținut în priză, curioasă și motivată. E mereu mișto când faci ceva pentru prima oară.</p>\n\n\n\n<p>Dar principala și prima dragoste a rămas și va rămâne scrisul.&nbsp;</p>\n\n\n\n<p>Chiar dacă am scris exclusiv pe blogurile Themeisle și CodeinWP în toți acești ani, am avut ocazia de a mai colabora și cu alte bloguri din WordPress. Am contribuit cu câteva articole pe site-uri precum <a href=\"https://www.smashingmagazine.com/author/adelina-tuca/\">Smashing Magazine</a>, <a href=\"https://torquemag.io/2018/04/is-that-plugin-reliable-how-to-test-wordpress-plugins/\">TorqueMag</a>, <a href=\"https://www.wpexplorer.com/wordpress-block-patterns/\">WPExplorer</a>, <a href=\"https://oceanwp.org/blog/are-ad-blockers-affecting-your-income-heres-how-to-prevent-them-from-harming-your-wordpress-business/\">OceanWP</a>, sau <a href=\"https://www.wpzoom.com/blog/how-to-start-travel-blog-wordpress/\">WPZoom</a>.</p>\n\n\n\n<p>Chiar dacă ia diverse forme, la sfârșitul zilei totul se rezumă la scris. Interviurile, de exemplu, îmbină scrisul cu conectarea. E mereu interesant să întâlnești persoane noi &#8211; chiar și virtual &#8211; și să vezi ce perspective au ele. Înveți din chestia asta și devii mai deschis la noi puncte de vedere și idei.&nbsp;</p>\n\n\n\n<p>Totodată, mai e interesant cum o persoană anxioasă ca mine găsește confort în conexiunea cu alți oameni. E ca un paradox în care îți vindeci anxietatea socială prin socializare.</p>\n\n\n\n<p><a href=\"https://themeisle.com/blog/category/wordpress-community/interviews/\">Aici</a> găsiți întreaga colecție de interviuri pe care le-am făcut pe blogul Themeisle cu oameni mișto din comunitatea noastră de WordPress.&nbsp;</p>\n\n\n\n<p>La Themeisle, nu doar am crescut ca om și ca profesionist. Pe deasupra, am avut șansa să cunosc și să lucrez cu niște oameni minunați cum sunt colegii mei. În compania noastră, ne motivăm unii pe alții să ne îmbunătățim și să evoluăm. Am avut oportunitatea să construiesc legături semnificative și prietenii valoroase care sper că vor rămâne neschimbate.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-contribuția-la-wordcamps\">Contribuția la WordCamps</h2>\n\n\n\n<p>La nivel de echipă, ne-am dorit mereu să ne implicăm în comunitate și să contribuim cât putem de mult. Atât pe piața locală, cât și internațională. Personal, eu mă bucur mai mult de experiența unui WordCamp când fac ceva în plus decât să particip.&nbsp;</p>\n\n\n\n<p>Aproape în fiecare an în care am participat, am ales fie să fiu voluntar, fie să mă implic în echipa de Media Partners, să simt că fac ceva.&nbsp;</p>\n\n\n\n<p>Prin programul de Media Partners am intervievat oameni din WordPress, de data asta live, în persoană. Ceea ce m-a făcut să simt din nou vibe-ul jurnalistic, aducând cu sine un soi de nostalgie. Acolo aveai o conversație cu cineva fizic, în timp real, ceea ce îți aducea un sentiment de apartenență. Am scris despre experiența de a fi partener media la WordCamp Europe <a href=\"https://www.codeinwp.com/blog/behind-the-scenes-of-wceu-media-partners/\">aici</a>.</p>\n\n\n\n<p>Încă îmi amintesc primul meu WordCamp Europe din Viena, pe care nu o să-l uit niciodată. Eram peste tot atunci, încercând să fac cât mai multe lucruri deodată. Îmi amintesc că abia dacă dormeam, încercând să îmi fac și datoria de voluntar dis de dimineață, dar și să particip la petrecerile care aveau loc seara. Acela a fost un eveniment care m-a făcut să uit de anxietatea mea socială, în care pur și simplu am profitat la maximum de toate ocaziile de a socializa și cunoaște oameni mișto. Atunci am făcut parte din echipa de Comunicare, ca <a href=\"https://twitter.com/WCEurope/status/967051319923150849\">voluntar</a>.</p>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/10/image2.jpg\"><img width=\"1024\" height=\"673\" src=\"https://heropress.com/wp-content/uploads/2023/10/image2-1024x673.jpg\" alt=\"\" class=\"wp-image-5959\" /></a>\n\n\n\n<p>Este adevărat că, atunci când te înscrii la muncă extra, vine la pachet cu presiune și cu emoții mai grele. Dar merită. Te face să te simți mai împlinit, mai util celor din jur.&nbsp;</p>\n\n\n\n<p>Mesajul meu pentru voi este să ieșiți din zona de confort măcar puțin atunci când vă implicați în ceva. Cunoașteți-vă zona de confort și ieșiți din ea câte puțin de fiecare dată. Vă veți bucura mai mult de experiență și, de cele mai multe ori, veți fi surprinși de rezultate. Așa reușim să creștem.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-ce-urmeaza\">Ce urmează</h2>\n\n\n\n<p>Sincer, nu știu ce îmi pregătește viitorul, dacă o să mai fiu în comunitatea WordPress peste ani sau dacă o să fac cu totul altceva, în alt domeniu. Cine știe? Dar oricare ar fi viitorul, nu aș schimba nimic din ce s-a întâmplat până acum, din trecut. Nu aș schimba aceste experiențe pe care le-am împărțit cu oameni minunați.&nbsp;</p>\n\n\n\n<p>Cred că oamenii sunt catalizatorul a ceea ce este mai bun în lume. Și vreau să cred că și eu sunt unul dintre acești oameni care caută mereu să fie cea mai bună versiune a lor și să facă bine pe oriunde merg. Cel puțin, încerc.&nbsp;</p>\n<p>The post <a href=\"https://heropress.com/essays/the-fuel-of-everything-thats-great-in-the-world/\">The Fuel Of Everything That’s Great In The World &#8211; Rotițele care fac lumea să se miște</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Oct 2023 08:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Adelina Tuca\";s: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:36:\"WPTavern: WordPress 6.4 RC1 Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=150315\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://wptavern.com/wordpress-6-4-rc1-released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2332:\"<p>WordPress 6.4 is one step closer to prime time with <a href=\"https://wordpress.org/news/2023/10/wordpress-6-4-release-candidate-1/\">RC1 available today</a>. The <a href=\"https://make.wordpress.org/core/tag/dev-notes-6-4/\">dev notes</a> are rolling out with details on technical improvements in the upcoming release &#8211;<a href=\"https://make.wordpress.org/core/2023/10/15/introducing-block-hooks-for-dynamic-blocks/\">block hooks for dynamic blocks</a>, <a href=\"https://make.wordpress.org/core/2023/10/17/improvements-to-template-loading-in-wordpress-6-4/\">improvements to template loading</a>, <a href=\"https://make.wordpress.org/core/2023/10/16/changes-to-attachment-pages/\">changes to attachment pages</a>, and many more.</p>\n\n\n\n<p>RC1 is ready for another round of testing. There are <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F12%2F2023..10%2F17%2F2023&milestone=6.4&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">40 additional closed Trac tickets</a> since 6.4 Beta 4, <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.4\">dozens of GitHub commits</a>, and <a href=\"https://github.com/WordPress/twentytwentyfour/commits/\">commits for Twenty Twenty-Four</a>. </p>\n\n\n\n<p>Although the flagship font library feature had to be <a href=\"https://wptavern.com/wordpress-6-4-font-library-feature-punted-to-6-5-release\">punted to 6.5</a> due to gaps in the Font APIs that couldn&#8217;t be resolved in time, the upcoming release is still packed with new features and improvements. A few highlights include a new lightbox functionality, redesigned command palette, block hooks, expanded design tools, and a new default theme.</p>\n\n\n\n<p>The release candidate phase marks the hard string freeze where no new strings can be added so that the Polyglots team can ensure WordPress 6.4 gets translated. At this point, only regressions introduced during this development cycle and expansions to the test suite can be addressed in the 6.4 milestone.</p>\n\n\n\n<p>Theme and plugin developers are encouraged to test their extensions against the release candidate. Plugin authors are also advised to update the<em>“Tested up to”</em> version in their readme files to 6.4.</p>\n\n\n\n<p>A second RC is expected next week. WordPress 6.4 is on track to be released on November 7, 2023.</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, 18 Oct 2023 03:35:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:62:\"WPTavern: Preview WordPress Core Pull Requests with Playground\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=150295\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/preview-wordpress-core-pull-requests-with-playground\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3999:\"<p>Adam Zieliński, creator of WordPress Playground, <a href=\"https://twitter.com/adamzielin/status/1714311403849363944\">announced</a> today that the WordPress Core PR previewer is now live. Playground is an experimental project that uses WebAssembly (WASM) to <a href=\"https://wptavern.com/new-prototype-runs-wordpress-in-the-browser-with-no-php-server\">run WordPress in the browser</a>. It creates a WordPress instance with admin access without having to install PHP, MySQL, or Apache, making it nearly instantaneous to fire up a test site.</p>\n\n\n\n<p>Testing pull requests is one of the most exciting use cases for the Playground project. The newly launched WordPress Core PR previewer can be found at <a href=\"https://playground.wordpress.net/wordpress.html\">playground.wordpress.net/wordpress.html</a>. Users can enter the PR number or the URL.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2332\" height=\"1298\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/10/Screen-Shot-2023-10-17-at-4.10.46-PM.png\" alt=\"\" class=\"wp-image-150303\" />\n\n\n\n<p>The <a href=\"https://github.com/WordPress/wordpress-playground/pull/700\">PR for for previewing wordpress-develop repository pull pequests</a> adds support for a few query parameters that developers can use to customize how the preview loads:<a href=\"https://user-images.githubusercontent.com/205419/274972437-e30e9ac6-c99e-4e81-b68f-45e14116f6c9.png\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n\n\n\n<ul>\n<li><code>?pr=5481</code>&nbsp;– preview that PR</li>\n\n\n\n<li><code>?url=/wp-admin/post-new.php</code>&nbsp;– load that URL in WordPress</li>\n\n\n\n<li><code>?mode=seamless</code>&nbsp;– redirect to a full-screen Playground without the browser chrome and any other extra UI elements</li>\n</ul>\n\n\n\n<p>Zieliński identified a couple of known issues with this first implementation that developers should be aware of when working with the previewer: Existing PRs need a rebase to work but new PRs work just fine. Additionally, if you test it out, you will find that downloading WordPress may take a long time, as the bundle is ~45MB. Contributors are working on finding a way to optimize this so that it&#8217;s quicker and more efficient to preview PRs. Any problems or bugs can be reported to the <a href=\"https://github.com/WordPress/wordpress-playground/issues\">Playground repository&#8217;s issues</a>.</p>\n\n\n\n<p>As part of the <a href=\"https://github.com/WordPress/wordpress-playground/issues/696\">Playground roadmap</a>, Zieliński is working on making <a href=\"https://github.com/WordPress/wordpress-playground/issues/696\">a pull request previewer for all WordPress projects</a>, not just core, as he outlined in a planning issue:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Previewing WordPress Pull Requests requires either a local development setup or a staging setup.</p>\n\n\n\n<p>WordPress developers often use either a staging environment that can only run a single branch at a time, or no staging environment at all. This makes testing and team workflows difficult.</p>\n\n\n\n<p>Providing an easy way to preview pull requests using Playground would alleviate that burden, catalyze more reviews across the ecosystem, and make calls for testing easier.</p>\n</blockquote>\n\n\n\n<p>WordPress meta contributors recently implemented a “Live Preview” button for plugins in the official directory but ended up <a href=\"https://wptavern.com/wordpress-reverts-live-preview-button-on-plugins-after-developer-backlash\">reverting it after many plugins were broken</a> due to inadequate support in the Playground environment.  Zieliński and contributors are  still refining the <a href=\"https://github.com/WordPress/wordpress-playground/issues/662\">live preview experience for plugins</a> hosted on WordPress.org, and are <a href=\"https://github.com/WordPress/wordpress-playground/issues/664\">creating a Blueprints API</a> that will be easy for developers to use for customizing their Playground instances.</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, 17 Oct 2023 22:07:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:53:\"WordPress.org blog: WordPress 6.4 Release Candidate 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=16147\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/10/wordpress-6-4-release-candidate-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:11774:\"<p>The first release candidate (RC1) for WordPress 6.4 is now available!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended that you evaluate RC1 on a test server and site.</p>\n\n\n\n<p>Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains vital to ensure that everything in WordPress 6.4 is the best it can be.</p>\n\n\n\n<p>You can test WordPress 6.4 RC1 in three ways:</p>\n\n\n\n<ol>\n<li><strong>Plugin</strong>: Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Direct download</strong>: Download the <a href=\"https://wordpress.org/wordpress-6.4-RC1.zip\">RC1 version (zip)</a> and install it on a WordPress site.</li>\n\n\n\n<li><strong>Command line</strong>: Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br /><code>wp core update --version=6.4-RC1</code></li>\n</ol>\n\n\n\n<p>The current target for the WordPress 6.4 release is <strong>November 7, 2023</strong>. Get an overview of the <a href=\"https://make.wordpress.org/core/6-4/\">6.4 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-4/\">6.4-related posts</a>.</p>\n\n\n\n<p>The WordPress 6.4 release is brought to you by an <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\"><strong>underrepresented gender release squad</strong></a> to welcome the participation and partnership of those who identify as gender-underrepresented in the WordPress open source project.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 6.4 RC1?</h2>\n\n\n\n<p>This release contains 420 enhancements and 445 bug fixes for the editor, including more than <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=6.4&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">260 tickets for WordPress 6.4 core</a>. Browse the technical details for all issues recently addressed using these links:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.4\">GitHub commits for 6.4</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F12%2F2023..10%2F17%2F2023&milestone=6.4&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Closed Trac tickets since Beta 4</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/twentytwentyfour/commits/\">GitHub commits for Twenty Twenty-Four</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Highlights</h3>\n\n\n\n<p>WordPress 6.4 is the third and last major release of 2023. It introduces a multi-purpose default theme, new features, and a keen focus on details to enhance every aspect of your creation journey—from site editing and design to writing flows.</p>\n\n\n\n<ul>\n<li><strong>A new flexible default theme</strong> brings together the latest and greatest of WordPress. Discover its vast collection of templates and patterns to tweak and match your brand. Built for versatility, <a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\"><strong>Twenty Twenty-Four</strong></a> is an ideal fit for nearly any type of website.</li>\n\n\n\n<li>Enable <strong>lightbox functionality</strong> in images for immersive viewing experiences.</li>\n\n\n\n<li><strong>Organize your patterns with your own custom categories</strong>. Find them all more intuitively with advanced filtering in the Patterns section of the inserter.</li>\n\n\n\n<li><strong>Enjoy <a href=\"https://make.wordpress.org/core/2023/10/05/core-editor-improvement-ensuring-excellence-in-the-writing-experience/\">more writing improvements</a></strong>, including new keyboard shortcuts, smoother list merging, and enhanced control over your link settings. A revamped toolbar experience for Navigation, List, and Quote blocks ensures cohesive and organized access to the tooling options you work with.</li>\n\n\n\n<li><strong>A redesigned </strong><a href=\"https://make.wordpress.org/core/2023/09/12/core-editor-improvement-commanding-the-command-palette/\"><strong>Command Palette</strong></a><strong> with new commands</strong> helps you find what you need, perform tasks efficiently, and speed up your workflow.</li>\n\n\n\n<li><strong>Rename Group blocks</strong> to organize and distinguish areas of your content easily.</li>\n\n\n\n<li>See and locate your content’s media assets at a glance with new <strong>gallery and image previews in List View</strong>.</li>\n\n\n\n<li>Build beautiful yet functional layouts with an <strong>expanded set of design tools</strong>. Play with background images in Group blocks for unique creative designs, keep image dimensions consistent with placeholder aspect ratios, and effortlessly add buttons to your Navigation block without custom CSS—among other new capabilities.</li>\n\n\n\n<li><strong>Block Hooks</strong> enable developers to automatically insert blocks at their chosen content locations, enriching the extensibility of block themes through plugins. While developer-centric, this new feature improves your building experience with blocks and gives you complete control to customize Block Hooks to your needs.</li>\n\n\n\n<li><strong>Over 60 accessibility updates</strong>, including significant List View enhancements, aria-label support for the Navigation block, and upgrades to the admin user interface.</li>\n\n\n\n<li><strong>More than 100 performance updates</strong>, focusing on template loading performance for classic and block themes, usage of the script loading strategies “defer” and “async,” and optimization of autoloaded options.</li>\n</ul>\n\n\n\n<p>Are you looking for a deeper dive into details and technical notes? <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-4/\">These recent posts</a> cover a few of the latest updates:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/10/16/changes-to-attachment-pages/\">Changes to attachment pages for improved SEO</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/17/miscellaneous-editor-changes-in-wordpress-6-4/\">Miscellaneous Editor changes in WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/15/introducing-block-hooks-for-dynamic-blocks/\">Introducing Block Hooks for dynamic blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/17/script-loading-changes-in-wordpress-6-4/\">Script loading changes in WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/17/improvements-to-template-loading-in-wordpress-6-4/\">Improvements to template loading in WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/16/introducing-admin-notice-functions-in-wordpress-6-4/\">Introducing admin notice functions in WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/16/editor-components-updates-in-wordpress-6-4/\">Updates to user-interface components in WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/16/new-registerinsertermediacategory-api/\">New `registerInserterMediaCategory` API</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Ways to contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by a community of people collaborating on and contributing to its development. The resources below outline various ways you can help, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Testing for issues is critical to developing the software and ensuring its quality. It’s also a meaningful way for anyone to contribute—whether you have experience or not. <a href=\"https://make.wordpress.org/test/2023/09/26/help-test-wordpress-6-4/\">Check out this guide</a> for detailed instructions on testing key features in WordPress 6.4.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>During the release candidate phase of WordPress 6.4, the <a href=\"https://make.wordpress.org/security/2023/09/26/bug-bounty-for-wordpress-6-4-beta/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>Do you build themes and plugins? Your products play an integral role in extending the functionality and value of WordPress for users worldwide.</p>\n\n\n\n<p>You most likely have already been testing your latest themes and plugins with the WordPress 6.4 betas. With RC1, you will want to complete your testing and update the <em>&#8220;Tested up to&#8221;</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin&#8217;s readme file</a> to 6.4.</p>\n\n\n\n<p>Please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> if you find compatibility issues.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help translate WordPress into more than 100 languages</a>. This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 6.4 release cycle.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">A haiku for RC1</h2>\n\n\n\n<p>RC1 in hand<br />WordPress evolves and takes shape<br />Testing, a sneak peek, in place</p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post: <a href=\"https://profiles.wordpress.org/meher/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>meher</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>, <a href=\"https://profiles.wordpress.org/annezazu/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>annezazu</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>, <a href=\"https://profiles.wordpress.org/priethor/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>priethor</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:\"Tue, 17 Oct 2023 17:48:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Reyes Martínez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:79:\"Do The Woo Community: Security, From the Basics to Enterprise with Calvin Alkan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=77093\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://dothewoo.io/security-from-the-basics-to-enterprise-with-calvin-alkan/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:429:\"<p>Calvin Alkan joins our hosts to talk security. From malware scanners to firewalls to enterprise sites, with a layered security approach.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/security-from-the-basics-to-enterprise-with-calvin-alkan/\">Security, From the Basics to Enterprise with Calvin Alkan</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</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, 17 Oct 2023 09:13:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 07 Nov 2023 20:23:11 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Tue, 07 Nov 2023 20:15:52 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20211221000300\";}','no');
INSERT INTO `wp9q_options` VALUES (351,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1699431791','no'),(352,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1699388591','no'),(353,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1699431791','no'),(354,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/11/shirley/\'>WordPress 6.4 “Shirley”</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/11/wordpress-6-4-release-candidate-3/\'>WordPress 6.4 Release Candidate 3</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/11/shirley/\'>WordPress.org blog: WordPress 6.4 “Shirley”</a></li><li><a class=\'rsswidget\' href=\'https://dothewoo.io/how-to-tell-friends-and-family-what-you-do-in-wordpress/\'>Do The Woo Community: How to Tell Friends and Family What You Do in WordPress with Topher DeRosia</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/newspack-plugin-update-checker-lets-users-update-from-github\'>WPTavern: Newspack Plugin Update Checker Lets Users Update from GitHub</a></li></ul></div>','no'),(357,'_transient_woocommerce_reports-transient-version','1699388596','yes'),(358,'_transient_timeout_orders-all-statuses','1699993396','no'),(359,'_transient_orders-all-statuses','a:2:{s:7:\"version\";s:10:\"1699388596\";s:5:\"value\";a:0:{}}','no'),(360,'wp_attachment_pages_enabled','1','yes'),(366,'_transient_timeout_wc_report_orders_stats_f4348008f8c08fc124ccae4868b12a74','1699993420','no'),(367,'_transient_wc_report_orders_stats_f4348008f8c08fc124ccae4868b12a74','a:2:{s:7:\"version\";s:10:\"1699388596\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:2:{i:0;a:6:{s:8:\"interval\";s:7:\"2023-45\";s:10:\"date_start\";s:19:\"2023-11-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-11-06 00:00:00\";s:8:\"date_end\";s:19:\"2023-11-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-11-07 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2023-44\";s:10:\"date_start\";s:19:\"2023-11-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-11-01 00:00:00\";s:8:\"date_end\";s:19:\"2023-11-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-11-05 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:2;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(368,'_transient_timeout_wc_report_products_stats_89712e614539b2a0accba80e53516804','1699993420','no'),(369,'_transient_wc_report_products_stats_89712e614539b2a0accba80e53516804','a:2:{s:7:\"version\";s:10:\"1699388596\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:2:{i:0;a:6:{s:8:\"interval\";s:7:\"2023-45\";s:10:\"date_start\";s:19:\"2023-11-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-11-06 00:00:00\";s:8:\"date_end\";s:19:\"2023-11-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-11-07 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2023-44\";s:10:\"date_start\";s:19:\"2023-11-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-11-01 00:00:00\";s:8:\"date_end\";s:19:\"2023-11-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-11-05 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:2;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(370,'_transient_timeout_wc_report_variations_stats_dcfe4e300208cc1625b5ec441fdb15ec','1699993420','no'),(371,'_transient_wc_report_variations_stats_dcfe4e300208cc1625b5ec441fdb15ec','a:2:{s:7:\"version\";s:10:\"1699388596\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:2:{i:0;a:6:{s:8:\"interval\";s:7:\"2023-45\";s:10:\"date_start\";s:19:\"2023-11-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-11-06 00:00:00\";s:8:\"date_end\";s:19:\"2023-11-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-11-07 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2023-44\";s:10:\"date_start\";s:19:\"2023-11-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-11-01 00:00:00\";s:8:\"date_end\";s:19:\"2023-11-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-11-05 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:2;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(372,'_transient_timeout_wc_report_orders_stats_95dedbf2fbc9f3f26b836b896b159b4b','1699993420','no'),(373,'_transient_wc_report_orders_stats_95dedbf2fbc9f3f26b836b896b159b4b','a:2:{s:7:\"version\";s:10:\"1699388596\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":4:{s:11:\"net_revenue\";d:0;s:8:\"products\";i:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:7:{i:0;a:6:{s:8:\"interval\";s:10:\"2023-11-01\";s:10:\"date_start\";s:19:\"2023-11-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-11-01 00:00:00\";s:8:\"date_end\";s:19:\"2023-11-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-11-01 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2023-11-02\";s:10:\"date_start\";s:19:\"2023-11-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-11-02 00:00:00\";s:8:\"date_end\";s:19:\"2023-11-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-11-02 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2023-11-03\";s:10:\"date_start\";s:19:\"2023-11-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-11-03 00:00:00\";s:8:\"date_end\";s:19:\"2023-11-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-11-03 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2023-11-04\";s:10:\"date_start\";s:19:\"2023-11-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-11-04 00:00:00\";s:8:\"date_end\";s:19:\"2023-11-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-11-04 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2023-11-05\";s:10:\"date_start\";s:19:\"2023-11-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-11-05 00:00:00\";s:8:\"date_end\";s:19:\"2023-11-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-11-05 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2023-11-06\";s:10:\"date_start\";s:19:\"2023-11-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-11-06 00:00:00\";s:8:\"date_end\";s:19:\"2023-11-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-11-06 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2023-11-07\";s:10:\"date_start\";s:19:\"2023-11-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-11-07 00:00:00\";s:8:\"date_end\";s:19:\"2023-11-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-11-07 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:7;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(374,'_transient_timeout_wc_low_stock_count','1701980620','no'),(375,'_transient_wc_low_stock_count','0','no'),(376,'_transient_timeout_wc_outofstock_count','1701980620','no'),(377,'_transient_wc_outofstock_count','0','no'),(378,'can_compress_scripts','1','yes'),(379,'action_scheduler_migration_status','complete','yes'),(409,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(410,'_transient_timeout_wc_term_counts','1701980695','no'),(411,'_transient_wc_term_counts','a:0:{}','no'),(412,'has_migrated_cart','success','yes'),(413,'has_migrated_checkout','success','yes'),(414,'boldgrid_backup_tasks','a:1:{i:0;a:7:{s:2:\"id\";s:17:\"1699388702-4908d4\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1699388702;s:10:\"started_at\";i:1699388702;s:12:\"completed_at\";N;s:6:\"status\";s:11:\"in_progress\";s:4:\"data\";a:0:{}}}','yes'),(415,'boldgrid_backup_in_progress_data','a:7:{s:6:\"status\";s:22:\"Backing up database...\";s:12:\"log_filename\";s:22:\"archive-1699388702.log\";s:3:\"pid\";i:1536411;s:10:\"start_time\";i:1699388702;s:7:\"trigger\";s:30:\"admin (moh.shukry@hotmail.com)\";s:6:\"tables\";a:51:{i:0;s:28:\"wp9q_actionscheduler_actions\";i:1;s:27:\"wp9q_actionscheduler_claims\";i:2;s:27:\"wp9q_actionscheduler_groups\";i:3;s:25:\"wp9q_actionscheduler_logs\";i:4;s:16:\"wp9q_commentmeta\";i:5;s:13:\"wp9q_comments\";i:6;s:10:\"wp9q_links\";i:7;s:12:\"wp9q_options\";i:8;s:13:\"wp9q_postmeta\";i:9;s:10:\"wp9q_posts\";i:10;s:23:\"wp9q_term_relationships\";i:11;s:18:\"wp9q_term_taxonomy\";i:12;s:13:\"wp9q_termmeta\";i:13;s:10:\"wp9q_terms\";i:14;s:13:\"wp9q_usermeta\";i:15;s:10:\"wp9q_users\";i:16;s:26:\"wp9q_wc_admin_note_actions\";i:17;s:19:\"wp9q_wc_admin_notes\";i:18;s:23:\"wp9q_wc_category_lookup\";i:19;s:23:\"wp9q_wc_customer_lookup\";i:20;s:20:\"wp9q_wc_download_log\";i:21;s:23:\"wp9q_wc_order_addresses\";i:22;s:27:\"wp9q_wc_order_coupon_lookup\";i:23;s:30:\"wp9q_wc_order_operational_data\";i:24;s:28:\"wp9q_wc_order_product_lookup\";i:25;s:19:\"wp9q_wc_order_stats\";i:26;s:24:\"wp9q_wc_order_tax_lookup\";i:27;s:14:\"wp9q_wc_orders\";i:28;s:19:\"wp9q_wc_orders_meta\";i:29;s:33:\"wp9q_wc_product_attributes_lookup\";i:30;s:36:\"wp9q_wc_product_download_directories\";i:31;s:27:\"wp9q_wc_product_meta_lookup\";i:32;s:19:\"wp9q_wc_rate_limits\";i:33;s:22:\"wp9q_wc_reserved_stock\";i:34;s:24:\"wp9q_wc_tax_rate_classes\";i:35;s:16:\"wp9q_wc_webhooks\";i:36;s:25:\"wp9q_woocommerce_api_keys\";i:37;s:37:\"wp9q_woocommerce_attribute_taxonomies\";i:38;s:49:\"wp9q_woocommerce_downloadable_product_permissions\";i:39;s:20:\"wp9q_woocommerce_log\";i:40;s:31:\"wp9q_woocommerce_order_itemmeta\";i:41;s:28:\"wp9q_woocommerce_order_items\";i:42;s:34:\"wp9q_woocommerce_payment_tokenmeta\";i:43;s:31:\"wp9q_woocommerce_payment_tokens\";i:44;s:25:\"wp9q_woocommerce_sessions\";i:45;s:40:\"wp9q_woocommerce_shipping_zone_locations\";i:46;s:38:\"wp9q_woocommerce_shipping_zone_methods\";i:47;s:31:\"wp9q_woocommerce_shipping_zones\";i:48;s:35:\"wp9q_woocommerce_tax_rate_locations\";i:49;s:26:\"wp9q_woocommerce_tax_rates\";i:50;s:17:\"wp9q_wpforms_lite\";}s:4:\"step\";i:1;}','yes');
/*!40000 ALTER TABLE `wp9q_options` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp9q_options` with 387 row(s)
--

--
-- Table structure for table `wp9q_wc_reserved_stock`
--

DROP TABLE IF EXISTS `wp9q_wc_reserved_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_wc_reserved_stock`
--

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

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

--
-- Table structure for table `wp9q_woocommerce_sessions`
--

DROP TABLE IF EXISTS `wp9q_woocommerce_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) NOT NULL,
  `session_value` longtext 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_woocommerce_sessions`
--

LOCK TABLES `wp9q_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wp9q_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wp9q_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:743:\"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:22:\"moh.shukry@hotmail.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:\"\";}\";}',1699561385);
/*!40000 ALTER TABLE `wp9q_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;

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

--
-- Table structure for table `wp9q_usermeta`
--

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

--
-- Dumping data for table `wp9q_usermeta`
--

LOCK TABLES `wp9q_usermeta` WRITE;
/*!40000 ALTER TABLE `wp9q_usermeta` DISABLE KEYS */;
INSERT INTO `wp9q_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp9q_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp9q_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','0'),(16,1,'session_tokens','a:1:{s:64:\"2687b1cce18e9d644e86e707a2f8a2ee01071478f3f12e230c4cf77a0774954c\";a:4:{s:10:\"expiration\";i:1699561378;s:2:\"ip\";s:13:\"185.97.92.117\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36\";s:5:\"login\";i:1699388578;}}'),(17,1,'bglibDashboardOrder','1'),(18,1,'jetpack_tracks_anon_id','jetpack:CFgGVhMhR0lx4Q5VJpVZ7MUQ'),(19,1,'wp9q_dashboard_quick_press_last_post_id','10'),(20,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"185.97.92.0\";}'),(21,1,'boldgrid_dismissed_admin_notices','a:2:{s:2:\"id\";s:13:\"bg-key-prompt\";s:9:\"timestamp\";i:1699388597;}'),(22,1,'wp9q_user-settings','mfold=f'),(23,1,'wp9q_user-settings-time','1699388614');
/*!40000 ALTER TABLE `wp9q_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp9q_usermeta` with 23 row(s)
--

--
-- Table structure for table `wp9q_users`
--

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

--
-- Dumping data for table `wp9q_users`
--

LOCK TABLES `wp9q_users` WRITE;
/*!40000 ALTER TABLE `wp9q_users` DISABLE KEYS */;
INSERT INTO `wp9q_users` VALUES (1,'admin','$P$BRiYvPbEW1HffedQA2sYXxxVNYM0ff0','admin','moh.shukry@hotmail.com','https://electroshuk.com','2023-11-07 20:22:43','',0,'admin');
/*!40000 ALTER TABLE `wp9q_users` ENABLE KEYS */;
UNLOCK TABLES;

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

--
-- Table structure for table `wp9q_wc_order_addresses`
--

DROP TABLE IF EXISTS `wp9q_wc_order_addresses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_wc_order_addresses` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned NOT NULL,
  `address_type` varchar(20) DEFAULT NULL,
  `first_name` text DEFAULT NULL,
  `last_name` text DEFAULT NULL,
  `company` text DEFAULT NULL,
  `address_1` text DEFAULT NULL,
  `address_2` text DEFAULT NULL,
  `city` text DEFAULT NULL,
  `state` text DEFAULT NULL,
  `postcode` text DEFAULT NULL,
  `country` text DEFAULT NULL,
  `email` varchar(320) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `address_type_order_id` (`address_type`,`order_id`),
  KEY `order_id` (`order_id`),
  KEY `email` (`email`(191)),
  KEY `phone` (`phone`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_wc_order_addresses`
--

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

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

--
-- Table structure for table `wp9q_wc_order_coupon_lookup`
--

DROP TABLE IF EXISTS `wp9q_wc_order_coupon_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_wc_order_coupon_lookup`
--

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

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

--
-- Table structure for table `wp9q_wpforms_lite`
--

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

--
-- Dumping data for table `wp9q_wpforms_lite`
--

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

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

--
-- Table structure for table `wp9q_links`
--

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

--
-- Dumping data for table `wp9q_links`
--

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

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

--
-- Table structure for table `wp9q_term_taxonomy`
--

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

--
-- Dumping data for table `wp9q_term_taxonomy`
--

LOCK TABLES `wp9q_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp9q_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp9q_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),(16,16,'wp_theme','',0,2);
/*!40000 ALTER TABLE `wp9q_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp9q_term_taxonomy` with 16 row(s)
--

--
-- Table structure for table `wp9q_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wp9q_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_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=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_actionscheduler_claims`
--

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

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

--
-- Table structure for table `wp9q_actionscheduler_groups`
--

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

--
-- Dumping data for table `wp9q_actionscheduler_groups`
--

LOCK TABLES `wp9q_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wp9q_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wp9q_actionscheduler_groups` VALUES (1,'woocommerce-remote-inbox-engine'),(2,'action-scheduler-migration');
/*!40000 ALTER TABLE `wp9q_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

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

--
-- Table structure for table `wp9q_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wp9q_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_woocommerce_shipping_zone_methods`
--

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

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

--
-- Table structure for table `wp9q_wc_order_stats`
--

DROP TABLE IF EXISTS `wp9q_wc_order_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_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) NOT NULL,
  `customer_id` bigint(20) unsigned NOT NULL,
  `date_paid` datetime DEFAULT '0000-00-00 00:00:00',
  `date_completed` datetime DEFAULT '0000-00-00 00:00:00',
  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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_wc_order_stats`
--

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

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

--
-- Table structure for table `wp9q_commentmeta`
--

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

--
-- Dumping data for table `wp9q_commentmeta`
--

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

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

--
-- Table structure for table `wp9q_terms`
--

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

--
-- Dumping data for table `wp9q_terms`
--

LOCK TABLES `wp9q_terms` WRITE;
/*!40000 ALTER TABLE `wp9q_terms` DISABLE KEYS */;
INSERT INTO `wp9q_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),(16,'woocommerce/woocommerce','woocommerce-woocommerce',0);
/*!40000 ALTER TABLE `wp9q_terms` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp9q_terms` with 16 row(s)
--

--
-- Table structure for table `wp9q_posts`
--

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

--
-- Dumping data for table `wp9q_posts`
--

LOCK TABLES `wp9q_posts` WRITE;
/*!40000 ALTER TABLE `wp9q_posts` DISABLE KEYS */;
INSERT INTO `wp9q_posts` VALUES (1,1,'2023-11-07 20:22:43','2023-11-07 20:22:43','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2023-11-07 20:22:43','2023-11-07 20:22:43','',0,'https://electroshuk.com/?p=1',0,'post','',1),(2,1,'2023-11-07 20:22:43','2023-11-07 20:22:43','<!-- 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://electroshuk.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','','','2023-11-07 20:22:43','2023-11-07 20:22:43','',0,'https://electroshuk.com/?page_id=2',0,'page','',0),(3,1,'2023-11-07 20:22:43','2023-11-07 20:22:43','<!-- 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://electroshuk.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2023-11-07 20:22:43','2023-11-07 20:22:43','',0,'https://electroshuk.com/?page_id=3',0,'page','',0),(4,1,'2023-11-07 20:23:00','2023-11-07 20:23:00','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2023-11-07 20:23:00','2023-11-07 20:23:00','',0,'https://electroshuk.com/wp-content/uploads/2023/11/woocommerce-placeholder.png',0,'attachment','image/png',0),(5,1,'2023-11-07 20:23:01','2023-11-07 20:23:01','','Shop','','publish','closed','closed','','shop','','','2023-11-07 20:23:01','2023-11-07 20:23:01','',0,'https://electroshuk.com/shop/',0,'page','',0),(6,1,'2023-11-07 20:23:01','2023-11-07 20:23:01','<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->','Cart','','publish','closed','closed','','cart','','','2023-11-07 20:23:01','2023-11-07 20:23:01','',0,'https://electroshuk.com/cart/',0,'page','',0),(7,1,'2023-11-07 20:23:01','2023-11-07 20:23:01','<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->','Checkout','','publish','closed','closed','','checkout','','','2023-11-07 20:23:01','2023-11-07 20:23:01','',0,'https://electroshuk.com/checkout/',0,'page','',0),(8,1,'2023-11-07 20:23:01','2023-11-07 20:23:01','<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->','My account','','publish','closed','closed','','my-account','','','2023-11-07 20:23:01','2023-11-07 20:23:01','',0,'https://electroshuk.com/my-account/',0,'page','',0),(9,1,'2023-11-07 20:23:02','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','','','2023-11-07 20:23:02','0000-00-00 00:00:00','',0,'https://electroshuk.com/?page_id=9',0,'page','',0),(10,1,'2023-11-07 20:23:04','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-11-07 20:23:04','0000-00-00 00:00:00','',0,'https://electroshuk.com/?p=10',0,'post','',0),(11,1,'2023-11-07 20:24:55','2023-11-07 20:24:55','<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\">\n	<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"var:preset|spacing|40\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n	<div class=\"wp-block-group alignwide\" style=\"padding-bottom:var(--wp--preset--spacing--40)\">\n		<!-- wp:site-title {\"level\":0} /-->\n		<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /-->\n	</div>\n	<!-- /wp:group -->\n</div>\n<!-- /wp:group -->\n\n			<!-- wp:group {\"layout\":{\"inherit\":true}} -->\n			<div class=\"wp-block-group\">\n				<!-- wp:heading {\"level\":1} -->\n				<h1 class=\"wp-block-heading\">Cart</h1>\n				<!-- /wp:heading -->\n				<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->\n			</div>\n			<!-- /wp:group -->\n		<!-- wp:pattern {\"slug\":\"twentytwentythree/footer-default\"} /-->\n','','','publish','closed','closed','','cart','','','2023-11-07 20:24:55','2023-11-07 20:24:55','',0,'https://electroshuk.com/2023/11/07/cart/',0,'wp_template','',0),(12,1,'2023-11-07 20:24:55','2023-11-07 20:24:55','<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\">\n	<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"var:preset|spacing|40\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n	<div class=\"wp-block-group alignwide\" style=\"padding-bottom:var(--wp--preset--spacing--40)\">\n		<!-- wp:site-title {\"level\":0} /-->\n		<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /-->\n	</div>\n	<!-- /wp:group -->\n</div>\n<!-- /wp:group -->\n\n			<!-- wp:group {\"layout\":{\"inherit\":true}} -->\n			<div class=\"wp-block-group\">\n				<!-- wp:heading {\"level\":1} -->\n				<h1 class=\"wp-block-heading\">Checkout</h1>\n				<!-- /wp:heading -->\n				<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->\n			</div>\n			<!-- /wp:group -->\n		<!-- wp:pattern {\"slug\":\"twentytwentythree/footer-default\"} /-->\n','','','publish','closed','closed','','checkout','','','2023-11-07 20:24:55','2023-11-07 20:24:55','',0,'https://electroshuk.com/2023/11/07/checkout/',0,'wp_template','',0);
/*!40000 ALTER TABLE `wp9q_posts` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp9q_posts` with 12 row(s)
--

--
-- Table structure for table `wp9q_wc_tax_rate_classes`
--

DROP TABLE IF EXISTS `wp9q_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_wc_tax_rate_classes` (
  `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_wc_tax_rate_classes`
--

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

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

--
-- Table structure for table `wp9q_term_relationships`
--

DROP TABLE IF EXISTS `wp9q_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_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 `wp9q_term_relationships`
--

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

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

--
-- Table structure for table `wp9q_termmeta`
--

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

--
-- Dumping data for table `wp9q_termmeta`
--

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

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

--
-- Table structure for table `wp9q_wc_customer_lookup`
--

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

--
-- Dumping data for table `wp9q_wc_customer_lookup`
--

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

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

--
-- Table structure for table `wp9q_comments`
--

DROP TABLE IF EXISTS `wp9q_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10)),
  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 `wp9q_comments`
--

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

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

--
-- Table structure for table `wp9q_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wp9q_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) NOT NULL,
  `attribute_label` varchar(200) DEFAULT NULL,
  `attribute_type` varchar(20) NOT NULL,
  `attribute_orderby` varchar(20) 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_woocommerce_attribute_taxonomies`
--

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

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

--
-- Table structure for table `wp9q_wc_product_download_directories`
--

DROP TABLE IF EXISTS `wp9q_wc_product_download_directories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_wc_product_download_directories` (
  `url_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(256) NOT NULL,
  `enabled` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`url_id`),
  KEY `url` (`url`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_wc_product_download_directories`
--

LOCK TABLES `wp9q_wc_product_download_directories` WRITE;
/*!40000 ALTER TABLE `wp9q_wc_product_download_directories` DISABLE KEYS */;
INSERT INTO `wp9q_wc_product_download_directories` VALUES (1,'file:///home/ed06955/electroshuk.com/wp-content/uploads/woocommerce_uploads/',1),(2,'https://electroshuk.com/wp-content/uploads/woocommerce_uploads/',1);
/*!40000 ALTER TABLE `wp9q_wc_product_download_directories` ENABLE KEYS */;
UNLOCK TABLES;

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

--
-- Table structure for table `wp9q_wc_webhooks`
--

DROP TABLE IF EXISTS `wp9q_wc_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) NOT NULL,
  `name` text NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text NOT NULL,
  `secret` text NOT NULL,
  `topic` varchar(200) 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_wc_webhooks`
--

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

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

--
-- Table structure for table `wp9q_wc_order_tax_lookup`
--

DROP TABLE IF EXISTS `wp9q_wc_order_tax_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_wc_order_tax_lookup`
--

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

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

--
-- Table structure for table `wp9q_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wp9q_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) NOT NULL,
  `status` varchar(20) 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) DEFAULT NULL,
  `schedule` longtext 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) DEFAULT NULL,
  `priority` tinyint(3) unsigned NOT NULL DEFAULT 10,
  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_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_actionscheduler_actions`
--

LOCK TABLES `wp9q_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wp9q_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wp9q_actionscheduler_actions` VALUES (5,'woocommerce_run_on_woocommerce_admin_updated','complete','2023-11-07 20:23:02','2023-11-07 20:23:02','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1699388582;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1699388582;}',1,1,'2023-11-07 20:23:05','2023-11-07 20:23:05',0,NULL,10),(6,'action_scheduler/migration_hook','complete','2023-11-07 20:24:02','2023-11-07 20:24:02','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1699388642;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1699388642;}',2,1,'2023-11-07 20:24:09','2023-11-07 20:24:09',0,NULL,10),(7,'woocommerce_cleanup_draft_orders','complete','2023-11-07 20:23:03','2023-11-07 20:23:03','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1699388583;s:18:\"\0*\0first_timestamp\";i:1699388583;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1699388583;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',0,1,'2023-11-07 20:23:05','2023-11-07 20:23:05',0,NULL,10),(8,'woocommerce_cleanup_draft_orders','pending','2023-11-08 20:23:05','2023-11-08 20:23:05','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1699474985;s:18:\"\0*\0first_timestamp\";i:1699388583;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1699474985;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',0,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),(9,'woocommerce_run_on_woocommerce_admin_updated','pending','2023-11-07 20:24:53','2023-11-07 20:24:53','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1699388693;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1699388693;}',1,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10);
/*!40000 ALTER TABLE `wp9q_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp9q_actionscheduler_actions` with 5 row(s)
--

--
-- Table structure for table `wp9q_wc_category_lookup`
--

DROP TABLE IF EXISTS `wp9q_wc_category_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_wc_category_lookup`
--

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

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

--
-- Table structure for table `wp9q_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wp9q_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text NOT NULL,
  `order_item_type` varchar(200) 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_woocommerce_order_items`
--

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

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

--
-- Table structure for table `wp9q_wc_admin_note_actions`
--

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

--
-- Dumping data for table `wp9q_wc_admin_note_actions`
--

LOCK TABLES `wp9q_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wp9q_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wp9q_wc_admin_note_actions` VALUES (1,1,'notify-refund-returns-page','Edit page','https://electroshuk.com/wp-admin/post.php?post=9&action=edit','actioned','',NULL,NULL),(2,2,'connect','Connect','?page=wc-addons&section=helper','unactioned','',NULL,NULL),(4,4,'update-db_run','Update WooCommerce Database','https://electroshuk.com/wp-admin/update-core.php?do_update_woocommerce=true','unactioned','wc_db_update','wc_db_update','wc_db_update_nonce'),(5,4,'update-db_learn-more','Learn more about updates','https://docs.woocommerce.com/document/how-to-update-woocommerce/','unactioned','',NULL,NULL);
/*!40000 ALTER TABLE `wp9q_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

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

--
-- Table structure for table `wp9q_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wp9q_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp9q_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) DEFAULT NULL,
  `permissions` varchar(10) NOT NULL,
  `consumer_key` char(64) NOT NULL,
  `consumer_secret` char(43) NOT NULL,
  `nonces` longtext DEFAULT NULL,
  `truncated_key` char(7) 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9q_woocommerce_api_keys`
--

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

-- Dumped table `wp9q_woocommerce_api_keys` with 0 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: Tue, 07 Nov 2023 20:25:02 +0000
