0byt3m1n1
Path:
/
data
/
11
/
1
/
88
/
100
/
1088426
/
meta
/
1133911
/
mysql.backup
/
[
Home
]
File: 1_0151108_9.mysqlcluster9.bak.sql
-- MySQL dump 10.13 Distrib 5.6.24, for Linux (x86_64) -- -- Host: mysqlcluster9 Database: 1_0151108_9 -- ------------------------------------------------------ -- Server version 5.6.51-91.0-56-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2021-03-10 20:15:34','2021-03-10 20:15:34','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','comment',0,0); /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) ) ENGINE=InnoDB AUTO_INCREMENT=208 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'siteurl','http://thelannies.us/','yes'),(2,'home','http://thelannies.us/','yes'),(3,'blogname','The Lannies','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','dcl@thelannies.us','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','H:i','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:93:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s: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:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:0:{}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','-6','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','astra','yes'),(41,'stylesheet','astra','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','53496','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','posts','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','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','1693061281','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'initial_db_version','49752','yes'),(99,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(100,'fresh_site','1','yes'),(101,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(106,'sidebars_widgets','a:10:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"header-widget\";a:0:{}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(107,'cron','a:8:{i:1677514535;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:1677528935;a:5:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1677552495;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1677595695;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1677595696;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:1677597887;a:1:{s:29:\"astra_get_knowledge_base_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1677788135;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(119,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1677511478;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(120,'https_detection_errors','a:1:{s:20:\"https_request_failed\";a:1:{i:0;s:21:\"HTTPS request failed.\";}}','yes'),(121,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1677513199;s:15:\"version_checked\";s:5:\"6.1.1\";s:12:\"translations\";a:0:{}}','no'),(129,'auto_updater.lock','1677508167','no'),(132,'core_updater.lock','1677508168','no'),(133,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(136,'_site_transient_timeout_php_check_be350024f30b4b5fb17e000b68f2aafc','1678113927','no'),(137,'_site_transient_php_check_be350024f30b4b5fb17e000b68f2aafc','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(138,'_transient_health-check-site-status-result','{\"good\":12,\"recommended\":8,\"critical\":1}','yes'),(139,'wp_force_deactivated_plugins','a:0:{}','yes'),(140,'user_count','1','no'),(141,'db_upgraded','','yes'),(142,'_site_transient_timeout_browser_e78e6c55aa47d2bc9e680afb68bbe84f','1678114096','no'),(143,'_site_transient_browser_e78e6c55aa47d2bc9e680afb68bbe84f','a:10:{s:4:\"name\";s:7:\"unknown\";s:7:\"version\";s:0:\"\";s:8:\"platform\";s:0:\"\";s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(146,'_site_transient_timeout_community-events-9792bfbe6fa156e7a7b229452ef7e77f','1677552502','no'),(147,'_site_transient_community-events-9792bfbe6fa156e7a7b229452ef7e77f','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"92.119.16.0\";}s:6:\"events\";a:5:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:19:\"WordPress Help Desk\";s:3:\"url\";s:57:\"https://www.meetup.com/wordpress-atlanta/events/291471473\";s:6:\"meetup\";s:29:\"Atlanta WordPress Users Group\";s:10:\"meetup_url\";s:41:\"https://www.meetup.com/wordpress-atlanta/\";s:4:\"date\";s:19:\"2023-02-27 18:00:00\";s:8:\"end_date\";s:19:\"2023-02-27 19:00:00\";s:20:\"start_unix_timestamp\";i:1677538800;s:18:\"end_unix_timestamp\";i:1677542400;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.77;s:9:\"longitude\";d:-84.33;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:19:\"WordPress Help Desk\";s:3:\"url\";s:58:\"https://www.meetup.com/wordpress-gwinnett/events/291471421\";s:6:\"meetup\";s:18:\"WordPress Gwinnett\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/WordPress-Gwinnett/\";s:4:\"date\";s:19:\"2023-02-27 18:00:00\";s:8:\"end_date\";s:19:\"2023-02-27 19:00:00\";s:20:\"start_unix_timestamp\";i:1677538800;s:18:\"end_unix_timestamp\";i:1677542400;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.94;s:9:\"longitude\";d:-83.96;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:36:\"Gainesville WordPress Monthly Meetup\";s:3:\"url\";s:68:\"https://www.meetup.com/gainesville-wordpress-meetup/events/290351201\";s:6:\"meetup\";s:28:\"Gainesville WordPress Meetup\";s:10:\"meetup_url\";s:52:\"https://www.meetup.com/Gainesville-WordPress-Meetup/\";s:4:\"date\";s:19:\"2023-03-09 12:00:00\";s:8:\"end_date\";s:19:\"2023-03-09 13:00:00\";s:20:\"start_unix_timestamp\";i:1678381200;s:18:\"end_unix_timestamp\";i:1678384800;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:34.29;s:9:\"longitude\";d:-83.82;}}i:3;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:51:\"Building Your Online Presence: From Start to Finish\";s:3:\"url\";s:49:\"https://www.meetup.com/wpatlanta/events/291317802\";s:6:\"meetup\";s:42:\"WordPress Cobb (Metro Atlanta) Users Group\";s:10:\"meetup_url\";s:33:\"https://www.meetup.com/wpatlanta/\";s:4:\"date\";s:19:\"2023-03-16 11:30:00\";s:8:\"end_date\";s:19:\"2023-03-16 13:00:00\";s:20:\"start_unix_timestamp\";i:1678980600;s:18:\"end_unix_timestamp\";i:1678986000;s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Marietta, GA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:33.952602;s:9:\"longitude\";d:-84.549934;}}i:4;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:32:\"Conyers WordPress Monthly Meetup\";s:3:\"url\";s:64:\"https://www.meetup.com/conyers-wordpress-meetup/events/290351061\";s:6:\"meetup\";s:24:\"Conyers WordPress Meetup\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/Conyers-WordPress-Meetup/\";s:4:\"date\";s:19:\"2023-03-23 19:00:00\";s:8:\"end_date\";s:19:\"2023-03-23 21:00:00\";s:20:\"start_unix_timestamp\";i:1679612400;s:18:\"end_unix_timestamp\";i:1679619600;s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Conyers, GA, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.666565;s:9:\"longitude\";d:-84.017845;}}}}','no'),(148,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1677552505','no'),(149,'_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:\"Mon, 20 Feb 2023 17:23:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.2-beta3-55425\";s:7:\"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: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:80:\"WP Briefing: Episode 49: Everything You Need to Know About the Community Summit!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wordpress.org/news/2023/02/episode-49-everything-you-need-to-know-about-the-community-summit/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Feb 2023 17:01: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: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=14404\";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:77:\"Tune in to learn everything you need to know about the 2023 Community Summit!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2023/02/WP-Briefing-049.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:15600:\"\n<p>Episode forty-nine of the WordPress Briefing explores the What, Why, and Who behind the upcoming Community Summit in National Harbor, DC, USA, August 22-23, 2023. Join Executive Director Josepha Haden Chomphosy to learn the importance of the gathering to the WordPress project. </p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production: <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/updates/2019/06/17/observations-on-wordpress-contributor-team-structure/\" target=\"_blank\">Observations on WordPress Contributor Team Structure</a></p>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/community/2023/02/08/apply-to-attend-the-2023-community-summit/\" target=\"_blank\">Apply to attend the 2023 Community Summit</a></p>\n\n\n\n<p><a target=\"_blank\" href=\"https://communitysummit.wordcamp.org/2023/topic-submissions-for-2023-community-summit/\" rel=\"noreferrer noopener\">Topic Submissions for the 2023 Community Summit</a></p>\n\n\n\n<p><a target=\"_blank\" href=\"https://en.wikipedia.org/wiki/Tuckman%27s_stages_of_group_development\" rel=\"noreferrer noopener\">Tuckman’s Theory: Stages of Group Development</a></p>\n\n\n\n<p><a target=\"_blank\" href=\"https://en.wikipedia.org/wiki/Chatham_House_Rule\" rel=\"noreferrer noopener\">Chatham House Rules</a></p>\n\n\n\n<p><a target=\"_blank\" href=\"https://make.wordpress.org/project/2023/02/06/proposal-creating-a-wordpress-contributor-mentorship-program/\" rel=\"noreferrer noopener\">Proposal for a project-wide mentorship program</a></p>\n\n\n\n<p><a target=\"_blank\" href=\"http://www.openverse.org\" rel=\"noreferrer noopener\">Openverse.org</a></p>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://wordpress.org/news/2023/02/wordpress-6-2-beta-1/\" target=\"_blank\">6.2 Beta 1 is open for testing</a><br><br></p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14404\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00] </strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks.</p>\n\n\n\n<p>I’m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:40] </strong></p>\n\n\n\n<p>A couple of episodes ago, I mentioned the Community Summit in the small list of big things. That’s coming up on August 22nd and 23rd, right before WordCamp US. And for some of you, that made complete sense, and the only thought in your mind was, wow, our last one was in 2017, how could so many years have passed since then? And since so many years have passed, today we’re gonna talk a bit about the Community Summit, what it is, where it came from, and why it’s so important for the WordPress project.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:09] </strong></p>\n\n\n\n<p>First things first, let’s talk about what exactly the Community Summit is. The Community Summit is a small event where folks from around the WordPress project and community come together to work through some of the most difficult topics the project currently faces, many of which are easier or at least less fraught when we can be face-to-face.</p>\n\n\n\n<p>The Community Summit is usually done in an “<a href=\"https://en.wikipedia.org/wiki/Unconference\">unconference</a>” style, and when we were smaller, we left topic gathering and voting to the day of. That’s evolved a bit as our group of fearless contributors has grown over the years, and this year, we have been asking for topics ahead of time so that we can make sure we have the right folks in the room and are making the best use of everyone’s limited time. </p>\n\n\n\n<p>It’s easy to take a look at this event and think it’s like some fun exclusive thing with a who’s who of WordPress. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:00] </strong></p>\n\n\n\n<p>But I assure you it’s a working event. Decisions are not finalized during the event, but since we try very hard to account for many, many viewpoints, it ends up being two days of hard discussions, contentious viewpoints, and problem definition at a level of complexity you don’t really see every day.</p>\n\n\n\n<p>Hearing how hard this event is, you may be wondering why we put in that effort. There are a lot of reasons, but there are three that come to my mind immediately. So for starters, working across cultures is hard. Apart from the cultural differences, we tend to be aware of things like where we’re located or our lived experiences, things like that– working remotely or distributedly is a whole different set of skills than working in person. This helps remind everyone that we’re humans, that there are humans behind those comments and behind those messages in Slack. The second thing is that I’m a big supporter of Tuckman’s theory of group development.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:00] </strong></p>\n\n\n\n<p>If you don’t know what that is, you can look for it, we’ll put a link in the show notes, but it’s that forming, storming, norming, performing kind of concept of how groups come together. Because there are so many of us and our community has such a large footprint, there are little storms a-brewin all the time.</p>\n\n\n\n<p>Some get really big, some stay small. But at some point, most of them have to be addressed. And this is a space that is specifically designed to help us do that. Which brings us to the third reason that we do it. This event uses something called the Chatham House Rule, which creates a kind of temporal psychological safety.</p>\n\n\n\n<p>Right. Psychological safety, if you’re a leader, you know that that’s something that is built over time and requires a lot of trust and a lot of conversations with people that you’re working with, and we can’t quite do that. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:00] </strong></p>\n\n\n\n<p>And so Chatham House Rule builds an environment that helps create that suddenly in the moment and requires, you know, some, some faith in one another.</p>\n\n\n\n<p>But basically, no one can be quoted about what they said in those conversations. No one’s examples can be attributed to them. But the conversations can be summarized and published, which we do on the Community Summit website. And then, we publish those for our collective knowledge over time. This lets folks who are attending advocate for themselves and others fully without worrying over whether they’re gonna be taken out of context later.</p>\n\n\n\n<p>And finally, one of the biggest questions we get ahead of any Community Summit is why it is by invitation only. The most commonly cited reasons for keeping this small and invite only have everything to do with logistics and leadership. You want it to be large enough to have good representation but small enough to have high-quality interactions. It’s just a really narrow Goldilocks moment, if you will. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:00]</strong></p>\n\n\n\n<p>But that reason doesn’t necessarily address the need for invitations rather than letting it be first come, first served. The reason for that is more of a philosophical one and requires you to go on a mini historical journey with me.</p>\n\n\n\n<p>This also has changed a bit over the years. The first ever Community Summit, way back in 2012, was before my time, but if I recall my history correctly, it was truly by invitation only. The summit after that included a closed nomination process. The next included a team nomination process, and then the last two, 2017 and 2023, have included open nominations.</p>\n\n\n\n<p>Now, even in the nomination era of Community Summit organizing, there is still a selection process. The organizers review the list of suggested attendees and check for the same types of things we expect major WordCamp organizers to look for in their speaker selection. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00]</strong></p>\n\n\n\n<p>Things like which teams they contribute to, what communities they advocate for, and how long they’ve been a member of the community.</p>\n\n\n\n<p>And then they adjust for balance. In addition to those things, there are also four types of voices that we always want represented at our Community Summit. So first is leading voices, people who are already in the community and kind of are helping us to make decisions. I am considered one of those leading voices; I have put in my application to be included in the Community Summit. Really hope we select me. </p>\n\n\n\n<p>The second one is future leading voices. Specifically, those are people who are active in the community already and are showing a lot of promise, either because they really understand the values that the WordPress open source project is putting forward or understand the basic processes of communicating and guiding people in such a complex ecosystem as the WordPress project represents. Or because they have said quite plainly they are interested in helping us to make sure that the WordPress project is able to move and continue to create and continue to support democratizing publishing. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:00]</strong></p>\n\n\n\n<p>So it’s a little bit potentially folks who are self-selecting for that. People who already are showing that they are doing that either in WordPress or in their local communities. That’s one of the types of voices we want to include. A third one that we want to include all the time is voices we need, so voices that we need to hear. People that specifically we are building WordPress for, people that have indicated to us that the CMS is not necessarily perfect for some of the use cases that they run into regularly.</p>\n\n\n\n<p>So the people and users and community organizers that can and are able to advocate for the types of user interactions, the types of community interactions that we absolutely want to be able to see. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:00] </strong></p>\n\n\n\n<p>And so that’s a third group of voices that we want to make sure we have represented.</p>\n\n\n\n<p>And then the fourth and final group that we always want to have represented is a group that I call voices we miss. And so those are the people that we want to be able to hear more from in our project that we don’t necessarily either have a good group of representative voices for, so it’s hard to hear them, or that we know are probably users of the CMS or they are attending events, they are somehow involved in the WordPress project.</p>\n\n\n\n<p>But we don’t necessarily have any way to have accounted for them while we were building solutions way back in 2012 or 2006 when things were being built for us. And so those are the four groups of people, the four types of voices that I absolutely want to have represented at our Community Summit.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:09:00]</strong></p>\n\n\n\n<p>And I ask organizers to go through this incredibly complicated selection process because we want not simply a microcosm of the WordPress community as we see it today and hope to see it in the future but also an equitably voiced forum during that critical problem definition phase. </p>\n\n\n\n<p>So TLDL. For, listen?! T L D Real Listen. Although if you didn’t make it through that, you definitely are not getting to this point. So a TLDR for folks who skimmed the transcript and got here, I guess we keep this invitation structure because we want to account for voices we don’t hear every day in the WordPress project. Not because we don’t value them but because we already hear them.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:09:44] </strong></p>\n\n\n\n<p>And now that brings us to our small list of big things. This week it’s actually kind of a big list of big things, but you know, there it is. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:00] </strong></p>\n\n\n\n<p>First things first. The applications for the Community Summit are now open. Those are the applications to attend. It’s pretty short. I filled mine out this morning and it’s three questions about who you are and your username on wordpress.org, and then three questions about the topics you are most interested in and the experience that you have in those conversations so far.</p>\n\n\n\n<p>Yeah. It took me, like, I think, 90 seconds. Like, a full minute and a half. So head on over there. We have a link in the show notes, but also, you’ll be able to find it in newsletters across the entire WordPress media ecosystem. I am pretty sure about that. </p>\n\n\n\n<p>The second thing is that there is a proposal out for a project-wide mentorship program.</p>\n\n\n\n<p>This is a huge potential win for us. It is aiming to fix some of our broken ladders. If you’re not familiar with my Broken Ladder Theory of the WordPress project, I’ll try to remember to find a link to that post and put that in the show notes. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:00] </strong></p>\n\n\n\n<p>Number three is that Openverse moved. I shared this last week that happened last week. They didn’t move very far, though. They have a new URL, you can find them at openverse.org. It’s the same team. It’s the same product. It’s the same group of excellent openly-licensed images and media that you have come to expect. It just has its own standalone URL now. Huge kudos to the contributors who got that done. </p>\n\n\n\n<p>Another thing that happened last week is that WordPress 6.2 has moved into its beta phase, and so now is the time to get out there and test.</p>\n\n\n\n<p>There also was an excellent, excellent write-up about how to test any given release. And I think it also includes how to file a good bug. And so we’ll send all of those things into the show notes. They’ll be easy to find. Get out there and do your testing. </p>\n\n\n\n<p>And number five, longest, small list of big things in recent history. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:12:00] </strong></p>\n\n\n\n<p>I got some interest on [a] women, and non-binary led release for 2023, and so since there was some interest shown for that, it is hereby verbally confirmed. Keep an eye out on make.wordpress.org for more information about what that process is gonna look like and how to volunteer your time for that if that is something that calls to you.</p>\n\n\n\n<p>Woo. And that, my friends, is your small list of big things, your big list of big things. Thanks for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosy, and I’ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14404\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:69:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.2 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2023/02/wordpress-6-2-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Feb 2023 19:32: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: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.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i: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=14375\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:307:\"WordPress 6.2 Beta 1 is here and ready for download and testing.\n\nThis version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test Beta 1 on a test server and site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7838:\"\n<p>WordPress 6.2 Beta 1 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, you should test Beta 1 on a test server and site.</p>\n\n\n\n<p>You can test WordPress 6.2 Beta 1 in three ways:</p>\n\n\n\n<p><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.2-beta1.zip\">Beta 1 version (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use the following WP-CLI command:</p>\n\n\n\n<p><code>wp core update --version=6.2-beta1</code></p>\n\n\n\n<p>The current target for the final release is <strong>March 28, 2023</strong>, which is seven weeks away. Your help testing this version is vital to ensuring everything in this release is the best it can be.</p>\n\n\n\n<p>Get an overview of the <a href=\"https://make.wordpress.org/core/6-2/\">6.2 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-2/\">6.2-related posts</a> in the coming weeks for further details.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How you can help: testing!</strong></h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. This <a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\">detailed guide</a> is a great place to start if you’ve never tested a beta release. </p>\n\n\n\n<p>If you build products for WordPress, you probably realize that the sooner you can test this release with your themes, plugins, and patterns, the easier it will be for you to offer a seamless experience to your users.</p>\n\n\n\n<p>Want to know more about testing releases in general? You can follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack workspace</a>.</p>\n\n\n\n<p>If you think you may have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. 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>Interested in Gutenberg features? Find out what’s been included since WordPress 6.1 (the last major release of WordPress). You will find more details in the currently available <em>What’s new in Gutenberg</em> posts for <a href=\"https://make.wordpress.org/core/2023/02/10/whats-new-in-gutenberg-15-0-18-january-2/\">15.1</a>, <a href=\"https://make.wordpress.org/core/2023/01/20/whats-new-in-gutenberg-15-0-18-january/\">15.0</a>, <a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/\">14.9</a>, <a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\">14.8</a>, <a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\">14.7</a>, <a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/\">14.6</a>, <a href=\"https://make.wordpress.org/core/2022/11/09/whats-new-in-gutenberg-14-5-9-november/\">14.5</a>, <a href=\"https://make.wordpress.org/core/2022/10/27/whats-new-in-gutenberg-14-4-26-october/\">14.4</a>, <a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/\">14.3</a>, and <a href=\"https://make.wordpress.org/core/2022/09/30/whats-new-in-gutenberg-14-2-28-september/\">14.2</a>. </p>\n\n\n\n<p>This release contains more than 292 enhancements and 354 bug fixes for the editor, including more than <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=6.2&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">195 tickets for the WordPress 6.2 core</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>A major release for a major project milestone</strong></h2>\n\n\n\n<p>WordPress 6.2 is one of the last planned major releases of Phase 2 on the <a href=\"https://wordpress.org/about/roadmap/\">Gutenberg project’s roadmap</a>. The platform has come a long way in the past few years. The 6.2 release both celebrates that progress and looks toward a future of publishing that puts ever more powerful tools in your hands. </p>\n\n\n\n<p>Next stop: collaboration tools and more, in <a href=\"https://wordpress.org/news/2023/01/letter-from-wordpress-executive-director-2022/\">Phase 3</a>!</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Notable highlights</strong></h2>\n\n\n\n<p><em>Want to know what’s new in WordPress version 6.2? Read on for a taste of what’s coming.</em></p>\n\n\n\n<ul>\n<li>Beta label is gone—signaling that the Site Editor is stable and ready for anyone to explore, create, and experiment!</li>\n\n\n\n<li>Distraction-free mode for a clear, focused writing experience.</li>\n\n\n\n<li>A new Site Editor interface shows you previews of your templates and Template Parts first, so you can choose exactly where you want to start editing.</li>\n\n\n\n<li>Scaled block settings with split controls organize your Styles and Settings options to easily find what you need—and clearly see everything a block can do. </li>\n\n\n\n<li>Color-coded labels help you find your Template Parts and Reusable Blocks fast, everywhere you look: in the List View, the Block toolbar, even on the Canvas.</li>\n\n\n\n<li>An improved Navigation experience makes menus simple to create and manage—right from the block settings sidebar.</li>\n\n\n\n<li>Patterns are easier to find and insert—with even more categories to choose from like headers and footers! </li>\n\n\n\n<li>A new Style Book offers one place to see all your Styles across every block, for a complete overview of your site’s design details.</li>\n\n\n\n<li>Custom CSS support for specific blocks, or your whole site, for another level of control over how you want things to look. </li>\n\n\n\n<li>Openverse integration lets you pull free, openly-licensed media directly into your content as you work—along with a quicker way to insert media from your existing library.</li>\n\n\n\n<li>Widgets become Template Parts when you switch from a Classic to a Block Theme—making the transition that much smoother.</li>\n</ul>\n\n\n\n<p><em>Please note that the features in this list may change before the final release.</em></p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>A haiku for 6.2</strong></h2>\n\n\n\n<p>Last of Phase 2 now<br>Let’s get the party started<br>WordPress turns 20</p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post: </em><a href=\"https://profiles.wordpress.org/marybaum/\"><em>@marybaum</em></a><em> </em><a href=\"https://profiles.wordpress.org/laurlittle/\"><em>@laurlittle</em></a><em> </em><a href=\"https://profiles.wordpress.org/cbringmann/\"><em>@cbringmann</em></a><em>, </em><a href=\"https://profiles.wordpress.org/webcommsat/\"><em>@webcommsat</em></a><em>, </em><a href=\"https://profiles.wordpress.org/audrasjb/\"><em>@audrasjb</em></a><em>, </em><a href=\"https://profiles.wordpress.org/annezazu/\"><em>@annezazu</em></a>, <a href=\"https://profiles.wordpress.org/bph/\"><em>@bhp</em></a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14375\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The Month in WordPress – January 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/02/the-month-in-wordpress-january-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:\"Fri, 03 Feb 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:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14352\";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:574:\"Welcome to the first 2023 edition of The Month in WordPress! January kicked off with an overview of WordPress’ big goals for 2023 and new projects beginning to take shape. Moreover, work on the next major release, WordPress 6.2, continues with Beta 1 scheduled for next week. Read on for the latest news. WordPress 6.2 Beta 1 is on its way The first beta release of WordPress 6.2 is scheduled for next Tuesday, February 7, 2023. As you may have heard, this version will wrap up work on Gutenberg Phase 2 (Customization), but what does this mean in the larger […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10208:\"\n<p>Welcome to the first 2023 edition of The Month in WordPress! January kicked off with an overview of <a href=\"https://make.wordpress.org/project/2023/01/18/big-picture-goals-2023/\">WordPress’ big goals for 2023</a> and new projects beginning to take shape. Moreover, work on the next major release, WordPress 6.2, continues with Beta 1 scheduled for next week. Read on for the latest news.</p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.2 Beta 1 is on its way</h2>\n\n\n\n<p>The first beta release of WordPress 6.2 is <a href=\"https://make.wordpress.org/core/2023/01/17/wordpress-6-2-planning-roundup/\">scheduled</a> for next Tuesday,<strong> February 7, 2023</strong>.</p>\n\n\n\n<p>As you may have heard, this version will wrap up work on Gutenberg Phase 2 (Customization), but what does this mean in the larger context of the WordPress project?</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/news/2023/01/episode-48-what-does-concluding-a-gutenberg-phase-really-mean/\">Tune in to Episode 48 of WP Briefing</a> to hear Executive Director Josepha Haden Chomphosy discuss what it means to conclude a Gutenberg phase.</p>\n</blockquote>\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 new in Gutenberg</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/01/20/whats-new-in-gutenberg-15-0-18-january/\"><strong>Gutenberg 15.0</strong></a> was released on January 18, 2023. Some highlights include a new “paste styles” feature to easily create multiple blocks with identical styling, and a “sticky” option to keep a block at the top of the page while the rest of the content scrolls.</p>\n\n\n\n<p>In addition, block settings have been split into two tabs in the sidebar: Styles and Settings. This makes blocks with more controls, such as the Group block, easier to customize, and allows the interface to scale with the growing number of design tools.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"></a><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\">The latest “Core Editor Improvement” post</a> highlights the newest style features enhancements. Learn how they can help give your site a unique and cohesive look and feel.</p>\n</blockquote>\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\">Team updates: Matrix exploration, WordPress.org redesign news, and more</h2>\n\n\n\n<ul>\n<li>WordPress and Matrix contributors published <a href=\"https://make.wordpress.org/meta/2023/01/25/a-meta-subproject-for-evaluating-matrix/\">a proposal to explore the open source chat system Matrix</a> as a possible replacement for the WordPress community’s Slack.</li>\n\n\n\n<li>Several sections of WordPress.org have been redesigned lately, including <a href=\"https://make.wordpress.org/docs/2023/01/24/new-look-new-site-new-helphub/\">Documentation (HelpHub)</a>, <a href=\"https://wordpress.org/enterprise/\">Enterprise</a>, and <a href=\"https://mercantile.wordpress.org/\">Mercantile</a> (the official WordPress swag store). Learn more about the <a href=\"https://make.wordpress.org/meta/2023/01/26/wordpress-org-redesign-recent-launches/\">latest redesign updates</a>.</li>\n\n\n\n<li>The implementation of the block editor in the WordPress.org forums is <a href=\"https://make.wordpress.org/support/2023/02/block-editor-live-in-most-forums/\">progressing well</a> and the feedback so far has been very positive.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/01/25/wordpress-community-support-wordpress-foundation-entity-structure/\">This comprehensive post</a> clarifies how WordPress Community Support (also known as WordCamp Central) and WordPress Foundation entities are set up and addresses some misconceptions about them.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/core/2023/01/18/bug-scrub-schedule-for-6-2/\">bug scrub schedule for WordPress 6.2</a> is now published. The goal of bug scrubs is to ensure tickets move towards a resolution—anyone can join these sessions to learn, help, or even <a href=\"https://make.wordpress.org/core/handbook/tutorials/leading-bug-scrubs/\">lead one</a>.</li>\n\n\n\n<li>Openverse <a href=\"https://make.wordpress.org/openverse/2023/02/03/openverse-is-moving/\">will be moving</a> from wordpress.org/openverse to openverse.org next week. Along with this move, new improvements are coming to the site’s homepage, header, and footer.</li>\n\n\n\n<li>The Plugin Review Team is looking for <a href=\"https://make.wordpress.org/plugins/2023/01/13/looking-for-your-intentionally-wrong-plugins/\">your (intentionally) wrong plugins</a>.</li>\n\n\n\n<li>The latest edition of People of WordPress features <a href=\"https://wordpress.org/news/2023/01/people-of-wordpress-daniel-kossmann/\">Daniel Kossmann</a>, a software engineer from South America.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>As part of the discussion on <a href=\"https://make.wordpress.org/project/2023/01/09/request-for-feedback-how-can-we-improve-the-five-for-the-future-contributor-journey/\">improving the contributor journey</a>, Josepha wrote some thoughts on <a href=\"https://make.wordpress.org/project/2023/01/27/discussion-ending-the-eternal-september/\">the Eternal September phenomenon in open source</a> and invites you to share yours.</p>\n</blockquote>\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\">Feedback & testing requests</h2>\n\n\n\n<ul>\n<li>The Community Team is gathering feedback on a <a href=\"https://make.wordpress.org/community/2023/01/19/proposal-adopt-github-for-team-projects/\">proposed move to GitHub</a> for standardizing the project’s management tools.</li>\n\n\n\n<li>To mark WordPress’ 20th anniversary milestone, Core Team contributors are organizing <a href=\"https://make.wordpress.org/core/2023/01/24/proposal-old-tickets-trac-triage-sessions/\">several bug scrub sessions</a> to tackle long-standing Trac tickets. </li>\n\n\n\n<li>Version 21.6 of the WordPress mobile app for <a href=\"https://make.wordpress.org/mobile/2023/01/24/call-for-testing-wordpress-for-ios-21-6/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>The Training Team calls all WordPress users to complete <a href=\"https://learn.wordpress.org/individual-learner-survey/\">this short Individual Learner Survey</a> by February 20, 2023. Your feedback will help identify the most high-impact resources for <a href=\"https://learn.wordpress.org/\">Learn WordPress</a>.</p>\n</blockquote>\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\">WordPress events updates</h2>\n\n\n\n<ul>\n<li>Would you like to be a speaker at WordCamp Europe 2023? <a href=\"https://europe.wordcamp.org/2023/call-for-speakers/\">Submit your application</a> by February 5, 2023. The organizing team released the <a rel=\"noreferrer noopener\" href=\"https://europe.wordcamp.org/2023/wceu-tickets-available-now/\" target=\"_blank\">first batch of tickets</a> and is also calling for <a rel=\"noreferrer noopener\" href=\"https://europe.wordcamp.org/2023/call-for-volunteers/\" target=\"_blank\">volunteers</a> and <a rel=\"noreferrer noopener\" href=\"https://europe.wordcamp.org/2023/call-for-photographers-is-now-open/\" target=\"_blank\">photographers</a>.</li>\n\n\n\n<li>The first WordCamp to be held in Africa in 2023, <a href=\"https://entebbe.wordcamp.org/2023/\">WordCamp Entebbe</a>, is <a href=\"https://central.wordcamp.org/news/2023/01/wordcamp-entebbe-first-wordcamp-to-happen-in-africa-in-2023-is-on/\">well underway</a> and set to take place on March 10-11.</li>\n\n\n\n<li>Don’t miss these other upcoming WordCamps:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://birmingham.wordcamp.org/2023/\">WordCamp Birmingham, Alabama</a>, USA on February 4-5, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1ed.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://cebu.wordcamp.org/2023/\">WordCamp Cebu</a>, Philippines on February 11, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://chiclana.wordcamp.org/2023/\">WordCamp Chiclana</a>, Spain, on March 3-4, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia 2023</a> in Bangkok, Thailand, is only two weeks away! Check out the <a href=\"https://asia.wordcamp.org/2023/schedule/livestream/\">livestream schedule</a> if you are attending virtually.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this edition of The Month in WordPress: <em><a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a></em></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14352\";s: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:69:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"People of WordPress: Daniel Kossmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/01/people-of-wordpress-daniel-kossmann/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Jan 2023 23: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:5:{i:0;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14226\";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:133:\"The latest People of WordPress story features Daniel Kossmann, from Brazil, on his journey from video games fan to community builder.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:16419:\"\n<p><strong>This month we feature Daniel Kossmann, a software engineer from South America who shares his enthusiasm for WordPress at every opportunity.</strong></p>\n\n\n\n<p><strong>The <em>People of WordPress</em> series features inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1014\" height=\"627\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2018-wc-saopaulo.jpg?resize=1014%2C627&ssl=1\" alt=\"\" class=\"wp-image-14222\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2018-wc-saopaulo.jpg?w=1014&ssl=1 1014w, https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2018-wc-saopaulo.jpg?resize=300%2C186&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2018-wc-saopaulo.jpg?resize=768%2C475&ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Daniel’s adventure into WordPress began in 2009 when he needed a way to publish and share articles on films. From that small spark, he now enjoys an interesting and varied career in Brazil and beyond, and an ever-expanding community network. </p>\n\n\n\n<p>Following WordPress and its new features fascinates Daniel and he is always looking for ways to share what it has to offer with others. His initial focus on WordPress for content publishing soon became a wider appreciation of the platform’s capacity for building communities and careers. </p>\n\n\n\n<p>Daniel has served as a community organizer for seven years in Curitiba, Brazil and co-organized four annual <a href=\"https://wptranslationday.org/\">WordPress Translation Day</a> events in the city. Community building initiatives, like these, bring in new volunteers and help spur on local user groups.<br><br>Now working as a software engineer manager, Daniel maintains his interest in supporting the WordPress community through a newsletter in Brazilian Portuguese.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Finding WordPress to publish content can be life-changing</h2>\n\n\n\n<p>Daniel’s web development skills were initially self-taught, and built on his interest in technology and from his earlier interest in video games. He developed systems in ASP and PHP, and created online resources to teach others how to create websites. </p>\n\n\n\n<p>When the time came to choose his academic path, he had no doubt that it would be something related to computers and picked Computer Science at the Federal University of Paraná.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>“In order to focus more on content rather than coding, I ended up getting to know WordPress. It was love at first sight!” </p>\n</blockquote>\n\n\n\n<p>In 2009, he launched a public blog about films that became a hub for cultural content related to cinema, literature, and comics. The blog had collaborators from several cities in the country. He found WordPress an easy tool for publishing articles. It allowed him to spend more time on writing content rather than having to use his software engineering skills to write code.</p>\n\n\n\n<p>However, once he discovered the range and versatility of the software, he wanted to build themes and features to customize websites.</p>\n\n\n\n<p>As he searched for learning materials, he came across a WordPress event happening in his own city. This event, <a href=\"https://curitiba.wordcamp.org/2010/\">WordCamp Curitiba 2010</a>, had a deep impact on Daniel.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>“Other tech events I attended charged more than double this WordCamp, but hadn’t offered half of the things it did.” </p>\n</blockquote>\n\n\n\n<p>Daniel was inspired not only by the talks but also the kindness shown by others at the event. His inherent shyness meant he had to step out of his comfort zone to socialize. However, the friendliness of attendees and the welcome he received made this less foreboding. He was hooked by the community he met, and he pledged to volunteer at the next WordCamp and even apply as a speaker.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2018-wc-saopaulo-2.jpg?resize=1024%2C683&ssl=1\" alt=\"Daniel giving a talk at WordCamp São Paulo 2018 \n\" class=\"wp-image-14223\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2018-wc-saopaulo-2.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2018-wc-saopaulo-2.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2018-wc-saopaulo-2.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2018-wc-saopaulo-2.jpg?w=1200&ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Daniel giving a talk at WordCamp São Paulo 2018 about Gutenberg</em></figcaption></figure>\n\n\n\n<p>Less than two years later, Daniel helped to organize <a href=\"https://curitiba.wordcamp.org/2012/\">WordCamp in Curitiba 2012</a>, and this was where he gave his first public talk. It was an important moment in his journey. He is determined to keep improving his public speaking skills each time he presents, and help others to do so too. </p>\n\n\n\n<h2 class=\"wp-block-heading\">From WordPress user to entrepreneur</h2>\n\n\n\n<p>Daniel had dreamed of starting his own company since childhood. Following his university graduation in 2011, he decided to fulfil that dream. He started a web development company, envisioning it as a creative project lab.</p>\n\n\n\n<p>Initially, he worked with a variety of systems and programming languages. Soon, he realized that maintaining multiple solutions took considerable time and effort. So he opted to use a single platform, WordPress. It offered ease of use for his clients and the possibility of offering various types of websites. </p>\n\n\n\n<p>“This decision allowed me to dive even deeper into the system, making better and faster-to-deliver solutions for my clients,” said Daniel. </p>\n\n\n\n<p>As the company grew, he expanded the services it offered to include support, maintenance, courses, consulting, and optimized hosting for WordPress. This gave Daniel access to a wider range of clients and greater specialization in the WordPress platform.</p>\n\n\n\n<p>Even as a small company, Daniel wanted to give back to the WordPress community. Through using this open source software, the business had not faced the costs of using commercial platforms. He felt he should invest back into the software and its community it as much as he could, from sponsorship of events to collaborating in the Contributor Teams.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2018-wc-floripa.jpg?resize=1024%2C768&ssl=1\" alt=\"\" class=\"wp-image-14221\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2018-wc-floripa.jpg?resize=1024%2C768&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2018-wc-floripa.jpg?resize=300%2C225&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2018-wc-floripa.jpg?resize=768%2C576&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2018-wc-floripa.jpg?w=1200&ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>His community contributions include speaking at meetups and WordCamps to share what what he has learned in his day-to-day work. “It was always and still is a big pleasure to be able to make these contributions,” he affirmed.</p>\n\n\n\n<p>In 2019, he decided to close his company after eight years and start a new chapter in Development Coordination. His focus continues to be on WordPress, both professionally and in the community.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Supporting local: re-energising the Curitiba’s WordPress community</h2>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img decoding=\"async\" loading=\"lazy\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2016-meetup-curitiba.jpg?resize=680%2C510&ssl=1\" alt=\"Daniel speaking at a meetup in Curitiba in 2016.\" class=\"wp-image-14241\" width=\"680\" height=\"510\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2016-meetup-curitiba.jpg?resize=1024%2C768&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2016-meetup-curitiba.jpg?resize=300%2C225&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2016-meetup-curitiba.jpg?resize=768%2C576&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2016-meetup-curitiba.jpg?w=1200&ssl=1 1200w\" sizes=\"(max-width: 680px) 100vw, 680px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Daniel speaking at a meetup in Curitiba in 2016</em></figcaption></figure>\n\n\n\n<p>After WordCamp in Curitiba in 2012, the community there took a break from organizing events. Three years later, Daniel was eager to help restart meetups in Curitiba. He connected with others in the Brazilian community to find a way forward to support both end users of WordPress and firms using the platform. Through instant messaging tool Slack, a rebooted meetup was organized in August 2015. All the planning was done virtually and they only met for the first time in person on the day of the event.</p>\n\n\n\n<p>Although they did not have much initial experience in event planning, the meetup organizers were determined attendees should have fun and enjoy a relaxed atmosphere. They wanted people to feel comfortable socializing and to chat before and after the talks. The tips that attendees shared at every meeting were one of the most successful elements of these user-focused meetups.</p>\n\n\n\n<p>For Daniel, getting up in front of people to introduce the meetup was still not easy. However, he knew continuing to practice and improve his self-confidence was the only way to overcome his shyness. This determination and sense of achievement inspires him to encourage others to present talks and share the tips he uses when presenting.</p>\n\n\n\n<p>The <a href=\"https://www.meetup.com/wpcuritiba/\">Curitiba meetup</a> continues to flourish. Though Daniel has moved to supporting the community in new ways, he has a lasting fondness for it. It has made him an advocate for local groups at the heart of the WordPress community. He believes the shared interest and enthusiasm for learning at meetups helps to increase attendees’ interest in both the software and its community, and their willingness to participate .</p>\n\n\n\n<h2 class=\"wp-block-heading\">Sharing the benefit of WordPress across Brazil</h2>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img decoding=\"async\" loading=\"lazy\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2019-meetup-curitiba-4.jpg?resize=680%2C411&ssl=1\" alt=\"Daniel presenting at a Curitiba meetup in 2019.\" class=\"wp-image-14242\" width=\"680\" height=\"411\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2019-meetup-curitiba-4.jpg?w=991&ssl=1 991w, https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2019-meetup-curitiba-4.jpg?resize=300%2C182&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/01/daniel-kossmann-2019-meetup-curitiba-4.jpg?resize=768%2C465&ssl=1 768w\" sizes=\"(max-width: 680px) 100vw, 680px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Daniel presenting at a Curitiba meetup in 2019</em></figcaption></figure>\n\n\n\n<p>In June 2019, Daniel created a newsletter to spread content about WordPress in Brazilian Portuguese and inspire others to create content in the language. Translating, Daniel believes is a powerful way to make WordPress more accessible to people who do not speak English, which is the case for a lot of people in Brazil. In 2021, Daniel started writing regularly about WordPress on his blog too. He continues to publish weekly news, tutorials, tips, and share events. </p>\n\n\n\n<h2 class=\"wp-block-heading\">Advice to future WordPress contributors</h2>\n\n\n\n<p>Daniel believes that the WordPress community is a key strength of the platform. It attracts people with a range of technical skills and backgrounds, and strives to have a diverse and open space for exchange. </p>\n\n\n\n<p>There are so many ways to contribute to WordPress without working with the code. He said: “I’m a big evangelizer of learning in public. A great way to collaborate is to create your blog in WordPress itself and share your journey of using it, and to write about tips and useful resources. This will eventually lead you to the official WordPress documentation and, the more you use it, the more opportunities for improvements you will see. Then you can start contributing to improving it. Besides this, you can pick a plugin or theme that you use and help with its translation.”<br><br>He added: “My biggest advice for those who are starting to contribute to WordPress is to start with a small step, maybe solving an easy bug or fixing a typo, and create a routine to consistently work on it, like an hour every weekend.”</p>\n\n\n\n<p>Daniel has made several lasting friendships, received professional referrals through his participation in community events, and enjoys a career that continues to have variety and new things to learn. </p>\n\n\n\n<p>His final message is to join WordPress <a href=\"https://www.meetup.com/topics/wordpress/\">meetups locally</a> or online in other cities, and be inspired like he has been for 14 years and still counting. </p>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community. Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributors</h2>\n\n\n\n<p>Thank you to <a href=\'https://profiles.wordpress.org/kossmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>kossmann</a> for sharing his adventures in WordPress.</p>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), Larissa Murillo (<a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>) for research, interviews, and writing this feature article.</p>\n\n\n\n<p>The <em>People of WordPress</em> series thanks Josepha Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) for their support.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14226\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WP Briefing: Episode 48: What Does Concluding a Gutenberg Phase Really Mean?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wordpress.org/news/2023/01/episode-48-what-does-concluding-a-gutenberg-phase-really-mean/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Jan 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=14213\";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:114:\"Gutenberg\'s second phase is ending. Join Josepha as she reflects on what concluding a phase means in the project. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2023/01/WP-Briefing-048.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9472:\"\n<p>On episode forty-eight of the WordPress Briefing podcast, Executive Director Josepha Haden Chomphosy reflects on the closing of Gutenberg phase two, and what that means in the larger context of the project. </p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production: <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<p><a href=\"https://www.google.com/url?q=https://github.com/WordPress/gutenberg/issues/39293&sa=D&source=docs&ust=1674835876639227&usg=AOvVaw3p5tCc9THqs-s4oFT7aXL8\" data-type=\"URL\" data-id=\"https://www.google.com/url?q=https://github.com/WordPress/gutenberg/issues/39293&sa=D&source=docs&ust=1674835876639227&usg=AOvVaw3p5tCc9THqs-s4oFT7aXL8\">Removing Block Editor Beta Label GitHub Issue</a><br><a href=\"https://www.google.com/url?q=https://make.wordpress.org/core/handbook/testing/reporting-bugs/&sa=D&source=docs&ust=1674835876639741&usg=AOvVaw26y93yfwo7kmKoajxvyYQC\" data-type=\"URL\" data-id=\"https://www.google.com/url?q=https://make.wordpress.org/core/handbook/testing/reporting-bugs/&sa=D&source=docs&ust=1674835876639741&usg=AOvVaw26y93yfwo7kmKoajxvyYQC\">Reporting Bugs</a><br><a href=\"https://www.make.wordpress.org/design\" data-type=\"URL\" data-id=\"www.make.wordpress.org/design\">make.wordpress.org/design</a><br><a href=\"https://make.wordpress.org/project/2023/01/09/request-for-feedback-how-can-we-improve-the-five-for-the-future-contributor-journey/\">Contribution Conversations: Improving the Contributor Journey</a><br><a href=\"https://make.wordpress.org/project/2023/01/27/discussion-ending-the-eternal-september/\">Contribution Conversations: Ending the Eternal September</a><br><a href=\"https://make.wordpress.org/community/2023/01/20/proposal-dedicated-communication-place-for-wordcamp-mentors/\">Contribution Conversations: WordCamp Mentorship</a><a href=\"https://make.wordpress.org/project/2023/01/27/discussion-ending-the-eternal-september/\"><br></a><a href=\"https://www.google.com/url?q=https://asia.wordcamp.org/2023/schedule/livestream/&sa=D&source=docs&ust=1674835876640083&usg=AOvVaw1ew_7Sux2HngWq8FSO__kW\" data-type=\"URL\" data-id=\"https://www.google.com/url?q=https://asia.wordcamp.org/2023/schedule/livestream/&sa=D&source=docs&ust=1674835876640083&usg=AOvVaw1ew_7Sux2HngWq8FSO__kW\">WordCamp Asia Livestream Info</a><br></p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14213\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00] </strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks.</p>\n\n\n\n<p>I’m your host, Jospeha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:40] </strong></p>\n\n\n\n<p>We’ve barely gotten moving here in 2023, but even so, WordPress is already working toward its next major release– coming to us at the end of March. You’ve probably heard by now that with this release comes the “end of Phase 2.” But for a lot of folks, that’s raising some questions about what to expect.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:00] </strong></p>\n\n\n\n<p>So I’m gonna spend a little time today sharing what I currently know. Let’s start with what that phrase does mean. Firstly, all of the projects, with the exception of two, I believe, in the Phase 2 scoping ticket, will be shipped in the Gutenberg plugin before WordPress 6.2 release comes out. Barring any major breaking issues, those will then land in that major release in WordPress 6.2.</p>\n\n\n\n<p>So, like, 99% of the features we considered in scope for Phase 2 will be in core by April. It also means the block editor may finally shed its beta label. We’ve been discussing that possibility with the input of the community over the course of the last few major releases, and we’ll do the same as we get ready for the 6.2 release as well. That discussion is tracked over in GitHub, and I can share a link to that in the show notes. For anyone who is a little super nerd, like me, the ticket number is 39293. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:00] </strong></p>\n\n\n\n<p>So not only if you’re going to memorize it and be one of those cool WordPressers who can call tickets to mind based on the numbers. This is a good one because not only is it an important topic, to be able to recall, but also it’s a palindrome, so you get to be fancy and know that forever. </p>\n\n\n\n<p>But anyway, I’ll put a link to it in the show notes for all the rest of us. Fingers crossed that we get to remove that label this time around, but also, the acceptance criteria on it are pretty clear. So it’s really a matter of yes or no on all of the columns all the way down.</p>\n\n\n\n<p>So what does that phase <em>not</em> mean? Firstly, it does not mean that we will stop accepting user feedback or bug reports on any features up to this point. It is always encouraged to file a ticket on track or GitHub detailing any bugs that you’ve encountered. If you’ve never reported a bug before, don’t worry. We have all been there. I’ll gather a link or two with some information for first-timers. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:00] </strong></p>\n\n\n\n<p>If you ever run into me at a WordCamp, feel free to ask me about my first bug-reporting experience. And after you’ve heard that, you will immediately go and file that bug that has been sitting screenshotted on your desk for six months because it honestly cannot get any worse than my first one.</p>\n\n\n\n<p>Secondly, it definitely does not mean that we will stop shipping refinements to the user experience. As much as I’d like to say this isn’t true, I think all open source contributors know that no matter how much you test a solution, you can’t actually account for all possible use cases when you work on a project this size.</p>\n\n\n\n<p>So as we find things that we didn’t realize were a little rough to use, we will, of course, make the effort to smooth those workflows as quickly as possible. So that’s my little reassuring tl;dr for what that phrase means. If you are listening to this and haven’t spent much time in the block editor as it exists today, I encourage you to do so.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:00] </strong></p>\n\n\n\n<p>It has really changed substantially since it was first merged in 2018, and it represents thousands of hours of research and problem-solving and creation, and outreach. If you know someone who has contributed to the project or whose content helped you make sense of some inscrutable part of it, also maybe, drop them a line and let them know you appreciate their hard work.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:26] </strong></p>\n\n\n\n<p>That brings us now to our small list of big things. Firstly, we are thinking a lot right now about the paths to contribution. Both at the start of your contribution journey and as you grow into a long-term, seasoned contributor. There are a couple of different discussions related to that right now. So there are actually two project-wide discussions that are on make.wordpress.org/project.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:00] </strong></p>\n\n\n\n<p>And then there’s one that is specific to WordCamp membership, and that is on make.wordpress.org/community. You can head over to any of those and share your experiences, thoughts, and any wild ideas that you have. </p>\n\n\n\n<p>The second thing on my small list is that there are a lot of pages across wordpress.org that are getting shiny new designs.</p>\n\n\n\n<p>If you want to get involved in those discussions, or you just wanna catch early previews of what’s coming to the site, you can hop over to make.wordpress.org/design or join the design team meetings in Slack. </p>\n\n\n\n<p>And the last thing is that WordCamp Asia is coming quickly, my friends. This event is near and dear to my heart. I hope to see a lot of you in person, but if you won’t be able to make it in person, we still have you covered. There will be a live stream, and the schedule for that is already on the site. It shows the times for each session in your local time zone so you can easily decide which presentations you absolutely must see right in the moment.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00] </strong></p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thanks for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosy, and I’ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14213\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"The Month in WordPress – December 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2023/01/the-month-in-wordpress-december-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Jan 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:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14191\";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:617:\"Last month at State of the Word, WordPress Executive Director Josepha Haden Chomphosy shared some opening thoughts on “Why WordPress” and the Four Freedoms of open source. In this recent letter, she expands on her vision for the WordPress open source project as it prepares for the third phase of Gutenberg: “We are now, as we ever were, securing the opportunity for those who come after us, because of the opportunity secured by those who came before us.” Josepha Haden Chomphosy December brought with it a time for reflection—a time to look back, celebrate, and start planning new projects. Read […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:12820:\"\n<p>Last month at <a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">State of the Word</a>, WordPress Executive Director <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> shared some opening thoughts on “Why WordPress” and the Four Freedoms of open source. <a href=\"https://wordpress.org/news/2023/01/letter-from-wordpress-executive-director-2022/\">In this recent letter</a>, she expands on her vision for the WordPress open source project as it prepares for the third phase of Gutenberg:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-style-default\">\n<p>“We are now, as we ever were, securing the opportunity for those who come after us, because of the opportunity secured by those who came before us.”</p>\n<cite>Josepha Haden Chomphosy</cite></blockquote>\n\n\n\n<p>December brought with it a time for reflection—a time to look back, celebrate, and start planning new projects. Read on to find out what 2023 holds for WordPress so far.</p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<h2 class=\"wp-block-heading\">WordPress is turning 20!</h2>\n\n\n\n<p>2023 marks the <a href=\"https://wordpress.org/news/2023/01/wordpress-is-turning-20-lets-celebrate/\">20th anniversary of WordPress’ launch</a>. The project has come a long way since <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">the first release</a> as it continues to advance its mission to democratize publishing. From its beginnings as a blogging platform to a <a href=\"https://wordpress.org/showcase/\">world-leading open source CMS</a> powering over 40% of websites.</p>\n\n\n\n<p>Join the WordPress community in celebrating this important milestone. As the anniversary date approaches, there will be events, commemorative swag, and more.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wp20.wordpress.net/\">Stay tuned for updates</a>.</p>\n</blockquote>\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\">WordPress 6.2 is scheduled for March 28, 2023</h2>\n\n\n\n<p>Work on WordPress 6.2, the first major release of 2023, is already underway. <strong>It is expected to launch on March 28, 2023</strong>, and will include up to Gutenberg 15.1 for a total of 10 <a href=\"https://developer.wordpress.org/block-editor/contributors/versions-in-wordpress/\">Gutenberg releases</a>.</p>\n\n\n\n<p>The proposed schedule includes four Beta releases to accommodate the first WordCamp Asia and avoid having major release milestones very close to this event.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/01/17/wordpress-6-2-planning-roundup/\">Read more about the 6.2 schedule and release team</a><em>.</em></p>\n</blockquote>\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 new in Gutenberg</h2>\n\n\n\n<p>Two new versions of Gutenberg have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\"><strong>Gutenberg 14.8</strong></a> was released on December 21, 2022. This version features a reorganized Site Editor interface with a Browse Mode that facilitates navigation through templates and template parts. In addition, it includes the ability to add custom CSS via the Style panel and a Style Book that provides an overview of all block styles in a centralized location.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/\"><strong>Gutenberg 14.9</strong></a> became available for download on January 4, 2023. It introduces a new “Push changes to Global Styles” button in the Site Editor, which allows users to apply individual block style changes to all blocks of that type across their site. Other features include typography support for the Page List block, and the ability to import sidebar widgets into a template part when transitioning from a classic theme.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Learn how Gutenberg’s latest releases are <a href=\"https://make.wordpress.org/core/2023/01/06/core-editor-improvement-advancing-the-site-editor-experience/\">advancing the Site Editor experience</a> to be more intuitive and scalable.</p>\n</blockquote>\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\">Team updates: WordPress big picture goals, new Incident Response Team, and more</h2>\n\n\n\n<ul>\n<li>Josepha shared <a href=\"https://make.wordpress.org/project/2023/01/18/big-picture-goals-2023/\">WordPress’ big picture goals for 2023</a>, which support the vision set out in <a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">State of the Word 2022</a> and her recent <a href=\"https://wordpress.org/news/2023/01/letter-from-wordpress-executive-director-2022/\">letter to WordPress</a>.</li>\n\n\n\n<li>Let’s welcome the newly formed <a href=\"https://make.wordpress.org/project/2022/12/21/announcement-new-wordpress-incident-response-team/\">WordPress Incident Response Team (IRT)</a>—a group of contributors who will help as a community resource when behavior or actions do not align with the code of conduct.</li>\n\n\n\n<li>A number of Make teams have announced their team representatives for 2023, including <a href=\"https://make.wordpress.org/community/2022/12/20/community-team-reps-for-2023/\">Community</a>, <a href=\"https://make.wordpress.org/core/2022/12/20/core-team-reps-for-2023-and-beyond/\">Core</a>, <a href=\"https://make.wordpress.org/marketing/2023/01/10/2023-marketing-team-new-meeting-time-and-new-team-reps/\">Marketing</a>, <a href=\"https://make.wordpress.org/polyglots/2022/12/20/polyglots-monthly-newsletter-december-2022/\">Polyglots</a>, <a href=\"https://make.wordpress.org/themes/2022/12/05/introducing-new-themes-team-representatives-for-the-2023-edition/\">Themes</a>, and <a href=\"https://make.wordpress.org/training/2022/12/23/training-team-meeting-recap-for-december-20-2022/\">Training</a>.</li>\n\n\n\n<li>As part of the WordPress.org redesign project, <a href=\"https://make.wordpress.org/design/2023/01/16/a-refresh-of-wordpress-org-themes/\">the Theme Directory will soon get a refreshed look and feel</a>.</li>\n\n\n\n<li>The return of in-person events and the Meetup Reactivation project are some of the highlights that marked a challenging but successful year for the Community Team. Learn more about <a href=\"https://make.wordpress.org/community/2022/12/20/community-team-2022-goals-recap/\">what they achieved in 2022</a>.</li>\n\n\n\n<li>#WPDiversity also celebrated its accomplishments in <a href=\"https://make.wordpress.org/community/2022/12/19/diverse-speaker-training-group-wpdiversity-2022-year-end-report/\">this report</a>. Last year, the training group held 15 events attended by more than 200 participants.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/03/a-year-in-core-2022/\">A Year in Core – 2022</a> provides a data overview of contributions made to the WordPress core codebase in the past year.</li>\n\n\n\n<li>Are you into WordPress development? Don’t miss this post on <a href=\"https://developer.wordpress.org/news/2022/12/28/2022-the-block-developers-year-in-review/\">2022’s most notable milestones and learning resources for block developers</a>.</li>\n\n\n\n<li>The January 2023 editions of the <a href=\"https://make.wordpress.org/polyglots/2023/01/13/polyglots-monthly-newsletter-january-2023/\">Polyglots monthly newsletter</a> and the <a href=\"https://make.wordpress.org/community/2023/01/18/meetup-organizer-newsletter-january-2023/\">Meetup Organizer newsletter</a> are now available for reading.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/project/2023/01/13/sotw22qa/\">Check out the 2022 State of the Word Q&A post</a>, which answers submitted questions that Matt could not address at the live event.</p>\n</blockquote>\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\">Feedback & testing requests</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/01/11/fse-program-testing-call-20-find-your-style/\">Join the latest FSE Program testing call</a> to help strengthen the upcoming WordPress site editing experience. Leave your feedback by February 1, 2023.</li>\n\n\n\n<li>The WordPress Developer Blog is <a href=\"https://make.wordpress.org/core/2023/01/12/can-you-help-with-topics-for-the-wordpress-developer-blog/\">gathering ideas for content topics</a>.</li>\n\n\n\n<li>Version 21.4 of the WordPress mobile app for <a href=\"https://make.wordpress.org/mobile/2022/12/20/call-for-testing-wordpress-for-android-21-4/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/12/19/call-for-testing-wordpress-for-ios-21-4/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Have thoughts for improving the Five for the Future contributor experience? <a href=\"https://make.wordpress.org/project/2023/01/09/request-for-feedback-how-can-we-improve-the-five-for-the-future-contributor-journey/\">This post calls for ideas</a> on how this initiative can better support the project and the people behind it.</p>\n</blockquote>\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\">WordPress events updates</h2>\n\n\n\n<ul>\n<li>Get ready for <a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia 2023</a>! The first flagship WordCamp in Asia is happening on February 17-19, 2023, in Bangkok, Thailand. <a href=\"https://asia.wordcamp.org/2023/schedule/\">Check out the schedule</a> to learn more about the sessions and speakers.</li>\n\n\n\n<li>The <a href=\"https://communitysummit.wordcamp.org/2023/\">WordPress Community Summit</a> and <a href=\"https://us.wordcamp.org/2023/\">WordCamp US 2023</a> will take place in Maryland, USA, in August 2023. You can now <a href=\"https://us.wordcamp.org/2023/wcus-organizing-team/\">apply to join the organizing team</a> and help bring the next WCUS to life.</li>\n\n\n\n<li>Join #WPDiversity with a free online workshop on <a href=\"https://www.eventbrite.com/e/how-to-own-your-expertise-start-speaking-at-wordpress-events-apac-tickets-513455969627\">How to Own Your Expertise & Start Speaking at WordPress Events APAC</a>. The event will take place on January 28, 2023.</li>\n\n\n\n<li>Don’t miss these other upcoming WordCamps:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://zaragoza.wordcamp.org/2023/\">WordCamp Zaragoza</a>, Spain on January 20-21, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://birmingham.wordcamp.org/2023/\">WordCamp Birmingham, Alabama</a>, USA on February 4-5, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1ed.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://cebu.wordcamp.org/2023/\">WordCamp Cebu</a>, Philippines on February 11, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Would you like to be a speaker at WordCamp Europe 2023? <a href=\"https://europe.wordcamp.org/2023/call-for-speakers/\">Submit your application</a> by the first week of February.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this edition of The Month in WordPress: <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a>, <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>.</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:\"14191\";s: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:57:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Letter from WordPress’ Executive Director, 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wordpress.org/news/2023/01/letter-from-wordpress-executive-director-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 Jan 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:1:{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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14180\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"If Phases 1 and 2 had a \"blocks everywhere\" vision, think of Phase 3 with more of a “works with the way you work” vision. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:5903:\"\n<p>Last month at State of the Word, I shared some opening thoughts about “Why WordPress.” For me, this is an easy question, and the hardest part is knowing which lens to answer through. The reasons that a solopreneur will choose WordPress are different than the reasons a corporation would. And while artists and activists may have a similar vision for the world, their motivations change their reasons, too. That’s why I always focus on the philosophical parts of the answer because I know that I am speaking as an advocate for many types of WordPressers. I have a few other reasons, too, which you may not be aware of as you use our software every day.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Why WordPress?</h2>\n\n\n\n<p>Most importantly, the Four Freedoms of Open Source. If you have already listened to State of the Word, you have heard my thoughts on the philosophical side of open source and the freedoms it provides. If you didn’t, then the tl;dr on that is that open source provides protections and freedoms to creators on the web that should be a given. There’s an extent to which the idea of owning your content and data online is a radical idea. So radical, even, that it is hard for folks to grasp what we mean when we say “free as in speech, not free as in beer.” Securing an open web for the future is, I believe, a net win for the world especially when contrasted to the walled gardens and proprietary systems that pit us all against one another with the purpose of gaining more data to sell.</p>\n\n\n\n<p>A second reason is that WordPress entrepreneurs (those providing services, designing sites, and building applications) have proven that open source offers an ethical framework for conducting business. No one ever said that you cannot build a business using free and open source software. And I am regularly heartened by the way successful companies and freelancers make an effort to pay forward what they can. Not always for the sole benefit of WordPress, but often for the general benefit of folks learning how to be an entrepreneur in our ecosystem. Because despite our competitive streaks, at the end of the day, we know that ultimately we are the temporary caretakers of an ecosystem that has unlocked wealth and opportunity for people we may never meet but whose lives are made infinitely better because of us.</p>\n\n\n\n<p>And the final reason is that leaders in the WordPress community (team reps, component maintainers, and community builders) have shown that open source ideals can be applied to how we work with one another. As a community, we tend to approach solution gathering as an “us vs. the problem” exercise, which not only makes our solutions better and our community stronger. And our leaders—working as they are in a cross-cultural, globally-distributed project that guides or supports tens of thousands of people a year—have unparalleled generosity of spirit. Whether they are welcoming newcomers or putting out calls for last-minute volunteers, seeing the way that they collaborate every day gives me hope for our future.</p>\n\n\n\n<p>As I have witnessed these three things work together over the years, one thing is clear to me: not only is open source an idea that can change our generation by being an antidote to proprietary systems and the data economy, open source methodologies represent a process that can change the way we approach our work and our businesses. </p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress in 2023</h2>\n\n\n\n<p>As we prepare for the third phase of the Gutenberg project, we are putting on our backend developer hats and working on the APIs that power our workflows. Releases during Phase 3 will focus on the main elements of collaborative user workflows. If that doesn’t make sense, think of built-in real-time collaboration, commenting options in drafts, easier browsing of post revisions, and programmatic editorial and pre-launch checklists.</p>\n\n\n\n<p>If Phases 1 and 2 had a “blocks everywhere” vision, think of Phase 3 with more of a “works with the way you work” vision. </p>\n\n\n\n<p>In addition to this halfway milestone of starting work on Phase 3, <a rel=\"noreferrer noopener\" href=\"https://wp20.wordpress.net/\" target=\"_blank\">WordPress also hits the milestone of turning 20 years old</a>. I keep thinking back to various milestones we’ve had (which you can read about in the second version of the Milestones book) and realized that almost my entire experience of full-time contributions to WordPress has been in the Gutenberg era.</p>\n\n\n\n<p><em>I hear some of you already thinking incredulous thoughts so, come with me briefly.</em></p>\n\n\n\n<p>There are a couple of different moments that folks point to as the beginning of the Gutenberg project. Some say it was at State of the Word 2013 when Matt dreamed of “a true WYSIWYG” editor for WordPress. Some say it was at State of the Word 2016 where we were encouraged to “learn Javascript deeply.” For many of us, it was at WordCamp Europe in 2017 when the Gutenberg demo first made its way on stage.</p>\n\n\n\n<p>No matter when you first became aware of Gutenberg, I can confirm that it feels like a long time because it has been a long time. I can also confirm that it takes many pushes to knock over a refrigerator. For early adopters (both to the creation of Gutenberg and its use), hyper-focus on daily tasks makes it hard to get a concept of scale.</p>\n\n\n\n<p>So I encourage you this year to look out toward the horizon and up toward our guiding stars. We are now, as we ever were, securing the opportunity for those who come after us, because of the opportunity secured by those who came before us.</p>\n\n\n\n<p><em>Rather listen? <a href=\"https://wordpress.org/news/2023/01/episode-47-letter-from-the-executive-director/\">The abbreviated spoken letter is also available.</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:\"14180\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WP Briefing: Episode 47: Letter from the Executive Director\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wordpress.org/news/2023/01/episode-47-letter-from-the-executive-director/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 Jan 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=14175\";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:114:\"Hear from WordPress Executive Director Josepha Haden Chomphosy on her vision for the open source project 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:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2023/01/WP-Briefing-047.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8912:\"\n<p>On episode forty-seven of the WordPress Briefing podcast, Executive Director Josepha Haden Chomphosy shares her vision and current thinking for the WordPress open source project in 2023. <em>Rather read it? <a href=\"https://wordpress.org/news/2023/01/letter-from-wordpress-executive-director-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">The full letter is also available</a>.</em></p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production: <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<p><a href=\"http://make.WordPress.org/core\">make.WordPress.org/core</a><br><a href=\"https://make.wordpress.org/core/6-2/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/core/6-2/\">Join the 6.2 Release!</a><br><a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">Submit Topics for the Community Summit!</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14175\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00] </strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:40] </strong></p>\n\n\n\n<p>Last month at State of the Word, I shared some opening thoughts about why WordPress. For me, this is an easy question, and the hardest part is always knowing which lens to answer through. Though I always focus on the philosophical parts of the answer, I know that I often speak as an advocate for many types of WordPressers.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:00] </strong></p>\n\n\n\n<p>So as we prepare ourselves for the start of a new year, I have a few additional thoughts that I’d like to share with you, my WordPress community, to take into the year with you. </p>\n\n\n\n<p>Firstly, the Four Freedoms. If you have already listened to State of the Word, you have heard my take on the philosophical side of open source and the freedoms it provides.</p>\n\n\n\n<p>But if you didn’t, then the TL;DR on that is that open source provides protections and freedoms to creators on the web that I really think should just be a given. But there are a couple of other things about the Four Freedoms, and especially the way that WordPress does this kind of open source-y thing that I think are worth noting as well.</p>\n\n\n\n<p>One of those things is that WordPress entrepreneurs, those who are providing services or designing sites, building applications, they have proven that open source provides an ethical framework for conducting business. No one ever said that you aren’t allowed to build a business using free and open source software, and I am regularly heartened by the way that successful companies and freelancers make the effort to pay forward what they can.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:02]</strong></p>\n\n\n\n<p>Not always for the sole benefit of WordPress, of course, but often for the general benefit of folks who are also learning how to be entrepreneurs or how to kind of navigate our ecosystem. And the other thing that I love about the Four Freedoms and the way that WordPress does it is that leaders in the WordPress community, no matter where they are leading from, have shown that open source ideals can be applied to the way we work with one another and show up for one another.</p>\n\n\n\n<p>As a community, we tend to approach solution gathering as an us-versus-the-problem exercise, which not only makes our solutions better, it also makes our community stronger. </p>\n\n\n\n<p>As I have witnessed all of these things work together over the years, one thing that is clear to me is this: not only is open source an idea that can change our generation by being an antidote to proprietary systems and the data economy, but open source methodologies represent a process that can change the way we approach our work and our businesses.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:01] </strong></p>\n\n\n\n<p>The second big thing that I want to make sure you all take into the year with you is that we are preparing for the third phase of the Gutenberg project. We are putting our backend developer hats on and working on the APIs that power our workflows. That workflows phase will be complex. A little bit because APIs are dark magic that binds us together, but also because we’re going to get deep into the core of WordPress with that phase.</p>\n\n\n\n<p>If you want to have impactful work for future users of WordPress, though, this is the phase to get invested in. This phase will focus on the main elements of collaborative user workflows. If that doesn’t really make sense to you, I totally get it. Think of it this way, this phase will work on built-in real-time collaboration, commenting options in drafts, easier browsing of post revisions, and things like programmable editorial, pre-launch checklists.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:00] </strong></p>\n\n\n\n<p>So phases one and two of the Gutenberg project had a very ‘blocks everywhere’ sort of vision. And phase three and, arguably, phase four will have more of a ‘works with the way you work’ vision.</p>\n\n\n\n<p>And my final thought for you all as we head into the year is this, there are a couple of different moments that folks point to as the beginning of the Gutenberg project. Some say it was State of the Word 2013, where Matt dreamed on stage of a true WYSIWYG editor for WordPress. Some say it was State of the Word 2016, where we were all encouraged to learn JavaScript deeply. For a lot of us though, it was at WordCamp Europe in 2018 when the Gutenberg feature plugin first made its way to the repo.</p>\n\n\n\n<p>No matter when you first became aware of Gutenberg, I can confirm that it feels like it’s been a long time because it has been a long time. But I can also confirm that it takes many pushes to knock over a refrigerator. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:00] </strong></p>\n\n\n\n<p>For early adopters, both to the creation of Gutenberg as well as its use, hyperfocus on daily tasks makes it really hard to get a concept of scale.</p>\n\n\n\n<p>And so I encourage everyone this year to look out toward the horizon a bit more and up toward our guiding stars a bit more as well. Because we are now, as we ever were, securing opportunity for those who come after us because of the opportunity that was secured for us by those who came before us. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:33] </strong></p>\n\n\n\n<p>That brings us now to our small list of big things. It’s a very small list, but two pretty big things. The first thing on the list is that the WordPress 6.2 release is on its way. If you would like to get started contributing there, you can wander over to make.WordPress.org/core. You can volunteer to be part of the release squad. You can volunteer your time just as a regular contributor, someone who can test things — any of that. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00] </strong></p>\n\n\n\n<p>We’ll put a link in the show notes. And the second thing that I wanted to remind you of is that today is the deadline to submit topics for the Community Summit that’s coming up in August. That comes up in the middle of August, like the 22nd and 23rd or something like that. </p>\n\n\n\n<p>We’ll put a link to that in the show notes as well. If you already have chatted with a team rep about some things that you really want to make sure get discussed at the community summit, I think that we can all assume that your team rep has put that in. But if not, it never hurts to give it a second vote by putting a new submission into the form.</p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosy, and I’ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14175\";s: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: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:43:\"WordPress is Turning 20: Let’s Celebrate!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wordpress.org/news/2023/01/wordpress-is-turning-20-lets-celebrate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 10 Jan 2023 21:38:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"WP20\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14155\";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:106:\"2023 marks the 20th year of WordPress. Read on to learn about how WordPress is celebrating this milestone.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:1476:\"\n<p>2023 marks the 20th year of WordPress. Where would we all be without WordPress? Just think of that! While many technologies, software stacks, and fashion trends have come and gone throughout the past two decades, WordPress has thrived. This is due to the fantastic work and contributions of the WordPress community, comprised of thousands of contributors; and millions of users who have embraced the <a href=\"https://wordpress.org/about/\">four freedoms of WordPress</a> and the mission to democratize publishing.</p>\n\n\n\n<p>Let’s celebrate!</p>\n\n\n\n<p>Throughout the beginning of 2023, leading up to the official anniversary date of WordPress’s launch (May 27, 2003), a number of different events will celebrate this important milestone, reflect on the journey, and look toward the future.</p>\n\n\n\n<p>Please join in!</p>\n\n\n\n<p>Over the next few months, be sure to check WordPress’s official social media accounts along with the <a href=\"https://wp20.wordpress.net/\">official anniversary website</a> for updates on how you can be involved in this exciting celebration by contributing content, collecting cool anniversary swag, and much more. </p>\n\n\n\n<p>Use the hashtag <strong>#WP20</strong> on social media so the community can follow along.</p>\n\n\n\n<p>If you have something planned to celebrate that you would like to be considered for inclusion on the official website, please <a href=\"https://forms.gle/my1yknAJYZ4jFLb79\">use this form to share the details</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14155\";s: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: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:48:\"WP Briefing: Episode 46: The WP Bloopers Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2022/12/episode-46-the-wp-bloopers-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 31 Dec 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=14123\";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:115:\"This episode of the WP Briefing features all the Josepha bloopers our little elves have stored away over the year. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/12/WP-Briefing-046.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9636:\"\n<p>This episode of the WP Briefing features all the Josepha bloopers our little elves have stored away over the year. </p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production: <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14123\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00] </strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can normally catch quick explanations of the ideas behind the WordPress open source project with the hope that deeper understanding creates deeper appreciation.</p>\n\n\n\n<p>But on today’s bonus episode, instead of catching quick explanations, you’ll catch some quick bloopers. </p>\n\n\n\n<p>The end of the year is a time when many people and many cultures gather together, and whether you observe traditions of light or faith, compassion, or celebration from everyone here at the WordPress Briefing Podcast, we’re wishing you a happy, festive season and a very happy New Year.</p>\n\n\n\n<p>Sit back, relax, and enjoy some of the laughs and outtakes from recording the WP Briefing over the year.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:00] </strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress. This is the thing I’ve done 25 times, and I know how to do it for reals.</p>\n\n\n\n<p>Welcome to WordPress Briefing, episode 20. Oh no, 7? 27? 26? Episode 27. I know how many things I’ve done.</p>\n\n\n\n<p>Ooh, neat. This is Josepha recording episode 46 of the WP Bonus Briefings. Not because we’ve had 46 bonus Briefings, but because this is the 46th one and it is a bonus, it will also have a fancy name. But right now, I’m just calling it the bonus. It’s gonna be quick. Here I go. </p>\n\n\n\n<p>Group them into two big buckets, themes, uh, themes and tools. Mmm, I’m gonna have to redo the whole thing! No! I thought I could save it, and I didn’t save it. I had a typo in my script, and then I messed it up. I, it said into you big buckets instead of into two big buckets. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:00] </strong></p>\n\n\n\n<p>I’m gonna start over from the target release date because I kind of smeared it all together, um, despite what I intended to do.</p>\n\n\n\n<p>And gives everyone, no. What is this ringing of phones? Oh, I was doing so well. Where was I? Let’s see if I can just pick it up.</p>\n\n\n\n<p>All righty, live from my closet. It’s episode 20, the WordPress Briefing, WP Briefing. So I have a title for this, and when I started writing it, I really had every intention of writing it to the title. And then what I wrote doesn’t fit the title at all, but does really hang together well. And so we’re gonna have to come up with a new title, but at the moment, it’s called So Many Ways to WordPress.</p>\n\n\n\n<p>Here in a minute, you will see why it doesn’t fit. Also, at the end, I feel like I get very, like, angry nerd leader.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:00] </strong></p>\n\n\n\n<p>And so I may, I may at the end, give that a second go and see if there’s a way that I can soften it a little bit, but, I, I don’t know that I can soften it. I feel very strongly about it. So, maybe I am just an angry nerd leader.</p>\n\n\n\n<p>Oh, okay. I’ll get us started now that I apparently have filled the room with apologies, not the room, the closet. </p>\n\n\n\n<p>We’ll figure out something very catchy as a title or as an alternative. Very descriptive, and people will click on it because they must know, but we’ll figure out the title later.</p>\n\n\n\n<p>@wordpress.org. However, I don’t know why I decided to do an invitation to email me in the middle of that. I’m gonna start from the top of that paragraph. I just got too excited by the opportunity to get mail.</p>\n\n\n\n<p>I gotta slow it down. I’m like the fastest talker, had too much coffee. Okay, slowing it down now. </p>\n\n\n\n<p>Huh? What am I saying? No, no, that’s what I’m saying. It’s fine. I, I can do this. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:00]</strong></p>\n\n\n\n<p>Hold on. Oww. Sorry. I was adjusting my microphone, and then it fell down. I happened to be holding it at the time, so it didn’t, like, slam down, I think, and hurt your ears and so I apologize. Good thing I stopped so it didn’t just, like, slam down in the middle of a recording.</p>\n\n\n\n<p>That’s all right. I’m gonna give myself that win, even though it’s a hollow one. All right. Trying again. Starting right there, at now since.</p>\n\n\n\n<p>This year, it starts on October 18th, 2001. That’s the year? No, 2021. That’s the year. Oh man. I’m doing such a great job of this.</p>\n\n\n\n<p>Um, I’m recording this slightly before, um, you’re hearing it? What, how am I gonna start this? Hold on. I don’t know how to start this. All right. I’m, I can do it.</p>\n\n\n\n<p>Oh, I’m so glad I remembered. We had guests that could have been so embarrassing.</p>\n\n\n\n<p>Now for me, the trade-offs work well. How many times can I say now?</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:00] </strong></p>\n\n\n\n<p>Do I just start every sentence with now now? Is this just how I do things? Uh, now, now, now, now. I’m gonna start all over again because I’m in my head about the words in my mouth now. So.</p>\n\n\n\n<p>In some near timeframe, some near timeframe. This is not a thing that people say, Dustin, I’m sorry. That’s not a thing people say. I’m just gonna retry that one sentence to sound like I speak with other human beings sometimes.</p>\n\n\n\n<p>Today is the start of… I can do these things.</p>\n\n\n\n<p>This was a terrible ending. I need to just finish that last part. I’m gonna redo the part where I started with my name and not the name of the podcast. Um, and we’ll do that.</p>\n\n\n\n<p>And if you’re supporting or building anything to hand off to clients, you know that timely, easy to ship changes on a site are considered a vital part of any overarching brand and marketing strategy. Wow. It’s like, I don’t know what words are right there. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00] </strong></p>\n\n\n\n<p>I tripped over my own tongue a lot. I’m gonna sit, I’m gonna do that paragraph again because I didn’t do a very good job of it.</p>\n\n\n\n<p>I’ll do a better job.</p>\n\n\n\n<p>I literally digress, and now I don’t know. I am in my thing. What was I saying? Oh, there we go. </p>\n\n\n\n<p>Topher DeRosia, who founded Word not WordPress. Holy moly. That was a, I knew I was gonna say that, and I was like, don’t say that when you actually get around to saying this, but here I am, and I did it. Even though I knew I was gonna do it and I told myself not to. Doing it again. Right from there.</p>\n\n\n\n<p>Not which audiench segment. Oh man. Audiench is not a word, folks. I was on a roll. I’m gonna start right from the primary thing.</p>\n\n\n\n<p>I don’t even remember how I started this podcast. What is the last thing I said? I said, here we go. All right. </p>\n\n\n\n<p>Kind of covered some interesting ground, and so, oh no, this is not where I’m gonna start it. I know exactly where I’m gonna start it. Okay. I’m really ready now. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:00] </strong></p>\n\n\n\n<p>I suddenly, I’m gonna pause right here because I suddenly got really worried that I didn’t actually hit record. Oh my gosh. I did. Woo. I’m all over the place. Okay. We’ll now continue. Wait, did I? Oh my goodness. I did, super sorry.</p>\n\n\n\n<p>Of the WordPress Briefing. I’m gonna do some singing in the middle of some talking, but I keep trying to talk myself out of the singing, so I’m gonna go ahead and do the singing, and then I’ll do the talking before I talk myself out of the singing. Here I go, probably.</p>\n\n\n\n<p>I added a word. That was so good. I’m gonna start again. I’m gonna get some water, and then I’m gonna start again. Not again. Again. Just from the ‘and finally.’</p>\n\n\n\n<p>I don’t know how I finish my show. Y’all, I do this literally every week. I never know how to finish my show. Here we go.</p>\n\n\n\n<p>I don’t know why I shouted at you from the other side of the tiny closet. I apologize. I’m gonna start again from ‘and finally.’</p>\n\n\n\n<p>Tada we did it.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:00] </strong></p>\n\n\n\n<p>Ha. I hate it. I hate the whole podcast. It’s gonna be fine. </p>\n\n\n\n<p>Done. Nailed it.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00] </strong></p>\n\n\n\n<p>With that, I’m your host, Josepha Haden Chomphosy. Merry Christmas from me. Happy holidays to you, and we’ll see you again in the new year.</p>\n\n\n\n<p>Done.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14123\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 27 Feb 2023 14:48:25 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:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Mon, 20 Feb 2023 17:23:20 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:4:\"gzip\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20230227143137\";}','no'),(150,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1677552505','no'),(151,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1677509305','no'),(152,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1677552505','no'),(153,'_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:83:\"Do The Woo Community: WordCamp Asia 2023, A Shining Star in the WordPress Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74533\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://dothewoo.io/wordcamp-asia-2023-a-shining-star-in-the-wordpress-community/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:443:\"<p>After returning from WordCamp Asia, I feel so grateful for those who support Do the Woo and the WordPress global community. </p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wordcamp-asia-2023-a-shining-star-in-the-wordpress-community/\">WordCamp Asia 2023, A Shining Star in the WordPress Community</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Feb 2023 11:08:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:122:\"Gutenberg Times: 6.2 Live Demo, 20-Year anniversary, Intrinsic design HTML Tag Processor, #WCAsia – Weekend Edition #244\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=23467\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://gutenbergtimes.com/6-2-live-demo-20-year-anniversary-intrinsic-design-html-tag-processor-wcasia-weekend-edition-244/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20225:\"<p>Howdy, </p>\n\n\n\n<p>WordCamp Asia was one of the best, if not the best flagship WordPress event. I met quite a few subscribers to this newsletter in person. What a delight! I also made many new friends in the WordPress community. Over the next week, I will add links to the live stream recordings and, if available, to the slidedecks to the post with <a href=\"https://gutenbergtimes.com/wordcamp-asia-2023-eight-gutenberg-related-talks/\">the list of talks about the block editor</a>. </p>\n\n\n\n<p>There are quite a few posts to be shared over the last 20 days since the last newsletter. It was great to catch-up. I kept my comments short. Many good things happening. </p>\n\n\n\n<p>Wishing you a great weekend! </p>\n\n\n\n<p>Yours, ?<br /><em>Birgit</em></p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-word-press-6-2\">WordPress 6.2</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-gutenberg-plugin-releases\">Gutenberg Plugin Updates</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>David Bisset </strong>posted the <a href=\"https://davidbisset.com/highlights-of-matts-qa-at-wordcamp-asia-2023/\"><strong>Highlights of Matt’s Q&A At WordCamp Asia 2023</strong></a>. Read the answer to questions about sponsoring contributors for documentation, how to take advantage of WordPress knowledge in time of economic downturn, or how to get the next generation of web creators involved in the project. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On the <em>WordPress Developer Blog</em>,<strong> Justin Tadlock</strong> published <a href=\"https://developer.wordpress.org/news/2023/02/whats-new-for-developers-february-2023/\"><strong>What’s new for developers? (February 2023)</strong></a>. It’s the first edition of a round-up of upcoming changes relevant to developers of plugins and themes as well as agency/freelancers. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/azaozz\">Andrew Ozz</a></strong> posted the <strong><a href=\"https://make.wordpress.org/core/2023/02/18/proposal-updates-to-the-wordpress-release-cycle/\">Proposal: Updates to the WordPress Release Cycle</a> </strong>regarding merging Gutenberg plugin code with WordPress. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Matias Ventura </strong>shared in his post <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\"><strong>Phase 2, Finale</strong></a>, what 6.2 will cover and what is still left for WordPress 6.3 and transition the project to Phase 3: Collaboration and workflows. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-word-press-6-2\">WordPress 6.2</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/02/21/wordpress-6-2-beta-3/\">WordPress 6.2 Beta 3</a> was released this week. <strong><a href=\"https://twitter.com/TahriAdel\">Adel Tahri,</a></strong> responsible for testing on the 6.2 release squad, posted a call to <a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\"><strong>Help Test WordPress 6.2</strong></a> with helpful instructions on how to set up local test environment, with a list of things to test and places where to report your findings. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> posted the <strong><a href=\"https://make.wordpress.org/core/2023/02/06/roadmap-to-6-2/\">Roadmap to 6.2</a> </strong> with a run down of most features coming to a WordPress instance near you on March 28th, 2023. </p>\n\n\n\n<p>The schedule until release: </p>\n\n\n\n<ul>\n<li>Beta 4 on February 28, 2023</li>\n\n\n\n<li>Release Candidate (RC) 1 + Dev Notes on March 7th, 2023</li>\n\n\n\n<li>RC 2 on March 14, 2023</li>\n\n\n\n<li>RC 3 on March 21, 2023</li>\n\n\n\n<li>Final release March 28, 2023</li>\n</ul>\n\n\n\n<p>You can join the release party in the #core channel, the release team coordinates the work in the #6-2-release-leads channel. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/2023/02/21/6-2-live-product-demo/\"><strong>6.2 Live Product Demo</strong></a> is scheduled for March 2, 2023, at noon EST / 17:00 UTC. <strong>Jonathan Pantani</strong> shared the details in his post. </p>\n\n\n\n<a href=\"https://make.wordpress.org/core/2023/02/21/6-2-live-product-demo/\"><img /></a>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"2-gutenberg-plugin-releases\">Gutenberg Plugin Updates</h3>\n\n\n\n<p><strong>JuanMa Garrido</strong> published the release post <strong><a href=\"https://make.wordpress.org/core/2023/02/10/whats-new-in-gutenberg-15-0-18-january-2/\">What’s new in Gutenberg 15.1? (8 February)</a> </strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding </strong>covered Gutenberg 15.1 for the WP Tavern in <a href=\"https://wptavern.com/gutenberg-15-1-adds-openverse-integration\"><strong>Gutenberg 15.1 Adds Openverse Integration</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Daisy Olsen</strong> was release lead for the next version: <strong><a href=\"https://make.wordpress.org/core/2023/02/24/whats-new-in-gutenberg-15-2-22-february/\">What’s new in Gutenberg 15.2? (22 February)</a> </strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>?️ </strong> New episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-79-wordpress-6-2-gutenberg-plugin-versions-15-0-and-15-1/\">Gutenberg Changelog #79 – WordPress 6.2, Gutenberg plugin versions 15.0 and 15.1</a> with Birgit Pauli-Haack and special guest Nick Diego </p>\n</div></div>\n\n\n\n<p><em>The next recording for the Gutenberg Changelog podcast is scheduled for March 9th, 2023, which will cover the Gutenberg plugin releases 15.2 and 15.3 and the dev notes available for WordPress 6.2. We will also answer questions from you and others. Send your questions to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com.</a> </em></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Ben Ritter,</strong> founder of Kadence Themes, announced the release of <a href=\"https://www.kadencewp.com/blog/introducing-blocks-3/\"><strong>Kadence Blocks version 3</strong></a>. Kadence Blocks plugin has been around since the block editor arrived to WordPress in 2018, and with the rapid development of more design tools, and the site editor, the plugin needed a rewrite and a fresh coat of paint. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In this video, <strong>Jamie Marsland</strong> revealed the <a href=\"https://www.pootlepress.com/2023/02/the-secrets-of-wordpress-site-editing-beginners-guide/\"><strong>Secrets of WordPress Site Editing</strong></a>, and answers common questions, like how to add fonts, why editor settings might be missing and how you can download good block themes. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his latest post, <strong>Mark Howells-Mead</strong> shared his thoughts on <a href=\"https://permanenttourist.ch/2023/02/block-patterns-and-block-variations-of-the-query-loop/\"><strong>Block Patterns and Block Variations of the Query Loop</strong></a> and explored the differences between the two and reusable blocks.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> reported on the latest Theme published by Automattic: <a href=\"https://wptavern.com/automattic-releases-bibimbap-a-free-block-theme-for-restaurants\"><strong>Automattic Releases Bibimbap, a Free Block Theme for Restaurants</strong></a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>On the WordPress Developer Blog, <strong>Justin Tadlock</strong> published the article. <strong> <a href=\"https://developer.wordpress.org/news/2023/02/intrinsic-design-theming-and-rethinking-how-to-design-with-wordpress/\">Intrinsic design, theming, and rethinking how to design with WordPress</a></strong>. He wrote on Twitter: “This post explores some thinking behind why WordPress doesn’t have many block settings tied to specific device sizes and what the current approach is. It also provides theme authors with some techniques they can use to work within the system. There are tons of thoughts, techniques, and tools related to the subject, which is impossible to cover in a single post. But, I encourage continued exploration from the extender community and sharing what you learn.” You can follow more discussion in the comments of the post. </p>\n\n\n\n<p><strong>Hendrik Lührsen</strong> and <strong>Jakob Trost</strong> also <a href=\"https://twitter.com/hluehrsen/status/1628823761557368838\">discussed the topic on Twitter</a>. </p>\n\n\n\n<a href=\"https://developer.wordpress.org/news/2023/02/intrinsic-design-theming-and-rethinking-how-to-design-with-wordpress/\"><img /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>For developers who want to get started or dive deeper into creating Block Themes, ready for the site editor, <strong>Daisy Olsen</strong> collected a great list of links covering all aspects for the Developer Blog: <a href=\"https://developer.wordpress.org/news/2023/02/block-theme-resources-roundup/\"><strong>Block theme resources roundup</strong></a>. She wrote: “Whether you build sites mostly from the site and styles editors or you develop bespoke and custom themes from the ground up, there are always new things to learn. Read on to learn all about block themes.” </p>\n\n\n\n\n<p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">“Keeping up with Gutenberg – Index 2022”</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his latest post, <strong>James Koussertari,</strong> of Gutenberg Market asks <a href=\"https://gutenbergmarket.com/news/what-are-hybrid-wordpress-themes\"><strong>What are Hybrid WordPress themes?</strong></a> and gives you the answers, of course. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong>, instigator of the Block Museum of Art, posted <a href=\"https://block-museum.com/2023/02/21/lets-celebrate-20-years-of-wordpress/\"><strong>Let’s celebrate 20 years of WordPress</strong></a> “This is an opportunity for folks to showcase their creativity and imagination using the features of the WordPress block editor that make it a powerful creative platform. We invite artists from all backgrounds and experience levels to submit their own WP20-inspired blocks and join us in celebrating two decades of WordPress.” McCarthy wrote. </p>\n\n\n\n<a href=\"https://block-museum.com/2023/02/21/lets-celebrate-20-years-of-wordpress/\"><img /></a>\n\n\n\n<p>If you are curious, what is all in store for the milestone anniversary, celebration around the WordPress community, follow up on the special website: <a href=\"https://wp20.wordpress.net/\"><strong>wp20.wordpress.net</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In this article, <strong><a href=\"https://twitter.com/donnapep\">Donna Peplinksie</a></strong> shared <strong><a href=\"https://senseilms.com/how-we-built-a-theme-for-sensei/\">How We Built a Block Theme for Sensei LMS</a> </strong>and explains key decisions, the breakdown of the work, and using the <a href=\"https://wordpress.org/plugins/create-block-theme/\">Create Block theme plugin</a> to built out the theme. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On her website, fullsiteediting.com, <strong>Caroline Nymark</strong> posted a new <strong><a href=\"https://fullsiteediting.com/lessons/child-themes/\">Lesson on Child Themes</a></strong>. “I am very happy with the progress we have made to support block and hybrid child themes in WordPress.” Nymark <a href=\"https://twitter.com/carolinapoena/status/1626964953914638337\">tweeted</a>. You learn when you still need child theme, and the relationship between parent and child block theme. It’s a comprehensive guide for theme developers. She also answer frequently asked questions, you might have. </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg’s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n\n<div class=\"ngl-articles colored ngl-articles-50_50 ngl-articles-frontend\">\n\n \n <div class=\"ngl-articles-wrap ngl-articles-webview\">\n \n \n <div class=\"ngl-article-mobile\">\n <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tr>\n <td valign=\"top\">\n <div class=\"ngl-article-mob-wrap\">\n <div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/live-q-a-layout-layout-layout/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/02/Screenshot-2023-02-05-at-11.21.47.png?w=652&ssl=1\" /></a></div><div class=\"ngl-article-labels\">gutenbergtimes.com</div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/live-q-a-layout-layout-layout/\" target=\"_self\" rel=\"\"><span>Live Q & A: Layout. Layout. Layout</span></a></div><div class=\"ngl-article-excerpt\">Layouts are a fundamental part of how block themes work: Layout allows us to define the width of our post content, and arrange blocks horizontally or vertically, right or left… <a href=\"https://gutenbergtimes.com/live-q-a-layout-layout-layout/\" class=\"ngl-article-read-more\" target=\"_self\">Read more.</a></div> </div>\n </td>\n </tr>\n </table>\n </div>\n \n \n \n\n \n \n </div>\n\n</div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor </h2>\n\n\n\n<p>Ryan Welcher started to record YouTube Shorts. For the first one, we also created a blog post with the Quick Tip. </p>\n\n\n\n\n<div class=\"ngl-articles colored ngl-articles-50_50 ngl-articles-frontend\">\n\n \n <div class=\"ngl-articles-wrap ngl-articles-webview\">\n \n \n <div class=\"ngl-article-mobile\">\n <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tr>\n <td valign=\"top\">\n <div class=\"ngl-article-mob-wrap\">\n <div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/quick-tip-creating-a-custom-webpack-configuration-file/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/02/Screenshot-2023-02-04-at-10.56.27.png?w=652&ssl=1\" /></a></div><div class=\"ngl-article-labels\">gutenbergtimes.com</div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/quick-tip-creating-a-custom-webpack-configuration-file/\" target=\"_self\" rel=\"\"><span>Quick Tip: Creating a custom webpack configuration file</span></a></div><div class=\"ngl-article-excerpt\">https://www.youtube.com/shorts/VgK_Y9wAGXw Ryan Welcher on YouTube Shorts. – Also available on TikTok Ryan Welcher started a recording YouTube Shorts also available on TikTok. Here is a transcript and code example of… <a href=\"https://gutenbergtimes.com/quick-tip-creating-a-custom-webpack-configuration-file/\" class=\"ngl-article-read-more\" target=\"_self\">Read more.</a></div> </div>\n </td>\n </tr>\n </table>\n </div>\n \n \n \n\n \n \n </div>\n\n</div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Adam Zieliński </strong>created an interactive tutorial for the new HTML processor coming to WordPress with 6.2: <a href=\"https://adamadam.blog/2023/02/16/how-to-modify-html-in-a-php-wordpress-plugin-using-the-new-tag-processor-api/\"><strong>How to Modify HTML in a PHP WordPress Plugin Using The New Tag Processor API</strong></a>. “If you’ve ever struggled to add an HTML attribute using regular expressions, you know how big of an improvement this is! In fact, Tag Processor was born out of this exact struggle.” He wrote. You’ll find use cases and code snippets in his post. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Brian Coords</strong> shared his experience of <a href=\"https://www.briancoords.com/hooking-into-the-block-editors-post-publish-panel-with-copilot/\"><strong>Hooking into the Block Editor’s Post Publish Panel (with Copilot)</strong></a>. Coords walks you through the steps of building a feature for his plugin that taps into the block editor. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Last month, <strong>Mark Howells-Mead</strong> published a tutorial on <a href=\"https://permanenttourist.ch/2023/01/using-useselect-in-gutenberg-to-fetch-data-from-the-rest-api/\"><strong>Using useSelect in Gutenberg to fetch data from the REST API</strong></a>. The function <code>getEntityRecords</code> enters the stage, too. </p>\n\n\n\n\n<p>Featured Image:</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don’t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won’t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 25 Feb 2023 20:22:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:74:\"WordCamp Central: Get your tickets for WordCamp Kerala 2023 on March 25th!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=3161846\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://central.wordcamp.org/news/2023/02/get-your-tickets-for-wordcamp-kerala-2023-on-march-25th/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7396:\"<p>The southern state of Kerala in India is all set to host its first regional WordCamp – <a href=\"https://kerala.wordcamp.org/2023/\">WordCamp Kerala 2023</a> on March 25, 2023 (Saturday) at <a href=\"https://kerala.wordcamp.org/2023/location/\">IMA House, Kochi</a>! </p>\n\n\n\n<p>The WordPress community in Kerala is not new – it had its humble beginnings in 2014, when it <a href=\"https://www.meetup.com/kochi-wordpress-meetup/events/206595912/\">kicked off with an informal local meetup in Kochi</a>. The love for WordPress grew the community slowly, but surely, which eventually spread out to multiple cities in the state. Together the community organized scores of local meetup events and three editions of WordCamp Kochi (<a href=\"https://kochi.wordcamp.org/2017/\">2017</a>, <a href=\"https://kochi.wordcamp.org/2018/\">2018</a>, and <a href=\"https://kochi.wordcamp.org/2019/\">2019</a>) before the COVID-19 pandemic shut everything down. Even during the pandemic, our community stayed active by organizing online events together under a “WordPress Kerala” banner. As the global health situation improved in 2022, our community started organizing in-person events again. A strong desire to organize a WordCamp united members the Kerala WordPress Community. As a result, the local WordPress Meetup groups of <a href=\"https://www.meetup.com/trivandrum-wordpress-meetup/\">Trivandrum</a>, <a href=\"https://www.meetup.com/kochi-wordpress-meetup/\">Kochi</a>, <a href=\"https://www.meetup.com/Kozhikode-WordPress-Meetup/\">Kozhikode</a>, and <a href=\"https://www.meetup.com/Palakkad-WordPress-Meetup/\">Palakkad</a>, have decided to bounce back by organizing WordCamp Kerala 2023!</p>\n\n\n\n<a href=\"https://central.wordcamp.org/files/2023/02/WordCamp_Kochi_2017_21.jpg\"><img /></a>\n\n\n\n<h2 class=\"wp-block-heading\">What makes WordCamp Kerala unique</h2>\n\n\n\n<p>Our event promises to be as <a href=\"https://kerala.wordcamp.org/2023/10-amazing-things-you-didnt-know-about-kerala/\">unique</a> as our location and host state. Kerala is known as “<a href=\"https://www.keralatourism.org/video-gallery/life-in-god-s-own-country/\">God’s own country</a>” and was <a href=\"https://www.nytimes.com/interactive/2023/travel/52-places-travel-2023.html\">selected by the New York Times</a> as one of the must-visit places in 2023. In 1999, Kerala made it to National Geographic’s list of <a href=\"https://www.nationalgeographic.com/travel/article/50_places_of_a_lifetime_1\">10 Paradises of the world</a> too. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Diversity, Equity, Inclusion, and Belonging</h3>\n\n\n\n<p>At WordCamp Kerala, one of our main priorities is to ensure that every voice is heard. We are working hard to ensure that our event is as diverse and inclusive as possible, from our organizing team to our speaker roster, and every aspect of our event and its planning. </p>\n\n\n\n<p>Our aim is to present a speaker lineup that is as diverse as possible, by ensuring that non-male applicants and applicants from marginalized backgrounds have excellent representation in our roster. To facilitate the same, we collaborated with the WP Diversity group of the Make/Community Team to hold a <a href=\"https://kerala.wordcamp.org/2023/announcement-free-speaker-workshop-for-wordcamp-kerala-speaker-applicants/\">successful diverse speaker workshop led by Jill Binder on January 28th</a> – the workshop had 25 attendees, and resulted in at least seven unique speaker applications!</p>\n\n\n\n<p>Additionally, our event aims to have something for folks from all backgrounds – from advanced technical workshops to sessions aimed at every WordPress professional. For this WordCamp, we are also doing our best to facilitate excellent networking opportunities between attendees, which are one of the biggest strengths of WordCamps.</p>\n\n\n\n<h3 class=\"wp-block-heading\">An Eco-friendly WordCamp</h3>\n\n\n\n<p>The event is planned as eco-friendly and adequate plans are in place to ensure that no harm is done to the environment at any stage of the event. It includes avoiding plastic items and using LED televisions for sponsor branding as opposed to banners to save our environment. We are even thinking of ways to reduce our environmental footprint in every aspect of event planning as well. </p>\n\n\n\n<a href=\"https://central.wordcamp.org/files/2023/02/DSC_0498-1.jpg\"><img /></a>\n\n\n\n<h2 class=\"wp-block-heading\">Get involved</h2>\n\n\n\n<p>There are several ways to become a part of this exciting event! </p>\n\n\n\n<ul>\n<li><a href=\"https://kerala.wordcamp.org/2023/tickets/\"><strong>Grab your tickets</strong></a><strong> to attend this event!</strong><br />WordCamp Kerala tickets are priced at an affordable INR 500 (~USD $6) per attendee. As of late February 2023, we have sold more than half of our total tickets available for public (we are planning 500 total participants at our event including volunteers, speakers, and sponsors), and there is a high probability that we may sell out way before the event date. Get your tickets now! </li>\n\n\n\n<li><strong>Last chance to </strong><a href=\"https://kerala.wordcamp.org/2023/call-for-speakers/\"><strong>apply to speak at WordCamp Kerala</strong></a><strong>!<br /></strong>Due to popular demand, we have extended our deadline for call for speakers. <a href=\"https://kerala.wordcamp.org/2023/call-for-speakers/\">Apply to speak at WordCamp Kerala 2023</a> before February 28th 2023, 11:59 PM IST.</li>\n\n\n\n<li><a href=\"https://kerala.wordcamp.org/2023/call-for-sponsors/#bronze-10-000-125\"><strong>Sponsor WordCamp Kerala<br /></strong></a>We received an unprecedented response to our call for sponsors, and most of our sponsorship tiers have sold out. A big thanks to our community for this warm response and support! Nonetheless, <a href=\"https://kerala.wordcamp.org/2023/call-for-sponsors/#bronze-10-000-125\">we still have some available sponsorship options</a> for interested applicants. </li>\n\n\n\n<li><strong><a href=\"https://kerala.wordcamp.org/2023/call-for-volunteers/\"><strong>Apply to be a Volunteer</strong></a><strong> </strong>and be a part of the team that helps organize WordCamp Kerala 2023.</strong> Deadline: February 28th 2023, 11:59 PM IST.</li>\n</ul>\n\n\n\n<p>And don’t forget to post about this event on your social media handles for all WordPress enthusiasts. Feel free to <a href=\"https://twitter.com/intent/tweet?url=https%3A%2F%2Fkerala.wordcamp.org%2F2023%2Ftickets%2F&text=\">Share about us on Twitter</a>, <a href=\"http://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fkerala.wordcamp.org%2F2023%2Ftickets%2F&title=\">write about us on LinkedIn</a>, or<a href=\"https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fkerala.wordcamp.org%2F2023%2Ftickets%2F\"> post about us on Facebook</a>. Psst… You can also post about our event on your (WordPress-powered) blog or on Tumblr! Don’t forget to join the discussion on WordCamp Kerala 2023 using the hashtag <strong>#WCKerala</strong> hashtag on all social media platforms.</p>\n\n\n\n<p>Looking forward to seeing you at our lovely little event celebrating WordPress, at the beautiful coastal city of Kochi, on March 25th, 2023! </p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://kerala.wordcamp.org/2023/\">Get your tickets for WordCamp Kerala 2023!</a></div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 25 Feb 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:7:\"jyolsna\";s: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:130:\"WPTavern: WordPress 6.2 Openverse Integration Hotlinks Images, Contributors Propose Uploading to Media Library as a Better Default\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=142305\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:140:\"https://wptavern.com/wordpress-6-2-openverse-integration-hotlinks-images-contributors-propose-uploading-to-media-library-as-a-better-default\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1911:\"<p>WordPress 6.2 is set to introduce an integration with Openverse that allows users to quickly insert free, openly-licensed media into their content. It was not readily apparent when the feature made its debut in version 15.1 of the Gutenberg plugin that the inserted images are hotlinked.</p>\n\n\n\n<p>WP Engine developer Phil Johnston <a href=\"https://wordpress.slack.com/archives/C02QB2JS7/p1677269705274569\">brought up this issue</a> in the #core-editor channel on WordPress Slack today. WordPress core contributor Paul Biron confirmed images are hotlinked when first inserted but can be added to the site’s Media Library using the “Upload” tool, which is located in the Image block toolbar after Openverse inserts the image.</p>\n\n\n\n<img />\n\n\n\n<p>Hotlinking is generally considered a bad practice, as it uses another site’s bandwidth to display the asset. Hotlinked images can easily get renamed or removed from the source site, which can negatively impact the sites that are displaying them.</p>\n\n\n\n<p>WordPress core contributor Jeremy Herve opened a <a href=\"https://github.com/WordPress/gutenberg/issues/48394\">ticket</a> yesterday with concerns about the hotlinking and suggested it would be better to upload the images by default.</p>\n\n\n\n<p>“I would suggest uploading the image to one’s site once picked and inserted,” Herve said. “This way it would remain available on the site, whatever may happen to the service or the original image. Of course, the image attribution should remain in the caption.”</p>\n\n\n\n<p>Johnston also suggested hotlinking the images might be a privacy concern if it allows the host to gather data about the device loading the image.</p>\n\n\n\n<p>WordPress may end up changing the default behavior for Openverse inserts, but in the meantime, users should be aware of how this feature works and where to find the Upload tool. </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, 25 Feb 2023 04:48: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: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:82:\"WPTavern: Prison Journalism Project Launches Prison Newspaper Project on WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=142256\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/prison-journalism-project-launches-prison-newspaper-project-on-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5036:\"<p>The <a href=\"https://prisonjournalismproject.org/\">Prison Journalism Project</a> (PJP), a non-profit organization founded in April 2020, trains incarcerated writers to be journalists and publishes their stories with the goal of empowering them to be a vital voice in criminal justice reform. Over the past three years, the project has published over 1,700 pieces of work from more than 600 incarcerated and incarceration-impacted <a href=\"https://prisonjournalismproject.org/our-writers/\">writers</a> representing 180 prisons across 35 states and three countries.</p>\n\n\n\n<p>The project is bringing important issues to light, such as <a href=\"https://prisonjournalismproject.org/2023/02/24/its-still-a-covid-19-emergency-in-here/\">diminishing access to programs that further rehabilitation due to COVID-19</a> and the <a href=\"https://prisonjournalismproject.org/2022/02/04/the-failure-of-drug-treatment-in-prisons/\">failure of drug treatment in prisons</a>, first-hand accounts from incarcerated individuals that expose the inadequacy of state and federal prisons to meet the needs of those in their care. These stories and more are featured on the organization’s website, which is powered by WordPress and <a href=\"https://newspack.com/\">Newspack</a>, a project from Automattic that provides a publishing platform for small and medium-sized news organizations. Newspack includes professionally designed themes and a set of pre-configured plugins, like Newspack Newsletters and WooCommerce Subscriptions, that help drive audience and revenue. </p>\n\n\n\n<p>This week the PJP <a href=\"https://prisonjournalismproject.org/prison-newspaper-project/\">launched</a> the Prison Newspaper Project, which aims to connect prison publications with a broader general audience, including educators and researchers. At its peak, U.S. prisons running their own newsrooms published 250 prison papers in 1959. The prison press has declined significantly since then, despite massive improvements in the available technology for telling their stories. As of February 2023, the PJP counts 24 operational, prisoner-run news publications across 12 states.</p>\n\n\n\n<p>The new Prison Newspaper Project has indexed these publications into a <a href=\"https://prisonjournalismproject.org/prison-newspaper-directory/\">prison newspaper directory</a>. It also has a new category section on the site called “<a href=\"https://prisonjournalismproject.org/category/from-prison-newspapers/\">From Prison Newspapers</a>,” where the organization highlights and amplifies the work of incarcerated writers across various publications. Their work is republished to PJP’s wider audience, offering a window into the incarcerated population and the conditions where they are living.</p>\n\n\n\n<p>While most of the prison newspapers in the PJP’s directory run on legacy systems or are only available via print-versions with digital archives, a few have online publications. <a href=\"https://sanquentinnews.com/\">San Quentin News</a> is one that runs on WordPress, publishing beautiful stories of the humanity and artistry of those behind bars. One story features San Quentin artist Idalio Villagran, who “takes prison-constrained creativity and resourcefulness to another level, crafting beautiful roses of various colors from state-issued bread and Kool-Aid.”</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://sanquentinnews.com/roses-are-red-mostly/\">Roses are red . . . mostly</a></blockquote>\n</div>\n\n\n\n<p>Another post features the work of San Quentin artist Edgar Zarate Martinez, who is keeping his Mexican cultural heritage alive through his paintings that reflect his yearning for his family.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://sanquentinnews.com/for-love-and-honor/\">FOR LOVE AND HONOR</a></blockquote>\n</div>\n\n\n\n<p>PJP was founded by Yukari Iwatani Kane and Shaheen Pasha at Penn State University in 2019, after teaching journalism at San Quentin State Prison and Hampshire County Jail in Massachusetts.</p>\n\n\n\n<p>Most of the other indexed prison publications don’t have an online presence, so the Prison Newspaper Project is vital for connecting them and bringing more exposure to prison journalism. Getting these publications online isn’t part of the current scope of the project, but there is a big opportunity here to modernize these newsrooms with WordPress and help them find a global audience.</p>\n\n\n\n<p>The Prison Newspaper Project is committed to regularly updating the list of active publications in the directory. People can submit newspapers or magazines not yet listed by emailing <a href=\"mailto:editorial@prisonjournalismproject.org\">editorial@prisonjournalismproject.org</a>.</p>\n\n\n\n<p>“As this section grows, we hope to offer you more resources on the history of this remarkable part of the fourth estate,” Prison Newspaper Project Editor Kate McQueen said.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 24 Feb 2023 23:08:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:34:\"Post Status: WordCamp Asia Wrap-up\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=147369\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/wordcamp-asia-wrap-up/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6788:\"<p>I know you’re wondering. And yes, I showered.</p>\n\n\n\n<p>As a matter of fact, the WordCamp Asia team was very deliberate in considering disability needs from the start of Contributor Day through to the announcement of WCAsia 2024 at closing remarks. The hotel was perfect. The venue had elevators and automatic doors (or security stationed to open doors). I couldn’t have asked for more.</p>\n\n\n\n<h2 id=\"h-wcasia-by-the-numbers\">WCAsia By the Numbers</h2>\n\n\n\n<img width=\"752\" height=\"564\" src=\"https://cdn.poststatus.com/wp-content/uploads/2023/02/IMG_5800-752x564.jpg\" alt=\"\" class=\"wp-image-147370\" />\n\n\n\n<p>You can see by this screen that WCAsia succeeded in attendance and contributors. In addition, there were 60 speakers, 53 orgainzers, over 80 volunteers, and 29 people on the AV team.</p>\n\n\n\n<h2>Contributor Day</h2>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">A sneak peak of the photographs we will be publishing from <a href=\"https://twitter.com/hashtag/WCAsia?src=hash&ref_src=twsrc%5Etfw\">#WCAsia</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f913.png\" alt=\"?\" class=\"wp-smiley\" /><br />Huge thanks to the Contributor Day Team Leads! <a href=\"https://t.co/A4hpwank6U\">pic.twitter.com/A4hpwank6U</a></p>— Shusei Toda (@shuseitoda) <a href=\"https://twitter.com/shuseitoda/status/1627617457988050944?ref_src=twsrc%5Etfw\">February 20, 2023</a></blockquote>\n</div>\n\n\n\n<p>I was fortunate to be a table lead for Contributor Day. We onboarded many photographers who submitted photos to the WordPress Photo Directory for the first time. Topher DeRosia and I moderated almost 250 photos in one day, while discussing with contributors what makes a good photo, what isn’t allowed to be added to the directory, and how every contributor gets a badge on their .org profile. </p>\n\n\n\n<p>From what I heard from other table leads, every one of the teams onboarded new contributors and accomplished their goals for the day. It was truly inspiring.</p>\n\n\n\n<h2>Sponsors</h2>\n\n\n\n<p>Instead of being off in another part of a building, the sponsor area was in the center of it all. To get from point A to any other point you either had to go through or around the edges of the sponsor booths. I imagine this was incredibly helpful for sponsors, and, honestly, it made it the perfect place to run into people, make connections, renew connections, and grab some awesome swag.</p>\n\n\n\n<h2>The Selfie Challenge</h2>\n\n\n\n<p>I put out a challenge that if people posted selfies with me I would donate $5 per selfie to <a href=\"https://bigorangeheart.org\" target=\"_blank\" rel=\"noreferrer noopener\">Big Orange Heart</a>. (Up to $500 total.) I’m please to say that not only did I meet that goal (with well over 100 selfies with our amazing community) but <a href=\"https://twitter.com/carlhancock/status/1628156351636508672?s=20\" target=\"_blank\" rel=\"noreferrer noopener\">Carl Hancock of Gravity Forms matched it</a>, and <a href=\"https://twitter.com/insta_wp\" target=\"_blank\" rel=\"noreferrer noopener\">Vikas Singhal of InstaWP</a> matched it at 50%. All told we raised $1250 for BOH!</p>\n\n\n\n<h2>Q&A with Matt Mullenweg</h2>\n\n\n\n<p>I asked a question to Matt during the Q&A Friday morning.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>With the wave of layoffs and hiring freezes we have seen in the WordPress community lately, what do you think we, as a community, can do to create more jobs in our ecosystem and stop the anxiety and fear that comes with layoffs like this?</p>\n</blockquote>\n\n\n\n<p>Matt’s reply was a bit less than I hoped, basically encouraging anyone who has been laid off to sharpen their WordPress skills, market themselves as freelancers to build a portfolio, and encourage local businesses to get on WordPress.</p>\n\n\n\n<p>Some of the people who have been laid off are already big names in WordPress and have a portfolio to back it up.</p>\n\n\n\n<p>So it still begs the question – how can we support those who have recently lost jobs in massive layoffs and what does it say about the adoption of WordPress if companies are scaling back? While I don’t have the answer, I’m watching closely.</p>\n\n\n\n<p>And if you find yourself job searching in WordPress here are a few resources:</p>\n\n\n\n<ul>\n<li><a href=\"https://poststatus.com/jobs/\">The Post Status Job Board</a></li>\n\n\n\n<li><a href=\"https://WPCareerPages.com\" target=\"_blank\" rel=\"noreferrer noopener\">WPCareerPages.com</a> </li>\n\n\n\n<li><a href=\"https://twitter.com/search?q=%23wordpressjobs&src=typed_query\" target=\"_blank\" rel=\"noreferrer noopener\">Twitter posts</a></li>\n\n\n\n<li><a href=\"https://www.underrepresentedintech.com/resources/\">Underrepresented in Tech Resources</a></li>\n</ul>\n\n\n\n<h2>Photos, Photos, Photos</h2>\n\n\n\n<p></p>\n\n\n\n<p>To see how truly impactful the first WordCamp Asia was, one has only to look into all of the smiling faces captured in selfies and more.</p>\n\n\n\n<p>Here are a few places to look:</p>\n\n\n\n<ul>\n<li><a href=\"https://twitter.com/search?q=%23WCASIA&src=typed_query\" target=\"_blank\" rel=\"noreferrer noopener\">Twitter #WCAsia</a></li>\n\n\n\n<li><a href=\"https://photos.app.goo.gl/WEUjLaPbS2zyz9fM6\" target=\"_blank\" rel=\"noreferrer noopener\">Google Photos</a></li>\n\n\n\n<li><a href=\"https://www.instagram.com/michelleames/\" target=\"_blank\" rel=\"noreferrer noopener\">My Instagram Photos of Bangkok</a></li>\n</ul>\n\n\n\n<h2>Thanks to the Organizers and Volunteers</h2>\n\n\n\n<p>WordCamp Asia seemed to go off without any issues (though anyone who has ever organized a WordCamp knows there are always hiccups). If there were, the attendees didn’t see them. (Other than the technical glitches in the Q&A with Matt Mullenweg, which was still handled very well.)</p>\n\n\n\n<p>I would add my thanks to all of the voices praising the organizers and volunteers that made WordCamp Asia so amazing. From the updates on the website to the after party, you all provided information, hospitality, and an incredible warmth to the event. </p>\n\n\n\n<p>Thank you a million times over.</p>\n\n\n\n<p>WordCamp Asia 2024</p>\n\n\n\n<img width=\"752\" height=\"564\" src=\"https://cdn.poststatus.com/wp-content/uploads/2023/02/IMG_5827-752x564.jpg\" alt=\"\" class=\"wp-image-147581\" />\n\n\n\n<p>And to the organizers for WC Asia 2024 – wishing you the best as you continue this new legacy. I know you’re up to the challenge!</p>\n\n\n\n<img width=\"752\" height=\"564\" src=\"https://cdn.poststatus.com/wp-content/uploads/2023/02/organizers-752x564.jpeg\" alt=\"\" class=\"wp-image-147582\" />WC Asia 2024 Team (photo credit <a href=\"https://twitter.com/ratneshsonar\" target=\"_blank\" rel=\"noreferrer noopener\">Ratnesh Sonar</a>)\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 24 Feb 2023 05:29: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:18:\"Michelle Frechette\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:74:\"WPTavern: Automattic Releases Bibimbap, a Free Block Theme for Restaurants\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=142258\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wptavern.com/automattic-releases-bibimbap-a-free-block-theme-for-restaurants\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2858:\"<p>Automattic has a new theme in the WordPress Themes Directory. <a href=\"https://wordpress.org/themes/bibimbap/\">Bibimbap</a>, named for a beloved Korean comfort food, is a restaurant theme. It is described as “simple and fun” but does not come with a live demo, so users will need to be prepared to work with patterns to get their restaurant sites put together.</p>\n\n\n\n<p>The home page pictured in the screenshot displays a full width Cover block with an image as the background, a call to action, and some contact information. Bibimbap features the Cooper Hewitt typeface throughout for paragraph text and headers.</p>\n\n\n\n<img />\n\n\n\n<p>The theme comes with five custom block patterns for building restaurant websites:</p>\n\n\n\n<ul>\n<li>Contact pattern with a map, location, and hours</li>\n\n\n\n<li>Cover block pattern for restaurant Specials</li>\n\n\n\n<li>Default footer</li>\n\n\n\n<li>Restaurant menu</li>\n\n\n\n<li>Menu add-ons</li>\n</ul>\n\n\n\n<img />\n\n\n\n<p>I took the theme for a test drive and found that is not very intuitive in its current state, although the patterns are nicely designed. When first installed and activated on a new site, the theme looks blank with nothing in place and no hint of how it can be made to look like the screenshot.</p>\n\n\n\n<img />\n\n\n\n<p>The most ideal experience a block theme can provide gives the user a ready-to-go website that looks like the demo, or at least provides a full-page pattern that is easy to insert. Bibimbap has missed a few opportunities to make the theme more user-friendly. Although it is also available on WordPress.com under the Business plan, the preview is similar to the experience of installing it on a self-hosted site. With no live demo available, it’s difficult to know where to go after installing it.</p>\n\n\n\n<p>In the Site Editor, users will need to navigate to the <em>wp-custom-template-home</em> template to edit the home page template. If this is a new website, users will also want to create a new page and assign it to use the <em>wp-custom-template-home</em> page template to get the right design.</p>\n\n\n\n<p>The home page header design is not available via a pattern, which would make the theme so much more versatile and easy to use, especially in the case of multi-page websites.</p>\n\n\n\n<p>Although the theme comes with just a handful of patterns, they work well dropped onto the page in any order. </p>\n\n\n\n<img />\n\n\n\n<p>Overall, this theme is a good option for those who know their way around WordPress and the Site Editor. It makes it fairly quick to build a restaurant website with a cohesive design. The problems with user-friendliness can be easily remedied with a few full-page patterns and a bit of thought towards the experience after activating the theme. <a href=\"https://wordpress.org/themes/bibimbap/\">Bibimbap</a> is available for free from WordPress.org.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 24 Feb 2023 03:55:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:63:\"Post Status: Launching a WordPress Product in Public: Session 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:32:\"https://poststatus.com/?p=147564\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/launching-a-wordpress-product-in-public-session-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:74373:\"<div class=\"is-layout-flow wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\"><a href=\"https://twitter.com/hirethere\">Corey Maass</a> and <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> share the messiness of building a WordPress product live. They reveal the initial version of <a href=\"https://crop.express/#welcome\">Crop.Express</a>, a plugin designed to crop a featured image within the WordPress workflow and discuss their progress and ongoing development. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">53</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p>In this episode, <a href=\"https://twitter.com/hirethere\">Corey Maass</a> and <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> share their initial version or MVP of the product they are building, <a href=\"https://crop.express/#welcome\">Crop.Express</a>. Together they work through enhancing UX, selecting the right business model, crafting marketing messages, and more.</p>\n\n\n\n<p><strong>Top Takeaways:</strong></p>\n\n\n\n<ul>\n<li><strong>Work Out the Workflow. </strong>You will teach people how to use your product with demos or tutorials. While you want to make adjustments to improve UX, you don’t want to constantly change the workflows for your product. Being thoughtful on the front end can result in better usability and less change.</li>\n\n\n\n<li><strong>Business Models. </strong>Building a product also means determining a business model.<strong> </strong>Offering some functionality for free can gain exposure for a base product. Adding a pro or paid version with increased value to deliver a better end product for a customer.</li>\n\n\n\n<li><strong>Focus on Feedback.</strong> As a product builder, you work to anticipate pain points and solve for them. With a quality product, you will solve real struggles for users. But there is a reason users are uninstalling. Accessing their input and experience could be the key to taking your product to the next level.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"?\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://crop.express/\">Crop.Express</a></li>\n\n\n\n<li><a href=\"https://www.canva.com/\">Canva</a></li>\n\n\n\n<li><a href=\"https://elementor.com/%5C\">Elementor</a></li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/hirethere\">Corey Maass</a></li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"?\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<h2>Session 2 Corey & Cory Launch a WordPress Product Live </h2>\n\n\n\n<p>Cory Miller: [00:00:00] Hey everybody, welcome back to post status. Where we’re, um, Corey Moss and I are session two. </p>\n\n\n\n<p>Launched a WordPress product in public, and you’re getting to see all the, you know, um, kinks and rough edges. But what we hope really comes through is that we’ve had these really good conversations and we’re like, we’re okay with not, we’re being imperfect and showing how this product works, at least with us. </p>\n\n\n\n<p>So hopefully it helps somebody else inspire somebody to do better. Um, but, all right, Corey, I have to be the first admit as my partner in this, um, donate my homework. Excuse, excuse. I was frantically in between meetings, trying to like, be creative with the read me text. Mm-hmm. Um, But I, um, so I have to say that first and foremost, and then second. </p>\n\n\n\n<p>I know you shared a cool feature that we were talking about that I was like, Hey, we can put this on the backlog. And you’re like, no, it’s here, it [00:01:00] is . Um, so I haven’t even got to see that. But, um, that, that’s kind of my update. But what, what things do you have or want to talk about? </p>\n\n\n\n<p>Corey Maass: Um, yeah, I, it, it. Uh, like I’m on top of my stuff, you know, by getting these updates to you. </p>\n\n\n\n<p>But I mean, I’m in the same boat. I promised, uh, last Wednesday that, you know, within a day or two I would have this other feature implemented. And it was like last minute on Friday that I actually, or even Monday, that I was like, oh crap, I owe us this thing. So, um, yes, technically I got my paper written and handed in, uh, and you didn’t, but it doesn’t mean I wasn’t up until 6:00 AM the, the morning of writing the paper. </p>\n\n\n\n<p>Uh, you know, so, I mean, again, these are, these are the realities. You know, I, I’ve [00:02:00] got client work, I’ve got numerous products that need updating and bugs fixed, and, uh, life goes on. And so, you know, we’ve, we’ve fit this stuff in, in between. When we can. I mean, and, and I think that that’s too, like where we’re at, right? </p>\n\n\n\n<p>Like right now, this is, uh, an idea that we’re, you know, we’re still in the garage phase or we’re still in the, like, we can’t make this a priority yet because it’s not out there. It’s not, we don’t have users to satiate, we don’t have revenue to chase. We don’t have, you don’t, you know, you’re doing the marketing and you don’t have anything to market. </p>\n\n\n\n<p>And so, I mean, this is, this has been my MO for a long time where if I’ve got a new idea for a new product, it’s just gotta get shoved in between all the other stuff that is at the moment, more important. </p>\n\n\n\n<p>Cory Miller: It’s always a game. And this of juggling, I think. And I [00:03:00] swore to myself, I was like, I’m gonna stop juggling, but I juggles for so long with Ithe stuff. </p>\n\n\n\n<p>It’s like, as an entrepreneur and doing these type of things, you’re owning all the responsibility and, um, but it’s really good to have someone that understands we’re all juggling, um, back and forth. Um, well, would you want to like, look at where we’re at now from the plugin side, since you’ve got, you’ve done your, you’ve done more than your homework, by the way. </p>\n\n\n\n<p>Um, do you wanna share your screen? Do you want me to share? </p>\n\n\n\n<p>Corey Maass: Yeah, let me, let me share because I’ve got it, um, set up pretty readily here, I think. Um, so what we’re talking about, um, is the, the very first version of this plugin and I just don’t wanna. Because we are so professional, um, [00:04:00] you know, I need to carefully culminate the experience that people will have. </p>\n\n\n\n<p>Um, how do I top left or Let’s do this. Move the screen. Full screen. Uh, move the window. . All right. Um, </p>\n\n\n\n<p>nope, that won’t work. Share screen. Let’s try this again. Where’s the plate? Blue window. There we go. Share. All right. So hopefully you can, you’re seeing a, a WordPress install. Yep. Um, so, uh, for the nerds out there, um, I’ve got this, um, are we still recording? </p>\n\n\n\n<p>Cory Miller: No, we are now recording again, . Oh, awesome. I pause it. </p>\n\n\n\n<p>So now we’re [00:05:00] actually recording . So we’re on session two. Everybody, for the recording sake of launching the WordPress product in, in, in public. And you’re seeing all the foibles, particularly mine. But Corey’s now showing us 0.001 version of the. Right. </p>\n\n\n\n<p>Corey Maass: Um, yeah, what everybody missed is us discussing how, just how, uh, we are the epitome of professionalism and, um, it all works out in the end. </p>\n\n\n\n<p>But the, you know, part of the point of, of this whole experiment recording is, is to see the kind of, uh, the messiness, the behind the scenes, the, um, so, uh, for the nerds, uh, I’m using, I, I use local WP to develop locally, um, and to run sites locally and stuff like that. So that’s what you’re seeing here is just a local site of vanilla WordPress install. </p>\n\n\n\n<p>And, um, so we’ve got version, you know, 0 0 1 [00:06:00] installed, um, crop Express, and then where that puts us is, We had talked about lots of different features, um, but decided that our m v p, our, let’s just add some value to the world version, um, is, is just the ability to crop the featured image. Um, so what we’re doing here is, uh, we still have a featured image panel on the side here. </p>\n\n\n\n<p>Um, whoops. Oh, come on. Don’t. We have a featured image panel on the side in, in the block editor. Um, but this is actually our custom panel and we’re hiding the built-in featured image panel. Um, and we say select and crop an image. And so here’s the new UI that I was talking about. Um, I’ve moved some things around and, um, I still think that I want to make one more change where I wanna put these two buttons on top of each other [00:07:00] with a sort of, um, broken image or a, a place. </p>\n\n\n\n<p>You know, a, your image will appear here soon because right now if I say upload an image, um, and I choose an image, um, It just, right now it just says, you know, here is the, the name of the file selected. But I think much more, you know, to most people, they’re gonna wanna see a little thumbnail of the image that they’ve selected, again, to kind of prove like, okay, wait, I chose the right one. </p>\n\n\n\n<p>Um, and so then you choose, uh, this is when you’re cropping it. Do you want to crop a square? Do you want to crop 16 nine? Um, and then the first fanciness that, uh, you said, boy, it would be slick if was being able to crop a circle. So that’s now there, but, so we’ll start with a square. In a square, you say, crop it, and you get into the cropper. </p>\n\n\n\n<p>And so this is where you can zoom around and you select your image. </p>\n\n\n\n<p>Cory Miller: [00:08:00] And um, Hey, real quick, Corey, how does it go if you want to crop back out, like you go, oh, it’s too tight. Will it, can you push back out? </p>\n\n\n\n<p>Corey Maass: Um, so there’s, there’s zoom in and out here. Ah, ah, okay. Okay, okay. On the bottom because Yeah, I didn’t, what the, the better way to, to manipulate this is actually the, the mouse wheel. </p>\n\n\n\n<p>Like I’m zooming in and out here with the mouse wheel. I got you. Um, but we can’t assume that everybody has a mouse wheel. Um, right. So, um, I think eventually maybe we want a slider, but for now, I just wanted us to have something so you can zoom in, um, and then, and then move it around kind of thing. Okay. </p>\n\n\n\n<p>Cory Miller: Can you go back to the previous screen first? Oh, go ahead. </p>\n\n\n\n<p>Corey Maass: If you have something else. Oh, just, and, you know, so there’s, um, yeah, lots of different ways to kind of move this around. It’s, I think it’ll take a [00:09:00] little, everybody’s gonna have to kind of get used to it. They’ll get used to it. Um, yeah, there’s also a new preview in a new window. </p>\n\n\n\n<p>So like if you’ve, if you’ve zoomed in before you actually set crop this and set this as your featured image, um, it’ll open a new window with the result. So you can, you can see it. Oh, that’s cool. Um, so if you go back, you can say, crop a circle and go to crop it. And so there’s your circle. Um, and that will now save as a p and g with transparent around it. </p>\n\n\n\n<p>So this is, you know, I think again, when, when you mentioned it, I was like, oh snap, that’s gonna be really slick because it’s now really common that you’ve got avatars images of people are circles. I think that’s just a very common pattern. So the fact that we can offer that here, um, is very cool. And then the, the other new. </p>\n\n\n\n<p>What I was [00:10:00] insisting on, um, as of last week was, um, you had said, okay, maybe version one, but it was like, no, we need this. So the circle is a nice to have. I think that’s gonna be really fun and cool to talk about as a feature, but not totally necessary. Whereas choosing an image from the media library to me, was a non-starter. </p>\n\n\n\n<p>Cuz you, once you brought it up, I was like, yeah, you can’t, again, you know, one of the things I kept talking about last week was I’m trying to do a lot of product development for this from the perspective of my clients. And I’m like, my clients half the time, like they’ll crop an image and then they’ve got no idea. </p>\n\n\n\n<p>Once they’ve uploaded it, they’ve got no idea what happened to it. Is it on the desktop? Is it in their download folder? Whatever, whatever. So, um, we need to be able to essentially recover, you know, start over using an image from the media library. So that’s now supported. Again, you select an image, [00:11:00] pick your shape and size and all that. </p>\n\n\n\n<p>And then, you know, here’s one that I’ve pre previously cropped as a square. So that’s what you’ve got. But you can like zoom in on our little person here. Um, are you double </p>\n\n\n\n<p>Cory Miller: clicking or are you doing your scroll? </p>\n\n\n\n<p>Corey Maass: Well, uh, uh, I’m, I’m, uh, moving the box around. Okay, there we go. Yeah, so, and that’s where it’s like, I’m clicking and dragging. </p>\n\n\n\n<p>Yeah. So, yeah, it’s, go ahead. </p>\n\n\n\n<p>Cory Miller: So I’m side bared on like product for a second and more, so I wouldn’t even do this, explain it if we weren’t live, but, um, cuz I know, you know, these things, I’m, this is where I dig in on product personally is I go, okay, I use myself as the default, but I know that’s, there’s some ancient practices I have, for instance, but, I think our biggest thing is showing them how the workflow, like it’s gonna take out this amount of time [00:12:00] for you to go over here from a marketing side too. </p>\n\n\n\n<p>And product is like, how are you cropping today? It’s probably piece together stuff. Maybe somebody’s in Canva or something like this. But the workflow we’re doing is like you’re writing up post-it. You go in, what’s your, you know, do you do your feature demos first? Do you do it third? And when you do that, you’re gonna save this workflow over here. </p>\n\n\n\n<p>Mm-hmm. . And the re, the reason why I was just asking some of these questions is to know myself and to make sure I calibrate and go, okay, we’re gonna be teaching people. Mm-hmm. because you get, you teach somebody a workflow and you don’t want to change workflows very often. And so that’s why I was just asking cuz I, you, you’ve seen this a hundred times, but like any little edge in the flow of the process is something we’ll be watching where people get tripped up. </p>\n\n\n\n<p>So if I understand that, I can help . Um, so I think that was really good. Could you go back to [00:13:00] the previous screen for a second? Sure. </p>\n\n\n\n<p>Corey Maass: So from the work, and I think, I think where you, you know, what you’re bringing up now is exactly the right thing at the right time, because what I’ve been focused on is, to me this is, this is slightly better than a proof of concept. </p>\n\n\n\n<p>Yeah. It’s like we, we have now proven that we can upload an image or select an image. We can crop it in a few different ways. It saves as the featured image, all of, you know, I’m clearly, I’m using the WordPress blue. These are not pretty things, you know, the buttons are inconsistent in, in inconsistent places, you know, so now is the right time for you to start looking at this from a products perspective and Me too, and going, okay, so what’s actually gonna be, We don’t want to deviate too far from like WordPress patterns that people are used to, but this is where we start to make it our own product and a product that’s fast and easy to [00:14:00] use. </p>\n\n\n\n<p>Cory Miller: So I think my first thing, um, reaction to this is it’s the, it does the job we need where we don’t have to go into too many of the, you know, really fine tuned ui ux stuff, but like, it does the job. Mm-hmm. . But we were talking last week about like, you know, opinions trying to in, kind of push a reaction back from, um, the users. </p>\n\n\n\n<p>Uh, I just wanna mention that note. I don’t think I have anything particular, but like, to me, this is functional, what we’re trying to do, like this gets the job done and it’s maybe not the most elegant, modern design we’ve ever seen, but it, it’s clear, um, And he gets the job done. </p>\n\n\n\n<p>Corey Maass: Yep. Doesn’t work on mobile. </p>\n\n\n\n<p>Uh, I don’t know if it ever will, cuz that’s kind of a lot of functionality to try to do on a phone. [00:15:00] Um, but at some point we will review that. </p>\n\n\n\n<p>Cory Miller: Um, what I’m curious about is we have selected five ratio sizes and two shapes. We put the functionality, which I think, thank you for putting the media li library in there. </p>\n\n\n\n<p>I think that’s, that, that was a really, really good decision. I just never know if I go, can we get that in there? What that might look from a timeframe, but I love that you made that decision. So it seems like we’ve made some assumptions for them. Like, Hey, here’s the common aspect ratios. What I’m gonna bet like five bucks on is one of our first things we’re gonna get is, can you do, and it’s gonna be this, oh my god, 50 flavors of. </p>\n\n\n\n<p>Uh huh process. But from a product standpoint, if you’re able to take a step back for a second, what do you think will get some reactions from Yeah, </p>\n\n\n\n<p>Corey Maass: I, I think you’re exactly right. And I think that [00:16:00] every, cuz every theme I think has their ideal image, size, shape, et cetera. Um, we, and, and so one of the things that I’ve got in the back of my mind is, um, the next step is, or one of the next things we’re gonna need is essentially I’m envisioning, and this is an assumption, but I’m envisioning there’s, there’s two roles. </p>\n\n\n\n<p>Involved here. One is, again, because from the, from the, from my situation, there’s Corey who controls and sets up the website, and then there’s clients who go in and are publishing story after story. And so Corey needs an admin, like, I don’t want, uh, my clients to have four, three or three four. There’s nothing on our website that’s those aspect ratios. </p>\n\n\n\n<p>Um, and so [00:17:00] I want an admin screen that only admins meaning me have control over that says, you know, what aspect ratios, what essentially what, you know, what options are available for featured images. And I’m gonna go in and I’m gonna say square and 16 nine, not nine 16, and nothing, four three. Um, I might or might not even let them choose a shape, you know, and then, and so I’m gonna clean that up. </p>\n\n\n\n<p>or I’m gonna select options so that then when the client goes in, there’s, you know, there’s one option or some, you know, or something </p>\n\n\n\n<p>Cory Miller: like that. So switching gears over to marketing and mm-hmm. , you know, business model stuff. That’s where I go, okay, that seems like Corey a del, uh, free does this better image cropping outta the box with a lot of template sizes, ratios that like, does a job that could get us bigger [00:18:00] exposure for the base plugin. </p>\n\n\n\n<p>And then I just see right there, the way you were describing, it’s like there’s the pro or the paid side, which is, hmm, I’m a developer, I’m an agency. My clients mess this stuff up all the time. I’m gonna preset it and right there I go. That’s value to an agency. One, they’re gonna get a better end product for their customer. </p>\n\n\n\n<p>They can, they can have some opinions about it, like if you wanna limit them, but like you do this from a client facing side too. But that right there from a business perspective is where we go, okay, there’s the start of our pro. Love it. You know, are we adding some value to that? Like they don’t want them to mess up their theme. </p>\n\n\n\n<p>And, and you know, even on a bigger perspective, maybe there’s 10 people on a website or something mm-hmm. , you know, going in. But, you know, I could think of higher ed in this instance or something where it’s like, no, they shouldn’t have 16 by nine option. Never. Right. You know? </p>\n\n\n\n<p>Corey Maass: Yeah. I, yeah. And [00:19:00] I, I, one of the things that immediately jumps out at, you know, first of all, you, my bad habits are showing, right. </p>\n\n\n\n<p>I think in terms of product and feature. And so I’m like, I’m, I’m by default, I’m, I’m, I go down those rabbit holes immediately and I love that you immediately are like, here are the people . Which my brain doesn’t even, I mean, I’m, I’m talking about me and roles and stuff, but I’m not, it doesn’t register consciously. </p>\n\n\n\n<p>Whereas you immediately are like the difference between a free version, a person, mom and pop shop, or a power user on their own website installing a plugin. They’re still gonna have great options. It’s still gonna bring them a ton of value, which I think is, is awesome. Um, and we can do some simple ways to, cuz it’s like, I don’t want people to install and go, well I need, you know, instead of 16, nine, I need 1610. </p>\n\n\n\n<p>So [00:20:00] uninstall. Mm-hmm. . So we’ll have to think about some ways to give. Some more options so that, you know, we accommodate more people. But I love that you’re immediately going, okay. You know, but, but there’s a different version for a different role. A different kind of person. A different kind of user. Um, cuz I, because I mean, as we always talk about it, it’s like B2C and b2b. </p>\n\n\n\n<p>Yeah. You know, b2b, there’s, there’s more opportunity, there’s more money, there’s more investment in tools and whatnot. So that just makes more sense. </p>\n\n\n\n<p>Cory Miller: This is where I want to be watching, but I never, I have, I go into these things with some kind of a straw man, you know, avatar. Yeah. But the, how it’s worked way better for me is not, I’m not clairvoyant and go exactly this. </p>\n\n\n\n<p>I go, okay, here’s my straw man. We have use cases around that. We think there’s others. And then what I love Corey is [00:21:00] like, Those first responses, even if they’re bad, are helpful. Yeah. But what I tried to train the team and I themes is like try to a long answer in their question. Figure out what are they trying to get done. </p>\n\n\n\n<p>Yeah. But, and then that helps us. Like lineate, it was probably two or three years into Ithe where I was like, oh, it’s do it yourselfers and what we call builders, you know? Mm-hmm. people building stuff for other people and then we could create product better. But my hypothesis for all this is like I wrote down bloggers, anybody that does rapid WordPress content creation. </p>\n\n\n\n<p>Mm-hmm. , that could be our big base, right? Mm-hmm. . And then you just gave me a use case’s, like I’m delivering project to Clint. I don’t want them to mess it up cuz it’s gonna cause problems for us. Ding ding. I just found it’s worth, there’s a value numbers assigned to that. Absolutely. Which we can talk about when we get to like the pro and licensing and stuff. </p>\n\n\n\n<p>Yeah. And we confirmed on the huddle by the way too. Like several of the agency owners were like, oh yeah. [00:22:00] What my challenge will be in marketing, our challenge will be in marketing is I think if we can as succinctly as possible, go see this problem and somebody go, fills that pain going, yeah. Like I did when you go, I’m working on this thing. </p>\n\n\n\n<p>And I was like, I, I instantly felt that pain. That’s when, when we’ll start to see some interesting metrics. A part of this. I think. So like I was thinking like even if we showed this, like, I don’t know how we do this on the marketing set, but you’re like, Hey, I’m, I’m a rapid, you know, content creator type person going in there, and then I have to go over here and find my workflow. </p>\n\n\n\n<p>Yep. You know, and then come </p>\n\n\n\n<p>Corey Maass: back this other site, or I have to open Photoshop, I have to </p>\n\n\n\n<p>Cory Miller: do.dot. And then I think some of the best potential pro features for this are gonna come from the, but I want this. And those are simply the, like the, oh, I want it to be exactly this. [00:23:00] Dimensions. I say it by the pixel, whatever that is, you’re like, ding, ding. </p>\n\n\n\n<p>Maybe that’s something you’ll pay money for. </p>\n\n\n\n<p>Corey Maass: Well, and, and I mean, the other opportunity for this, I think is, um, I’m, I’m very far out of the theme market. Um, it’s not even, even in, in the, the decade plus that I’ve been in WordPress. Like I’ve done mostly custom development, but I’m envisioning like a c f advanced custom fields can get in, can be embedded in other things. </p>\n\n\n\n<p>And I’m kind of envisioning, again, I know we’re, we’re moving more towards, you know, full site editing and all that kind of stuff. But, um, a theme that has our functionality built in, because the theme is built specifically to show off a 16, nine image. You wanna prevent your users from uploading anything that isn’t [00:24:00] 16.9. </p>\n\n\n\n<p>And so I can also see some sort of like the developer version that, that is embeddable, you know, as a must use plugin or something that, um, yeah. You know, so then, so then the theme, because imagine, uh, a theme developer, again, if a, if, if my experience and assumptions are correct, um, a, a theme developer is getting hit with tickets that are like, your demo looked great, but then as soon as I started uploading my pictures from my phone, the layout’s broken. </p>\n\n\n\n<p>You know, what the hell? So, you know, if there was, if a, if it was embedded or built into a theme that had the, that limited the end user from making mistakes, you know, which isn’t really them making a mistake, but you know what I’m saying? </p>\n\n\n\n<p>Cory Miller: Um, yeah. So let me say this coming before I do these, cuz I don’t want it to think that we’re gonna, I don’t want it to. </p>\n\n\n\n<p>Bloat V1 release. Um, I think this is ready for v1. [00:25:00] I agree. The second thought I just had is when you should keep talking about themes. I think about, I, I wrote down here, cadence Astra, generate, press, whatever. Uh, I mean, let’s throw in elementary in there. Um, I’ve got at least three of those four connections to say like, it might be worth us seeing what, let’s say cadence for instance. </p>\n\n\n\n<p>Um, we run that at posts, like, okay, what are those features in their themes? And maybe take a browse, but we have connections with these theme groups mm-hmm. To say like, we could get some adoption through helping their user. You know, we’re a third party free add-on kind of thing. But that could help us get some adoption. </p>\n\n\n\n<p>And that’s something I can, I can put on my plate, uh, for sure is to one, look around some of those themes and just see, um, , but you know, those four as elements or technically isn’t a theme, but you know, cadence [00:26:00] Astra generated press are hot themes. Mm-hmm. , you know, that we can get some adoption for, </p>\n\n\n\n<p>Corey Maass: you know, like, and I’m, and I’m a Beaver Builder user deeply, but, and they allow, and I know Elementor also allows, uh, custom modules. </p>\n\n\n\n<p>So again, down the road, if we think that there’s a market for this, then a, there’s the Beaver Builder Image module. Elementor I’m sure has the similar, you know, but there’s a, </p>\n\n\n\n<p>Cory Miller: we could just hook into And that’s another paid pro feature too. </p>\n\n\n\n<p>Corey Maass: Exactly. You know, I love it because, I mean, people, people buy. </p>\n\n\n\n<p>Other, other add-ons or additional modules or module sets or whatever. Like, I don’t, I, um, I don’t want to get too far down there, but that’s also like, I love the, the, uh, obviously as a, as a developer, I am most comfortable with developing as marketing. And so, you know, integrating with Beaver Builder, if we show up absolutely on, on their [00:27:00] marketplaces, then people are going, oh, what’s this Crop Express thing? </p>\n\n\n\n<p>Cory Miller: I just talked to Robbie a couple days ago on Slack, so Yeah, absolutely. I should have included B Builder too. Um, so that’s like on the future, that’s on the backlog for the marketing business stuff to get some adoption. But what I’m doing on this course, so, you know, is like building a case. Mm-hmm. of like, we’ve selected a pretty narrow workflow issue, but I, you’re helping me with those thoughts is build a case for that pro side of, oh, cuz I’m already building a case for like, there’s an agency package that’s, Has the pro. </p>\n\n\n\n<p>Yep. That’s, you know, if we can continue to build, find, and build value in this. I, I love that because there’s so many bigger builder Elementor Yeah. Um, developers that use that love it. And both those tools and to go, here’s something that’s gonna make your clients, [00:28:00] well, it’s gonna make your life easier as the agency. </p>\n\n\n\n<p>Cause they’re not gonna put something stupid within the layout . Um, and it won’t slow down their site that causes performance issues. Right, exactly. Or, you know, just doesn’t look right. Yeah. </p>\n\n\n\n<p>Corey Maass: Yeah. And that was the, uh, it’s, it’s sort of a, we, we won’t actually do this, but one of the things that popped in my head when you were talking about how do we illustrate the difference that this. </p>\n\n\n\n<p>Plugin will make for you, as I was picturing, a, uh, a marketing site where all of the images are wrong. Like Yes. The wrong Oh, yes. You know, like it overlapping text or like way too long or whatever. And there’s like, click a button to see the difference that our plug-in will make. And then all the images are like </p>\n\n\n\n<p>Cory Miller: Corey. </p>\n\n\n\n<p>Yes. Like there’s, there’s a page. Like, let’s do that because it’s like, that’s the raw [00:29:00] emotional obvious effect that connects. Like, I, I think I told you, you know, 10 years ago, my, my mom put, and we had feed rotating images in the theme, and it was like, yeah, , you know, just sewing, like showing, Hey, ever, ever have this, there’s a beautiful design, you know, of a site. </p>\n\n\n\n<p>And then the image is just like, . And then go, that’s our, that’s our agency. Marketing thing is like tired of this, like this is a point. </p>\n\n\n\n<p>Corey Maass: Love it. </p>\n\n\n\n<p>Cory Miller: Crop express </p>\n\n\n\n<p>Corey Maass: even. Oh man. Even, even just a carousel. Cuz like, I literally was dealing this with, dealing with this with a client the last couple of days was like a carousel where like an Im, one of the images, not kidding, was this was like as tall as it should be, but an inch wide. </p>\n\n\n\n<p>And then the next picture was like the, you know, and, and they’re like, why is it stretched out? And it’s like, cuz the carousel is forcing it to fill the space, you know? So it’s like if [00:30:00] we just put in a whole bunch of janky images and then was like, click a button or see the carousel where it’s like all of the images are sized correctly without a ton of effort. </p>\n\n\n\n<p>Like now you get it, you know, </p>\n\n\n\n<p>Cory Miller: protect your clients from themselves. Like we would build tools and they’d be like, yeah, you can basically make it as ugly as you want. This is protect your clients from themselves. But there’s that. So we’re fleshing out these two avatars, which maybe this one is. Maybe it ends up being the free one, but it gets to this one, which we think, my hypothesis might be, there’s money here. </p>\n\n\n\n<p>Protect your clients from themselves, protect your work from themselves. Um, but this one could be something that shows, like ever trying to like, add all the tools you crop and like ever. I don’t know, there’s something there, but we’re fleshing out the use case to me of a problem. Then I think there’s more around this base problem, like we’re coming to a belief of, [00:31:00] you know what I mean? </p>\n\n\n\n<p>Like over here it’s like everybody’s built a site and the clients have like rurally screwed it up. Yeah. And, but we’re also hitting a pain point where they’re trying to create content and this is in the way. So I, I love those two avatars. You. </p>\n\n\n\n<p>Corey Maass: Yep. Um, I, the other thing that comes to mind is like, I mean, it’s, it’s protect clients from themselves so that they stop sending you emails. </p>\n\n\n\n<p>Yes. You know, as, or stop opening support tickets. </p>\n\n\n\n<p>Cory Miller: Sean from, uh, Sean Heskes from WP 1 0 1 basically created that, his thing, his entire little empire over there on that scenario, tired of your customers complaining about the, or, you know, asking these sets of questions and that’s how they built it. So, like, that’s part of that marketing material. </p>\n\n\n\n<p>We’ll remember on the pro side is mm-hmm. , you know, stop messing up your work, protect them from themselves. . [00:32:00] </p>\n\n\n\n<p>Corey Maass: Yep. Yeah. And if you can, and if we get so that it’s configurable, so it’s like, okay, you’re setting up a new site for a, for a client. This might be a, a process that you do over and over again, or it might be a one-off, whatever. </p>\n\n\n\n<p>But one of the steps, you know, you’re installing the theme that you like, you’re in, you’re plugging in those templates, page templates, you know, setting up the nav, whatever. And then just one of the things is you install Crop Express. You go in and you say, you know, only let them upload 16, nine. Um, I also think, you know, there’s, there’s others. </p>\n\n\n\n<p>Basically it’s wherever. For me, one of the end goals is wherever WordPress uses images to, ideally wherever WordPress uses images, we’re there for you . Um, but like, you know, we become that, that middle, um, middle layer so that it’s like, oh, you’re in the media library. You can upload these kinds of images [00:33:00] or these sizes and shapes. </p>\n\n\n\n<p>If you are in the, you know, you have a custom post type that’s all about people, you know, you’ve got users, well then you want that circle option, whatever it is. But it’s like being able to configure each one of those SY scenarios and lock it down so that then again, when you know, you’ve got, you’ve got a membership site, you know, if, if a u a new user clicks the Add my Avatar button, They have to crop a circle, you know, things like that. </p>\n\n\n\n<p>And then being able to basically inject our functionality in all those places so that it just, you know, prevents chaos. It prevents all those bugs, it prevents all those layout breaking changes. Um, you know, that, and frankly, anybody interacting with the website could make based on, you know, by uploading images. </p>\n\n\n\n<p>Cory Miller: So it seems like we wanna be paying attention to a lot of how. As we’re scrolling through the web, how people [00:34:00] utilize featured images. Mm-hmm. , and there might be some things here too, like this circle add-on. I would use this just for Mike Demo came on as a new columnist at, uh, post status. And I, I came back to this problem </p>\n\n\n\n<p>And so like, I might go into WordPress somewhere and or this and crop it, so I’ll just can save it rather than trying to hunt it down on the internet. </p>\n\n\n\n<p>Corey Maass: Um, well, and this is, I think, I think the other, the other thing that we wanna do on eventually on the marketing site, right? Like right now, crop Express is a cropper crop express. </p>\n\n\n\n<p>The website is a cropper. Yeah. And so I, I still like the idea of this is a WordPress plugin, but somewhere on the marketing site is like the ability to try this. So there’s a front end friendly. You know, crop an image. And so like, you know, it’s a, it’s a, it’s a nice little web utility. And then also our website subsequently gets listed on all those, you know, infinite number of websites that [00:35:00] list all the free little utilities that are out there. </p>\n\n\n\n<p>You know, all the ones that convert image, image types or compress images or convert PDFs to JPEGs or whatever it is, like Crop Express as a free online simple image crop can get listed. So again, marketing, </p>\n\n\n\n<p>Cory Miller: it’s content built in content marketing. I love that. Exactly. </p>\n\n\n\n<p>Corey Maass: Exactly. Um, </p>\n\n\n\n<p>Cory Miller: well that means we should maybe keep note of that public site too, because like, hey, you’re, you’re right on, there’s another level of adoption that I just kind of glossed over, but the fact that someone would need, like the circle thing, you just need to, you know, there’s the a hundred sites that do all these different things and they sh slam ads at you and you’re like, or you can come here. </p>\n\n\n\n<p>Utility. And then, by the way, if you want to buy, if you need the word press plug in, here it is. That’s Visibility Pro to do that. Mm-hmm. , which leads me all back to co I love that. Like I’ve never had something like this where it’s built in content [00:36:00] marketing, so that’s something to keep track for sure. </p>\n\n\n\n<p>Corey Maass: Um, and I think, I think this is what you just said, I just wanna finish the thought. </p>\n\n\n\n<p>Um, but not only, you know, not only having a crop, but it’s like we basically using the same code base. We have a dozen different crops that are basically just a dozen different configurations of our crop. And so if you google for crop and image in a circle, the circle cropper pops up. And if you crop, if you say a square, the square cropper pops up. </p>\n\n\n\n<p>But it’s all the same thing. So it’s no, it’s no extra, not really any extra work for us, but a phenomenal s e o opportunity. </p>\n\n\n\n<p>Cory Miller: So I just did that. That’s so interesting. Cro. Um, yeah, there’s search stuff I’ll have to look through cause I just Googled that. Mm-hmm. , because I mean, those are, those might be really good ways. </p>\n\n\n\n<p>And again. Okay. So [00:37:00] all that talk front, you know, the actual crop.express website, the plugin and everything. Um, back to like feedback loops. Mm-hmm. . So I think the only other thing be besides meeting Readme done for V1 launch of this and the repo, um, is thinking for me is th on my agenda is thinking through the feedback loops. </p>\n\n\n\n<p>How are we gonna get that feedback? Yep. Because what we want to do is like, I’m not saying we do it on this screen that you’re showing, but like ideally there’d be like, once something else needs something else mm-hmm. and it goes to a mechanism that. You know, a forum, a trailer board, whatever stuff common, combine, whatever we wanna do, but like something where we can like, cuz that’s what I’m most interested in is that feedback loop, you know? </p>\n\n\n\n<p>Yeah, absolutely. Um, um, where they go, I want custom spec, custom specifications. Cool. You’re, we’re working on that in version two or [00:38:00] pro or whatever we, you know, decide to do. Yeah. But the feedback loop to me would be the only thing I can think of before launch. Yeah. Before V1 MVP launch. </p>\n\n\n\n<p>Corey Maass: Yeah. I mean that’s, you know, one of the magic aspects of WordPress plugins is absolutely the WordPress directory. </p>\n\n\n\n<p>And I know a lot of people that’s not, I don’t know if that’s true. There’s more conversation lately about not having a free version. And I, I understand and, and appreciate that perspective, but the, the opportunity that. Is missed. There is the, the discoverability inside that directory. And it’s like, I want, because my, my initial, I say that because my initial reaction is, yeah, well, I mean, first of all, we need to go through the process of getting approved. </p>\n\n\n\n<p>Like that’ll take a week. Um, but just because it’s there, it’s like if you launch an [00:39:00] app online, you know, and, but don’t tell anybody about it. You know, did it happen? Falls in the woods. Yeah. Whereas you put a plugin in the repo, the likelihood is that, you know, you’re, you’re gonna start to get a trickle unless you’re, unless you’re, there are no keywords or you know, you’re using. </p>\n\n\n\n<p>Truly random wording or whatever, but people are gonna start, you know, you have to assume that, that some people search for the word crop and we’re gonna, we won’t be number one, but you know, you’re gonna start to see a trickle of users. So yeah, we, we do want whatever we want from the beginning, we want from the beginning kind of thing. </p>\n\n\n\n<p>Um, yeah, it is, it’s easy enough to add. I mean, there are a couple of options just to flush this out. Like we could link to a Contact us form on the website. Um, we could build a little, you know, the little, a little modal that pops up right in [00:40:00] place, which is probably the right answer, because it’s less friction. </p>\n\n\n\n<p>It doesn’t open a new window. It doesn’t, you know, so it have feedback and it opens a text area. They type and, and we, we get it. Um, so something like that, you know, </p>\n\n\n\n<p>Cory Miller: in, in plugin, you mean in WordPress port. </p>\n\n\n\n<p>Corey Maass: Yeah. Um, not in dashboard, but it’s like looking at, you know, our on, once our modal opens for cropping, we have a little, you know, link. </p>\n\n\n\n<p>It’s like the, yeah, A little link. A little button. It’s like, you know, the, every website now has the, um, help desk or whatever, the little icon that’s always floating in the corner that inevitably pops up with texts, , that you then have to close. Um, you know, but we could have something similar right next to crop, crop, the big crop button. </p>\n\n\n\n<p>Um, we could have a little button that says, you know, feedback. Uh, I mean, we can, we can kind of take this as far as we want, [00:41:00] but I think, and I think inversion 0 0 2, like we can actually on install, we can, we can throw up a little notice or something that’s like, Hey, we’re a new plugin. We’d appreciate feedback, but at least for now, like there is at least a button that will, again, you know, one click type. </p>\n\n\n\n<p>Click send and we get something. </p>\n\n\n\n<p>Cory Miller: Um, so I think if we were able to do something like maybe it’s in that modal, uh mm-hmm. that you just showed me, it’s like request a feature. Mm-hmm. , um, just a little link. Someone that says, request a feature, there’s an action to it, and then they’ll go to the Crop Express site. </p>\n\n\n\n<p>I think see that there’s an online tool too, but the form is there and you’re just like, tell us what you’re wanting. We’re, we’re trying to make content creation easier. We’re not, we’re specifically starting, I guess with image, we’re trying to make image, I don’t know, [00:42:00] there’s some word there of like making your, it’s a part of content creation to me. </p>\n\n\n\n<p>Workflow easier, faster, and then get that feedback that goes to both of our emails, and then we can continue to talk about that. Yep. I think if we could just, if we could maybe put that in a modal. Do you like it? Are you okay with it being in that modal right there? Absolutely. Just like absolutely a little link down somewhere outta the way. </p>\n\n\n\n<p>Corey Maass: Yeah. It’s cuz at that point it’s topical, right? Like you don’t, you know, you, you don’t want it somewhere on the website. You don’t want it hard to find. And so it’s like, I’m cropping, this is pissing me off. Oh look. A link where I can tell them that this is pissing me off. You know? That’s exactly the moment we want to capture their thinking. </p>\n\n\n\n<p>Yeah. So simple. And, and that’s simple enough. I mean, a web form that sends an email is, is, you know, </p>\n\n\n\n<p>Cory Miller: I think if we just do that for launch, we’re [00:43:00] good, man. This looks really nice. That’s what we’re trying to get it to do out. It’s, it’s hitting. Use case. And then we’re opening just the feedback. Channel loop is the biggest thing. </p>\n\n\n\n<p>And having those emails, this is what I did, you know, you like, come up with an idea now. Great ideas. They always suck. the, the good ideas. You’re like, they probably, they might work, you know, but oftentimes you get, I got the Valida and I’m sure you have over the years is like that validation from someone going, I want that. </p>\n\n\n\n<p>Well if so, my bet’s gonna be one of the first like set of customs specification. Mm-hmm. . Um, at least we get some validation for that. Like, right. Oh, they want that. Cool. </p>\n\n\n\n<p>Corey Maass: So like, or we, you know, we’ve, uh, people talk about solving the problem or not, you know, if we solve 60% of the problem or they see the solution. </p>\n\n\n\n<p>Over the [00:44:00] hill. Um, then, you know, then hopefully it’s, cuz it’s what, so I, I think I’ve told you about this before. Like one, the pattern that I, part of what drew me into WordPress plugins as a business opportunity years ago was I saw how. Clients and website users, like I would spend hours and clients would spend, you know, gobs of money hiring to set up these websites, e-commerce, blogs, web apps, whatever it is. </p>\n\n\n\n<p>And so if it’s e-commerce, then they should be, you know, their job is to add new products, to promote products, you know, to try to get sales. If it’s a blog, then their job is to write content. And instead I would see them spend hours, you know, scrolling through the free plugins and going, oh, do I need a to-do list, you know, plugin inside my WordPress install, do I need snowflakes falling because it’s Christmas time, [00:45:00] kind of thing. </p>\n\n\n\n<p>Yeah. And it’s like, it was. It was, it felt like, I mean this is all very, a very cynical view, but I, but I witnessed it. It was like they would essentially, it, you know, it felt like productive procrastination. Um, they felt, it made them feel like they were doing something, but they weren’t actually doing the thing that they were supposed to do. </p>\n\n\n\n<p>Cuz what they’re supposed to do is hard, and I can relate to that. I get that, you know, but, But the discoverability, you know, and this is, this is where I think that comes from, is people will just kind of go in there, here’s, you know, an infinite num, well, there’s 60,000 free plugins, you know, let’s have some fun and try these things and it’ll spark my imagination. </p>\n\n\n\n<p>Um, the problem with that, of course, is that there’s the, everybody, just about everybody is a tire kicker. Mm-hmm. , I’ll install this, try it uninstall, I’ll install this, try this uninstall. Um, depending on, you know, how specific of a problem they’re trying to solve. And so, yeah, we want to, we, you, you [00:46:00] always run the risk of, um, you know, people, people trying it and leaving without getting any indication of, and again, it’s like it solves a problem where it doesn’t is the assumption. </p>\n\n\n\n<p>And that’s kind of like first gen startup thinking. Mm-hmm. , um, Whereas now the better way to look at it is like, does this, especially in the WordPress plugin world, it’s like, does this start to solve the problem? Does this almost solve the problem? Because there’s definitely a, uh, a pattern in WordPress of hobbling together a number of tools to solve the problem overall. </p>\n\n\n\n<p>And so, yeah, how do we, how do we determine that we are almost solving the problem or we are part of that work chain? Or people are uninstalling because it’s useless, or are they uninstalling because it doesn’t quite get them there. But they, but we, if, if we added one more button, We would get them there. </p>\n\n\n\n<p>How do we determine that? So I like your focus on feedback, </p>\n\n\n\n<p>Cory Miller: and the way [00:47:00] I’m always trying to do is sense out pain because people will pain for, you know, the whole str, I can’t remember what the book is, but it’s like, it’s the pain and gain. But I, I’ve spent most of our time with Ed. I themes with the pain just helping. </p>\n\n\n\n<p>I mean, at the first it was like themes, but then with plugins it was solving for some pain point. Now I’m trying to rate this pain right now and then discover if there’s more pain that we could like actually solve that. They go, sh I will pay you to solve this pain point for me. Yeah, I, I think we’ve got some good thoughts there. </p>\n\n\n\n<p>Um, but I’m really hoping Corey, in this, that we discover something we hadn’t thought of that we go, oh, a hundred percent this could go down that, down that path. And it could be. More lucrative than we’re probably thinking. So I’m kind of hoping for that. Yeah. Um, but I think we’ve demonstrated enough that there’s enough pain that we could, we could do and then we’re gonna iterate on what we [00:48:00] hear back. </p>\n\n\n\n<p>Corey Maass: Yeah. Yeah. And if it’s, and if it ends up, you know, there, there is an, a likely scenario that we put this out there, we get enough users that it does something, but not enough users or not, or we don. Understand that opportunity or, or it doesn’t present itself for a while. Like I had that with social link pages that I built this thing out. </p>\n\n\n\n<p>Um, and there was some ob the, the sort of the obvious like, oh, let me add more features and that’s what I’ll charge for. But I wound up just letting it ride for a year. Didn’t think about it. I fixed a few bugs, but, you know, and it was after a year I had a thousand users, like, okay, there’s something here. </p>\n\n\n\n<p>But it took that ramp up, you know, to try to discover. And I, and frankly, I still haven’t. Nailed it. You know, so like you and I may end up having a lot of conversations. </p>\n\n\n\n<p>Cory Miller: Um, [00:49:00] this is why </p>\n\n\n\n<p>Corey Maass: four ways figured this </p>\n\n\n\n<p>Cory Miller: out. Maybe there’s unicorns out there, the geniuses that are like, oh, everything I touch is a perfect product and it makes a bunch of money. </p>\n\n\n\n<p>I think the rest of us are like just figuring it out, wanting to do something good and </p>\n\n\n\n<p>Corey Maass: figuring it out. I was counting on you, man. I thought you were that </p>\n\n\n\n<p>Cory Miller: guy. I’m the leprechaun. </p>\n\n\n\n<p>Um, now, yeah, I had something. I was thinking when you were saying that, I was like, ah, sorry. Maybe. Oh, this is like.org, the.org repo. There’s conversations about that and I go largely when someone has an opinion like that, it’s not one size fits all. It’s just for their use case. It doesn’t work. What I love about us, our conversations is we had deliberate, a deliberate conversation that we figured out this is enough for a.org. </p>\n\n\n\n<p>That let’s say, doesn’t go anywhere would solve a problem for us and we could probably be happy about it. Right. And at this level, [00:50:00] maybe, I don’t know, technically speaking from your perspective, but like wouldn’t require a ton of maintenance potentially. Right? Now I get it When we get into blocks and stuff that also showcases value. </p>\n\n\n\n<p>Like you wanted a block. Yes. Well that’s Then is that a pain point then pay me for the SL solving that problem. But I know there’s people@poopoo.org. I don’t. Um, definitely not in every case that this case, I love it because you and I made it narrow. We’re not trying, we didn’t say this is the be all, end all image editing software for WordPress plugin in the repo and free. </p>\n\n\n\n<p>We didn’t do that. We made it very practical, purposeful, getting some of this feedback. So like that’s why I’m okay, because I think the free plugin could exist in perpetuity. We’ve seen some. Jumping off points that go, maybe we weren’t a case for a pro paid ver version of this. So yeah, I wanna come back to that dart org thing. </p>\n\n\n\n<p>Cause I hear it all the time too, and I’m like, I don’t know. For every case that went wrong, I [00:51:00] can probably give you five more. That went right? </p>\n\n\n\n<p>Corey Maass: Yeah. Yeah. And it’s, it, it’s, it’s not without its challenges. I mean, I answered a, a question in on post out this morning that was like, how do you maintain a free and a pro version? </p>\n\n\n\n<p>Um, and I have solved that problem. For myself. And so wanted to put that out there, you know, but there isn’t just as, you know, there somebody else even chimed in, like, how is this still not a solved problem? But it’s, there’s a reason for that. Like, too much development is too, uh, varied. And so there isn’t one solution. </p>\n\n\n\n<p>Um, yeah. But you know, so it’s not without, its, it’s foibles, but it’s, um, that’s not the right word, but it’s not without its issues. But I, to me, the, the benefit outweighs the work, the extra work. </p>\n\n\n\n<p>Cory Miller: Yeah, I do too. Um, yeah, if you had built in, if we had 50,000 [00:52:00] people we thought were like blogger content stuff, it might be maybe a bit different story, maybe. </p>\n\n\n\n<p>Um, but even then it’s like you could generate interest for the time and investment. I understand it’s taken to this part. I go. Let’s put it on George, Oregon. See it? Yeah. Worth it. Oh, that leads me to my second, so we got the feedback loop. The other thing we want to do, this is something that’ll be on my task, is on the website, something to go. </p>\n\n\n\n<p>I want to see the next things you’re doing, get on the email list that we, I think we set up. Yeah, we did set up. Um, I don’t have that today. I just know I want to share with you so we can, you can help me on that. Keep me accountable to this. But the next thing I would want to do for on the marketing business side is um, start generating that email list feedback, number one, and then email and I’ll, we should be thinking of something that could be an incentive to [00:53:00] the email. </p>\n\n\n\n<p>Mm-hmm. , you know, why you should get in the email. You know, I know we do, a lot of people do like 10% off stuff like that. We don’t have the pro yet, but something that goes. </p>\n\n\n\n<p>It is enticing for this core user avatars we’re thinking. Does that make sense? It does, yeah. Just to start building that email list and we get enough people and we can start actually pushing content out. Yeah. And then when we get new version, I only wanna just say that, so we set the tone for like next, next stage of like, I need to be thinking we too, you can add your ideas in. </p>\n\n\n\n<p>Here is what we could do to help incentivize that email. </p>\n\n\n\n<p>Corey Maass: Yeah. Yeah. And I don’t, I don’t have, I don’t have an immediate answer. Like what do they, um, what’s it called? It’s not click bait. </p>\n\n\n\n<p>Cory Miller: opt. Yeah, it’s click bait. It’s, you can say it, it’s </p>\n\n\n\n<p>Corey Maass: okay. Well, no, but it’s the, you know, the, the incentive lead magnet. </p>\n\n\n\n<p>There it is. Thank you. Lead magnet. Um, you know, nothing [00:54:00] obvious comes to mind. I mean, who, who’s gonna read the, you know, here’s the expert guide on image cropping. Like, it’s, no. You know, like, yeah. It’s not that we’re, we don’t have, we don’t have the authority, we don’t have the, an, you know, the definitive answer. </p>\n\n\n\n<p>We don’t have, I’ve definit. Built things like that, written things like that before, you know, because you’re supposed to, but at this point I’m a little skeptical of them. Um, you know, I don’t think most people are scratching their heads about image cropping, and I don’t think that there’s some deep, you know, tech knowledge to be gained, uh, the right way to crop circles like the one </p>\n\n\n\n<p>Cory Miller: you’ve never been to the image cropping meetup group, then it’s fascinating </p>\n\n\n\n<p>Corey Maass: Now I, the image crop conference coming this year, you know, I’ll be </p>\n\n\n\n<p>Cory Miller: thinking of that. We, we were able to do it with a number of plugins to help juice that, but you’re right, it’s, it’s watching [00:55:00] Paint Dry, but, But there’s something I’ll be thinking of that. Yeah, yeah. Um, I just know because when I added that loop in at Ithe, that was the circle. </p>\n\n\n\n<p>Yeah. And a lot of WordPress company com product companies don’t like email. And I’m like, sure, maybe it’s 10 years old, 50, whatever the, you know, however long email’s been around. But I email marketing, that’s what we grew ithe with. Most people don’t really realize that unless they were getting our emails and it was like, Hey, that’s the stuff we were doing on the scenes. </p>\n\n\n\n<p>I’m blowing that way out of proportion for a crop express right now. But just going like, I want the path to be open to like have that direct marketing relationship with the customer. </p>\n\n\n\n<p>Corey Maass: So. Well, and I don’t, I don’t, I don’t care if you like email or not. If, if it works, then we’ll then we’re gonna use it. </p>\n\n\n\n<p>Yeah. Like, it’s not. You know, PE people have their preferences, you know, and we are not, that’s a lesson I have to learn over and over again. Like, I’m a power user, you know? Yeah. Just cuz I, I understand this, you know, [00:56:00] you know how to manage interruptions or something like that. You know, most people are still checking their email a thousand times a day. </p>\n\n\n\n<p>So that </p>\n\n\n\n<p>Cory Miller: what I will do is like talking about this, you’re pro, you’re helping me more than, you know, from a product and marketing perspective because I like to have that person in mind and as best I can be that person and Sure. You know, and then go, because when I get clear down that it, that for me is a switch. </p>\n\n\n\n<p>It’s like, okay, I understand our clients, like the day we kind of realized we’re looking at our customer base going, these said the people look like freelancers, agencies, web, you know, web developers. This side over here, like, what’s that dentist office doing? You know, you’re like a dentist is, yeah. So it helped us and then that’s when we started to do our marketing. </p>\n\n\n\n<p>But that’s what for, for me, is getting in their skin, getting in their workflow, trying to sniff out and get a picture where I walk [00:57:00] in their shoes and go, okay, this is what they need. Which by the way, we’ve joked enough about these things. It’s like there’s gotta be a parody in here about the, you know, I don’t know, there’s something fun that we could do. </p>\n\n\n\n<p>Like cropping is watching paint drive, but could we make it quirky and fun? Right? Yeah. Put that in the point. Put that uh, in the column of stupid ideas. Corey Miller has. </p>\n\n\n\n<p>Corey Maass: Well, I, I’m the, I’m the one that came up with, you know, we need a website that looks broken and then, you know, click the big, you know, crop express button that, that makes it all look sparkly and, and beautiful. </p>\n\n\n\n<p>And, and that’s where we use the Snow Effect and, and a unicorn bo bounds by, what is it? Um, not Gravity Forms, gravity view that has the, you know, the astronaut, astronaut sing songs and all that stuff. I mean, I’m, I am all for, you know, maybe this is your Safe Dad joke space. And so then we, we integrate more of that into, uh, into the marketing. </p>\n\n\n\n<p>Cory Miller: Um, I [00:58:00] hope Lin, I hope either of our Lindsay’s doesn’t watch this thing. They’ll be like, seriously, you guys are just doing dad jokes, which </p>\n\n\n\n<p>Corey Maass: is, Hey, sorry, go whatever. Hey Corey. But it’s, it’s, it’s dad jokes as marketing, you know, so it’s, they, it it’s their retirement fund too, you know, , um, But yeah, with, with a, a little bit of of time left, like, let’s get around to, um, you know, next steps where we’re at, that kind of thing. </p>\n\n\n\n<p>So I, I’m happy to put in the feedback form. Um, I definitely want you to install the plugin, mess around with it a little bit if there’s, and, and if there’s anything obvious that’s annoying. Again, I think we’re good enough. We’re certainly good enough to get in the repo. You know, things will change quickly as we move along, but we’re trying to just draw a line in the sand to get the damn thing out the door. </p>\n\n\n\n<p>Um, you know, but if there’s any, any obvious red flags, like, oh, hey, [00:59:00] you know, on when I installed it on my site, it everything’s 90 degrees or something, you know, like, yeah, then let me know. Um, and then I hope I haven’t. Made you stuck with like, the first version of the readme can be very simple. Um, you know, enough </p>\n\n\n\n<p>to launch. </p>\n\n\n\n<p>Cory Miller: I No, no, no. I, I stuck my, I stick myself quite a bit, get stuck on my own, but, um, I was looking at description as really the meat of it, you know, because that’s what, that’s what does the little blip at the top and the actual page text. Yeah. Um, insulation. I need to just go and find another plugin. Copy and paste that FAQs. </p>\n\n\n\n<p>We can keep that pretty simple. Do you want, do I need to do screenshots and stuff? </p>\n\n\n\n<p>Corey Maass: Nope. I mean, and, and none of this we need, none of this is, other than the description, none of this is [01:00:00] necessary to submit. Like, we don’t need installation instructions to submit. We don’t need f a Q to submit. Um, You know, we want enough of a description so that whoever reviews this gets a sense of, excuse me, who, who we are, you know, broadly speaking like that we are not trying to upload malware kind of thing. </p>\n\n\n\n<p>So it’s like, yeah, if, if we write three sentences that just kind of give them a hint of the direction we’re gonna take this, um, then it, you know, like coming and, you know, feature image cropping done easy and well, you know, coming soon, you know, more ways to crop images. And WordPress said, well, you know, and again, in a few sentences is sufficient. </p>\n\n\n\n<p>Um, okay. And then, you know, and then cuz you can. I’ve definitely seen, heard, [01:01:00] read about like, you don’t wanna update your readme six times a day. They will actually ding you for that. Um, you know, but there’s nothing that says we can’t upload, update the README every day or a couple of days. So it’s like you can, you can iterate on it. </p>\n\n\n\n<p>Okay. Pretty regularly, you know? Um, I think there’s, supposedly there’s, it’s in the algorithm too that’s like if you, if you only ever push updates that are the read me, they’ll ding you as far as, you know, search optimization stuff. But like, none of the things we really need to worry about, I just want, like I’ve, I’ve submitted plugins before that I already had stubbed out, um, or mentioned a pro version and got feedback that was like, I see you’re gonna do a pro version. </p>\n\n\n\n<p>So it’s like they definitely read it. To get and get sort of a sense of the intention, [01:02:00] you know what I mean? Yeah. Um, and so, um, and I, I mean, I no comment on pros or cons of mentioning that kind of stuff, but just I think, I think that’s all we need. Okay. Okay. Um, but I, and from my perspective, like it’s Wednesday, you know, ideally we get this out the door in the next day or two to submit, you know, start that process. </p>\n\n\n\n<p>Cory Miller: Okay. I’ve got it now saved. Um, and I’ll try to add more than two sentences in here, but yeah, I, this is the block I’ve had on these things is I feel so far outta riding and doing things, and now I just do a lot of voice stuff. But, um, anyway, I, I’ll get that done. Um, I’m out this afternoon and then I’ve got time, I’ve got some blocks of time tomorrow, so, I don’t think it should be a problem to get that to you. </p>\n\n\n\n<p>Let me just say I’ll get it to you tomorrow. Okay. [01:03:00] Then I get a little deadline for myself and I’ll, do you think in the long description you said this, like, should we mention there might be a pro or say </p>\n\n\n\n<p>Corey Maass: I, from, from the experience that I had, I would say no. Okay. Like, it, it definitely, I, on a, on a previous plugin, I, I got some pushback on the, the product itself. </p>\n\n\n\n<p>And I think that by mentioning Pro, cuz you, you, you get there, you know, still in the WordPress world there’s a, a fair number of zealots, zealots people who are emphatic that everything should be free and so you run the risk of sort of rubbing somebody the wrong way. By starting with that, you know? Um, and so I, the less mentioned, uh, you know, we’re not being insincere, we don’t have a perversion to talk about. </p>\n\n\n\n<p>So why talk about it, I [01:04:00] think would is my, my perspective now. Okay. </p>\n\n\n\n<p>Cory Miller: Okay. Well I have it saved on generate WP two, so don’t fine things, but, okay. And that, and that’s easy, man. I, I’m, I’m trying to get these, get through some blocks and then some chaos, but, uh, man, I’m super pumped. Um, yeah. Well, okay, well, uh, lemme get on this tomorrow and we’ll be checking in. </p>\n\n\n\n<p>Corey Maass: Um, cuz down the road, like part of the iteration too is going to be like, there’s the, the banner images, you know, we’re gonna wanna decide on a logo. Um, you know, but again, I don’t, none of that. None. Even if we start to get a trickle of users, like I don’t think it’s gonna hurt us to not come out of the gate. </p>\n\n\n\n<p>A hundred percent polished. Yeah. Like we can iterate on that stuff pretty quickly, </p>\n\n\n\n<p>Cory Miller: so, okay, perfect. [01:05:00] All right, sir. </p>\n\n\n\n<p>Corey Maass: Anything from your perspective? No. </p>\n\n\n\n<p>Cory Miller: Yeah, we spent most of the call talking about mine, so I feel like, but no, I think we’re ready to go with what I’ve seen. I will look at the pl, uh, I will put, look at the plugin. </p>\n\n\n\n<p>I’ve already got it on my site test site. Um, yeah. Cool. I’ll have something to talk about. So hopefully we might, by end of week we’re in the submission process, so we next week can talk about where we are with it and um, maybe it ends up talking about other things while we’re waiting on. That, yeah. </p>\n\n\n\n<p>Corey Maass: Approval process. I think one, one of the things I do think I will do, because I’m thinking about our conversations while going through this process, is I will jot down some of the steps that I took and, and so I might monologue for five or 10 minutes next time of just like, okay, so once we got everything together, here are the steps that I went [01:06:00] through. </p>\n\n\n\n<p>In order to submit it, you know? Yeah. Here’s what I included in the email or you know, here are the documents cuz there’s a, there is a whole section on, on the word, the WordPress documentation about building plugins and then specifically how to submit them, you know, what should be included, what shouldn’t be included. </p>\n\n\n\n<p>I need to review my codes for any like red flags about, you know, they wanna make sure that it’s, every plugin obviously is secure and, um, and stuff like that. So it’s like, here are all the steps that I kind of, you know, at a high level went through before submitting this and then here’s the feedback we got back. </p>\n\n\n\n<p>Like, what did I miss? Is there a, you know, gaping security hole that I should have picked up on or whatever. So, you know, let’s, um, I want to kind of earmark that cuz I do think it’s like, these are the sort of things that I’ve now done a few times, I think other people. Who haven’t gone through the process, like we all just kind of go through it. </p>\n\n\n\n<p>Cuz you only go through it once and then you never have to think about it again. It’s submitted, it’s done, it’s out there, whatever. [01:07:00] So it’s like, then the next time you do it, you forget all of the steps and, and what the process looked like. So I think it’d be good to document </p>\n\n\n\n<p>Cory Miller: it. Oh heck yeah. It’s awesome. </p>\n\n\n\n<p>Thanks for friend. </p>\n\n\n\n<p>Corey Maass: Yeah. I will talk to you soon. Sounds good. </p>\n\n\n\n<p>Cory Miller: Bye bye. </p>\n\n\n\n<p>All right. I guess it stops on YouTube. We’ll see now. </p>\n\n\n\n<p>Corey Maass: It’s still live though.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Feb 2023 23:10: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:11:\"Cory Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:92:\"Post Status: Interview With Product Lead Mark Westguard Of WS Form — Post Status Draft 142\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=147499\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://poststatus.com/interview-with-product-lead-mark-westguard-of-ws-form-post-status-draft-142/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:33971:\"<div class=\"is-layout-flow wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">In this episode, <a href=\"https://twitter.com/westguard\">Mark Westguard</a> of <a href=\"https://wsform.com/\">WS Form</a> joins Cory Miller to discuss OpenAI, the innovation we are already seeing, and what we can and should expect in the future when it comes to WordPress. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">53</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p>Learn from <a href=\"https://twitter.com/westguard\">Mark Westguard</a>, founder of <a href=\"https://wsform.com/\">WS Form</a>, a powerful, next-generation WordPress form plugin. Mark and Cory discuss how AI is starting to integrate into the world of WordPress and how the WP Form software is leveraging its power. </p>\n\n\n\n<p><strong>Top Takeaways:</strong></p>\n\n\n\n<ul>\n<li><strong>Harnessing the Power of Open AI.</strong> The possibilities are endless with the revolution of AI as an open-source tool. Making the most of its capabilities allows WordPress users to create more intuitive and integrated content, like better fields and options in WordPress forms. </li>\n\n\n\n<li><strong>Create, Edit, Moderate.</strong> AI should be seen as an assistant working alongside you to help generate your content. You’re still essential in the creation process, and it’s important not to rely on AI 100% for accuracy. You can get creative prompts, edit for grammar or spelling and generate unique images, but moderating that content is essential. </li>\n\n\n\n<li><strong>The Future is All-in-One AI Integrated Tools. </strong>Limiting time spent running around to different AI software is good for business. So how can that be accomplished? By integrating the AI capabilities into WordPress tools, where everything you need is in one place. These are the things we look forward to in WordPress software and plugins</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"is-layout-constrained wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<div class=\"is-layout-flex wp-container-6 wp-block-columns has-theme-palette-8-background-color has-background\">\n<div class=\"is-layout-flow wp-block-column\">\n<h3><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/a2-hosting\">A2 Hosting</a></h3>\n\n\n\n<p>A2Hosting offers solutions for WordPress and WooCommerce that are both blazing fast and ultra-reliable. WordPress can be easily deployed on ANY web hosting plan from A2: Shared, VPS, or Dedicated. A2 also offers Managed WordPress and WooCommerce Hosting. Take a look at a2hosting.com today!</p>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column is-vertically-aligned-center\">\n<img width=\"752\" height=\"470\" src=\"https://cdn.poststatus.com/wp-content/uploads/2022/08/imageedit_1_6433774706-752x470.png\" alt=\"A2 Hosting\" class=\"wp-image-104073\" />A2 Hosting\n</div>\n</div>\n</div></div>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"?\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://www.linkedin.com/in/westguard\">Mark Westguard on Linkedin</a></li>\n\n\n\n<li><a href=\"https://wsform.com/\">WS Form</a></li>\n\n\n\n<li><a href=\"https://openai.com/\">OpenAI</a></li>\n\n\n\n<li><a href=\"https://openai.com/blog/chatgpt/\">ChatGPT</a></li>\n\n\n\n<li><a href=\"https://openai.com/dall-e-2/\">DALL-E</a><a href=\"https://europe.wordcamp.org/2023/\">WordCamp Europe</a></li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/westguard\">Mark Westguard</a>, (Founder of <a href=\"https://wsform.com/\">WS Form</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"?\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p><strong>Cory Miller:</strong> [00:00:00] Hey everybody. Welcome back to Post Edits draft. Um, one of the things I want to continue to keep top of mind because it’s honor, honor, mind, is ai and specifically open a AI and chap G B T and all of that because there’s this. Huge opportunity, uh, for integration with WordPress. And so I, uh, was talking with one of our longtime members, Mark West Guard, from WS Forum, and they’ve just come out with, uh, uh, an add-on. </p>\n\n\n\n<p>I’ll let him share more about that, but I want to talk to Mark, who we’ve had on the podcast before, but specifically about the opportunity and some of the application of using integrating open AI power. Which we were just talking before we started recording is like magical. How, how did the little that make it all work? </p>\n\n\n\n<p>Um, and then, um, really just talk about, uh, what the opportunities are there. So Mark, thanks for coming back to post edit draft. [00:01:00] Hi, Cory. How </p>\n\n\n\n<p><strong>Mark Westguard:</strong> you doing? </p>\n\n\n\n<p><strong>Cory Miller:</strong> Pretty good. All right. Tell me what you’re doing with, uh, well, let’s talk first about open ai because you were helping, you’ve been digging in with this. </p>\n\n\n\n<p>You’ve created an add-on mm-hmm. for WS forums that leverages some of the power of, uh, Open AI but tell me a little bit about that. The Open a ai, um, you were kind of breaking this down for me and sharing the, the ability, you even got a demo that you can show some of this, which I think would be really awesome, um, to show some of the power and then we’ll get into the application of how you’re using it in, in Ws forum to help users. </p>\n\n\n\n<p>So Sure. First, uh, what drew you to this . </p>\n\n\n\n<p><strong>Mark Westguard:</strong> Um, just to talk about it in the industry really. Um, Twitter was just full of open AI stuff. And, um, also, you know, just talking to friends. I have like Andrew Palmer and Stephanie Hudson, who run Bertha ai. Um, they were integrated in with open ai and I’m like, okay, what is, what is this thing? </p>\n\n\n\n<p>[00:02:00] How, how do I, how do I plug into this and use this, um, in a way that’s gonna be useful for our customer? . So, um, the first thing that kind of drew me, drew me to it was the moderation feature of OpenAI. And, um, in short, you can send a block of text to it, it will moderate it and look for anything offensive and let you know how offensive it thinks that content is. </p>\n\n\n\n<p>And I’m being an advocate for reducing as much spam as possible in form submissions. I thought, well, that would be a, a great feature to have in, in WS form , then I started digging into it a bit more and I thought, well, these are the features that it offers would be great for forms as well. So, broadly speaking, there are four main things that OpenAI can do. </p>\n\n\n\n<p>First thing is completions. Um, a completion is where you basically prompt it with a question. Um, so you could say, you know, what is an apple? And it would then give you a response and it’ll write a paragraph about that. Um, you may have used that in chat. G B T Chat. P G P T has really brought that open AI technology to the masses cuz it just makes it [00:03:00] so easy to use. </p>\n\n\n\n<p>In that chat environment. Um, so as you know, you can ask it to write code. You can even start playing nos and crosses with it if, if you want to. Um, it’s pretty incredible what it comes back with. Um, and then, Uh, you have the edit capability, which is where you can give it some existing text, and then you can ask it to edit that text. </p>\n\n\n\n<p>So you could ask it to do spelling, uh, you know, fix better mistakes or improve grammar and things like that. Um, then there’s the moderation component that I just spoke about where you’ve given it content, it moderates it and says, yay or no, it’s, it’s bad content. Um, it, the moderation side of things tends to be more towards, you know, violence and. </p>\n\n\n\n<p>People saying bad things about each other rather than bad words. So, you know, putting the word Viagra in there is not gonna prompt it, but if you say something bad about somebody, it’ll start flagging that content more. Um, but it’s quite a, quite an interesting way of looking for bad content on a form submission. </p>\n\n\n\n<p>And then the last one [00:04:00] is images. So, uh, creating, you may have. Try that with Dolly, um DALL-E where you can type in what type of image you want and it will then return an image. So we’ve integrated that in with WS forms, so you can actually submit those images as part of a form submission. Um, so you could use that for maybe creating an avatar on a user or a featured image on a post or, you know, anywhere that you are looking for an image, you can use that, um, as an optional feature. </p>\n\n\n\n<p>So tho those are the four main kind of broad areas of open. </p>\n\n\n\n<p><strong>Cory Miller:</strong> That that, that’s awesome. Um, Similarly, it’s like, uh, just working with chat t p t. You’re like, there’s pretty cool power . It’s kind of mind blowing. You’re, I was asking it all kinds of questions and coming back. Um, but hearing, hearing is a n Amazing opportunity for us that I love that you and others in our community have started to go, let’s test some of these things out. Let’s use this. That integration potential, which just the things you just said just now. Mm-hmm. There’s [00:05:00] immediate, practical opportunities and then there’s some far reaching ones. </p>\n\n\n\n<p>Yes. Um, so would you show us a little bit then? I just want to talk. Show us what you’ve done. You’ve got a demo and I know how that works, but go. Would you screen share and share what you’re your Absolutely. You’ve done so far. Then we’ll start talking about some of the opportunities, this integration between this for what WordPress can do on the web. </p>\n\n\n\n<p><strong>Mark Westguard:</strong> So this is a, a knowledge-based article on WS form that just describes how open AI works, um, and how our, our add-on works. And below here we’ve got a, a demo. This is probably the thing that we wanna show people. Um, so here’s an example of a completion. So as I said before, you could say, you know, what is an apple? </p>\n\n\n\n<p>Uh, not a very good. Prompt, but it’ll just show you how, how it’s working. Um, so this is now making a query off to open ai and it will then put a completion in whatever field I want on that form. So that could be a text field, it could be, you know, it could even be a section of HTML on the page if you wanted it to be. </p>\n\n\n\n<p>Um, the [00:06:00] way the open AI works, it’s all token based, so the more tokens that you allow open AO to use, the longer the content’s gonna be that it, that it will come back. So if you are asking it to maybe produce some code, I mean I can show you a quick example of that. So, uh, write me some PHP code for WordPress. </p>\n\n\n\n<p>If I could type properly, it would be nice, wouldn’t it? Um, that loops through posts with a category of book. Let’s try that. So we do get completion. So now it’s gonna go off to open ai. Again, this is using the same technology as the Chat GBT , and there’s the code that it has come up with. So that’s an example of a completion. </p>\n\n\n\n<p>Um, you can also use that completion technology, more of a chat environment. So this is kind of like ai, human, and again, I can say, you know, what is an apple? Oh, </p>\n\n\n\n<p>submit. And then it’s gonna give you [00:07:00] a response back and then come back to the human prompt as well. So this, this is more of a chat format, so it’s kind of remembering what you’ve asked before and you can keep that conversation going. Um, editing. So with editing, what you do is you provided some content. </p>\n\n\n\n<p>So you can say, you know, my name is Mark West Guard, and then you can give it some instruction on that. So let’s say I spelled the. The word name wrong. I can say fix the spelling and then get the edited output. It’ll now look at that, look at my instruction and correct that output. So you can do stuff like fix my grammar. </p>\n\n\n\n<p>You could say, you can even do stuff like. Um, write an additional sentence that describes this a little bit further and actually it’ll actually do that. It’s pretty crazy what you can do with that edit. Um, moderation we don’t have a demo for, cuz it’s actually just, um, uh, masking the form submission of spam or not. </p>\n\n\n\n<p>So I can’t re demo that. Um, but essentially it works like most of our other spam features where, you know, if it finds spam, it’ll [00:08:00] move that to the spam box, um, in your submiss. the image one. Um, with images, what you can do is I can say, um, enter an image description that’s say, uh, cat on top of a dog, and then you get image </p>\n\n\n\n<p>So you can put, you know, all kinda the crazy stuff in here. And what that’ll do is then load that image into, uh, our image field, which can then be submitted as part of a. Or, you know, it could be used for an avatar for a user, or whatever you want to use that image field for. You could even push that through to any of our add-ons like Slack or, um, any of the third parties that we integrate with. </p>\n\n\n\n<p>We, we have a URL version of that as well. So if you just want to get the URL of that image from open ai mm-hmm. , you can do that. But, um, I’m sure this one will probably be the most popular. So really what we’ve tried to do is just. Open AI as accessible as possible for people that are using forms. Um, and you can actually put multiple requests on a single page as well. </p>\n\n\n\n<p>So [00:09:00] you could have one for a tech bit of text content, have another one for image, and you could also include the editing functionality on the same text field if you wanted to. So yeah, that’s where we are. Okay. </p>\n\n\n\n<p><strong>Cory Miller:</strong> I want to geek out with this in just a minute, but I want to take the next step and show what you can do inside of WS forum like we’ve this. </p>\n\n\n\n<p>Incredible. We’ll talk hours for this, you know, . Um, I wanna see the application side, how these are, I think, excellent examples of the power of it now, the application of it even more powerful. </p>\n\n\n\n<p><strong>Mark Westguard:</strong> Yeah. So let’s go into WS four and you’ll see where this gets added. So, um, this is our add new pay for creating a new form, and you’ll see there’s a new tab called Open ai. </p>\n\n\n\n<p>So these templates here are basically designed just to kind of get you started. Um, you can add to these, modify these. You can even just use an existing form and add the open AI functionality if you want. Let’s just do a simple one. So we’ll do a completion, so we’ll use that template. So WS forms now building the form for [00:10:00] you. </p>\n\n\n\n<p>Um, and you’ll, you’ll notice on this form we’ve got the prompt. We’ve got a button to actually go off and get that completion, and then we have the completion itself, and there’s a submit button for actually sub ultimately submitting that form if you, if you wanted to do that. Um, and the way this works, very simple. </p>\n\n\n\n<p>Uh, we have conditional logic on here, which actually runs the a, the AI request. So we’re saying if that get completion button has been. Then make the open a req open AI request and run that immediately. Um, and if we go to actions, you’ll see here is that open AI request that gets run. So what we’re saying to open AI is we want to do a, a completion. </p>\n\n\n\n<p>This is the open AI model that we want to use. So there are different models. Um, G P T three is currently the best one that’s out there. Um, and then you can actually tweak this as well. So I can choose how many tokens I want to. Um, the more tokens you enable, the more likely you are gonna get charged more cuz the charging is done on a, on a token basis, [00:11:00] but, um, actually running a completion is, you know, a couple of cents at most. </p>\n\n\n\n<p>Um, it’s quite inexpensive. And then below that we have, uh, different things that you can tweak to modify the output. So here’s an example here of tempera. So temperature actually determines how much that output’s gonna change each time I submit that completion. And if I put completion up to one, I’m gonna get much more different content every time I do a submission. </p>\n\n\n\n<p>If I do it at zero, it’s gonna be pretty much the same each time. Uh, and there’s a few other options on here. Some of ’em I actually don’t really understand them , the, um, but we’ve included them just so if somebody does understand what’s going on with that, they. Go ahead and, and tweak those. So pretty much everything that the OpenAI API gives to us as a setting, we have made that available to you within WS form. </p>\n\n\n\n<p>And of course, uh, all of the, um, fields and everything that are created in that template can be adjusted [00:12:00] just like you can any, uh, you know, on any other WS form. So you can move things around, um, make it responsive and, and make it look how you want. And then you can just preview that and, and change, you know, uh, test that out, make sure it’s working completion. </p>\n\n\n\n<p>And there you go. So, very, very easy to, uh, implement this on existing forms and creating new forms as well. Awesome. </p>\n\n\n\n<p><strong>Cory Miller:</strong> Oh, okay. So what does the front end of, like, something like this look like? </p>\n\n\n\n<p><strong>Mark Westguard:</strong> Uh, it’s basically whatever you want it to be. So you can do, you know, multi column output, single column output, mobile responsive. </p>\n\n\n\n<p>Um, you’ll see here we have the break point selector in WS form. So for example, on mobile you may wanna have full width. Um, and then I could actually move between different break points here, um, and make that responsive. So for a larger screen, you may want to present that in a two column format, entirely up to you what [00:13:00] you wanna do. </p>\n\n\n\n<p><strong>Cory Miller:</strong> I’m sorry. Uh, so, so like this example, what mm-hmm. , what does the front facing website person say? Or </p>\n\n\n\n<p><strong>Mark Westguard:</strong> it’ll look pretty much like this demo. Yeah, I gotcha, I gotcha. This is actually a WS form form on our knowledge base page. Okay, gotcha. This is, this is not, um, an open AI component. This is actually WS form, uh, and we’ve just created these demo forms to show you what it may look. </p>\n\n\n\n<p>I gotcha. But again, you can, you can make that look however you want. You can start it with CSS . You can use our starting tools for that if you want to change the columns. Yeah. Um, so really it’s completely flexible in terms of how you want it to look. </p>\n\n\n\n<p><strong>Cory Miller:</strong> So essentially you can say, uh, Ws forum can, can be a conduit for the open AI stuff to be like this built in research thing for a team or different stuff to leverage some of this power. </p>\n\n\n\n<p>Like if you’re a blogger, you can create within WordPress Publishing, [00:14:00] you know, I need an image for this blog post that is this type and, and then go over here. So really doing that tight integration with the open AI, where you don’t have to go over to chat d p t and copy stuff. It’s all right here. Yeah. </p>\n\n\n\n<p>Yeah. I mean, </p>\n\n\n\n<p><strong>Mark Westguard:</strong> usually just experiment with Yeah. Yeah. I mean, but usually what will happen is the form would be on the front of the site with somebody creating some content. Uh, so they may log in to access that, and then the form will come up. And then if, if you’re creating a post, maybe that would be, you know, PostIt the post content. </p>\n\n\n\n<p>Um, and then you could, in that post content, have a little prompt that says, what do you want me to write about? Yeah. And then object that into the post content. And then what, what, you know, upload a featured image or I’ll create an image for you. What image do you want me to create for you? And then it would then put that into the file upload. </p>\n\n\n\n<p>Um, and then, so Rudy, you’ve. Full AI on creating a post if, if you wanted to, you know, um, you don’t have to use all the features if you don’t want to, but, uh, [00:15:00] uh, it’s funny, I was talking to, um, You know, Bob WP yesterday about this, we actually did a podcast about it and yeah, there’s a lot of talk about it being quite a scary technology as well. </p>\n\n\n\n<p>Um, so I, I think that, um, anything you create with it, you wanna check it, you know, don’t trust it a hundred percent. You wanna check what comes out of this system and, and make sure that what it’s giving you is what you’re looking for. But it can certainly be a great tool. Getting you started with a blog post or getting you Yeah. </p>\n\n\n\n<p>Help with editing and improving grammar. Maybe writing it in a slightly different way that you haven’t thought of. Use it as a creativity tool. Um, yeah. But don’t trust it. A hundred percent . </p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah. Yeah. Absolutely. Um, so, okay. When we were talking before, uh, we started recording, you know, you’re like, there’s basically like three categories. </p>\n\n\n\n<p>You said create, edit, moderate. Yep. I’m really. By the create and edited edit capabilities of open ai. And I’m curious to get your perspectives on that, that [00:16:00] applica not from the software side, applying what the power is of, open AI to WordPress inside of there. And it’s just intriguing. Um, you kind of started with this like you. </p>\n\n\n\n<p>What are some of those things you’re seeing that you could do? Like we’ve seen, this is great, you know, be able to kind of moderate content, create videos. Mm-hmm. , uh, or not videos, I’m sorry, images. You know, those I can try back to. What the power WordPress is, is publishing, creating, and publishing. Mm-hmm. </p>\n\n\n\n<p>Um, so what, what are some things you’ve seen messing around with all of this and seeing some of the power of it that you, that’s not here today, but like, you’re, you’re curious about interest in, </p>\n\n\n\n<p><strong>Mark Westguard:</strong> you know, it’s really early days with this technology. It’s, um, it’s interesting. I’ve, I’ve had some customers already coming back to. </p>\n\n\n\n<p>Um, one of thems been using this in a support environment and they’ve actually got it on their support form because a lot of their contact is online. [00:17:00] Um, so they’re able to query open AI about their own product with questions that have been typed in by a user, and it then can spit results back. So, you know, there’s one application. </p>\n\n\n\n<p>Um, just some others that people have spoken to me about has been creating avatar images for users. So we have a user management add-on that you can use to register users on WordPress. Um, and you can use a file upload field to specify the avatar image for that user. So, um, Open AI could be used to create that image. </p>\n\n\n\n<p>If you want to create a funny one-eyed, fuzzy monster, then you can , you can use it to do that. Um, and then, you know, improving grammar on blog posts I think is a great thing. I I, I love that. Edit feature. Um, I wasn’t even aware that it could do that before I started writing the open AI add on. Um, but just having that as a feature where maybe you’ve written a blog post and you need some help with part of it, um, that would, I think that’s a, a great application for it.[00:18:00] </p>\n\n\n\n<p>Um, in, in terms of kind of the code writing part of it, um, I don’t think US developers need to worry too much about it. It’s not gonna take our jobs. Uh, it has an upper limit of about 4,000 characters. . So it’s never gonna, you know, I can’t go into it and say, Hey, write Yost, um, or write WooCommerce. It’s not, it’s not gonna do that for you. </p>\n\n\n\n<p>But, uh, in terms of giving you some pointers towards smaller snippets of code, it’s certainly helpful for that. Um, again, I wouldn’t take it on face value, always make sure that it’s, it’s working properly. One example of where I don’t trust it is obviously we always want. Make sure our inputs and outputs with code are secure. </p>\n\n\n\n<p>They’ve been escaped and, uh, we’ve made sure there’s nothing malicious in there. Typically, when you ask open AI for a bit of code, none of that happens. It’s, it will literally just take, you know, what’s coming in on, on a post request and just spit it out. So, um, definitely take that in mind when you’re using this tool. </p>\n\n\n\n<p>It’s not intelligent enough to, to do that type of stuff. </p>\n\n\n\n<p><strong>Cory Miller:</strong> [00:19:00] I, I the utility of what WS Forum does for sure. Like I see that, like I love the moderation thing about spam stuff. Um, sky’s the limit. My background, I draw to content creation and editing because we’ve all hit that dreaded rider’s block or just needed a little spark or inspiration to get going. </p>\n\n\n\n<p>And I’ve, I’ve heard and talked to enough people to go like, Those are the type of things that I think could really light of fire to this. Mm-hmm. is, it’s an assistant. Yes. It’s, it’s assisting you and, um, doing all the functions you want, particularly on your WordPress website. But when that subset of function create content, edit content, like I saw you say that, fix the spelling, you know, and the very simple example you gave and it’s like, yeah, I might use Grammarly, but there’s. </p>\n\n\n\n<p>So much more power out there that, uh, and, and AI obviously is getting way, way, [00:20:00] way, way better. Yeah. </p>\n\n\n\n<p><strong>Mark Westguard:</strong> Um, maybe if you had a big article that was referenced in someone’s name and maybe you had the name incorrect, you could just say, change the name to whatever, and it’ll go through and change it. So, um, it’s a great, great editing tool. </p>\n\n\n\n<p>I think. Um, it’s almost kind of like, You know, Google 2.0, whereas, you know, on Google, you’ll, you’ll type at a question and it’ll give you URLs for you to then trundle through and try and find the answer. This is kind of jumping in that step and trying to give you that answer immediately. Um, and I think it does a pretty good job of it. </p>\n\n\n\n<p>Um, it’s not always accurate. Um, and I, like I said, you and I have said it’s, it’s gotta be an assistant tool. It’s, it’s not gonna give you the a hundred percent the correct answer every time. , but it does an impressive job. Um, I’ve been amazed by some of the stuff that it spits out . </p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah. And, and that headstart that sparked to help you. </p>\n\n\n\n<p>Uh, you know, so I, I’m, I’m excited. I’m gonna go play with WS forum. Um, you’re [00:21:00] opening cuz uh, it didn’t click for me until yesterday. I go, these people are all doing all this stuff, but they’re not logging into chat G B T and I just hadn’t taken the time to go. There’s an API that you can buy, and what you do with your add-on is make that, oh, I can use it now. </p>\n\n\n\n<p>Um, it sounds a lot like, like aws, you know, you buy mm-hmm. computing power and all this stuff. And I looked at the pricing and I was telling Lindsay last night, I was like, oh, this is a, a WS type, you know, resource. Um, and you’ve done that integration point to leverage it within WordPress. </p>\n\n\n\n<p><strong>Mark Westguard:</strong> Yeah. It’s basically about making that data accessible. </p>\n\n\n\n<p>Right. So, um, and making. Essentially no code. So all you gotta do is just drag and drop a couple of input fields, tell, um, WS form, which is the input, which is the output, and off you go. Um, so it’s pretty easy to to, to build forms that integrate that open AI technology. Um, and by, you know, by all means, use those template, they templates are ready to go. </p>\n\n\n\n<p>So you just [00:22:00] click it, it builds a form for you and you can start playing with it. So it’s, it’s pretty straightforward. I </p>\n\n\n\n<p><strong>Cory Miller:</strong> wanna play it around with the. That you were saying and how, um, when you do the completion chat function, um, it’s reading what you’ve already talked about. So if you have a thought, okay, I’m trying to create a blog post on WordPress hosting, whatever. </p>\n\n\n\n<p>Mm-hmm. . Or something, you know, and then it reads, I wanna do some experimenting with that. So now you give me a new toy to, to go take for a test spin. </p>\n\n\n\n<p><strong>Mark Westguard:</strong> Yeah. That should behave relatively similar to chat G p T, um, cuz that’s, that’s how that one works, so </p>\n\n\n\n<p><strong>Cory Miller:</strong> yeah. Awesome. Mark, what else do you got going on over at WS Forum? </p>\n\n\n\n<p><strong>Mark Westguard:</strong> Oh, you know, we’re just right now getting ready for work Camp Asia. Um, we’re gonna be, </p>\n\n\n\n<p><strong>Cory Miller:</strong> I was about to say, I think I knew you were going to Asia and probably Europe too, right? Yeah. </p>\n\n\n\n<p><strong>Mark Westguard:</strong> That’s gonna be some serious jet lag . Yeah, no kidding. And, uh, I’m gonna actually go to work at Birmingham at the. [00:23:00] beginning of February, so I’m looking forward to that as well. </p>\n\n\n\n<p>And then we just got approved to sponsors for Work Camp Europe again, so right on getting, getting ready for Athens. So we’re looking forward to that. Um, and yeah, just, you know, day in, day out, answering those support tickets, keeping customers happy and, and doing what we need to do to grow the business. </p>\n\n\n\n<p>So, Love it. </p>\n\n\n\n<p><strong>Cory Miller:</strong> Thanks Mark for sharing, um, the integration you’re doing with Open AI and talking a little bit about this opportunity. Um, and again, I want, I wanna see more and more, uh, I want great members like yourself to lead that, but more and more innovation. Yeah, absolutely. So All right, thanks. Thanks, Mark. </p>\n\n\n\n<p>We’ll talk to you last time. Thanks. Appreciate it. <br /><strong>Mark Westguard:</strong> Thanks a lot. Take care.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Feb 2023 21:06:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:93:\"WPTavern: Museum of Block Art Calls for Submissions Celebrating WordPress’ 20th Anniversary\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=142175\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/museum-of-block-art-calls-for-submissions-celebrating-wordpress-20th-anniversary\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5084:\"<p>The <a href=\"https://block-museum.com/\">Museum of Block Art</a> (MOBA), a project launched in 2022 featuring art created using the block editor’s design tools, is <a href=\"https://block-museum.com/2023/02/21/lets-celebrate-20-years-of-wordpress/\">calling for submissions</a> celebrating WordPress’ upcoming 20th anniversary. </p>\n\n\n\n<p>In a short amount of time, the museum has collected more than three dozen works of block art, creative pieces that leave the viewer wondering how they were made using only WordPress’ core design tools. The MOBA features a diverse set of works – from <a href=\"https://block-museum.com/2022/02/02/its-me/\">a Mario mosaic</a> made entirely of differently colored Button and Group blocks, to <a href=\"https://block-museum.com/2022/01/26/city-textures/\">a textured gallery of city images</a> melded together using the Columns, Cover, and Gallery blocks. All pieces are displayed with the HTML markup of the block(s) beneath, so curious viewers can dig into the details of which tools design tools have been applied.</p>\n\n\n\n<img />\n\n\n\n<p>MOBA’s curators are challenging artists to submit WP20 blocks inspired by the <a href=\"https://wp20.wordpress.net/download-the-wp20-commemorative-logos/\">20th anniversary logos</a> and/or the color palette and images from the <a href=\"https://wordpress.org/themes/author/wordpressdotorg/\">default themes through the years</a>. These blocks will become part of the art history of WordPress’ capabilities. </p>\n\n\n\n<p>MOBA founder Anne McCarthy said the submissions have “definitely evolved as the controls have grown since each new control added has a cascading creative impact.” To better illustrate this evolution, she has created release-specific virtual exhibits, including one for <a href=\"https://block-museum.com/wordpress-5-9-exhibit/\">5.9</a> and another for <a href=\"https://block-museum.com/wordpress-6-0-exhibit/\">6.0</a>. She didn’t receive too many pieces for 6.1 and hasn’t created an exhibit for that release yet but has created <a href=\"https://block-museum.com/2022/12/25/relentless/\">some</a> <a href=\"https://block-museum.com/2022/12/26/shining-through/\">blocks</a> using 6.1’s tools, and <a href=\"https://nomad.blog/2022/12/26/behind-the-scenes-of-creating-art-with-wordpress/\">wrote a post about the process</a>.</p>\n\n\n\n<p>“I think it would be really neat to compare a 5.9 exhibit to a 6.9 or 7.9 showing how far the art has come in the same way you might look at art in a museum across the centuries,” McCarthy said.</p>\n\n\n\n<p>“The vision is to explore WordPress, a software we take for granted, in a new way to create something unexpected—a virtual art museum featuring art made from the same blocks used to house the experience itself. WordPress is so known as a site building tool but we don’t talk about all that it unlocks, including being able to create some pretty rad art pieces. I hope it helps both empower folks to make their own art pieces and offers some inspiration, in the same way a museum might. I really just want to supercharge the sentiment of ‘Proudly Powered by WordPress’ to show just how much WordPress truly can power.”</p>\n\n\n\n<p>One piece, the circular rainbow created by Chuck Grimmet, was printed out and displayed on one of the walls behind Matt Mullenweg during the 2022 State of the Word address. McCarthy said she would like to see more real life exhibits of the work from MOBA contributors, and that there is a chance some will be displayed at an upcoming flagship WordCamp event. Another idea she had is offering a way to order the art and print it out as a fun use of e-commerce, perhaps as an integration with the WordPress swag store.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://block-museum.com/2022/06/03/circular-rainbow/\">Circular rainbow</a></blockquote>\n</div>\n\n\n\n<p>In the future, McCarthy hopes to recruit submissions from artists outside the WordPress community and someday host an art “hackathon” where people gather to produce submissions. </p>\n\n\n\n<p>MOBA’s curators are inviting users of all experience levels to create WP20-inspired blocks as part of the upcoming celebration. Those who are newer to the block editor can check out some of the recommended <a href=\"https://learn.wordpress.org/tutorials/?series=&topic=7&language=&captions=&wp_version=\">block tutorials</a> as well as The Creative Side to Blocks series (volumes <a href=\"https://wordpress.tv/2022/08/08/the-creative-side-of-blocks/\">1</a>, <a href=\"https://wordpress.tv/2022/09/07/the-creative-side-of-blocks-vol-2/\">2</a>, and <a href=\"https://wordpress.tv/2022/11/18/the-creative-side-of-blocks-vol-3/\">3</a>) on WordPress.tv. Prospective contributors can learn more about <a href=\"https://block-museum.com/contribute/\">how to contribute blocks</a> to the MOBA collection on the museum’s website. Submissions will be reviewed by the initiative’s current panel of contributors.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Feb 2023 03:56: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: WordPress 6.2 Beta 3 Released, Contributors to Host Live Product Demo on March 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=142213\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wptavern.com/wordpress-6-2-beta-3-released-contributors-to-host-live-product-demo-on-march-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:2491:\"<p><a href=\"https://make.wordpress.org/core/2023/02/21/wordpress-6-2-beta-3/\">WordPress 6.2 Beta 3</a> was released this week, another small milestone towards the official, more polished version that is expected in under five weeks on March 28, 2023. Testers will find 34 issues resolved since the Beta 2 release, bringing the cumulative number of enhancements to 292, with 354 bug fixes and counting. Details for the changes in beta 3 are available in the linked tickets:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.2\">GitHub tickets</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=02%2F14%2F2023..02%2F21%2F2023&milestone=6.2&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Trac tickets</a></li>\n</ul>\n\n\n\n<p>Contributors will be hosting a live product demo on <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20230302T1700\">Thursday, March 2, 2023 at 12:00 PM EST</a> via <a href=\"https://us02web.zoom.us/j/82841185159\">Zoom</a>. WordPress contributors <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> and <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, who are helping lead the release, will give viewers a tour of the features coming in 6.2.</p>\n\n\n\n<p>“This is a slightly different format from the previous <a href=\"https://make.wordpress.org/core/2022/03/30/6-0-product-walk-through/\">6.0</a> and <a href=\"https://make.wordpress.org/core/2022/09/05/6-1-product-walk-through/\">6.1</a> walk-throughs, focusing on showcasing the great work that’s been going into the release,” Marketing Team contributor Jonathan Pantani said. “Future releases can expect to see this, a walk-through/discussion, or both types of live events become part of the release cycle.”</p>\n\n\n\n<p>The event will be moderated by Nathan Wrigley, who will guide the discussion and present questions from the audience. Questions can be submitted in advance in the <a href=\"http://wordpress.slack.com/\">Make WordPress Slack</a> via the <a href=\"https://wordpress.slack.com/archives/C039R2P1ZC1\">#walkthrough channel</a>. The livestream will be recorded and published in a follow-up post after the product demo has concluded. There is no registration for the event. Those who want to watch and participate live can <a href=\"https://us02web.zoom.us/j/82841185159\">launch the meeting using Zoom</a> at the scheduled time.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Feb 2023 22:22:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:95:\"Post Status: WordPress 6.2 Beta 3 & Live Demo • Help Test • Changes to WP Release Cycle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=147449\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://poststatus.com/wordpress-6-2-beta-3-live-demo-help-test-changes-to-wp-release-cycle/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16118:\"<h2 id=\"h-this-week-at-wordpress-org-february-20-2023\">This Week at WordPress.org (February 20, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">WordPress 6.2 is just over a month away. Join in the live demo and help test beta and release candidate versions. Should we revise the WordPress release cycle? Share you feedback. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fe_arrowRightCircle kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">WP 6.2 Beta 3 & Demo, Proposal to Update Release Cycle </h2><p class=\"kt-blocks-info-box-text\">β <a href=\"https://make.wordpress.org/core/2023/02/21/wordpress-6-2-beta-3/\">WordPress 6.2 Beta 3</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f5d3.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/02/21/6-2-live-product-demo/\">6.2 Live Product Demo</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64b-1f3fe.png\" alt=\"??\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\">Help Test WordPress 6.2</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f503.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/02/18/proposal-updates-to-the-wordpress-release-cycle/\">Proposal: Updates to the WordPress Release Cycle</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/270d-1f3fc.png\" alt=\"✍?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/community/2023/02/08/apply-to-attend-the-2023-community-summit/\">Apply to Attend the 2023 Community Summit</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"is-layout-flex wp-container-15 wp-block-columns\">\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-community\">Community</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/02/21/feature-request-additional-roles-for-wordcamp-sites/\">Feature request: additional roles for WordCamp sites</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/02/20/upcoming-wpdiversity-events-march-2023/\">Upcoming #WPDiversity Events: March 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/02/17/meetup-com-accessibility-overlay-february-update/\">Meetup.com Accessibility Overlay February Update</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/02/17/updates-to-the-wordcamp-site-setup-handbook-page/\">Updates to the WordCamp Site Setup Handbook Page</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/02/15/meetup-organizer-newsletter-february-2023/\">Meetup Organizer Newsletter: February 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/02/21/a-week-in-core-february-20-2023/\">A Week in Core – February 20, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/18/proposal-updates-to-the-wordpress-release-cycle/\">Proposal: Updates to the WordPress Release Cycle</a></li>\n</ul>\n\n\n\n<h3 id=\"h-wordpress-6-2\">WordPress 6.2</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/02/21/wordpress-6-2-beta-3/\">WordPress 6.2 Beta 3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/21/6-2-live-product-demo/\">6.2 Live Product Demo</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2, Finale</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/03/hallway-hangout-performance-improvements-for-wordpress-6-2/\">Hallway Hangout: Performance Improvements for WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/06/roadmap-to-6-2/\">Roadmap to 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/18/bug-scrub-schedule-for-6-2/\">Bug Scrub Schedule for 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/11/early-bug-scrub-schedule-for-wp-6-2/\">Early bug scrub schedule for WP 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/17/wordpress-6-2-planning-roundup/\">WordPress 6.2 Planning Roundup</a></li>\n</ul>\n\n\n\n<h3 id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/02/20/editor-chat-summary-wednesday-february-15-2023/\">Editor chat summary: Wednesday, February 15, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/22/dev-chat-agenda-february-23-2023/\">Dev Chat Agenda, February 23, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/22/editor-chat-agenda-22nd-february-2023/\">Editor Chat Agenda: 22nd February 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/17/dev-chat-summary-february-16-2023/\">Dev Chat Summary, February 15, 2023</a></li>\n</ul>\n\n\n\n<h3 id=\"h-developer-blog\">Developer Blog</h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/02/block-theme-resources-roundup/\">Block theme resources roundup</a></li>\n</ul>\n\n\n\n<h2 id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/02/10/agenda-for-docs-team-bi-weekly-meeting-february-21-2023/\">Agenda for Docs Team bi-weekly meeting February 21, 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/02/10/theme-directory-redesign-update/\">Theme Directory redesign update</a></li>\n</ul>\n\n\n\n<h2 id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/02/22/openverse-is-now-a-monorepo/\">Openverse is now a monorepo</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/02/22/community-meeting-recap-21-february-2023/\">Community Meeting Recap (21 February 2023)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/02/21/post-inaturalist-data-refresh-status/\">Post-iNaturalist Data Refresh Status</a></li>\n</ul>\n\n\n\n<h2 id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/02/21/performance-chat-summary-21-february-2023/\">Performance Chat Summary: 21 February 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-polyglots\">Polyglots</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/02/22/agenda-weekly-polyglots-chat-feb-22-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – Feb. 22, 2023 (07:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/02/21/helphub-and-devdocs-redesign-request/\">HelpHub and DevDocs redesign request</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/02/20/sync-translations-between-dev-and-stable-projects/\">Sync translations between Dev and Stable projects</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/02/20/components-into-tabs-in-the-right-sidebar/\">Components into tabs in the right sidebar</a></li>\n</ul>\n\n\n\n<h2 id=\"h-plugins\">Plugins</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/02/03/twitter-api-changes/\">Twitter API Changes</a></li>\n</ul>\n\n\n\n<h2 id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/02/06/proposal-creating-a-wordpress-contributor-mentorship-program/\">Proposal: Creating a WordPress Contributor Mentorship Program</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/01/27/discussion-ending-the-eternal-september/\">Discussion: Ending the Eternal September</a></li>\n</ul>\n\n\n\n<h2 id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/02/agenda-for-february-9th-support-meeting-2/\"><a href=\"https://make.wordpress.org/support/2023/02/summary-for-february-16th-support-meeting/\">Summary for February 16th Support Meeting</a></a></li>\n</ul>\n\n\n\n<h2 id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/02/21/hallway-hangout-lets-chat-about-using-replay-io-in-the-fse-outreach-program/\">Hallway Hangout: Let’s chat about using Replay.io in the FSE Outreach Program</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\">Help Test WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/02/20/test-team-update-20-february-2023/\">Test Team Update: 20 February 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/02/17/february-2023-faculty-meeting/\">February 2023 Faculty Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/02/10/training-teams-new-onboarding-program-is-now-live/\">Training Team’s new onboarding program is now live!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/02/08/video-conferencing-options-for-online-workshops/\">Video conferencing options for Online Workshops</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/02/06/training-team-2023-goals-setting/\">Training Team 2023 Goals Setting</a></li>\n</ul>\n\n\n\n<h3 id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=introduction-to-templates-block-theme\">Introduction to Templates (Block Theme)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=customizing-the-single-template-and-404-template\">Customizing the Single Template and 404 Template</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=intro-to-wordpress-accessible-color\">Intro to WordPress Accessible Color</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wordpress-as-a-paintbrush-internet-art-then-and-now\">WordPress as a Paintbrush: Internet Art Then and Now</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=best-design-practices-to-create-engagement\">Best design practices to create engagement</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-own-your-expertise-start-speaking-at-wordpress-events-amer-emea\">How to Own Your Expertise & Start Speaking at WordPress Events AMER/EMEA</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-building-a-react-app-utilising-the-wp-rest-api-2\">WP dev livestream: Building a React app utilising the WP REST API</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=help-test-wordpress-developer-edition\">Help test WordPress – developer edition</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-confidently-migrate-from-a-classic-theme-to-a-block-theme-2\">How to Confidently Migrate from a Classic Theme to a Block Theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-confidently-migrate-from-a-classic-theme-to-a-block-theme\">How to Confidently Migrate from a Classic Theme to a Block Theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=designers-developers-cats-dogs-living-in-harmony\">Designers & Developers: Cats & Dogs Living in Harmony</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=training-team-contributor-day-online-session\">Training Team Contributor Day Online Session</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=community-sharing-media-plugins\">Community Sharing: Media Plugins</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=lets-code-developer-ama-ask-me-anything\">Let’s code: Developer AMA – Ask Me Anything</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-building-a-react-app-utilising-the-wp-rest-api\">WP dev livestream: Building a React app utilising the WP REST API</a></li>\n</ul>\n\n\n\n<h3 id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/designing-with-the-columns-block/\">Designing with the columns block</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/using-the-wordpress-rest-api/\">Using the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://www.php.net/archive/2023.php#2023-02-02-1\">PHP 8.2.2 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-02-02-2\">PHP 8.1.15 Released!</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status’ <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It’s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Feb 2023 19:31:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:74:\"WPTavern: #64 – Patrick Posner on Using WordPress To Create Static Sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=142108\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wptavern.com/podcast/64-patrick-posner-on-using-wordpress-to-create-static-sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:50676:\"Transcript<div>\n<p>[00:00:00] Nathan Wrigley: Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the blocks, the themes, and in this case using WordPress as a way to create static sites.</p>\n\n\n\n<p>If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or go to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you. And hopefully get you or your idea featured on the show. Head 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 Patrick Posner. Patrick is a solopreneur and has been developing with WordPress since 2010. He’s worked in all sorts of environments as a freelancer, a senior developer in a WordPress product company, and since 2020 he’s been working full-time on his own projects.</p>\n\n\n\n<p>One of his projects is a plugin called Simply Static. It’s purpose is to make a static version of your website. This of course begs the question, what is a static site?</p>\n\n\n\n<p>Back in the early days of the internet, before WordPress, if you wanted to put a website online, you had to write the HTML yourself. You opened up a text editor and started to type. When you’d finished, you had an HTML file which you uploaded to a server somewhere. And if someone wanted to view that page, the server would send over that file.</p>\n\n\n\n<p>It worked, but thankfully, it didn’t stay that way for long. Software for desktops were developed, which would create the HTML for you. CMSs such as WordPress would take this further and create the HTML and CSS based upon the content you’d created, and the theme that was active. This was extremely convenient, but when all is said and done, the output is still the same as it was years ago. HTML, CSS, and possibly some JavaScript.</p>\n\n\n\n<p>Depending upon your setup in WordPress, quite a lot of complicated operations are needed to generate that code. Caching aside, is there a case for saving your HTML files, uploading them to a server, and then taking WordPress offline? Patrick certainly seems to think so.</p>\n\n\n\n<p>We talk about how this flattening of your website takes place, and what the advantages might be in terms of speed and the cost of hosting.</p>\n\n\n\n<p>We also get into the pros and cons of adopting the static site approach. Are there any sites which are more suited to being static than others?</p>\n\n\n\n<p>We also discuss what solutions are out there to make this happen, from Patrick’s own plugin, to the hosting providers and SaaS solutions which enable things like search and forms to still function.</p>\n\n\n\n<p>It’s a really interesting subject and one that you might like to explore, and this podcast is a great primer for that.</p>\n\n\n\n<p>If you’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’ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Patrick Posner.</p>\n\n\n\n<p>I am joined on the podcast today by Patrick Posner. Hello Patrick.</p>\n\n\n\n<p>[00:04:16] Patrick Posner: Hey Nathan. Glad to be here.</p>\n\n\n\n<p>[00:04:18] Nathan Wrigley: Thank you so much. This is honestly going to be a really interesting topic. I think there’s going to be a lot of people at the end of this conversation who go away and start to fiddle with their setup. Because we’re going to be talking about a really different way of serving up your website.</p>\n\n\n\n<p>We’re strictly in the bounds of WordPress. Everything that we’re going to be doing today is WordPress, but we’re going to add a little bit of a twist, and this is the way that WordPress is served up to your clients.</p>\n\n\n\n<p>Patrick is the owner and developer of a plug-in called Simply Static. I’m going to link to it in the show notes. There is a version on the WordPress repo, which is available for free. There is also a paid version and we’ll get into all of the different pieces of that. So we’re going to be talking about static sites today, essentially. Ironing out the problems, figuring out what it all is and what Patrick’s solution does.</p>\n\n\n\n<p>Before we begin that, let’s go into Patrick’s origin story. Patrick, if you wouldn’t mind, just tell us about your relationship with WordPress. Tell us where you are, what you do for a living, how long you’ve been doing it, and all of those good things.</p>\n\n\n\n<p>[00:05:25] Patrick Posner: Yeah, sure. Happy to share. So I’m a WordPress developer since 2010. And I moved from several steps into the career I’m having today. I started with an agency as a developer, building client sites. And, after a couple of years I moved into self-employment and started getting some freelance clients. Building my first WooCommerce stores and more advanced WordPress websites.</p>\n\n\n\n<p>After a bunch of years I got employed again and worked as a senior plugin developer for one of the biggest WordPress product companies here in Germany. Just before Covid, I decided to get back to self-employment again, and since then I’m working full-time on my WordPress products, mainly plugins.</p>\n\n\n\n<p>[00:06:16] Nathan Wrigley: Thank you very much. You’ve got a website which people can find. It’s patrickposner.dev, and I will link to that in the show notes, but you can see the range of different things that you are doing over there. But we’re going to be focusing very much on one of your endeavors, which is a static site generating plugin.</p>\n\n\n\n<p>We’ll get into how it works, that particular plugin in a moment. But I think first of all we should clear up what a static site is. So just to reiterate, we’re using WordPress, but there’s something different about the way that WordPress distributes the pages and posts that we save. So, could you describe to us, any amount of detail, I guess, considering this is a WordPress specific podcast you really can go into the weeds with this if you like. But just tell us what is a static site? What are the benefits? Why should anybody making WordPress websites be interested in this?</p>\n\n\n\n<p>[00:07:12] Patrick Posner: So imagine stepping back 20 years. The internet consists of HTML, CSS and JavaScript. You have no database interaction. You have no complex server setups, just plain files. You can edit them directly, you can upload your images, PDF files and other stuff. That are static websites.</p>\n\n\n\n<p>And as the world and especially the internet is getting more and more complex, people are really enjoying the ease of static websites, as they don’t have to handle with updates with a database, with complex deployments and all that stuff. So that’s a basic idea of static websites.</p>\n\n\n\n<p>They don’t have a database. They are pretty secure and almost unhackable as they have no connection to a traditional server. So there’s no PHP exploits, having no database where people can or where hackers can fetch your user data, or install any malicious code or something like that.</p>\n\n\n\n<p>Another really beneficial thing of static sites is a part of hosting. So you can basically host a static site everywhere, on a pretty cheap standard web hosting package. But there are also a bunch of more optimized hosting providers like Netlify or GitHub Pages, which cover a couple of common problems. We may get into detail a little bit later for that. But, let’s say 404 pages or a search integration or basic form integration, where people can submit the form and the content of that is forwarded to you via email.</p>\n\n\n\n<p>[00:08:56] Nathan Wrigley: Yeah, so just to rehash a bit of that and go into the weeds on some of the bits and pieces there. So you mentioned that 20 years ago, I remember it well, actually. If you wanted to browse a website, essentially you would go to the url, and if you inspected the source code, you would just see a list of HTML, there may be some CSS in there and so on, and perhaps some images were linked to.</p>\n\n\n\n<p>But typically that HTML would’ve been written by a human probably. They would literally line by line, have gone through and written the whole thing. And the only thing crossing the wire was the HTML. So the page that you requested was a file.</p>\n\n\n\n<p>You would request index.Html and the internet, wherever that was served, would give you that file. That file was somewhere. Fast forward 20 years, now we’re into WordPress territory. And again, there’s a whole broad spectrum of people that listen to this podcast, and some of them may not be aware that the moment you request a WordPress page, a whole litany of very complicated things are going on in the background, depending on how many plug-ins you’ve got and what it is that you’re requesting. But it’s not as simple as I request a page, WordPress serves the page. No, there’s a whole theming engine and all sorts of database requests are being built on the backend at the time you request them.</p>\n\n\n\n<p>Now, typically, you know, if it’s a really lean site, you might not notice that it might be very, very quick. But when you start to do more complicated things, the time it takes to build that page adds up. So what you are proposing is that you can still use WordPress, but the output is saved and it’s the output which is served up just like it was 20 years ago. Have I got that roughly right?</p>\n\n\n\n<p>[00:10:52] Patrick Posner: Perfectly perfectly. So that’s exactly what the static site generation does within WordPress. You can edit your content in WordPress, but the result is just a static website.</p>\n\n\n\n<p>[00:11:05] Nathan Wrigley: Okay, right. So hopefully we’ve cleared that bit up. Now you mentioned that there’s whole bunch of benefits to this. Number one, I think, really would be the speed. The fact that there’s nothing being constructed by WordPress. So seconds, milliseconds. I don’t really know. It depends on each individual instance of WordPress.</p>\n\n\n\n<p>But the point is, there’s nothing complicated going on the background. You request a file, a file is served back at you, and so that’s quicker. Now, along for the ride there is also the security benefit. And you said that these websites are typically unhackable. And again, that might be a mystery to people. Can you explain why the security posture is improved by going static.</p>\n\n\n\n<p>[00:11:52] Patrick Posner: Yeah, sure. So security is often overlooked when it comes to static websites. But for me, that’s as important as the performance aspect of it. So you have basically a layer before your WordPress website. So you have your WordPress website, and the entire website is protected by basic authentication, for example. Or even better, you have your WordPress website on your local computer with a tool like Local WP, and your WordPress website don’t even touch the internet directly.</p>\n\n\n\n<p>And you convert the WordPress website to a static website. And this static website don’t have access to your WordPress database. There’s no ability to execute PHP, for example. So there’s no one that can access your server and do anything you don’t want.</p>\n\n\n\n<p>That starts with forms. So someone submits like malicious code in your form, and the input isn’t really escaped. So it doesn’t matter on a static website as you never have the problems that someone submits a form and it will be directly transferred to a WordPress website.</p>\n\n\n\n<p>The same is true for executing code. So if you have a static website, there aren’t any PHP files, and most statics hosts even block PHP files from executing in general. You will never have something like a malicious script on your aesthetic website that sends spam emails or collecting user data you don’t want. All of that is gone once you have a static website.</p>\n\n\n\n<p>[00:13:30] Nathan Wrigley: So you mentioned the scenario where, and I would encourage people to explore this a little bit, because it’s quite an interesting scenario. You mentioned that you could use a local install of WordPress. And so you may, for example, have come across a tool like Local, which is a desktop application. So you can download it for the Mac and windows and so on. There may be versions for Linux, I actually don’t know.</p>\n\n\n\n<p>But you can have a local version of WordPress and really, it only works on your machine whilst your machine is switched on. The principle being that you may use it just to test out a plugin, or you may use it just to test something out that you want to do quickly. You can spin up a website, but that website doesn’t really have an online presence. If you switch your computer off at the end of the day, it’s gone, it’s nowhere. It doesn’t exist.</p>\n\n\n\n<p>But in your scenario, you can create your website on your local machine. Then export the pages because you’ve essentially scraped the output HTML and figured out where the CSS and the files are and so on. And then you could push that to the server and then shut your computer down and the website will still work. But there’s absolutely no database online. There’s no PHP files getting requested, and so in that way, it’s more secure.</p>\n\n\n\n<p>[00:14:49] Patrick Posner: Yeah, absolutely. Also means that you have like a staging environment automatically. So your WordPress website is your staging website, right? So as long as you don’t push an update to your static website or to your hosting, you can do whatever you want with your WordPress website. Installing a new plugin, testing a new theme. Updating or not updating WordPress is also fine. Your static website stays online no matter what.</p>\n\n\n\n<p>[00:15:17] Nathan Wrigley: Yeah, it’s a real one way relationship, isn’t it? Whatever is on your WordPress website is always in isolation, if you like. And you have to publish the changes and push them to the server. So in that way, nothing comes back because the server really, in a sense, has no knowledge of the fact that there’s a WordPress website. It just knows that, well somebody’s requested a particular page. Have I got that page? Yes, I have. Here it is. It doesn’t know that there’s a WordPress website there at all.</p>\n\n\n\n<p>[00:15:51] Patrick Posner: Yep, that’s right.</p>\n\n\n\n<p>[00:15:52] Nathan Wrigley: Okay, and you mentioned another benefit of this approach was the fact that it can be hosted, and my understanding is that can in many cases, depending on the size and scale of your website, it can be hosted really, really affordably. And by affordably, I mean incredibly affordably. Now, I don’t know if there’s a dozen, hundreds of companies which are dedicated to this type of environment, but can you just talk us through the sort of cost benefits of doing it this way? Static.</p>\n\n\n\n<p>[00:16:24] Patrick Posner: Yeah, true. So, hosting a static website is completely different when it comes to the pricing tag attached, compared to any kind of a press hosting. We’re talking about like $1 for an entire year of hosting.</p>\n\n\n\n<p>There are also a bunch of providers that you can use for free, like Cloudflare Pages. Cloudflare Pages allows you to do like, I’m not entirely sure, it’s 500 updates to your static website per month for free. They don’t charge for the amount of files or the used data, the used space. So that’s one thing that you can use completely for free. There are others where there’s a little fee attached, but it’s always insanely cheap compared to traditional WordPress hosting.</p>\n\n\n\n<p>[00:17:16] Nathan Wrigley: You literally are in many cases talking about a handful of US cents, not dollars per month.</p>\n\n\n\n<p>[00:17:24] Patrick Posner: Yeah.</p>\n\n\n\n<p>[00:17:25] Nathan Wrigley: Yeah, it really is amazing. You mentioned earlier that the hosting company does take on a slightly different burden, in that because it’s just pages and that’s all they know about, then some of these hosting companies do take on additional responsibilities. So for example, in the scenario where somebody accidentally searches for a url which doesn’t exist.</p>\n\n\n\n<p>Well, WordPress, if you’ve got a traditional WordPress site, which is online with a traditional host, it handles that and it serves up a 404 page. Plus it can do things like search for you. That’s not the case here. And you have to take additional steps for those things to be catered for. So 404, search, things like forms. Do you just want to talk us through how you overcome those things?</p>\n\n\n\n<p>[00:18:10] Patrick Posner: Yeah, so you can, there are two different directions you can go here. You can do it yourself. It’s not that hard to provide an htaccess file to serve the request to a specific page. That’s one way. So there are a lot of users, especially in the Simply Static world, doing all of that on its own.</p>\n\n\n\n<p>But you can also use a provider like, let’s say Netlify. Netlify provides an easy way to configure a 404 page, and they handle all of that for you. So you basically type in a search and if there’s no result coming up, Netlify will handle the redirection to the 404 page for you. They also handle things like forms. So you can basically add a little ID into your existing form, and they will forward the submission to your email address that you also configured within Netlify.</p>\n\n\n\n<p>There are a bunch of solutions for different use cases. You can always decide to use a more like all in one solution like Netlify, or use your traditional hosting package and use services like Formspark. Formspark is a static site form tool. You can easily configure forms on Formspark and embed them. You get a little HTML snippet. You can embed them on your WordPress website and they handle all of that for you. Spam detection, forwarding, CC, BCC connections, automations with Zapier. So let’s say you want to, you have a, like a, newsletter form and you want to, each time someone submits the form, you want to automatically submit this user to your Mailchimp list.</p>\n\n\n\n<p>You can do that with Zapier or within Formspark. I’m not really sure, but I think Formspark even have a automation with MailPoet right now. So there are a bunch of ways you can handle that. And all of them, or most of them, don’t require to be like a professional developer or something like that.</p>\n\n\n\n<p>[00:20:12] Nathan Wrigley: Yeah, I guess that’s an important point, isn’t it? So there are many benefits that you can list. You know, it’s quick, it’s secure, it’s affordable. But there’s also a few little additional hurdles. You have to in some way manage search. In some way manage 404, and forms and so on. And, it sounds like the industry around static website hosting is beginning to mature to the point where there are off the peg solutions.</p>\n\n\n\n<p>So you mentioned Netlify can configure it so that 404 is taken care of. You don’t need to necessarily manage that yourself. And again, you mentioned a SaaS service, which will deliver forms to your email address. And I’ve had a little bit of a play with Formspark, and in all honesty, it was trivially simple to stick up a form and get it sending the data that was consumed by that form to my, my email address, it only took a matter of moments. It was really good.</p>\n\n\n\n<p>So, what we’ve talked about there is what a static site is. And because you’re on the podcast, it’s clear that you’re into that area and in fact, you’ve got a solution to turn a WordPress website into a static website. It’s called Simply Static. I’ll link to both the paid version and we’ll go into the differences a little bit later, but I’ll also link to the WordPress repository version, which will get you certainly going. Tell us what simply statics approach is. What is it doing? How long have you been working on it? Is this yours? Did you take it over from somebody? Just give us the rundown of what is Simply Static.</p>\n\n\n\n<p>[00:21:46] Patrick Posner: So Simply Static is a static site generator as a WordPress plugin. It basically acts like Google or a regular user. So, once you start an export within Simply Static, there’s a crawler behind it that visits each page on your website and downloads the entire HTML rendered, and all the CSS files, JavaScript files, and of course all the images.</p>\n\n\n\n<p>And, at the end, it zips the entire results. So you can use it to upload it, for example, to Netlify. I adopted the plugin in 2020 from Scott Blaine, who does an incredible job putting together the initial version of Simply Static. I got in contact with Blaine due to the fact that I was a user of the Simply Static plugin, and I used it for a client website where we had problems that we hadn’t full control over the server configuration.</p>\n\n\n\n<p>It was like a traditional hosting package. And the client booked a TV commercial and we expected a huge spike in traffic for that day, and we need a way to handle that. So nothing could be worse. And once TV commercial was out the landing page would simply get away. And so I would never restart again once TV commercial was on. So, I stumbled upon simply Static and it wasn’t working at that time, but I thought, okay, so working as a WordPress developer for like 12 years, I should be able to make it work.</p>\n\n\n\n<p>And, I fixed the problems in like one or two hours and provided a patch and Scott implemented that one and we got in a little discussion about the future of Simply Static and he told me that he was having his third or false kid, I’m not really sure, and he don’t really have the time anymore to maintain or even extend Simply Static from now on.</p>\n\n\n\n<p>And I thought, okay, so I’m working on my own products for like six years or seven years and I really, being a fan of complex products. So my other products like Password Protection or Secure File Transfer, it’s always something a little bit nerdy and I thought, okay, Simply Static is a pretty good fit for my existing portfolio, so why not taking it over and shipping all the patches, all the features people were requesting for years. And yeah, that was almost two years ago, or two and a half years ago, I’m not exactly sure. So that was the short history of how I get into Simply Static.</p>\n\n\n\n<p>[00:24:31] Nathan Wrigley: Perfect. So you took it over and ever since 2020, it’s been under your stewardship. And you just described that when you click publish in the same way that Google go around the internet and capture what is on your webpage, they’re not literally, well, they probably are as well, but typically they’re not taking an image of what’s on your page, they’re looking at the source. So they’re looking at the HTML and any other things that might be attached via that HTML.</p>\n\n\n\n<p>And essentially that’s what your plugin does. If you’ve got a brochure site, let’s say it’s got 10 pages. When you click the button in Simply Static.</p>\n\n\n\n<p>[00:25:08] Patrick Posner: Generate.</p>\n\n\n\n<p>[00:25:09] Nathan Wrigley: The generate button, thank you. Then it will scrape those 10 pages and put it into a zip file. That zip file, in the free version, you then take to a hosting provider and we keep talking about Netlify, so we may as well go with that. Take it to Netlify, upload it, and it’s then live, you’ve got your new iteration. So it’s a process of creating your WordPress website, saving things as you would normally, clicking generate, carrying the zip file over to Netlify, putting it over there, and then from that moment on the world, if you’ve got your DNS set up correctly, is looking at the flat html, the static HTML files, that simply Static has generated. Is that right?</p>\n\n\n\n<p>[00:25:55] Patrick Posner: Correct.</p>\n\n\n\n<p>[00:25:56] Nathan Wrigley: Perfect. How is the project going? You know, you’ve had it under your stewardship for a couple of years. It feels like static sites have become a bit of a hot topic. So I’m imagining that the plugin is experiencing growth.</p>\n\n\n\n<p>[00:26:10] Patrick Posner: Yeah, so Simply Static had a huge growth within the last two years. We almost 4x’d amount of active installation. So at the moment I took over the development of Simply Static was like 10 K active installations. We are now reached 40 K active installations. One thing I’ve done on day one, as I took over Simply Static and the GitHub repository was switching it to public.</p>\n\n\n\n<p>So it’s really a community driven project. You can always check the entire code base on github.com/simplystatic. And, you will find a little roadmap. You find issues we are working on. You can provide pull requests. Or you can make suggestions for new integrations or things that may not be working as expected.</p>\n\n\n\n<p>So we had that case with Elementor last week where Simply Static isn’t able to extract the bundled js that Elementor is generating to improve the performance. And we handle all of that, try to be as open as possible about the future of Simply Static. How things are going. Which direction we are going. Why I do things the way I do.</p>\n\n\n\n<p>So, for example, the crawling part, there are other solutions that do it more in a WordPress way. So they fetch all the custom post types and the generated archives and things like that. And it’s a valid approach, but I thought SEO is such a popular thing today and why not work as close as Google as possible to give an expected result once you generate a static website.</p>\n\n\n\n<p>So see it through the eyes of Google, and the eyes of your users and make sure your content is linked properly. You are having valid URLs. You are not having a bunch of 404 errors on your website. All of that is things Simply Static is taking care of to make the export as easy as possible.</p>\n\n\n\n<p>[00:28:17] Nathan Wrigley: It’s interesting because you and I are both obviously deeply embedded in the WordPress community. We love it and we probably obsess about WordPress more than is healthy for us. But a typical, I’m plucking this out of thin air, but I’m imagining there’s some truth in what I’m about to say.</p>\n\n\n\n<p>I would imagine a significant proportion of implementations of WordPress could really benefit from being static. And what I mean by that is, they are literally a site which is not really getting updated. It was built for let’s say a small business. And, that small business, they just need an internet presence. They need to be out there. They need a contact form. They need some description of what it is that they offer. Something fairly straightforward.</p>\n\n\n\n<p>The users of that, there’s a possibility that they don’t want the burden, because the internet is not what they do for a living. They don’t want the burden of having to renew licenses. They don’t want the burden for having to update plugins. They don’t want the burden for updating WordPress when it reaches the next version and so on. And I suppose in a sense, your solution kind of obviates that a little bit, because you don’t really, now, forgive me for saying this, because everybody will probably shoot me down for this.</p>\n\n\n\n<p>The site would still be secure, serviceable, workable even if you didn’t do all of the updates. So long as when you save it and generate your file, even if you’re on a really, really old version of WordPress, so long as the HTML that comes out the other end is valid and works, you are fine..</p>\n\n\n\n<p>[00:29:52] Patrick Posner: Yeah, absolutely. So one thing I keep saying to, a lot of users and customers is, let’s take WordPress offline in a good way. So we can use WordPress as one of the best tools to create a website. That can be on your local computer, on a protected environment, somewhere hosted. And can be sure that the results exported statically is still secure.</p>\n\n\n\n<p>Even if you don’t update or you don’t update your plugins regularly, you don’t update WordPress each time. You may not even update your theme out of a fear that it may break something. And all of that is covered by Simply Static due to the conversion. So use WordPress as a powerful editor for your website and use Simply Static to have peace of mind that your website is fast and secure even if you don’t get that much involvement in the WordPress world and you are always on track on all the security vulnerability reports and what’s new on Google page speed and all of those things.</p>\n\n\n\n<p>[00:30:59] Nathan Wrigley: It’s, really interesting. I’m just thinking about appliances in my kitchen. So an example would be my dishwasher. I don’t want my dishwasher to be on when there’s no dishes that need cleaning. It just needs to be off. Turn it off, then periodically go back to it and when it needs it, switch it on. And then once it’s done, switch it off again. It’s the same sort of principle here, isn’t it?</p>\n\n\n\n<p>WordPress, as on off-able. You switch it interact with it, publish the changes, get the changes onto the hosting in some way, and we’ll talk about the different methods in a moment, and then turn it off again, and remove any of the things that WordPress being switched on all the time may bring with it. Yeah, so I really like your description of it there.</p>\n\n\n\n<p>Now, just moving the subject forwards a little bit. Static sites, I feel that the word static sites and headless are being used a lot at the minute. And in many cases there may be confusion that these are in fact the same thing, that a static site that we are talking about today is the same as headless.</p>\n\n\n\n<p>Now it’s not really true, and I wonder if you could describe the differences. We could really go into the weeds here, but I don’t think we’ve probably got time for that. So a simple description of how they differ would be good.</p>\n\n\n\n<p>[00:32:11] Patrick Posner: I think simple is the best way to describe the difference between headless and static websites. So a headless website is more like a technical challenge. You usually have your WordPress website online somewhere all the time when you run a headless setup. The headless website continuously makes use of the REST API for WordPress to fetch content. To submit forms. To do all of dynamic stuff, but with JavaScript and not with PHP.</p>\n\n\n\n<p>And, one of the problems with headless website is that you almost ever need to be a developer or you have a developer maintaining your headless website. And that’s not the case with static websites due to the static generation, you can be pretty much anyone, and use the benefits a headless site offers without the technical challenges involved.</p>\n\n\n\n<p>And you can even use, and that’s a huge point for a lot of people, use your existing theme. So headless websites tend to be built from scratch, mostly in an enterprise context, and the theme is built with JavaScript and a modern JAMstack. So things like React are involved, Next.js, just to name a few of the tools involved in the stack.</p>\n\n\n\n<p>And they are complex and far away from end user friendly. A static website you use the tools you already know, but you get the benefits of a headless website. So the security improvement and the performance.</p>\n\n\n\n<p>[00:33:44] Nathan Wrigley: Yeah, I think it’s important to say that both implementations, static and headless, they really do have benefits. There’s clearly benefits that you’ve described for static and clearly there’s benefits for the headless approach. And as you described, enterprise level clients, and the fact that they may have access on tap to developers is a possible requirement there. I mean, you may be an incredibly technical non-developer, but I would imagine that it’s true to say that static sites are a little bit more straightforward to implement.</p>\n\n\n\n<p>Okay, with that in mind, let’s go through some examples of places where static sites are a good fit. And it is very important to say it’s not always the case. There is definitely going to be some examples where switching WordPress off is not what you want to do. So let’s do this in two ways. Let’s do the good first, let’s have some examples where being able to turn WordPress off using a static site is a good fit. Let’s do that first.</p>\n\n\n\n<p>[00:34:46] Patrick Posner: Sure. So, a good fit for a static WordPress website is a corporate website. It’s the most basic example. So yeah, traditional WordPress website for your plumbing service or whatever you do for a living. These sites are a perfect case for static sites. They rarely change. They don’t have any highly dynamic interaction with the WordPress website. You export them, leave them online, and that’s all you need.</p>\n\n\n\n<p>Another good example are blogs. So you can serve your entire blog as a static website and use little tricks to make something like comments work. So there are a bunch of tools and they are not that expensive to make comments work on your static website. You can publish new articles quite easily with Simply Static. So that’s a good case too.</p>\n\n\n\n<p>There are more specific types of websites that are also good fit. Think of documentation websites, where you add or improve the copy of the documentation, but you rarely switch the entire design, for example, for a documentation website.</p>\n\n\n\n<p>Another good fit are landing pages or lead generation websites. Think of AdWords landing pages or just an SEO landing page optimized for a specific keyword. Those pages are mostly small, so the static export is quite fast. And you don’t have to worry about updates or is my lead generation form working and all of that.</p>\n\n\n\n<p>Another thing that is often offloaded from the traditional website, and is more common in an enterprise context are career and department websites. So you have a separated career portal for all the jobs you are offering or you’re planning to offer to start a new department. And these pages are often separated from the main website. So like department-x.my domain.com, for example.</p>\n\n\n\n<p>[00:36:45] Nathan Wrigley: Yeah, perfect. So essentially what we’re saying there is, if the site is more or less static, then it’s a definite fit. So a corporate website. But even if it’s being modified, not necessarily being modified every few moments, then a blog for example. This is perfect. So all of those scenarios are a perfect fit. If you can say that you’re going to modify it not every moment of every day, then it seems to be a good fit.</p>\n\n\n\n<p>But that leads us onto the areas where potentially it’s not a good fit. And really this is where the dynamic stuff comes in. Any website which needs access to the database because it’s doing database intensive queries, that’s probably the area where it’s not such a good fit. So let’s go into the not good fits then.</p>\n\n\n\n<p>[00:37:30] Patrick Posner: So what the dynamic is key here. So there are a bunch of types of websites that obviously aren’t a good fit for a static website. The most common one is eCommerce websites. So think of WooCommerce as the most popular eCommerce solution for WordPress. You don’t really want to run a WooCommerce store as a static website. People need to be able to add things to their cart. They need to be able to log in to their customer account to download invoices or review their orders, and all of such things. I mean, you can do that with a static website, but it’s really a challenging part and you don’t want to do that.</p>\n\n\n\n<p>Another common thing, especially in the last couple of years are membership or community websites. So all kind of websites that really are highly interactive. People commenting. People sharing. There are subtypes of that like, forums or you even use like BuddyPress to have your own little social media space or corporate intranet where people discussing topics and you don’t really have a control over the publishing. There are a lot of users, high interactivity. It wouldn’t just make sense to publish a static version of a forum thread each time someone submits a new reply to it.</p>\n\n\n\n<p>[00:38:48] Nathan Wrigley: You imagine things like LMSs and e-commerce websites, where more or less everything that the end user wishes to do involves sucking something out of the database. So yeah, I can see why those scenarios won’t work. So that’s a nice clear definition. There’s definitely good fits here and there’s areas where, yeah, you probably could make it fit, but really, at that point you’re probably needing to really push the boundaries a little bit.</p>\n\n\n\n<p>In terms of the product that you’ve got, so Simply Static,. You have a version on the WordPress repo, but you also have a paid version. Typical case is, if there’s a paid version, there’s probably some extra features. Would you just like to outline the difference between what you have to do with the free version and what you can do. We’re recording this at the beginning of 2023, so caveat emptor, things may change, but at this moment in time, what’s the difference between the two different products that you offer?</p>\n\n\n\n<p>[00:39:44] Patrick Posner: Sure, happy to clarify that. So, Simply Static Pro works kind of like an add-on to Simply Static. And, the major difference is the convenience and the amount of automation provided. So while you can use Simply Static in the free version to generate a static version of your website, getting a zip and uploading it to Netlify. Simply Static Pro offers automation.</p>\n\n\n\n<p>That means you can connect Netlify directly, or you can connect services like Bunny CDN directly. And you don’t even need to log into Netlify to publish a static version. You can just simply use the generate button. And once you set up the configuration, everything is automated. So you generate the website and the files are automatically transferred to Netlify.</p>\n\n\n\n<p>There’s also a point of convenience in the ability to export subsets of your website. So you do a full static export at the start and you have your website running on Netlify and you just want to publish a new post. Or you want to export a collection of pages with their images based on a taxonomy, for example. This is where also Simply Static provides additional features, like single exports and build exports. Build exports, work like a taxonomy. You attach posts, pages, images, additional files, and you can export the entire subset with a simple click of a button. These are two of the main reasons people are using Simply Static Pro.</p>\n\n\n\n<p>Another thing is the idea to avoid external services as much as possible. That’s why Simply Static Pro’s also shipping with a forms integration, for example. We’re currently supporting Contact Form 7 and Gravity Forms, but we also figured out ways to use Elementor forms or Formidable Forms and a bunch of others. To use them without a service like Formspark we mentioned earlier.</p>\n\n\n\n<p>The idea is that your WordPress website is on a protected area and Simply Static Pro is forwarding the requests from your static website to your dynamic WordPress website by authenticating and submitting it back to WordPress and receiving the request on the static website with JavaScript, where I have a similar approach with the built in search integration.</p>\n\n\n\n<p>So Simply Static Pro ships with two different tools to make search work. One is fuse.js. It’s basically dependency-less JavaScript solution for search. We’re building json file, it’s a physical file on your server that contains all the search results that are available as content on your website.</p>\n\n\n\n<p>We’re fetching the titles, the description, and the complete, the full HTML content of each page. Storing that on a physical file and once a user starts typing the search, there is a auto complete feature suggesting results. User clicks on it and the search integration handles a redirection to the correct page.</p>\n\n\n\n<p>There’s another integration with Algolia. Algolia is a paid service. It’s like an online search solution, which is quite powerful as they handle fuzzy search and synonyms for you or typo tolerance search. So if someone types in a keyword of a typo, Algolia makes sure that he still finds the correct content.</p>\n\n\n\n<p>But in the end it works the same way. The major difference here is that Fuse.js has a physical file, which I wouldn’t recommend for a pretty huge website, but it’s fine for a standard website. So if you have like a simple corporate website, you can feel free to use Fuse.Js. But if you have like 150 K pages corporate website, I wouldn’t recommend Fuse.Js as a json file. I mean, you can imagine that the json file is adding up in size pretty quickly if you have 100,000 results stored in there.</p>\n\n\n\n<p>That’s where Algolia comes into play. Algolia is also really cheap. So you pay nothing for like 10 K searches per month and I don’t know, $2 for an additional 10 K search results. So it’s not a huge cost attached to your static site overall cost.</p>\n\n\n\n<p>[00:44:14] Nathan Wrigley: The number one thing that I take away from that is the pro versions really is adding, for the typical user, it’ll be adding convenience. The ability to, if you like, sync your WordPress website with wherever it’s hosted. So rather than having to download a file, take it over and upload it, you just click a button and the plugin takes care of that. Makes a decision about what it is that needs to pushed over and so on. So, yeah that’s really interesting.</p>\n\n\n\n<p>Patrick, we’re running out of time, but just very briefly, last question really is all about the future. You’ve obviously had experience of this now for two years. It sounds like you’re in it for the long haul. What have you got in the pipeline? What’s on the roadmap for the next period of time?</p>\n\n\n\n<p>[00:44:56] Patrick Posner: Yeah, so I just finished the roadmap for this year for Simply Static. So a bunch of things planned. One thing I’ll be launching simplystatic.com next month? Yeah, I think it will be next month. And it will contain all information collected for Simply Static and Simply Static Pro. All tutorials, a free course on how to use WordPress as a static site generator that I’m just in the middle of the production phase.</p>\n\n\n\n<p>We’ll also improve the onboarding for new developers and optimizing the way of contribution on GitHub. That means writing guides, how to contribute, offering documentation, how the code style is working, and what we expect from a commit or pull request. Offering a bunch of new issues to pick from. I got quite a lot of inspiration from the WordPress project itself. So you can imagine finding things like good first issue. In the future on the GitHub repository of Simply Static.</p>\n\n\n\n<p>There’s also a huge relaunch plan for the entire admin area of Simply Static. I’m already six month in a new ui ux concept for Simply Static. I try to completely modernize the look and the feeling of Simply Static and the configuration, and simplify a lot of the those things to make it easier for end users to use Simply Static, and get all the benefits without knowing about what is GitHub or what is deployment or things like that.</p>\n\n\n\n<p>So, easier wording, easier configuration. A little wizard that asks a couple of questions and preconfigures Simply Static for you, to make it as easy as possible. There’s also an ongoing task that we have pretty much like every WordPress plugin out there. So we like to improve the integration with popular plugins like Elementor, SEO plugins.</p>\n\n\n\n<p>This week we just shipped a huge update for the Simply Static free version. That contains an automation for XML site maps. So we automatically check which SEO plugin you use, finds the XML site map and add it to the static export so you don’t have to even know that you have a XML site maps, as long as you have a SEO plugin installed and basically configured, Simply Static will now be able to pass the XML sitemap and extract all URLs provided there.</p>\n\n\n\n<p>We’re also planning to build an official integration with the really popular Autoptimize plugin, make the HTML, CSS minification and bundlings that Autoptimize offers work with Simply Static without any additional configuration.</p>\n\n\n\n<p>[00:47:38] Nathan Wrigley: Sounds like there’s a lot.</p>\n\n\n\n<p>[00:47:40] Patrick Posner: I’m always planning a lot, but I also onboarding new people to the team. So, there’s a developer helping me right now with the Simply Static tasks and I may be able to onboard an additional developer, or maybe if someone is willing to lose the job, someone helping with support.</p>\n\n\n\n<p>Feel free to reach out if you are a technical person and maybe not a developer, and you would like to help with customer support for Simply Static. So I would really appreciate it.</p>\n\n\n\n<p>[00:48:10] Nathan Wrigley: Perfect segue Patrick, because the final question I want to ask is how do people contact you? Where are you online? That could be anything you like, an email address, obviously your contact form page on your website, but Twitter handle. Whatever you like.</p>\n\n\n\n<p>[00:48:23] Patrick Posner: Yeah, so patrickposner.dev is my website. You find all the information about Simply Static and Simply Static Pro here. And you can always reach out to me at hello@patrickposner.dev. I’m also quite active on Twitter, so @patrickposner_. Don’t ask me why there’s an underscore. That’s the two best ways to reach out to me.</p>\n\n\n\n<p>[00:48:47] Nathan Wrigley: Patrick Posner, thank you very much for chatting to me on the podcast today. I really appreciate it.</p>\n\n\n\n<p>[00:48:52] Patrick Posner: Thanks for having me.</p>\n</div>\n\n\n\n<p>On the podcast today, we have <a href=\"https://patrickposner.dev/\">Patrick Posner</a>.</p>\n\n\n\n<p>Patrick is a solopreneur and has been developing with WordPress since 2010. He’s worked in many environments, as a freelancer, a senior developer in a WordPress product company, and since 2020 he’s been working full time on his own projects.</p>\n\n\n\n<p>One of his projects is a plugin called <a href=\"https://wordpress.org/plugins/simply-static/\">Simply Static</a>. Its purpose is to make a static version of your website. This, of course, begs the question, what is a static site?</p>\n\n\n\n<p>Back in the early days of the internet, before WordPress, if you wanted to put a website online, you had to write the HTML yourself. You opened up a text editor and started to type. When you’d finished, you had an HTML file which you uploaded to a server somewhere, and if someone wanted to view that page, the server would send over that file. It worked, but, thankfully, it didn’t stay that way for long.</p>\n\n\n\n<p>Software for desktops were developed which would create the HTML for you. CMSs such as WordPress would take this further and create the HTML and CSS based upon the content you’d created and theme that was active.</p>\n\n\n\n<p>This was extremely convenient, but when all is said and done, the output is still the same as it was years ago, HTML, CSS and possibly some JavaScript.</p>\n\n\n\n<p>Depending upon your setup in WordPress, quite a lot of complicated operations are needed to generate that code. Caching aside, is there a case for saving your HTML files, uploading them to a server and then taking WordPress offline? Patrick certainly seems to think so.</p>\n\n\n\n<p>We talk about how this flattening of your website takes place, and what the advantages might be in terms of speed and the cost of hosting.</p>\n\n\n\n<p>We also get into the pros and cons of adopting the static site approach. Are there sites which are more suited to being static than others?</p>\n\n\n\n<p>We also discuss what solutions are out there to make this happen, from Patrick’s own plugin to the hosting providers and SaaS solutions, which enable things like search and forms to still function.</p>\n\n\n\n<p>It’s a really interesting subject and one that you might like to explore, and this podcast is a great primer for that.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/simply-static/\">Simply Static plugin on the WordPress repo</a></p>\n\n\n\n<p><a href=\"https://patrickposner.dev/plugins/simply-static/\">Simply Static Pro website</a></p>\n\n\n\n<p><a href=\"https://patrickposner.dev/\">patrickposner.dev website</a></p>\n\n\n\n<p><a href=\"https://www.netlify.com/\">Netlify</a></p>\n\n\n\n<p><a href=\"https://pages.github.com/\">GitHub Pages</a></p>\n\n\n\n<p><a href=\"https://localwp.com/\">LocalWP</a></p>\n\n\n\n<p><a href=\"https://pages.cloudflare.com/\">Cloudflare Pages</a></p>\n\n\n\n<p><a href=\"https://formspark.io/\">Formspark</a></p>\n\n\n\n<p><a href=\"https://www.mailpoet.com/\">MailPoet</a></p>\n\n\n\n<p><a href=\"https://bunny.net/cdn/\">Bunny CDN</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/contact-form-7/\">Contact Form 7</a></p>\n\n\n\n<p><a href=\"https://www.gravityforms.com/\">Gravity Forms</a></p>\n\n\n\n<p><a href=\"https://elementor.com/\">Elementor</a></p>\n\n\n\n<p><a href=\"https://formidableforms.com/\">Formidable Forms</a></p>\n\n\n\n<p><a href=\"https://fusejs.io/\">Fuse.js</a></p>\n\n\n\n<p><a href=\"https://www.algolia.com/\">Algolia</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/autoptimize/\">Autoptimze</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, 22 Feb 2023 15: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: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:123:\"WPTavern: New Proposal Seeks to Update WordPress Release Process for Merging Gutenberg Features After Beta 1 Feature Freeze\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=142157\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://wptavern.com/new-proposal-seeks-to-update-wordpress-release-process-for-merging-gutenberg-features-after-beta-1-feature-freeze\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6372:\"<p>WordPress lead developer Andrew Ozz has published a <a href=\"https://make.wordpress.org/core/2023/02/18/proposal-updates-to-the-wordpress-release-cycle/\">proposal</a> for the addition of a new “gutenberg-merge” ticket type that would formalize the latitude Gutenberg contributors have been given for committing code after Feature Freeze during the release cycle.</p>\n\n\n\n<p>Ordinarily, any new features and enhancements landing in the release are required to be committed before Beta 1 so they can be ready for testing. It used to be the case that tickets could be changed from “enhancement” to “task” right before Beta 1 as a rare exception for items that were not ready in time for beta and just needed a few more days to get committed. </p>\n\n\n\n<p>“The intent was to allow another two or three days, not a week or two,” Ozz said. “This exception used to happen quite rarely, perhaps a few times per year.</p>\n\n\n\n<p>“However lately this exception has become part of the standard release workflow. In recent years, it’s become common for 15 to 20 tickets for code coming from Gutenberg to be changed to tasks each release. The reason they are changed is not to give the developers a few more days to complete them. It is mostly to signify that they are going to be committed later.”</p>\n\n\n\n<p>Ozz contends that because the Gutenberg feature plugin is used on more than 300,000 site, including WordPress.com, and because 60% of users rapidly update to the latest version, that any features and enhancements coming from Gutenberg have already been tested.</p>\n\n\n\n<p>The comment section of the proposal is active with differing opinions. Several participants in the discussion did not agree that just because features are in the plugin does not mean that they have been adequately tested against the goals they were intended to achieve.</p>\n\n\n\n<p>“Something that worries me about how this could work is, that currently the level of documentation for features that land in core have a higher standard than Gutenberg merges,” Core contributor Fabian Kägy said. “Once we approach the beta 1 time the documentation team goes through all the features that were merged in that cycle, making sure there are dev notes for any changes that might impact users / developers. If this deadline is shortened this also means that it may become harder to uphold this standard.”</p>\n\n\n\n<p>Kägy also noted the challenges of plugin and theme developers testing their extensions against core in order to ensure compatibility with the latest version.</p>\n\n\n\n<p>“With this changed workflow the actual amount of time where you know with a pretty large likelihood what features will be part of a given core release becomes shorter, making it more difficult to ensure compatibly with a release in time of the release,” Kägy said.</p>\n\n\n\n<p>Core contributor Peter Wilson <a href=\"https://make.wordpress.org/core/2023/02/18/proposal-updates-to-the-wordpress-release-cycle/#comment-44390\">outlined</a> two concerns with the proposal: </p>\n\n\n\n<ul>\n<li>by treating Gutenberg as a special case, it will increase the conflict between those who primarily work in the WordPress-Develop repository and those who primarily work in the Gutenberg repository,</li>\n\n\n\n<li>bypassing the feature freeze requirements for the editor goes against the contention that <a href=\"https://make.wordpress.org/core/2022/08/18/wordpress-development-setup/\">Core is Gutenberg and Gutenberg is Core</a>.</li>\n</ul>\n\n\n\n<p>Wilson said the late merging of Gutenberg features has “been a source of conflict for several years.”</p>\n\n\n\n<p>“Bulk merges of Gutenberg features late in the cycle have also been an issue <a href=\"https://make.wordpress.org/core/2019/11/25/devchat-after-the-hour-november-20/\">reported from both those who work primarily in the Gutenberg repo and those who work primarily in the WordPress-Develop repo</a>,” he said. “For years incremental merges during the cycle have been advocated but never achieved per the comments in the linked post.”</p>\n\n\n\n<p>Wilson also disagrees with the proposal’s assertion that features developed in the Gutenberg repository are better tested in the feature plugin, as the goal of the Beta and RC periods are to test the release as a whole.</p>\n\n\n\n<p>“With Gutenberg as a plugin <a href=\"https://github.com/WordPress/gutenberg/blob/cc497909ef1deb51c5bc4d6d43f334131bf31194/lib/blocks.php\">replacing core blocks with the plugin’s versions</a>, testing the release as a whole doesn’t happen until after the editor changes merged in to WordPress-Develop,” Wilson said.</p>\n\n\n\n<p>“It’s only once Gutenberg is merged in to WordPress-Develop that the unit tests start running on various <a href=\"https://make.wordpress.org/hosting/test-results/\">hosting providers running the test suite</a> in a range of environments.”</p>\n\n\n\n<p>WordPress Core Committer Joe McGill encouraged the proposal’s authors to <a href=\"https://make.wordpress.org/core/2023/02/18/proposal-updates-to-the-wordpress-release-cycle/#comment-44400\">elaborate on the policies and expectations</a> that will be applied to committing patches to tickets designated with the new ticket type. </p>\n\n\n\n<p>“For example, should all of these commits be completed before RC-1, unless a bug is discovered during the RC period—and only the fixes discovered be committed, or are there other rules in play?” McGill said. “Personally, I still think that we should aim to have code for any major new feature merged before the Beta-1 milestone, regardless of whether it’s being tested in the Gutenberg plugin or not.”</p>\n\n\n\n<p>The discussion is ongoing in the comments of the proposal. Although the proposed changes primarily affect core contributors, committers, and release leads, they also impact testers and WordPress’ plugin and theme developer community working to ensure compatibility ahead of a major release. Those who have feedback on how Gutenberg features are handled during and after “feature freeze” should jump in on the comments of the <a href=\"https://make.wordpress.org/core/2023/02/18/proposal-updates-to-the-wordpress-release-cycle/\">proposal</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, 21 Feb 2023 22:44:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:\"Do The Woo Community: Regulated Cryptopayments with Jonathan Wood\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74490\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://dothewoo.io/regulated-cryptopayments/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:404:\"<p>Kathy, Brad and Dave chat with Jonathan Wood from HAYVN chat about crypto payments and regulatory, two words you don\'t hear often together.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/regulated-cryptopayments/\">Regulated Cryptopayments with Jonathan Wood</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Feb 2023 09:12: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: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:83:\"WPTavern: Meetup.com Follows Through on Commitment to Improve Website Accessibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=142142\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wptavern.com/meetup-com-follows-through-on-commitment-to-improve-website-accessibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2385:\"<p>In November 2022, Meetup.com raised concerns with the WordPress community (and the broader community of accessibility professionals) after it <a href=\"https://wptavern.com/meetup-com-raises-concerns-with-new-accessibility-overlay\">added an accessibility overlay</a> to its website, powered by <a href=\"https://www.equalweb.com/html5/?_id=8591&did=1116&_gid=202027&trace=equalweb_menu_en_\">EqualWeb</a>. Accessibility advocates and professionals unequivocally discourage the use of overlays as they are often marketed as a quick fix for making websites ADA compliant and immune from legal action when the accessibility issues persist underneath.</p>\n\n\n\n<p>Meetup.com <a href=\"https://wptavern.com/meetup-com-removes-accessibility-overlay-in-response-to-wordpress-communitys-concerns\">removed the accessibility overlay</a> in response to the WordPress community’s concerns and committed to focus on direct improvements to the Meetup.com platform. WordPress’ Accessibility team <a href=\"https://make.wordpress.org/community/2023/02/17/meetup-com-accessibility-overlay-february-update/#respond\">reports</a> that the company is following through with this undertaking and has completed an assessment with <a href=\"https://www.deque.com/\">Deque</a>, a well-respected accessibility consultancy.</p>\n\n\n\n<p>The assessment identified 732 issues that need to be resolved, which Meetup.com plans to address through two phases. Approximately 40% of the issues are related to design and color contrast. These will be resolved in the first phase with the help of an external consultant who will guide Meetup.com’s engineers and staff to fix issues and ensure ongoing compliance. In the second phase, the company will tackle the remaining issues which center on web remediation. These include problems with the site’s component library and website components. </p>\n\n\n\n<p>Meetup.com serves approximately <a href=\"https://www.crunchbase.com/organization/meetup/technology\">24 million visitors</a> every month in more than 190 countries. The WordPress project uses the platform for local meetups and educational events – both virtual and in-person. As a result of WordPress’ diplomatic advocacy and Meetup.com’s reception to user feedback, the platform will soon provide a better experience for people with disabilities and those who use assistive technology.</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, 17 Feb 2023 22:57:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: WordCamp London In Early Planning Stages for September 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:30:\"https://wptavern.com/?p=142125\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordcamp-london-in-early-planning-stages-for-september-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:2131:\"<p>The organizers of WordCamp London are in the <a href=\"https://twitter.com/WordCampLondon/status/1626199074876624897\">early planning stages</a> for an event that would take place in September 2023. It has been nearly four years since London hosted a WordCamp. The event was cancelled in 2020 and scheduling was not resumed until recently.</p>\n\n\n\n<p>Organizers have created a <a href=\"https://wclondon.crowdsignal.net/delivering-wordcamp-london-2023-1a72\">survey</a> that respondents can take anonymously in approximately 2-3 minutes. The questions were created to help them know how to shape the event. In 2019, <a href=\"https://london.wordcamp.org/2019/\">WordCamp London brought in 768 attendees</a> and sessions were livestreamed for the first time. Organizers are asking how many people attendees would like to see at WordCamp London, with options ranging from fewer than 400 to more than 800. A few popular WordCamps in recent years have elected to keep a smaller number of spots available in order to better manage uncertainties and ensure a sold out event.</p>\n\n\n\n<p>The survey also attempts to gauge potential attendees’ preferences on the number of conference days, as well as interest in volunteering, organizing, sponsoring, or speaking at the event. There is an option at the end for respondents to leave their contact information to stay in the loop on opportunities to participate in and support the WordCamp.</p>\n\n\n\n<p>For many in Europe, and especially the UK, WordCamp London was their first WordCamp experience. Those interested to attend can <a href=\"https://london.wordcamp.org/2023/\">sign up for updates</a> on the placeholder website, or follow the camp on <a href=\"https://twitter.com/WordCampLondon\">Twitter</a> or <a href=\"https://connected.so/@WordCampLondon\">Mastodon</a>. For those in the local area, the WordPress London Meetup has opened <a href=\"https://www.meetup.com/london-wordpress/events/291658618/\">registration</a> for this month’s gathering at The Liberty Bounds. They plan to discuss WordCamp London and reconnect and will resume having speakers and pizza at future events. </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, 17 Feb 2023 21:41: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: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:82:\"WordCamp Central: WooCommerce sponsors WordPress community events across the globe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=3161236\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/02/woocommerce-sponsors-wordpress-community-events-worldwide/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1615:\"<p>We’re very grateful to <a href=\"https://www.woothemes.com/woocommerce/\">WooCommerce</a> for <a href=\"https://central.wordcamp.org/global-community-sponsors/\">sponsoring WordPress community events all around the world</a> at the Bronze level again in 2023! WooCommerce’s support helps make local community events (like WordPress meetup groups and WordCamps) better for WordPress enthusiasts and easier to organize for our wonderful group of hardworking volunteers.</p>\n\n\n\n<a href=\"https://central.wordcamp.org/files/2019/03/Copy-of-woocommerce-logo-color-black@2x-2.png\"><img /></a>\n\n\n\n<p>WooCommerce is a customizable, open-source eCommerce platform built on WordPress. </p>\n\n\n\n<p>Sell anything online with the flexibility and freedom of the world’s most popular CMS.</p>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/plugins/woocommerce/stats/\">4+ million active installations</a></li>\n\n\n\n<li>55+ million downloads</li>\n\n\n\n<li>450+ extensions to add and extend functionality</li>\n</ul>\n\n\n\n<p>Whether you’re selling a few handcrafted items to a niche market, taking an existing business online, or going global with an enterprise-level eCommerce business WooCommerce gets you set up and selling fast, scaling securely as you grow.</p>\n\n\n\n<p>Your content is forever yours and customizable down to the button color. Plus you’re joining a supportive, <a href=\"https://woocommerce.com/meetups/\">global community</a> of developers and store owners.</p>\n\n\n\n<p>Developed and supported by a distributed team, WooCommerce is powered by Automattic, the creators of Jetpack and WordPress.com.</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, 17 Feb 2023 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Isotta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:111:\"Post Status: Product People Arnas Donauskas, Web Hosting Product Owner at Hostinger — Post Status Draft 141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=147310\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"https://poststatus.com/product-people-arnas-donauskas-web-hosting-product-owner-at-hostinger-post-status-draft-141/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:40008:\"<div class=\"is-layout-flow wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Arnas Donauskas, Web Hosting Product Owner at <a href=\"https://www.hostinger.com/\">Hostinger</a>, joins Cory Miller to discuss his WordPress product. Arnas leveraged his experience in customer success and UX research to transition into owning a WordPress product. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">53</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p>In this episode, Cory Miller and Arnas Donauskas, Web Hosting Product Owner at <a href=\"https://www.hostinger.com/\">Hostinger</a>, talk about what it means to truly value customer obsession. This core value has shaped Arnas’ career path, from his roots in customer service to creating products to provide simple website restoration and security for principal vulnerabilities.</p>\n\n\n\n<p><strong>Top Takeaways:</strong></p>\n\n\n\n<ul>\n<li><strong>Customer Obsession. </strong>Users are facing daily challenges that need real-time solutions. Think about their problems. Value their feedback. Sometimes clients are limited because we haven’t kept up with the speed of evolving technology. Approaching things from a user perspective to prioritize and build products creates optimal impact.</li>\n\n\n\n<li><strong>Removing Manual Work. </strong>Wherever possible, we are working to automate things to provide more easy buttons for clients. Automating things, creating single-click solutions, and providing the best examples and guidance to reduce users’ steps to accomplish tasks.</li>\n\n\n\n<li><strong>Possibilities with AI. </strong>Everyone is eager to see how AI will change the industry. Cory and Arnas discuss the potential opportunities AI creates to build even better products in the future.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<div class=\"is-layout-flex wp-container-22 wp-block-columns sponsor has-theme-palette-8-background-color has-background\" id=\"StellarWP\">\n<div class=\"is-layout-flow wp-block-column\">\n<h3 class=\"StellarWP has-theme-palette-1-color has-text-color\" id=\"Sponsor\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> Sponsor: <span><a href=\"https://poststat.us/elementor\" rel=\"sponsored nofollow\">Elementor</a></span></h3>\n\n\n\n<p><strong>Elementor </strong>enables web creators to build professional, pixel-perfect websites with an intuitive visual builder. Quickly create amazing websites for your clients or your business with complete control over every piece, without writing a single line of code. Join <a href=\"https://elementor.com/community/\">a vast community of web creators</a> from all around the world who deliver exceptional websites using Elementor.</p>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column is-vertically-aligned-top\"><div class=\"wp-block-image elementor-logo\">\n<img src=\"https://cdn.poststatus.com/wp-content/uploads/2022/08/Elementor-Logo-Symbol-Blue-150x150.png\" alt=\"Elementor\" class=\"wp-image-104033\" width=\"150\" height=\"150\" title=\"Elementor Logo\" />Elementor</div></div>\n</div>\n</div></div>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"?\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://twitter.com/Hostinger\">Hostinger</a></li>\n\n\n\n<li><a href=\"https://www.hostinger.com/\">Hostinger Website</a></li>\n\n\n\n<li><a href=\"https://ithemes.com/backupbuddy/\">Backup Buddy</a></li>\n\n\n\n<li><a href=\"https://openai.com/blog/chatgpt/\">Chat GPT</a></li>\n\n\n\n<li><a href=\"https://www.cloudflare.com/\">Cloudflare</a></li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li>Arnas Donauskas (Web Hosting Product Owner at <a href=\"https://twitter.com/Hostinger\">Hostinger</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"?\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p><strong>Cory Miller:</strong> [00:00:00] Welcome to Post Status Draft. We’ve got another series in our product people interviews and I have a new friend named Anis from, uh, hosting her. We’ve been talking about Lithuania, where hosting is based and his beautiful full country. And tell him that I can’t wait to visit sometime. But welcome to the post draft podcast artist. </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> Hi Corey, and thanks for inviting me. Uh, it’s been a pleasure being in this, you know, uh, uh, podcast and, uh, yeah. Uh, let’s get started on that one. Right. Okay. </p>\n\n\n\n<p><strong>Cory Miller:</strong> Um, so could you tell me what you do at hosting? </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> Uh, yeah, of course. So, uh, right now at hosting here, I’m a web hosting product owner. And, uh, yeah, this is the current troller I’m, uh, going with and I did had some previous roles in hosting her as well. And yeah, I, a short journey perhaps, uh, what I did [00:01:00] at, at hosting. </p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah. Yeah. Would you, would you tell me about, oh, well, let me ask you one question first. Yeah. Yeah. So when you say web product owner, that obviously, I’m sorry, web hosting product owner? Yeah, yeah, yeah. </p>\n\n\n\n<p>That, that includes WordPress. Yeah. Yeah, yeah. If there’s more that you do in that role, or is it concentrated on WordPress? </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> Uh, so WordPress is only a part of what we do. Mm-hmm. , uh, but we cover everything that involves hosting, uh, all of the features of the hosting. Uh, basically whatever you have to do on hosting, this is our responsibility to manage it, um, develop it. </p>\n\n\n\n<p>Um, Any new features, perhaps, uh, clients feedback. Uh, clients want something new and uh, they find it really awesome to use it. Or perhaps clients face some kind of an issue with hosting and we see trouble over there and we want to assist clients. Um, this is our job, you know, to make it, uh, happen and deliver it to them. </p>\n\n\n\n<p><strong>Cory Miller:</strong> Awesome. [00:02:00] Well, okay, before I get into WordPress, I’m, we’re gonna geek out on WordPress and the WordPress product at Hosting Gear, but tell me your story. Where, how did you get here? You just mentioned you had been in a couple roles before the web hosting product owner at Hosting Gear. So how, how’d you get started in this and, and end up as the, uh, today as the product owner? </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> Uh, yeah, of course. So everything started almost three years back. Uh, next month it, it’ll be my three years anniversary. And, uh, I’ve started as a customer success specialist. I worked there for over a year and, uh, yeah, over the journey in the Success Special Specialist role, I noticed that I had, uh, Um, let’s say I liked working towards website issues that clients came to us and they delivered their problems. </p>\n\n\n\n<p>And, uh, over time I got, you know, I naturally noticed that they are way more, uh, WordPress clients compared [00:03:00] to other platforms. And, uh, only later on in my future also understand by looking at the data directly, what’s the actual difference in there? Cuz I didn’t, you know, read something online in that time and, I over time board press, I guess, grew on me in the success, uh, specialist role. </p>\n\n\n\n<p>Uh, I did more digging in, you know, the plugins, what are the actual critical errors mean and how we can, you know, help clients fixing on them. And, uh, yeah, so I did that role, uh, for over a year and then I got an a job promotion opportunity. To be a UX researcher. What I did in that role is found out what our, what issues our clients had, uh, where they struggled using our services as a hosting provider, including the control panel they used every day, and the [00:04:00] services in general. </p>\n\n\n\n<p>Perhaps their site speed is slow and we have to find out what exactly their clients know dealing. And work on that. So yeah, as a UX researcher, that was my main role. And if we happen to, you know, design some something new, I would be that guy who’s telling, okay, in here we must have this, this, this. </p>\n\n\n\n<p>Because our clients face the issues here daily and we want to address that part and, you know, make that happen and solve that. And after, you know, everything, we measured the numbers, how it helped for our users, perhaps we. Missed something releasing here or, uh, we should update something here. And yeah, we worked on that as well. </p>\n\n\n\n<p>And, uh, after the UX research role, I got offered a role as a product associate. Uh, so in for me, product associate is like a, a starter role of product owner, uh, [00:05:00] because you. Learning things that you are gonna do as a product owner. So they are prioritizing issues. Uh, for, uh, for developers, what we’re gonna work on, what is the most important things for our client to get shipped as fast as possible. </p>\n\n\n\n<p>And everything is based on our client’s needs, what they face daily. Uh, Know, seeing the bigger picture, checking online trends, what is happening in the industry? What is happening in the, the WordPress world? Uh, if something happens, uh, like let’s say, uh, a random example, new AI drops that generates WordPress websites automatically, why we still don’t have it? </p>\n\n\n\n<p>What’s blocking us to delivering this to our clients? And uh, and uh, yeah, so when I worked in that role and gathered my experience as a product associate, I was, uh, offered to work as a product owner of web hosting that which includes WordPress and, [00:06:00] uh, yeah, working on the delivering features to our clients that, uh, means them the most, uh, that, uh, automates, uh, you know, Painful manual areas of set, setting up things for the website and yeah, in general, on the web, on the hosting platform, I see it in the way that I want to help and automate things as much as possible for our clients so they wouldn’t have to deal with that struggle manually and doing everything by hand. </p>\n\n\n\n<p>Let’s see. From that perspective, </p>\n\n\n\n<p><strong>Cory Miller:</strong> I think that’s the ideal, you know, if I could create an ideal path to being a product owner. It’s that you spent your first career in customer success seen firsthand. That’s the cutting edge of any software or hosting business because, um, for the first eight months of my tenure starting ithe, I did cus I did all of the customer support and success for our, our company. </p>\n\n\n\n<p>And that gave [00:07:00] me a bird’s eye view. I mean, Really face-to-face view of the problems and what people were encountered when they’re trying to get something done. So that’s number one. I I love that that’s where you got your start, because you’re always gonna stay close and sensitive to the needs of the customer. </p>\n\n\n\n<p>And then second, you a you, you asked, I’m like, so I obsessed. Over the experience of a customer, what are other problems? And you found those often in the support. Anything that kind of hanged up, you’re like, that’s a problem that we can try to eliminate. And sometimes it’s software code and sometimes it’s, it’s that UX and UI part, part of that. </p>\n\n\n\n<p>So I love that background leading to be a product owner because I think those are. Key experiences that make a good product owner, like a part of the whole mix make, cuz you see firsthand what people are trying to do and that knowledge and experience comes in and it gets baked into how you lead your team. </p>\n\n\n\n<p>So I, I love that background. [00:08:00] I. </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> One thing I could add is that throughout this, you know, past experience, what really also helped out, you know, the product knowledge, if we had to like, collaborate with the teams, the, the developers to give them the feeling, how the users see it and how they use it, it really, you know, assisted in that area as well. </p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah. And, and I know hosting from T to Dominica, your ceo, cmo, and different people on your team at work camp past couple months, um, When there’s people that say Customer obsession is our core value, but I hear it over and over authentically from everybody I talked to at Hozier and then knowing that the product owner came from that, like, you know, </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> the best feedback always comes from the clients. That’s why, you know, uh, we do have, I regularly have, uh, uh, interviews with the clients. Uh, just hearing what they have to say about the product, uh, the better they like it or don’t [00:09:00] just, you know, uh, raw data from, directly from the user who tells it the best, what, what’s their experience with our services. </p>\n\n\n\n<p><strong>Cory Miller:</strong> Okay. Thank you for that background. I like to tell the human side of the story of the people leading the products that we use out there. Um, and that’s what this series is all about. So that’s why I stick there and like, who’s the human behind leading the product? And thank you for sharing your journey there. </p>\n\n\n\n<p>Um, okay, now let’s dig into product. Let’s Geek Adam product. So, I love that you saw like naturally in the form, like so many people were talking about WordPress and that kinda led to this. So that form helps formulate your experience. But tell me about the product that you’re leading now, um, at Hoer, um, related to WordPress. </p>\n\n\n\n<p>Um, what things are you excited about that you’ve done? Shapes or your experience and your team experience, and obviously the customers, but tell me some things that stick out a part of the. </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> Um, yeah, so [00:10:00] about the feature set that I’m really excited that we recently, uh, released would be, uh, one of the things that, uh, we directly bring to the clients is, uh, a simple website restoration. </p>\n\n\n\n<p>Uh, and it’s, uh, Basically, uh, pre what we’ve improved, uh, uh, right now, users, workers users will not have to select any files and database they have to restore. The only thing they have to select is data. Uh, what we remove, what we wanted to remove here is the struggle, selecting files and database separately. </p>\n\n\n\n<p>And yeah, we just wanted, you know, uh, just select the date. If you, uh, remember, you know, the, the working one, no, if you don’t, no worries. You can just restore the, another one as we save quite a few of the, of the backups, uh, on our services. And yeah, all of the processes are fully automatic. After that, you just click restore and that, that’s that. </p>\n\n\n\n<p>And, um, </p>\n\n\n\n<p><strong>Cory Miller:</strong> I, I think that’s, uh, before you go on, I think that is, is [00:11:00] really awesome that that’s the first one you listed because we’ve all been there where we break a site doing something or something’s, some event is happening in scrambling and, and I think we had a plugin call back buddy, so I know this subject really well. </p>\n\n\n\n<p>It’s like, and I’ve been there where you, you break something and you just wanna roll back the change without having to go into all these. Processes and stuff. And then the facts of the web is something’s gonna happen. It’s the web, it’s tech, it’s something’s gonna happen. But being able to go to a date and time and restoring, I think is so critical. </p>\n\n\n\n<p>It’s that classic un, you know, uh, command Z undo function. It’s like I can go back to my timeline and restore it. </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> Yeah, exactly. And, you know, uh, we want to, I always try to put, you know, myself in the client’s shoes, what I, I would have to do. And, you know, that, uh, I want to restore it as fast as possible. </p>\n\n\n\n<p>And you know, in the, in the brief moment when something happened to my website, I site tried to search it, the, [00:12:00] the root issue as fast as possible. If I can’t, I go restore the site and, uh, yeah. Uh, That in that moment, selecting correct files and database could, you know, be crucial. So why just don’t move that step and just allowing users to select database in that uh, date. </p>\n\n\n\n<p>And that’s all. </p>\n\n\n\n<p><strong>Cory Miller:</strong> We’ve all been there where we’ve, uh, installed a new plugin or upgraded plugin and it’s broken things and being able to have that easy undo button with their restore is so critical. So thank you for sharing number one. Cause I think that’s something I wanted to highlight. I know. Process. </p>\n\n\n\n<p>And most of us that do web work with WordPress understand this too, is like something’s gonna happen where you’re gonna have to back it up. So, okay. Re restoration process. Uh, what’s, what’s another, uh, </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> another one is in a bit of difference, uh, area. It comes from, uh, security. It’s, it would be work principle vulnerabilities. </p>\n\n\n\n<p>Uh, At first we released only, uh, [00:13:00] vulnerabilities to WordPress plugins. Uh, basically what we would do is, uh, we. We tell clients when there are vulner vulnerabilities in any of their installed plugins on the, on the site. Uh, let’s say you have 10 plugins, we keep track of all of them, and if we notice everything, uh, is there a security issue we give you, uh, automated steps. </p>\n\n\n\n<p>Uh, either there is an update, uh, if there is a safe version, we tell you. 1.2 version is safe. You can update it. If we don’t have, you know, the safe version to recommend, we say, uh, this plugin is better be deleted cuz it may directly harm your website security and create, you know, a bag door or something like that to it. </p>\n\n\n\n<p>And, um, further we thought, We can’t only cover plugins, you know, when it comes to vulnerabilities of WordPress, we also have, you know, to include themes and the core versions. So this [00:14:00] was what, uh, included as well. So, uh, the same principle. Uh, we keep track, you know, on the, on the used themes. Uh, it could either be, you know, the active one or just sitting files over there. </p>\n\n\n\n<p>Uh, and of course, you know, the core files of the board press we give, you know, Suggestions to clients to either o update it, if there’s a, a say, versions or not. Yeah, so this was the, the feature that was like recently quite released and we, from the client’s perspective, we really saw the, you know, the, those tips that really helped clients and that they don’t need to worry about the security and checking for vulnerabilities themselves. </p>\n\n\n\n<p><strong>Cory Miller:</strong> See, I go, I bet you encountered. A hundred times in your job and your role as a customer success success operator because WordPress is safe. Uh, it’s continuing [00:15:00] to be ev vulnerabilities in, in, in everything that you see, uh, because it’s just part of being a citizen on the web. But that, uh, I bet you saw that and I bet that formulates the experience’s why you said that was number two because you just Two problems that I solved back in the day over and over. </p>\n\n\n\n<p>Wanna be able to restore something, something broke, and then, oh, there’s something coming in that you want to be able, or a part of it that you want to like, have some knowledge. So I think security is absolutely awesome and I love that. That’s first and second. You, you, you probably don’t know a lot. </p>\n\n\n\n<p>That’s not about me, but you hit my hallmarks where I spent 10 years of my life doing so I love that. These two things are, are these two, two things part of the WordPress hosting packages you all do? Is it a separate thing? </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> Uh, everything comes included into the WordPress packages, you know, in the WordPress hosting that we offer. </p>\n\n\n\n<p>Yeah. Uh, just, you know, the, the backups, uh, that I’ve firstly mentioned there are, you know, daily and a weekly. It depends on the hosting [00:16:00] plan, of course. Uh, but yeah, the restoration feature itself is included when you just purchased the plan itself. </p>\n\n\n\n<p><strong>Cory Miller:</strong> Awesome. Okay, so we talked about. We’ve talked about restorations, vulnerabilities, and what, what’s the third that’s on your mind about the product? </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> Yeah. The third one is the one we just recently released and are currently working on it is the hosting your award press plugin. Uh, why it was Bruce released. We just have to be fair and understand that a lot of clients not always, you know, using hosting control panels continuously because a lot of users just know, you know, slash VP admin and just go inside their, uh, panel and do their stuff and we wanted, you know, still have the communication, let’s say in that side. </p>\n\n\n\n<p>Did the client inside the [00:17:00] word. And assist them if possible. Uh, so right now with the first iteration, uh, we focused on assisting client publishing their website and, uh, changing, you know, the essentials of the website, like uploading logo, editing description, and so on. It’s for, um, uh, let’s say fresh user in the WordPress who wants to know to have a simple blog website and. </p>\n\n\n\n<p>Still wants to do it on the WordPress and not, you know, the standalone builder, uh, let’s say Vics. And, uh, what we are working on is, uh, we. We do have quite, you know, big, uh, YouTube library of, uh, hosting your learning section and we want to include that section inside the, uh, hosting your plugin so users will be able, you know, to check quickly, uh, steps to. </p>\n\n\n\n<p>on [00:18:00] YouTube cuz you know, uh, there are people who are good at, uh, getting information through knowledge-based articles and there are people who prefer video material when they getting, you know, things done. Personally, I’m a video guy. Uh, I just have to be honest. If I see a knowledge-based article, I probably scroll to the bullet points where everything main is mentioned here. </p>\n\n\n\n<p>But when it comes to video, yeah, I just watched it and it’s way easier to consume information that way. And yeah, so that’s another kind of interaction with the user. And we will provide, you know, the jumps to them. Knowledge-based, uh, article, uh, contacting, you know, support or assisting to contact the support. </p>\n\n\n\n<p>And there are further plans I would like, you know, to implement some custom settings to, to the plugin itself, where users are able to, uh, implement them on the website, uh, maintenance page, some caching options so users wouldn’t have to, you know, to find that information manually. So [00:19:00] it would be, you know, like a, a hot quick. </p>\n\n\n\n<p><strong>Cory Miller:</strong> Um, when you think about building, continuing to build, refine, uh, and even improve the offering that you give your clients, um, who are types of customers that you all think about? Who, who is hosting your manage WordPress? Um, really kind of for, </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> uh, sorry, could you repeat the, the first part of the question bit? </p>\n\n\n\n<p>Like, for me, </p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah. Who are, who are the, uh, like avatars or Oh, that you think of when you’re building these products? Like restore vulnerabilities? Yeah, the plugin. There’s somebody you’re thinking of, or a couple people, types of customers you’re thinking about that use this product. And can you, can you share a little bit about Yeah, yeah, yeah. </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> Sure. Of course. So, uh, it’ll be like, you know, small businesses, online, hustlers, uh, beginners at the. The [00:20:00] hosting business in general because like we know as a hosting, wanting, provide ability to make a website online for any everyone. Uh, so our, you know, uh, when we thinking of these features, our, we are thinking of the clients who are re relatively, relatively new in this business and they want, you know, help in all of this. </p>\n\n\n\n<p>Uh, that’s why we try. Trying to listen to what clients have to say when something releases out and if it’s, you know, difficult. Uh, there have been already some improvements on the restoration feature on the, I’m just some saying some examples on the website, automatic migrations where the users saw struggles and we worked on that. </p>\n\n\n\n<p>So we always think, thinking of the online hustler, uh, beginner. When this information is new for the client and they just want, you know, to have their blog small, uh, shop online and do their stuff. </p>\n\n\n\n<p><strong>Cory Miller:</strong> I love that [00:21:00] because I think a lot of the WordPress market overall has gotten, um, beyond that, I, I don’t, there’s probably a better way to say that, but I, I remember the day when you can go find hosting and you had an idea and you could take WordPress and good hosting and create something that may or may not go anywhere. </p>\n\n\n\n<p>So when you say the hustlers, the the do it yourself first type, I love that because I’ve, I’m afraid. Some parts in our industry we’ve gotten away from the mention of WordPress is d Democratize Publishing to give people tools and Awesome. And so I love that you all, there’s, there’s. An awesome company out there offering that where, you know, I’m like a lot of people, I, I was looking at your plans and I go, when was the last time I saw a hundred sites that you could build, [00:22:00] you know, for every little. Quirky and sometimes dumb idea I have. </p>\n\n\n\n<p>I can start it and then see where it goes. And I love that with the plans that you offer and the work that you’re doing too. And then have the Easy Restore button kinda keeping me safe and you’re helping me use this, so I love that. That’s one of the avatars that you all focus on. </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> Uh, yeah, like I understand that fact. </p>\n\n\n\n<p>You know, when I first tried the WordPress myself, uh, it, there’s no lying. It can be scary, you know, seeing all the sidebar options, what to do, what to change, uh, and seeing online there’s a bunch of information about the WordPress, what could be edited and so on, so on, so on. Uh, so we don’t want. Provide the best examples, guidance to the users and, you know, remove manual work as much as possible. </p>\n\n\n\n<p>So they would just, you know, do their thing and have their website online and slowly, you know, gather traffic to their whatever project it [00:23:00] is. </p>\n\n\n\n<p><strong>Cory Miller:</strong> Awesome. Okay, so we talked a little bit about the product and some of the features that you’re very proud of, you and your team. Um, we’ve talked about some of the fits for how hosting, hosting can fit into whatever you’re kind of building. </p>\n\n\n\n<p>Now, I wanna get, as a product owner, someone that has a lot of experience with WordPress and the web, um, what are you excited about in the future, um, with what you’re. </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> Uh, you know, like talking from the future perspective plans and Yeah. You know, the releases, the features. </p>\n\n\n\n<p><strong>Cory Miller:</strong> If, if you want to, or, you know, I’d love to get your take also on just the web, where the web’s going, where WordPress is going. What’s exciting, just looking out on the landscape of this. Amazing software that turns 20 years old. </p>\n\n\n\n<p>I can’t believe that. 20 years old this year. Um, you know what you’re seeing on the web, we’ve got new things coming up all the time. Like you were talking about automation, AI stuff. These things are just [00:24:00] going insane and accelerating. And is there anything from that perspective you see that gets you excited about working on the web? </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> Yeah. Yeah, so I can definitely talk about AI stuff. Uh, that, yeah, I find really intriguing and I would just think how awesome it would be. Uh, because, uh, I recently saw one of the website that, uh, Uh, they create webs, WordPress website based with ai, but it wasn’t exactly what I was looking for, and I just imagined if I would describe what I would do on my, uh, WordPress website directly. </p>\n\n\n\n<p>Let’s say I am a dog, I’m a animals photographer, and it’ll be my blog about. And I just, you know, uh, just give a description about my website and I would get like, you know, pre-built all of the content with some dummy images that could just be replaced with my own photography stuff. I just think from the perspective how it would [00:25:00] shorten the journey for the client on building the website. </p>\n\n\n\n<p>Uh, because, um, if you want, you know, to build neat website, You still have to install some plugins and, uh, you know, make changes in, let’s say builder or even the gut, Gutenberg blog builder. You still have to make changes, but if everything would come pre-made for you and all of the things, it’s si like, it’s similar to demo content when you imported the website because everything gets important. </p>\n\n\n\n<p>But I want to, you know, skip. Skip that step where just I have to describe what I want to have in a website and bam, in five minutes it’ll just, uh, generated and I just change my pictures to whatever I photograph. </p>\n\n\n\n<p><strong>Cory Miller:</strong> I think there’s so many, um, opportunities that a AI presents for WordPress in particular. And um, that’s [00:26:00] another thought I was like, oh. Um, the technology’s innovating and going so well. It’s like I saw somebody, uh, tweet, they use chat g p t for, to build a WordPress plugin, and you’re like, okay. If you understand that language, then they can do a lot of the heavy lifting AI part, but it’s like maybe the AI’s asking you, what do you want? </p>\n\n\n\n<p>Are you wanting to sell something on it? You know? Okay. What kind of thing you’re trying to sell. The idea of that they can go out there and say, here are three options that would do that. Um, is pretty, pretty incredible. And, you know, I like to tinker on, on WordPress websites. Um, but it’d be nice just to go like, have a prompt, someone asking you something, asking you what are you trying to do, and lead you through that process with good options. </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> Exactly. Imagine if you would, after our conversation, we would have a built workplace website that it’s not fully ready to go online. Yeah, yeah. Like conversation and that’s all. [00:27:00] So the conversation with AI and yeah, I have my website online. </p>\n\n\n\n<p><strong>Cory Miller:</strong> The new website builder be ai. And I think the answer is yes. </p>\n\n\n\n<p>How? How soon? We’ll see. That would be interesting. Yeah. But I, I continue to have these conversations with people around the WordPress business of WordPress ecosystem because I think there’s so much potential here and it just takes bright minds like yourself to think of. Oh, we could do this. WS Forums, for instance, has worked on some open AI integrations. </p>\n\n\n\n<p>The Jonas over at Webhooks has done a tutorial and integration and, uh, I wanna see more of that because you’ve seen this, you know, as you’ve been working on the web and doing all these things, you’ve seen, like, there’s problems that people, it takes. It’s just time consuming. And if we can take some of that stuff away, we help them get to their goal and their dream faster and better. </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> Hmm. Yeah, that’s, Definitely, uh, I found what I can say, like on hosting the ai, we have a logo maker that’s, you know, AI powered. So [00:28:00] personally I need a simple logo for something and that’s, you know, in a way unique. I just use the, the, the, the AI generator of logos and that’s helps. </p>\n\n\n\n<p><strong>Cory Miller:</strong> I have to check that out. </p>\n\n\n\n<p>We’ll have to put that in. Show notes, the logo generated to test test it out. Yeah. Nicole, well, anything else you wanna share about what you’re doing? Uh, any other thoughts you have on the web? I wanna make sure we get the chance to hear from you, someone that leads the WordPress product in particular, uh, at hosting your, um, </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> Oh yeah. </p>\n\n\n\n<p>The, the thing that we are also working on that will affect our WordPress users as well, uh, it’s already in our public word, uh, roadmap, is that we will soon be releasing our c D n. So, you know, it’s, uh, From the public roadmap, we receive quite a lot of, you know, requests from the clients that Yeah, yeah. </p>\n\n\n\n<p>It’s really crucial for us to have this and we understand it. [00:29:00] Uh, because then again, if we want, you know, to give clients a seamless experience, uh, it’s part of it. Cuz you know, if client wants to use CloudFlare as a a CDN provider, they would have to go over there, you know, make the setup process happen. </p>\n\n\n\n<p>But with the in-house, we remove that step as well. So, uh, yeah, uh, this one is coming up on the way and I’m really excited to see how it will help our clients in the website per, uh, performance and, and the boost of it. </p>\n\n\n\n<p><strong>Cory Miller:</strong> Well then you’ve covered the trifecta here. You’ve got, uh, safety and security, you know, being able to restore and watch out for vulnerabilities. </p>\n\n\n\n<p>And then you’ve got speed and speed’s always sexy to everyone because Yeah. Yeah. Faster. The better it rank, the better the customer experience. So that, that’s pretty cool. </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> Uh, on the speed note, I could add another thing, uh, that’s still requires some. Deeper, uh, refinement, but what I [00:30:00] want to offer for the clients is automatic website optimizations. </p>\n\n\n\n<p>Mm-hmm. Uh, why it requires a, a bit deeper refinement because we want to, you know, to refine to the way that it will not break a website. Uh, because we know that if we automatically, you know, use some ca uh, plugin to go maximum aggressive, uh, with the settings, it could create, uh, you know, break something in the website because it was just so aggressive on optimizing it. </p>\n\n\n\n<p>So we want to find that gold spot for the client where he pushes a single click and the content of the website gets optimized and it does, you know. Loads without issues. </p>\n\n\n\n<p><strong>Cory Miller:</strong> Love it. That’s awesome. Uh, Anas, uh, would you tell us how we can find more about you and then also your, your work at hosting? </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> Um, yeah. </p>\n\n\n\n<p>So we do have a public roadmap that you [00:31:00] can access as a, uh, user. It’s, uh, simply, uh, roadmap dot ho hosting your.com. And all of there, uh, you will be able to see all of the release stuff, all of the upcoming stuff, and you as a client can, you know, express your, uh, opinion on here. And also you can submit an idea. </p>\n\n\n\n<p>So th that idea would be checked by me and we would, you know, include it into the backlog since you know, the clients, uh, want to see that happen. </p>\n\n\n\n<p><strong>Cory Miller:</strong> This is excellent. I love when a software company,um, a hosting company puts this in front. It’s like, this is what we’re working on, this is what we’re doing. It shows real leadership and I love this. </p>\n\n\n\n<p>I’m looking through here and this is awesome. Well, ARN, thank you so much for your time today and, uh, I, I appreciate hearing your story and what you’re doing at Host hosting your Please keep up the good. </p>\n\n\n\n<p><strong>Arnas Donauskas:</strong> Uh, thanks Corey for inviting. Uh, it’s been a [00:32:00] pleasure. And yeah, if anything, I’m here. Awesome. </p>\n\n\n\n<p><strong>Cory Miller:</strong> All right. </p>\n\n\n\n<p>Thanks everybody for listening in to post status draft. This is another, uh, interview in our series called Product People to help you see the hu here and see and hear the humans behind the, the best WordPress products out there. So we’ve been talking with Arnas, web hosting product owner at Host.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Feb 2023 14:07:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:70:\"WPTavern: Industry-Wide Tech Layoffs Impacting WordPress Professionals\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=142074\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/industry-wide-tech-layoffs-impacting-wordpress-professionals\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6690:\"<p>Most WordPress professionals managed to escape 2022’s round of tech layoffs, which primarily affected venture capital-funded startups and larger companies that had overhired during the economic upswing that came with pandemic precautions being lifted in many places. Mass layoffs hit Meta, Peleton, Stripe, Carvana, and more during the last half of 2022.</p>\n\n\n\n<p>Tech layoffs have continued relentlessly in 2023, with major players like PayPal, Spotify, Google, Microsoft, Coinbase, Salesforce, and Amazon cutting tens of thousands of workers in January. This round of layoffs seems more brutal than the last, as it hits more close to home for WordPress professionals.</p>\n\n\n\n<p><a href=\"https://layoffs.fyi/\">Layoffs.fyi</a>, a layoffs tracking website, has logged 376 tech companies with total of 107,930 employees laid off. Both the number of companies and number of employees laid off in January were the highest they have been over the past year.</p>\n\n\n\n<img />\n\n\n\n<p>Last week, GoDaddy <a href=\"https://aboutus.godaddy.net/newsroom/press-releases/press-release-details/2023/A-message-from-GoDaddy-CEO-Aman-Bhutani/default.aspx\">announced</a> it will be reducing the size of its global team by about 8% (approximately 530 employees), with cuts that hit teams working on WordPress and WooCommerce hosting products. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Good Morning everyone <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f60a.png\" alt=\"?\" class=\"wp-smiley\" /> I’m sure most have heard by now about the GoDaddy layoffs. I was part of the 8% and although it hurts leaving such a wonderful team I know greater opportunities are out there for me. <br />If you know of any open roles please let me know, thanks <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1faf6-1f3fe.png\" alt=\"??\" class=\"wp-smiley\" /></p>— Juniemarie (@GoGinaMarie) <a href=\"https://twitter.com/GoGinaMarie/status/1623707237398024195?ref_src=twsrc%5Etfw\">February 9, 2023</a></blockquote>\n</div>\n\n\n\n<p>“Despite increasingly challenging macroeconomic conditions, we made progress on our 2022 strategic initiatives and continued our efforts to manage costs effectively,” GoDaddy CEO Aman Bhutani. “The discipline we embraced was important but, unfortunately, it was not sufficient to avoid the impacts of slower growth in a prolonged, uncertain macroeconomic environment.”</p>\n\n\n\n<p>The layoffs came as a surprise to GoDaddy employees, after they had been assured the company would not be cutting jobs. A few days after employees were let go, the company <a href=\"https://www.marketscreener.com/quote/stock/GODADDY-INC-21452893/news/GoDaddy-Reports-Fourth-Quarter-and-Full-Year-2022-Results-42986717/\">reported significant growth</a> in its last earnings call, with a total revenue of $4.1 billion in 2022, up 7.2% year-over-year, and 8.4% on a constant currency basis.</p>\n\n\n\n<p>A former GoDaddy employee, who was impacted by the layoffs and wishes to remain anonymous, said “employees and their managers were blindsided.” They were offered approximately three months of severance pay plus two weeks severance per year of tenure.</p>\n\n\n\n<p>“The severance package was average at best – a few months of runway in exchange for releasing GoDaddy from all liability,” the source said. “It’s the minimum requirement to get people to sign legal releases. Items such as stock that wasn’t fully vested must be forfeited.” </p>\n\n\n\n<p>The source reported that the employees who were laid off were cherry-picked from different teams. Despite GoDaddy’s heavy investments into WordPress and recent acquisitions of the Skyverge and Pagely brands, the company elected to downsize many who were active in its WordPress efforts.</p>\n\n\n\n<p>“I’m seeing lots of WordPress-related product/marketing folks getting cut,” the source said. </p>\n\n\n\n<p>DigitalOcean, which acquired managed hosting company Cloudways for $350 million in cash last year, told staff it is <a href=\"https://www.theregister.com/2023/02/15/digitalocean_layoffs/\">laying off 11 percent of its workforce</a>, approximately 200 employees. The Register reports that 100 employees were immediately let go and another 100 will follow. The cuts include members of the company’s content team, causing <a href=\"https://twitter.com/bphogan/status/1625875775458095108\">concern about the future of the company’s documentation</a> resources.</p>\n\n\n\n<p>Larger tech companies are not the only ones reducing their workforces. The economic conditions behind these cuts are also affecting smaller organizations like XWP, a WordPress agency that <a href=\"https://www.linkedin.com/search/results/all/?keywords=xwp%20layoffs&origin=GLOBAL_SEARCH_HEADER&sid=Ktc\">laid off employees</a> two months ago. <a href=\"https://humanmade.com/\">Human Made</a>, an agency that builds WordPress sites and products for enterprise customers, has also been affected. The company recently announced a <a href=\"https://xn--tm-cka.com/redundancies-at-human-made/\">round of redundancies</a> for the first time in its history. </p>\n\n\n\n<p>“This has been a tough few weeks, particularly for those leaving who now face an uncertain future,” Human Made CEO and co-founder Tom Willmot said. “It’s also been tough for the rest of company, this is not [a] situation we wanted to be in and even with the wider economic headwinds the industry is facing, there are also important lessons for us to learn.”</p>\n\n\n\n<p>As part of its commitment to transparency, Human Made also published the details of its redundancy support package, which includes a minimum notice period of four weeks plus one week for each year past two, and two weeks pay on top of notice, among other benefits.</p>\n\n\n\n<p>WordPress product companies are stepping up to help people find new work. <a href=\"https://twitter.com/JamesTryon/status/1626282532193853441\">Easily Amused</a>, <a href=\"https://twitter.com/fclaussen/status/1623729840468762624\">Trew Knowledge</a>, <a href=\"https://twitter.com/ryandonsullivan/status/1623478875895234563\">SiteCare</a>, and other companies across Twitter, Mastodon, and LinkedIn have responded to posts with links to open positions. Michelle Frechette, Director of Community Engagement at StellarWP, publishes a weekly thread with available jobs from around the WordPress community. Her most <a href=\"https://twitter.com/michelleames/status/1623729865970049025\">recent thread</a> from last week includes information on 10 companies that are currently hiring.</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, 17 Feb 2023 01:22:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:72:\"WordCamp Central: Bluehost supports WordPress community events worldwide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=3161235\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://central.wordcamp.org/news/2023/02/bluehost-supports-wordpress-community-events-worldwide-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:928:\"<p>We can’t thank <a href=\"https://www.bluehost.com/\">Bluehost</a> enough for their continued support as a sponsor for the <a href=\"https://central.wordcamp.org/sponsor-multiple-wordcamps/\">global WordPress community</a>! Their support of WordPress community events around the globe at our Gold level!</p>\n\n\n\n<a href=\"https://central.wordcamp.org/files/2019/02/Bluehost-Transparent_HighRes.png\"><img /></a>\n\n\n\n<p><a href=\"https://www.bluehost.com/\">Bluehost</a> has been a WordPress partner since 2005 and powers over 1 million WordPress sites worldwide. Their objective is to help customers, whether novice or pro, create a thriving online presence at an affordable price. With a team of in-house tech experts available 24/7, Bluehost dedicates time and resources to providing the best support and services in the industry. Join millions of other site owners and see what Bluehost can do for you and your online presence.</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, 16 Feb 2023 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Isotta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"BuddyPress: BuddyPress 11.1.0 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=328434\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://buddypress.org/2023/02/buddypress-11-1-0-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:985:\"<p>Immediately available is <a href=\"https://downloads.wordpress.org/plugin/buddypress.11.1.0.zip\">BuddyPress 11.1.0</a>. This maintenance release fixes 3 bugs. For details on the changes, please read the <a href=\"https://codex.buddypress.org/releases/version-11-1-0/\">11.1.0 release notes</a>.</p>\n\n\n\n<p>Update to BuddyPress 11.1.0 today in your WordPress Dashboard, or by <a href=\"https://wordpress.org/plugins/buddypress/\">downloading from the WordPress.org plugin repository</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"many-thanks-to-11-1-0-contributors\">Many thanks to 11.1.0 contributors <span class=\"dashicons dashicons-heart\"></span></h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/1benk1\">1benk1</a>, <a href=\"https://profiles.wordpress.org/webmasterfreya\">webmasterfreya</a>, <a href=\"https://profiles.wordpress.org/casper99\">casper99</a> & <a href=\"https://profiles.wordpress.org/imath/\">imath</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, 16 Feb 2023 06:39:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s: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:39:\"HeroPress: Alice, Robert, and WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=5222\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"https://heropress.com/essays/alice-robert-and-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=alice-robert-and-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:13823:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/02/021323-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The thing that continues to allow me to just let go, to just be what I feel is my most authentic self, is WordPress.\" />Here is Mark-Andrew reading his own story aloud.\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"kt-adv-heading_dd69cd-28 wp-block-kadence-advancedheading\">Prologue – WordPress</h2>\n\n\n\n<p>Alice and Robert are my father’s parents. They never knew what WordPress was. My grandfather’s technical sophistication ended in turning on the screen of the desktop my father had purchased for him years ago. But as they crossed into their 90s, WordPress would come to be instrumental in their lives and mine.</p>\n\n\n\n<p>WordPress found me in 2009. A good friend said I needed to learn this new thing that could “change our lives”. Their partner was using it as a Virtual Assistant…and she worked from home full time!</p>\n\n\n\n<p>Technology interested me from an early age. I was inspired by the works of Aldous Huxley, the Beatniks, and Magick, as well as the science fiction of Isaac Asimov and Philip K. Dick. The moment I was able to install WordPress and create a functional website in five minutes without any coding knowledge, it felt like a whole new world had opened up and we now had the power to shape it how we wanted.</p>\n\n\n\n<p>That same week, I built my first WordPress site for someone else. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Like a friend who can’t help but show off their newest card trick, I was eager to demonstrate my “website-building skills” to all my friends and family. </p>\n</blockquote>\n\n\n\n<p>It was through this process that I gained experience and began to appreciate the connection between our passions and having the ability to pursue them.</p>\n\n\n\n<p>I also saw the websites as a canvas on which I could create art. My previous high water mark as a child was a slanted stick figure that when I showed my grandmother, the look of horror on her face even as she said, “what a wonderful artist!”, will always stick with me.</p>\n\n\n\n<p>I continued to build WordPress sites in my free time for anyone who would take one from me but didn’t have the time, the resources, or the skills.</p>\n\n\n\n<p>My career at the time was in Sports Medicine. This involved finding tools to manage training staff, athletes, and facilities. I came up against technology that we couldn’t afford or didn’t allow us the flexibility needed to control our businesses and our client’s health outcomes.</p>\n\n\n\n<p>As a result in 2011, I began my first serious WordPress project when I was head of the training and rehabilitation departments for the Gold’s Gym locations in Seattle proper. The ownership group owned all seven facilities in the city. I worked out of the main gym in Kirkland, WA, where the executives who ran the Seattle tech companies, like Google and Amazon, would go back to after their office hours ended.</p>\n\n\n\n<p>As gyms seldom have tech departments, and ours were no different, I began learning WordPress as a serious designer, if not a developer, to solve problems we were encountering. The initial goal was to add training staff to the company website. That progressed into integrating SaaS products that would help our trainers track and share information with their clients. Finally, it involved switching over all the ownership group’s sites to WordPress.</p>\n\n\n\n<p>I put together a multi-site network (thank you WordPress 3.0 <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64c.png\" alt=\"?\" class=\"wp-smiley\" />) for all seven gyms that they could more easily manage and was more customizable while reducing their cost by $550 per location each month by abandoning the gym-specific website hosting previously used.</p>\n\n\n\n<p>Everything went off without a hitch, luckily for everyone! The staff and the membership all loved the new sites! </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The ease with which they could manage their memberships, book sessions, and keep engaged with the community when they weren’t at the gym were all huge positives for the business and the members.</p>\n</blockquote>\n\n\n\n<p>Staff who trained clients were also ecstatic! The Kirkland Gold’s Gym is home to high-level athletes, such as professional MMA fighters, Olympic athletes, and bodybuilders. The ease of using WordPress to add users and manage our client’s progress increased the effectiveness of what we were doing and our ability to market our results.</p>\n\n\n\n<p>What I took from that experience was the reinforcement of my belief that in an ever more connected world, WordPress, open source, and the ethos behind it all were a means to achieve almost any end. It was also a means achievable by anyone, regardless of class, gender, or skin color.</p>\n\n\n\n<h2 class=\"kt-adv-heading_c3be3c-51 wp-block-kadence-advancedheading\">My grandparents – Alice and Robert</h2>\n\n\n\n<p>Shortly after in late 2011, I returned to my hometown in the state of Massachusetts. I went back to New England for various reasons, one of the largest was my grandparents’ need for more physical support.</p>\n\n\n\n<p>I spent the next 6 years in Massachusetts. As my grandparent’s health continued to deteriorate, Alice’s from leukemia and Robert’s from dementia, I took jobs that paid less but allowed me more time to be there for them. I went from running a friend’s gym to running the training department, to being a trainer, to leaving sports medicine behind completely as the commitments didn’t work anymore.</p>\n\n\n\n<p>I worked various jobs for friends who knew my situation and offered as much leniency as they could. One friend owned McLaughlin’s gas station at the bottom of my grandparent’s street, which had a perfect view of their front yard.</p>\n\n\n\n<p>I got paid less than minimum wage to sit, talk to people when they came in, pump gas, put air in tires, and be a buffer so the mechanics could get their work done. What I gave up in income, however, I more than made up for in the flexibility of the schedule.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>There was often a need for me to leave the gas station immediately after a rueful call from one of my grandparents. </p>\n</blockquote>\n\n\n\n<p>The time between the phone call and unlocking their front after sprinting up the street was usually around 90 seconds or fewer. </p>\n\n\n\n<p>Sometimes the needs were comical to everyone involved! The most frequent was unlocking the cellar door to let someone out stuck downstairs. Sometimes, that was my grandfather, who had gone down and shut the door behind him. Usually, it was my grandmother. My grandfather would forget after a minute that she had gone into the cellar, and if he saw the door ajar while sneaking a cookie out of the cookie jar because my grandmother was away, he would close the door and then go back to his rocking chair in the other room.</p>\n\n\n\n<p>They began taking the phone with them everywhere they went in the house. Each time they would get locked in the basement I would hustle home, let them out, and we’d all have a good laugh about how ridiculous the world was!</p>\n\n\n\n<p>Everything completely changed when my grandparents were in a car accident. My grandfather got confused driving about 50 feet back across the street, returning from taking my grandmother to the bank, as she could no longer walk there. They were both banged up in the crash, my grandmother severely.</p>\n\n\n\n<p>At the rehab facility after discharge from the hospital the doctors determined my grandparents couldn’t go back to their home unless they had full-time care. Our family decided I would quit my gas station job and stay at the house with my grandfather until my grandmother returned, by then having put in place professional nursing services for them.</p>\n\n\n\n<p>The week before my grandfather came home, I’d set up a WordPress website on Pressable hosting called “Unofficial Alan Moore”. I’ve been a fan of darker and offbeat comics and art since I could remember and have been supporting Alan Moore, and the global Arts Lab Project of Northampton, UK, for years via Kickstarter and fundraising efforts. I viewed my website as a great place to share the good people, fantastic art, and all these things that filled me with joy while I would be housebound.</p>\n\n\n\n<p>But support for my grandparents never came to fruition. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>When my grandmother returned and the bills increased, I turned to the only resource I could take advantage of at that moment, my WordPress website.</p>\n</blockquote>\n\n\n\n<p>I changed the name of my fan site, Unofficial Alan Moore, to Emporium Purgatorio. This was a nod to Alan Moore’s and Kevin O’Neill’s eight-part series, Cinema Purgatorio. I installed WooCommerce, then opened an eBay store to gain traction and find inventory for my new business venture. I began purchasing rare and hard-to-find original comics and art at below-market rates. I would then resell or barter them, but instead of maximizing profits I maximized openness and honesty for the art.</p>\n\n\n\n<p>This, coupled with my lifetime support and connections with the fantastic artists and writers still creating the works, led me to become the sole US distributor for many Indie projects coming out of the UK. </p>\n\n\n\n<p>Over the next two years, I used only WordPress, WooCommerce, Pressable, and Jetpack, to go from my first $50 inventory purchase to selling single comic pages for thousands of dollars, the 2nd largest collection of rare Alan Moore comics in the world, and a global Arts Lab Community that is still thriving today.</p>\n\n\n\n<p>Time must continue, though, and it did for my grandfather. After his passing I remained in the house to care for my grandmother. And I’ve never known as deep sorrow as the conversations she and I would have about regrets in life.</p>\n\n\n\n<p>What still strikes me is that they were all about adventures not taken, not mistakes she had made. She encouraged me to follow my joy. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>When I told her I felt my joy would be to put a tent in a backpack and skateboard across the country, she said, “remember, Mark-Andrew, everything always works out when you’re doing things for the right reasons”. And I have remembered.</p>\n</blockquote>\n\n\n\n<p>Her passing is another singular story. This story ends with our house empty and me determined to remember what my grandmother said. It ends with a belief built on experience that with WordPress, and the community that continues to uplift it, we can make the world better…even if it’s just for one person.</p>\n\n\n\n<h2 class=\"kt-adv-heading_5e46ef-bf wp-block-kadence-advancedheading\">Epilogue</h2>\n\n\n\n<p>I purchased an ultralight tent and quilt, paired what little belongings I had down to a 30L backpack that weighs 6 1/2 lb with everything I own in the world in it. I made one last stop at my local skate shop, where I’d been going for 30 years, to say goodbye and pick up my new skateboard setup.</p>\n\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/02/IMG_20190529_144811-scaled.jpg\"><img /></a>The last of my worldly goods.\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/02/IMG_20190603_171431.jpg\"><img /></a>Everything I owned.\n\n\n\n\n<p></p>\n\n\n\n<p>The next morning, the familiar creak of the front door as I locked it one last time almost overwhelmed me. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>But I took a few deep breaths, put the keys in the mailbox for the realtor, and pushed away down the street towards the west coast 3,300 miles away.</p>\n</blockquote>\n\n\n\n<p>That was years ago now. I’ve been building WordPress websites and hosting them for good humans at no cost, using just my mobile phone, ever since. *Yes, absolutely zero. I don’t charge for my time, I don’t charge for hosting.</p>\n\n\n\n<p>While the skateboard is always in my hand or under my feet, and most of the community that knows me by name are skateboarders themselves, what’s allowed me to continue to push wherever I wanted to go, whenever I wanted to go, is WordPress.</p>\n\n\n\n<p>I don’t know the number of lives I may have affected. Most of those I’ve built sites for or supported, I don’t know where they are today. Almost all moved on as their businesses and their ideas grew. They take over the work themselves, or hire teams, for what comes next.</p>\n\n\n\n<p>I do know every single person I’ve introduced to WordPress has told me they wish they had known about this sooner. They were better off after being introduced to WordPress, and what’s possible when you take control of your own destiny.</p>\n\n\n\n<p>I don’t keep track of pretty much anything in life, except the people in front of me and any project I’m undertaking at that moment. I’ve forgotten most of the places I’ve been, and most of the things I’ve seen. But I feel that is as it should be. I feel fulfilled and ecstatic almost every moment. </p>\n\n\n\n<p>And the thing that continues to allow me to just let go, to just be what I feel is my most authentic self, is WordPress. So, thank you. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2764.png\" alt=\"❤\" class=\"wp-smiley\" /></p>\n\n\n\n<p>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/alice-robert-and-wordpress/\">Alice, Robert, and WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Feb 2023 16:00: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:21:\"Mark-Andrew Nordstrom\";s: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:80:\"WordCamp Central: Thanks to Automattic for sponsoring community events worldwide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=3161241\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://central.wordcamp.org/news/2023/02/thanks-to-automattic-for-sponsoring-community-events-worldwide/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2766:\"<p>We couldn’t be happier to welcome <a rel=\"noreferrer noopener\" href=\"https://automattic.com/\" target=\"_blank\">Automattic</a> to the <a href=\"https://central.wordcamp.org/sponsor-multiple-wordcamps/\">WordPress global community sponsorship program</a> in 2023! They’re sponsoring at the Gold level in all regions, supporting official WordPress community events across the globe.</p>\n\n\n\n<a href=\"https://central.wordcamp.org/files/2023/02/automattic-logotype-color.png\"><img /></a>\n\n\n\n<p>At <a rel=\"noreferrer noopener\" href=\"https://automattic.com/about/\" target=\"_blank\">Automattic</a>, <em>we are</em> passionate about making <em>the web</em> a better place.</p>\n\n\n\n<p>We are the people behind <a href=\"https://wordpress.com/\">WordPress.com</a>, <a href=\"https://woocommerce.com/\">WooCommerce</a>, <a href=\"https://jetpack.com/\">Jetpack</a>, <a href=\"https://wpvip.com/\">WordPress VIP</a>, <a href=\"https://simplenote.com/\">Simplenote</a>, <a href=\"https://longreads.com/\">Longreads</a>, <a href=\"http://wpscan.com/\">WPScan</a>, <a href=\"https://akismet.com/\">Akismet</a>, <a href=\"https://en.gravatar.com/\">Gravatar</a>, <a href=\"https://crowdsignal.com/\">Crowdsignal</a>, <a href=\"https://cloudup.com/\">Cloudup</a>, <a href=\"https://www.tumblr.com/\">Tumblr</a>, <a href=\"https://dayoneapp.com/\">Day One</a>, <a href=\"https://www.pocketcasts.com/\">Pocket Casts</a>, and more. We believe in making the web a better place.</p>\n\n\n\n<p><a href=\"https://distributed.blog/\">We’re a distributed company</a> with 2,007 Automatticians in 97 countries speaking 123 different languages. We’re committed to <a href=\"https://automattic.com/diversity-and-inclusion/\">diversity, equity, and inclusion</a>, and our common goal is to democratize publishing and commerce so that anyone with a story can tell it, and anyone with a product can sell it, regardless of income, gender, politics, language, or where they live in the world.</p>\n\n\n\n<p><a href=\"https://github.com/Automattic\">We believe in Open Source</a> and the vast majority of our work is available under the GPL.</p>\n\n\n\n<p>We strive to live by the <a href=\"https://automattic.com/creed/\">Automattic Creed</a>.</p>\n\n\n\n<p>Automattic is a <a href=\"https://mostlovedworkplace.com/companies/automattic-inc/\">Most Loved Company</a> and <a href=\"https://disabilityconfident.campaign.gov.uk/\">Disability Confident Committed</a>. (Here’s <a href=\"https://happinessengineer.blog/2022/09/08/happiness-for-everyone-working-with-a-disability-at-automattic/\">what that might mean for you</a>.) Come <a href=\"https://automattic.com/work-with-us/\">work with us</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, 15 Feb 2023 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Isotta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:71:\"WPTavern: #63 – Paul Halfpenny on Adding Personalisation 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=142031\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/podcast/63-paul-halfpenny-on-adding-personalisation-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:46722:\"Transcript<div>\n<p>[00:00:00] Nathan Wrigley: Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, making your WordPress websites personal to each visitor.</p>\n\n\n\n<p>If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast, player of choice, or go to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you’d like us to feature on the show, I’m keen to hear from you and hopefully get you all your idea featured. Head over to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Paul Halfpenny. Paul is the CTO at Filter, a remote first digital agency that specializes in open source tech, such as WordPress, Laravel, React, React Native and Ionic, with enterprise clients. He’s been a speaker at WordCamp Europe and has an interest in making websites a more personal experience.</p>\n\n\n\n<p>Website personalization is the idea of amending content served by your website to match the conditions of your current users. It might be that you want to show, or hide, content to people during certain times of the year. Perhaps it would be helpful to translate content if the user comes from a specific locale. Or maybe you would like to offer a product based upon pages that a user has previously visited, or items that they have bought.</p>\n\n\n\n<p>All of this falls under the umbrella of personalization. And it’s an area that Paul thinks is going to be more important in the future.</p>\n\n\n\n<p>On the podcast, we talk about what techniques you can use to offer up personalized content. That could be WordPress plugins or options within blocks, but there’s also more complex setups with a whole range of ‘at the edge’ technologies.</p>\n\n\n\n<p>We chat about what kind of information you might want to amend on your website and whether it’s possible to do too much, and risk users feeling that they’re being tracked wherever they go online.</p>\n\n\n\n<p>How can website owners and users benefit from these techniques, and can this be sold as a service to clients in the same way that you might offer SEO or website optimization?</p>\n\n\n\n<p>Towards the end, we talk about whether or not aspects of personalization should be added into WordPress Core. Have SaaS services, which bake this into their platforms, heralded in an era in which personalization is expected by the majority of clients.</p>\n\n\n\n<p>It’s an interesting chat with many insights and tips. And so if you’re looking to explore this further, this episode is for you.</p>\n\n\n\n<p>If you’re interested in finding out more. You can find all of the links in the show notes by heading over to WPTavern.com forward slash podcast. Where you’ll find all of the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Paul Halfpenny.</p>\n\n\n\n<p>I am joined on the podcast today by Paul Halfpenny. Hello Paul.</p>\n\n\n\n<p>[00:04:03] Paul Halfpenny: Hello, how are you doing?</p>\n\n\n\n<p>[00:04:05] Nathan Wrigley: Yeah. Good. Thank you. Very nice to have you on the podcast today. Paul’s going to be talking to us about personalization in WordPress, which is a topic, at least on this podcast, we have never touched upon. So this will be a really interesting and novel episode.</p>\n\n\n\n<p>Before we begin Paul, every episode I get the guests just to give us a bit of orientation, tell us who they are, where they work, how long they’ve been working with WordPress, and all of those kind of things. So, although it’s a very generic question, can we begin there? Tell us about yourself Paul.</p>\n\n\n\n<p>[00:04:33] Paul Halfpenny: I’m Paul. I’m the CTO at Filter. We’re a remote first digital agency. We’re based in the UK, and we specialize in open source tech such as WordPress, Laravel, React, React Native. We’ve been working on WordPress since about 2012. We’ve done that for a number of different clients that we’ve worked with over that time.</p>\n\n\n\n<p>Some small, some large, some we’re not really even allowed to mention. And we’re a WordPress VIP partner agency. We’re an Altis partner agency, WooCommerce partner agency as well. My co-founder and I, Ollie set up Filter just to try and be a little bit different to normal agencies. So we try and ensure that we have regular hours during the week, so nine til five thirty. We try not to work evenings and weekends, wherever possible. We are family friendly, so we try and be as flexible as possible with everybody in hope that we create a nice environment for everybody to work in.</p>\n\n\n\n<p>[00:05:31] Nathan Wrigley: Oh, really nice. Thank you very much for telling us all that. That’s great. The subject for today is personalization. Now, in the real world, we probably have a great understanding of what that means. We like things to be personalized. But we may not understand what it means in the context of websites and WordPress websites in particular.</p>\n\n\n\n<p>So do you mind just spending a few minutes broadly, give us the 10,000 mile high overview of what you mean by personalization in websites.</p>\n\n\n\n<p>[00:05:59] Paul Halfpenny: Yeah, so I think personalization is the process of knowing what the needs and preferences and interests of your customers or your site visitors are. So you can serve them what they’re looking for. So that’s going to allow you to give them more relevant communications. That’s going to perhaps improve their experience of going onto a website or an app that you develop.</p>\n\n\n\n<p>And it’s about creating that kind of smart content for your audience. So you are going to use items such as perhaps their location, their demographics, maybe what device they’re using, maybe where they’ve come from, maybe the language that they speak, to show them content that’s relevant to them. So for instance, if you are running a promotion on Facebook, and you’re directing people to your website.</p>\n\n\n\n<p>You might want to show visitors from that campaign an offer that you don’t send to anybody else. So you might check where they’ve come from, check the referrer, and then you might show some content on the website that gives them a promotional code that they can use in your shop, for instance. So it’s really about ensuring that you are trying to ensure that each of your users has an experience that’s relevant and contextual to them.</p>\n\n\n\n<p>[00:07:19] Nathan Wrigley: I guess it’s a fairly new idea, and by that I don’t mean it’s within the last year or so, but it’s not something that is as old as the hills in terms of web technology. You know, if you go back a decade or more, this was possibly beginning with some of the bigger platforms. I imagine Google were making forays into trying to figure out what your search results should look like. But in terms of WordPress websites, this feels like the beginning of that journey. Am I right in that or has this been going on for a while?</p>\n\n\n\n<p>[00:07:51] Paul Halfpenny: So personalization, I think, at an enterprise level has been around for a while. The really obvious answer is Amazon. So Amazon has been tracking your user behavior on their site, and they know which products to show you. So particularly in e-commerce, it’s a really big focus. And I think over the last decade, I would say, that’s translated itself into being, not just something that’s in custom platforms that bigger companies develop for themselves, but in proprietary content management systems like Sitecore or Optimizely, which have personalization baked into their core, and allow site editors to manage that.</p>\n\n\n\n<p>But we have only really seen it become of interest and becoming more popular in WordPress over the last couple of years. Yeah, it’s kind of more recent in WordPress, but it’s been around for a while. And I think even if I think back to my first agency job, which was in around 2003, I think 2002, we were talking to people that were selling email personalization. They would send a trigger campaign and then based on a response they would send out another type of campaign. So personalization is just becoming more standardized.</p>\n\n\n\n<p>[00:09:06] Nathan Wrigley: Thank you. That’s really interesting context. There’s a couple of words that you use there, which I think might be worth drilling down into. The first one was, well, you may have said no or knowing, but you said something along the lines of, knowing more about the user, but also you then, a little bit later possibly, substituted that word for tracking.</p>\n\n\n\n<p>And the two are very different, I guess. And in the example that you used of Amazon, I’m guessing the majority of what they know is based upon you being logged into their platform and performing actions. So, as an example, I’ve logged in and I demonstrate a desire to buy, I don’t know, a trampoline, and all of a sudden that’s bound to my account.</p>\n\n\n\n<p>Whereas it could be also trying to discover things when nobody is logged in. It’s just a visitor to the website. So you mentioned geography. So I’m coming, I’ve got an IP address, which appears to come from France say, and that can serve up different kind of content. So I guess it’s interesting to get into that conversation about is there a difference between knowing and tracking, and also the state, whether we’re logged in or not logged in. Whether any of that is important.</p>\n\n\n\n<p>[00:10:17] Paul Halfpenny: Obviously, when you are logged in, you get a lot more information about that user. So you can tie it to a particular user profile. You can match it to what they did last time they came back to the site. If they’re not logged in, you can only track them as long as a cookie might be stored in their browser, for instance, and if they clear their browser cookies you’re not going to be able to remember or retain that information for the future. So logging in gives you certain benefits.</p>\n\n\n\n<p>We try and split it down into simple and complex personalization. So simple is the idea that you just show basic content to nudge them in the right direction. So you might be using their location. To say okay, you’re coming from France, I’m going to show you this particular content. Or you might understand where they’re coming from and you don’t require them to be logged in to give them that level of personalization.</p>\n\n\n\n<p>I think a really good example of simple personalization is the ability to use date-based controls to show somebody different opening times during a holiday period. So, for instance, you might want to show a different block of content to somebody on the 20th of December that shows them when you are open for Christmas, and then you want to remove that block and you are just using simple controls to be able to do that.</p>\n\n\n\n<p>The more complex type of personalization is where you are actually tracking that data. And there’s a couple of ways to do that. So, you can obviously get people to log in and you can score their behavior on your website. So that might be when somebody goes to a particular page, you might decide to attribute a particular value to that page. So if they go to the homepage, you might give them a one, and if they go to the sales page, you might give them a five. And then if you go to a pricing page, you might give them another couple of points as well.</p>\n\n\n\n<p>And in the background you can then associate some rules and go, well, if they hit this particular score, we are going to show them a particular piece of content. So you are tracking them around the website and you are understanding what they’re doing. And obviously you’ve got your user data there.</p>\n\n\n\n<p>And that’s all using what we call first party data. So first party data is the data that you take on your site that your customers have agreed to give to you. I think in the wider industry, there’s a, particularly at the enterprise level, there’s a lot of large companies using platforms called CDPs, and that acronym stands for customer data platforms.</p>\n\n\n\n<p>And customer data platforms are a way of ingesting content from lots of different third party sources. So you might bring in data from Facebook and you might bring in data from AdWords, and you might bring in data from email, for instance, if you’ve got an email database. And the customer data platform will allow you to stitch all of that data together to provide more 360 holistic view of what you are doing across the internet.</p>\n\n\n\n<p>So it’s looking at all these data points and it’s matching you across all these different accounts. And then based on that, you can take different decisions in marketing automation to personalize an omni channel campaign where you are perhaps tracking what they’re doing on Facebook and then showing them something else on the website based on what you know they’ve done on Facebook previously. That sounds a little bit scary. That’s the kind of world that we are living in right now.</p>\n\n\n\n<p>[00:13:33] Nathan Wrigley: Yeah, I guess elements of it could sound scary, couldn’t they, depending on how far you take it and where the data ends up. But in the scenario that we may get in depth in today, if everything is just holed up in WordPress, I guess that’s maybe a different discussion.</p>\n\n\n\n<p>I’m interested to know how you would implement this, because a lot of the things that you described there, on the face of it, seem fairly complicated. It also seems that there is no limit to how complicated you could make it. So you could have condition, upon condition, upon condition. You really could go down the rabbit hole. So my first question is, is there a sort of seesaw here? Is there a, you have to weigh up what the benefit is as against the time it takes to put all these things together.</p>\n\n\n\n<p>Because I’m sure as developers of websites, we’ve all been down that rabbit hole before. You put a ton of time into something which it turns out was absolutely pointless. Nobody looked at it or nobody interacted with it in the way that you were imagining. And so there’s that trade off. But also what kind of interface are we dealing with here? I’m guessing this is the domain of plugins. How do we build these, kind of, if then statements to make all of this happen?</p>\n\n\n\n<p>[00:14:42] Paul Halfpenny: The idea that it’s quite complicated is true. So it can become as complex as you allow it to really. I think over the past decade or so, what we’ve seen is that when people have bought enterprise content management systems that have personalization tools baked in. They haven’t actually been able to get the full value out of those tools in all situations. Because they would very often need to bring in a team or fund a team to allow you to do that.</p>\n\n\n\n<p>And that can take multiple years, if you have complex requirements. And it costs a lot of money to do that. I think WordPress is a great example of going at it a different way. So within WordPress, there’s a number of different plugins out there that allow you to add personalization to your website very simply and easily.</p>\n\n\n\n<p>And a lot of those are also leveraging the benefits of Gutenberg as well. So, one that I’d really like to pick out is Block Visibility by Nick Diego, who’s a, I think is still a developer advocate at WP Engine. And that’s a, that’s a great plugin for being able to decide whether to show or hide block of content based on some custom rules.</p>\n\n\n\n<p>There’s others out there. IfSo’s quite a popular plugin that allows you to do that as well. But it also allows you to create audience segments and add conditional CSS where you need to. There’s plugins such as LogicHop. That has a pretty comprehensive rule set.</p>\n\n\n\n<p>And Human Made, as part of their Altis platform, they’ve been building something called Experience Blocks more for the enterprise set, I would say. Where they are taking that data offsite and then allowing you to use pretty enterprise analytics to see, to do AB testing and to personalize content as well.</p>\n\n\n\n<p>There’s also ways to do it at the hosting platforms as well. So we call this personalization at the edge. So rather than putting a plugin into your site, which might slow your site down, or you might have too many complex rules, hosts such as Pantheon and WP Engine have options to allow you to vary the content that’s being sent back from the CDN or the cache layer. So it doesn’t actually hit your WordPress site.</p>\n\n\n\n<p>So, Pantheon, have a PHP library that allows you to do that. WP Engine allow you to segment your user content using a vary response header. So you can say, well, for this group of users, I’m going to segment this group of users, this type of user, and then show them this content. But it doesn’t actually hit WordPress. It’s a cached version of that page that hits that particular segment.</p>\n\n\n\n<p>[00:17:16] Nathan Wrigley: It sounds from what you’re saying that the WordPress plugin route, so you mentioned Block Visibility, Logic Hop. You also mentioned IfSo, and there’s probably some others. It sounds like they maybe are the domain for people who are just sort of dabbling in this. They might not be experienced, they might not be developers, but it sounds like when you go to the edge scenario, the WP Engines and Pantheons and what have you, you really need to be an expert at this or at least be committed to becoming an expert in it. Is that a fair appraisal or have I misunderstood?</p>\n\n\n\n<p>[00:17:49] Paul Halfpenny: I think that’s relatively fair. I think certainly doing it at the edge is probably slightly harder. I think the benefits of doing it with a plugin such as the ones that we mentioned, allow you a more point and click interface within WordPress itself, within the WordPress admin.</p>\n\n\n\n<p>And actually they’re as comprehensive, if not more comprehensive than other methods. I think the important thing is, is ensuring that they’re associated with Gutenberg or Elementor, and you can do that within those page builders as well, or block builders or whatever we’re calling them these days.</p>\n\n\n\n<p>So that it’s a relatively smooth and easy process for people to use. I think for me, the key is always about ease of use. So, when we look at the kind of CMSs that we’ve used over the past 10 and 20 years, I know that the best reaction we get from our clients is when we show them WordPress as a contact management system. Because it will be, oh, thank goodness, that seems easy to use. I can cope with that. I don’t really have the time to go on a five day course to learn how to use this CMS, because I’m not using it every day. I’m using it once a week to post some content. And so WordPress really works for that, which is why we, you know, that is our CMS of choice these days, because we know how well it works.</p>\n\n\n\n<p>And I think Gutenberg’s a massive step forward with that as well in terms of having a WYSIWYG editor, having the ability to drag and drop blocks onto the screen. And I know things aren’t absolutely a hundred percent perfect right now, and I know there’s still challenges, and I know there’s still things to improve upon. But actually that’s a great interface for clients and the best personalization tools allow you to quickly and easily decide which blocks to show on a screen to which particular users?</p>\n\n\n\n<p>[00:19:37] Nathan Wrigley: Okay, in terms of performance of a website, that is something which is more and more, especially from the Google side of things. It feels like Google are really making performance and speed and all of the metrics that they’ve got for how quickly page loads and all of that. That’s very important and obviously any website that wants to do well needs to be found in a search engine.</p>\n\n\n\n<p>And I’m wondering if the WordPress plugin route is going to make that more difficult. So as an example, if we get really carried away and on our homepage of our website we have multiple different areas of personalization. It’s three days to Christmas and so we’ve put different images all over the webpage. We’re telling people that oh, hi, welcome visitor from France, or whatever it may be.</p>\n\n\n\n<p>You get the picture, we’re just adding in all of this stuff. And every single time we add in something, we’re adding complexity. And although the example I’ve given is ridiculous. Still, I’m sure that certain queries, certain things that you are asking are going to have an impact. So we’ll just speak about that for a minute.</p>\n\n\n\n<p>[00:20:42] Paul Halfpenny: Valid question. So I think it’s really important to remember that not every WordPress site runs like on a blazing fast hosting platform, and can cope with complex queries. A lot of WordPress sites run on shared platforms, they run with limited resources. And if you do add too much complexity to what you are trying to achieve, it might impact on your site speed. And obviously as you add that complexity and you add WordPress to be doing more, particularly in the database on every single request that you’re sending it back, that prevents it from being cached.</p>\n\n\n\n<p>So we did some work on this in terms of personalization, we built our own plugin, WP-DXP. We actually used a web component on the front end that communicates with the backend via the REST API, and that returns the data in some json. So it’s a lighter touch way of being able to add that personalization into the page, without having as much impact on the front end.</p>\n\n\n\n<p>But I think it’s really important, I think there’s a limit to how much personalization you should put in place. So we’ve talked quite a lot internally about how we can use AI to personalize websites. The jury’s kind of still out on that actually, because we are not sure that you need the ability to show absolutely different content to absolutely every different visitor that’s coming.</p>\n\n\n\n<p>Actually, what you should be doing is just chopping up your users into different types of audience segments, and then basing it on that. And you perhaps don’t need more than a couple of audience segments for a simple site. I think if you are doing something really complex and actually you really need high levels of personalization, then it might be that you’re running a headless site anyway, and you’re using APIs to deliver the content rather than sending it back to the server and doing it that way.</p>\n\n\n\n<p>[00:22:36] Nathan Wrigley: I guess like anything else, if you have an infinite amount of resources to throw at it, that could be time, development cost, or indeed just money on infrastructure to actually host the site. More or less all of this is going to be in purview, but the more meager your resources are, probably the lighter a touch you should have with all of this.</p>\n\n\n\n<p>[00:22:56] Paul Halfpenny: Yeah, and I think, if you’re just running a personal site or you are running a brochureware site for maybe a shop or a restaurant or a bricks and mortar store of some kind. You probably won’t have high level needs for personalization. You might have the example that I talked about earlier in that you want to show different opening hours. So you might use a date based request, or you might want to show a promotion to certain kinds of people at certain times of year. But you probably won’t be using scoring across the site to understand their behavior as they go around your website. That’s probably not an issue for you.</p>\n\n\n\n<p>Whereas if you’re running a publishing site, and you are developing news or content on a regular basis, then you might well need to do that. But then you’d expect that your resources will be higher and you will be able to have a dedicated server or a different kind of hosting platform that allows you some more resources to do that, to implement that complexity.</p>\n\n\n\n<p>[00:23:50] Nathan Wrigley: I guess your imagination is the limit really here, isn’t it? You could do whatever you like. And I think examples like social media platforms, you may have an opinion about whether these are good for society or not, but social media platforms are examples of serving up personalized content.</p>\n\n\n\n<p>My Facebook feed is nothing like yours. The same would be true for when I go to Twitter. It’s giving me content based upon a whole slew of data that it’s got. And it’s really compelling. I come back and I come back and I come back and even sometimes I tell myself I shouldn’t come back. I keep coming back. And it really is the personal touch.</p>\n\n\n\n<p>And if you can find aspects of that. Now, I imagine very few people are actually trying to build a social network. But just the idea that you could serve up something and learn over time that that one little thing is impactful. The position of something, the color of something, where it is on the page or whatever it may be. It’s definitely worth exploring because we know we are influenced by these things.</p>\n\n\n\n<p>[00:24:53] Paul Halfpenny: I always come at it as a, we want to help users to find the answers. So that’s where personalization works for us. It’s trying to recognize who they are, what their interests are, where they’re coming from. Nobody’s on the same journey. Everybody will land on your website on a different page. And it’s about trying to work out, if they haven’t logged in, who are they? Or if they have logged in, you know who they are. Perhaps you’ve got a little bit of history about them.</p>\n\n\n\n<p>And then trying to provide them with the answer that they need so they can carry on with their day. What people don’t want to do is come to a website and click around for ages, trying to find the information that they want and then get disappointed and go away.</p>\n\n\n\n<p>For me, we should be trying to ensure that people get the information that they need as quickly as possible and have a satisfying experience. It’s almost the same as for an e-commerce shop. What you want to do is, you know you probably want to buy this thing, you want to get there, you want to find that item, you want to purchase it as quickly as possible, and then you want to carry on with your day.</p>\n\n\n\n<p>Nobody wants to sit on the internet all day trying to find information. I do think you’re right about the depths of personalization that social media have gone to, and how there is a danger there of. perhaps unintentional bias. So obviously when you’re personalizing at that level and that scale, you’re putting everything into machine learning.</p>\n\n\n\n<p>So you’re taking what people have done on the site before. You’re sticking that in some kind of data lake or big platform on the backend. And then you’re using machine learning to look for patterns so you can go, right, okay, next time this happens, show this to this person, because a hundred people, other people did this as well.</p>\n\n\n\n<p>But you end up having those biases and potentially putting people into echo chambers that mean that they don’t see the outliers. They kind of get trapped, in seeing the same information, and that’s not really helpful. I always talk about my Apple music station. I have Paul Halfpenny station on Apple Music and for some reason, well, it brings up a lot of Depeche Mode to begin with. And that’s a good thing for me, but it very often brings up a specific Manic Street Preachers track, and I love the Manic Street Preachers, more they’re early stuff.</p>\n\n\n\n<p>But because this track keeps on playing, I assume it thinks that I really like that track. And then it keeps on playing it to me again. I’m kind of stuck in that cul-de-sac around that track right now. I think trying to use personalization to help people find answers is not necessarily to put them into a specific hole and go right, we know this is who you are, this is exactly what you want. It’s creating some openness, allowing them to see answers that they might not be expecting sometimes, not always providing everything to what they’ve done before, is where we should be heading.</p>\n\n\n\n<p>[00:27:32] Nathan Wrigley: it sounds analogous to me, going to the supermarket with my shopping list and more or less entering a shopping experience where on the first aisle is everything I want. I have to walk 10 meters into the shop, and my trolley’s now full, my list of shopping items has been ticked off.</p>\n\n\n\n<p>You know, I’ve just achieved what I want to do, and then I walk out the shop and get on with my day. So it’s a bit more like that. It’s trying to put things which are more helpful. I agree that the AI thing is something which, I don’t think at least WordPress and personalization, were probably not quite there yet, certainly not on the scale of the major social networks. But yeah, just the idea of going into a supermarket. Having the list, but somehow being presented with a supermarket, which is just what I want. That does seem like a really laudable target.</p>\n\n\n\n<p>[00:28:23] Paul Halfpenny: Yeah, Yeah I love the fact that you used a shopping list. I’m very strange, I think because I enjoy going to supermarkets. Slightly weird, whenever we visit another country, I like to go in the supermarket, and we were in America recently, and going to Walmart was probably the highlight of my trip.</p>\n\n\n\n<p>I like to go and look around, but then, you know, I also like to be able to go to Sainsburys and go and get the three items that I need and get out of there pretty quickly so I can get back home for tea. So knowing where everything is, is really helpful.</p>\n\n\n\n<p>[00:28:51] Nathan Wrigley: Yeah, okay. I’m going to change my analogy in that case. So I walk into the supermarket and when I get to the toothpaste bit, there is only toothpaste, but there’s multiple brands of toothpaste. So it’s not like it’s only giving me one toothpaste, but it’s just sort of showing me, well, here’s all the toothpaste for you.</p>\n\n\n\n<p>That’s really interesting. I’ve experienced this in real time, in that I’ve been contacted by some developers who’ve demonstrated what their plugin can do. And I have to say it really caught me short. I was a bit blown away by what the page was showing me. It wasn’t scary. It was quite entertaining and engaging, and I guess you just have to draw a line for yourself. How much work do you want to put into it? How much weirdness do you want to put into it? And by that I mean, how much stuff are you going to show back to the user, which makes them check themselves and say, hang on a minute, how do they know I’m in France? That’s weird. Those kind of things. I guess you’ve just got to figure that piece of the jigsaw out.</p>\n\n\n\n<p>[00:29:44] Paul Halfpenny: I think there’s something there for everyone. That’s the really important point. Personalization’s not just for enterprise. It’s not just for your Amazons. It is for your small sites, it is for your medium size sites, and it is for your enterprise sites as well.</p>\n\n\n\n<p>It’s just the complexity grows as your business grows. But I think that there is something there for everybody. You could name any kind of business and you would probably be able to go, well actually, why don’t you personalize in this way for that kind of person? Or, you’re coming from here, you would show them a different message. It’s really useful to think in those terms.</p>\n\n\n\n<p>[00:30:19] Nathan Wrigley: In the same way that 15 years ago there was no SEO career, there was if you worked at Google, but if you were an SEO trying to figure out how to best present your web property, that career probably didn’t really exist, and now it does. I’m wondering if personalization might well go in the same direction, you know, if you were to become an expert at this, knowledge of all the different plugins, knowledge of all the different platforms, if it’s a career path that you could possibly develop? Because it is quite a specialist skill, and especially when you described the Cloudflare and the Pantheons and the edge cases for all of that. If the technical barrier is so big that people may want this, but they also haven’t got the time to implement it, and so they would purchase in that skill.</p>\n\n\n\n<p>[00:31:06] Paul Halfpenny: Yeah, I think there is an opportunity there to do that. I think people don’t always see the return on investment. Perhaps they struggle to go, well, actually, if I make this change, what was my ROI to do that, and therefore what’s the cost benefit analysis of doing it? But if you look at most big companies right now, they’ll all have a CRM team or a digital team that is focused on this type of activity.</p>\n\n\n\n<p>If you go to any e-commerce provider or website online, there are people whose job it is to improve conversion, that’s what they do. And personalization is a part of improving conversion. And it takes in a couple of different skillsets. So there is a skillset, certainly massively around UX. So what’s the user experience? As a user, if I come to this website, what do I expect to see? Where do I expect my users to go after they’ve landed on this page? And am I trying to get them to go and do this? Or am I trying to get them to go and do that? Can I show them this kind of content?</p>\n\n\n\n<p>What do I know about them that I can then provide them with some additional value whilst they’re on this website? Or how can I remove friction so that they can complete their journey more quickly? And there’s some design that’s required for how you might do that. So UI interface design. Analytics. So analytics is really important to understand what people are doing, where they’re tapping, what they’re clicking on, and what they’re doing on that site and what their life cycle is as well.</p>\n\n\n\n<p>And then putting the content in and making sure that the content is relevant and contextual for that particular situation. So just editing content on a site for different audiences might mean that you need to create different variations of that content that may be worded slightly differently as well. Whether that’s multilingual content, maybe it’s a different way of talking to a different type of customer. We all know that you’re probably not going to speak the same way to maybe a marketing manager that’s coming to your website, as you would do to a developer that’s coming to look for a job.</p>\n\n\n\n<p>[00:33:06] Nathan Wrigley: Yeah. You mentioned ROI and what have you, and I wondered if a lot of that is built into these technologies, so, for example, in the case of the WordPress plugins, either yours or one of the other ones, whether you have that data inside of WordPress, or do you need to go and hook it up to other tools, some analytics tool or what have you?</p>\n\n\n\n<p>You know, a simple AB test, can that be done in these platforms? And does it give you a, well 15 people clicked on the blue variation, but 28 clicked on the red variation. Do you get any of that feedback in here? Or are the WordPress tools simply a case of, look, here’s the technology to do it. That’s what we’ve got for you.</p>\n\n\n\n<p>[00:33:45] Paul Halfpenny: So some of the plugins offer those stats and can record it in your own database. And others will do it offsite. So I think Logic Hop is part of this AB testing. I might be wrong. will score your AB testing, on your own site. But I know that Altis uses enterprise analytics that will then it will determine what your potential size of your audience is for a particular segment so that you can apply some rules to that segment? It depends what you are trying to achieve. If you are just trying to show people, so you can do it in a couple different ways.</p>\n\n\n\n<p>You can obviously store the data in your own WordPress instance. Most people will probably use Google Analytics or Fathom Analytics, to understand where people might be tapping on buttons and maybe put an event in via Google Tag Manager so that it can register that tap or that click when the content is shown to them. That would be a really good way of doing it.</p>\n\n\n\n<p>Again, we come back to the problem that smaller sites are on, potentially on, shared hosting. They might have the resources. And if you are storing stats up in your database, how useful is that and how many resources you are using and is that slowing your site down?</p>\n\n\n\n<p>[00:34:57] Nathan Wrigley: One final question just before we knock it on the head is, in terms of the availability for this in WordPress. At the minute, it’s very much the domain of plugins. So plugins in the traditional sense of the word, but also you’ve got things that work with the block editor as well. But my understanding is, forgive me if I’ve got this incorrect, my understanding is that you would like to see aspects of this creeping into WordPress Core?</p>\n\n\n\n<p>So if that’s true, I think it’s fair to say that you have a, an impression that most people, or a significant proportion users of WordPress would find this thing useful. It would be a great tool to have in. And you point to the fact that the commercial rivals, so Optimizely and Sitecore and so on, they have this built in as part of their core platform.</p>\n\n\n\n<p>Do you want to just speak about that for a minute? Have I misrepresented you there, or would you like to see some of these tools, and I’m guessing you’re not imagining the full monty? Just a subset of simple things built into WordPress Core?</p>\n\n\n\n<p>[00:36:00] Paul Halfpenny: I really do think it needs to be in Core. I use WordPress in a couple different ways. I use it for my personal site, for myself and my friends or other small companies that we just do pro bono work for. I use it in my agency life. So we work with mid-market and enterprise companies.</p>\n\n\n\n<p>And then I’ve seen how WordPress compares to other content management systems on the market. And I think as WordPress grows, I think this is a feature that kind of needs to be in there and that would be useful to most users. I see value in it from a, a number of different ways.</p>\n\n\n\n<p>Even something as simple as having the ability to show content or hide a block in Gutenberg based on if somebody’s logged in or not. That for me would be really useful, based on the device type they’re using, based on where they’re, what country they’re coming from. I don’t think it needs to be to the extent of putting AB testing in.</p>\n\n\n\n<p>I think all of that kind of functionality can be done via plugins to extend it. I think there’s adequate scope there if somebody wants to do more, that they could add some plugins to do that. But I do think as WordPress grows and changes over the next decade, I think that personalized user experience becomes even more important.</p>\n\n\n\n<p>And I think it’s better for users for WordPress if this stuff is handled and managed and added to Core, so that it’s there for everybody to use as they need it. I don’t think it’s terribly complex in terms of being able to create some rules to show some content or be able to show or hide a block.</p>\n\n\n\n<p>And I think there’s also something around working in enterprise that shows us that that is really needed for WordPress to compete as an enterprise platform. And I’m really aware that not everybody that’s listening to this or, you know, the majority of people that work with WordPress don’t work with Enterprise.</p>\n\n\n\n<p>And so it’s, it is not really relevant to them. But I think that that’s just what we see in the market and we see WordPress being adopted by enterprise. And it’s one of the things that clients ask us for. They ask us for loads of things. They say, have you got multilingual baked in? No, you need a plugin for that. And there’s a couple different ways to do that, but it’s coming in Gutenberg at some point in the future. And they go, well, have you got workflows? No, haven’t really got workflows. Has it got its own analytics system? Well, no, it hasn’t got its own analytic system.</p>\n\n\n\n<p>And then personalization is one of those other big features. So, we are interested in it because we work with WordPress. We like to be able to use WordPress in those situations rather than having to deliver on other platforms, which perhaps we don’t enjoy working with as much.</p>\n\n\n\n<p>And also, we know clients don’t enjoy working with them as much. And actually we think there should be a really great alternative to those platforms. It is a personal view, you know, but I think that there’s a growing demand for it. And I think that with Gutenberg and the move to block based content, it becomes a lot easier. It wasn’t really possible in the old classic editor approach. You know, you could do it on the front end, but it’s very code heavy. But now it’s relatively simple to achieve.</p>\n\n\n\n<p>[00:39:24] Nathan Wrigley: Paul, if somebody listening to this podcast shares your opinion there and wants to reach out and get in touch and continue this discussion, where would be the best place to do that? It’s up to you. It could be a Twitter handle or an email or whatever you like.</p>\n\n\n\n<p>[00:39:39] Paul Halfpenny: Is anybody still on Twitter these days? I do wonder, like I scroll my Twitter feed now and there doesn’t seem to be as many people on there. Look, I would love people to get in touch because I just love talking about this stuff, right? So I think it’s really interesting.</p>\n\n\n\n<p>I think the opinions are really interesting. filteragency.com is our agency website. paulhalfpenny.com is my personal website. You can email me, paul @ filteragency.com. You can find me on Twitter, with a terrible photo that makes me look much younger than I actually am, paulfhalfpenny, I think. To be honest, there aren’t too many Paul Halfpenny’s around, so, you know, typing it into Google tends to give some results. It’s quite fortunate, really.</p>\n\n\n\n<p>[00:40:22] Nathan Wrigley: Paul Halfpenny. Thank you very much for chatting to me on the podcast today. I really appreciate it.</p>\n\n\n\n<p>[00:40:27] Paul Halfpenny: Thank you very much. It’s a pleasure to be invited on.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://twitter.com/paulfhalfpenny\">Paul Halfpenny</a>.</p>\n\n\n\n<p>Paul is the CTO at <a href=\"https://filter.agency/\">Filter</a>, a remote-first digital agency that specialises in open-source tech such as WordPress, Laravel, React, React Native and Ionic with enterprise clients.</p>\n\n\n\n<p>He’s been a speaker at WordCamp Europe and has an interest in making websites a more personal experience.</p>\n\n\n\n<p>Website personalisation is the idea of amending content served by your website to match the conditions of your current users. It might be that you want to show (or hide) content to people during certain times of the year. Perhaps it would be helpful to translate content if the user comes from a specific locale. Or maybe you would like to offer a product based upon pages that a user had previously visited, or items that they have bought.</p>\n\n\n\n<p>All of this falls under the umbrella of personalisation, and it’s an area that Paul thinks is going to be more important in the future.</p>\n\n\n\n<p>On the podcast we talk about what techniques you can use to offer up personalised content. That could be WordPress plugins or options within blocks, but there are also more complex setups with a whole range of ‘at the edge’ technologies.</p>\n\n\n\n<p>We chat about what kind of information you might want to amend on your website, and whether it’s possible to do too much, and risk users feeling that they’re being tracked wherever they go online.</p>\n\n\n\n<p>How can website owners and users benefit from these techniques, and can this be sold as a service to clients in the same way that you might offer SEO or website optimisation?</p>\n\n\n\n<p>Towards the end, we talk about whether or not aspects of personalisation should be added into WordPress Core. Have SaaS services which bake this into their platforms heralded in an era in which personalisation is expected by the majority of clients?</p>\n\n\n\n<p>It’s an interesting chat with many insights and tips, and so if you’re looking to explore this subject further, 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://filter.agency/\">Filter agency website</a></p>\n\n\n\n<p><a href=\"https://wpvip.com/partners/\">WordPress VIP partners</a></p>\n\n\n\n<p><a href=\"https://www.sitecore.com/\">Sitecore</a></p>\n\n\n\n<p><a href=\"https://www.optimizely.com/\">Optimizely</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/block-visibility/\">Block Visibility plugin by Nick Diego</a></p>\n\n\n\n<p><a href=\"https://www.if-so.com/\">If So plugin website</a></p>\n\n\n\n<p><a href=\"https://logichop.com/\">Logic Hop website</a></p>\n\n\n\n<p><a href=\"https://www.altis-dxp.com/accelerate/experience-blocks/\">Experience Blocks website</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/wp-dxp/\">WP-DXP plugin</a></p>\n\n\n\n<p><a href=\"https://tagmanager.google.com/\">Google Tag Manager</a></p>\n\n\n\n<p><a href=\"https://usefathom.com/\">Fathom Analytics</a></p>\n\n\n\n<p><a href=\"https://twitter.com/paulfhalfpenny\">Paul’s Twitter account</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, 15 Feb 2023 11:45:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:107:\"Post Status: WordPress 6.2 Beta 2 • Help Test • Theme Directory Redesign • Apply for Community Summit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=147279\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://poststatus.com/wordpress-6-2-beta-2-help-test-theme-directory-redesign-apply-for-community-summit/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14831:\"<h2 id=\"h-this-week-at-wordpress-org-february-6-2023\">This Week at WordPress.org (February 6, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">WordPress 6.2 Beta 2 is now available. Help test the latest features before the next release. Apply now to attend Community Summit. Take a look at the new Theme Directory redesign progress. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div id=\"kt-info-box_94d1bd-77\" class=\"wp-block-kadence-infobox\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kt-info-svg-icon kt-info-svg-icon-fe_arrowRightCircle\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">WP 6.2 Beta 2, Help Test, Themes Redesign</h2><p class=\"kt-blocks-info-box-text\">β <a href=\"https://make.wordpress.org/core/2023/02/14/wordpress-6-2-beta-2/\">WordPress 6.2 Beta 2</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64b-1f3fe.png\" alt=\"??\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\">Help Test WordPress 6.2</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a8.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/meta/2023/02/10/theme-directory-redesign-update/\">Theme Directory redesign update</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/270d-1f3fc.png\" alt=\"✍?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/community/2023/02/08/apply-to-attend-the-2023-community-summit/\">Apply to Attend the 2023 Community Summit</a></p></div></div></div>\n\n\n\n<h2 id=\"h-news\">News<a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-3/\"></a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/02/episode-49-everything-you-need-to-know-about-the-community-summit/\">WP Briefing: Episode 49: Everything You Need to Know About the Community Summit!</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"is-layout-flex wp-container-31 wp-block-columns\">\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-community\">Community</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/02/14/wordcamp-asia-2023-contributor-day/\">WordCamp Asia 2023 Contributor Day</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/02/13/discussion-refining-the-mentor-program/\">Discussion: Refining the Mentor Program</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/02/11/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-february-8-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on February 8, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/02/08/2023-global-sponsors-announcement/\">2023 Global Sponsors: Announcement</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/02/08/apply-to-attend-the-2023-community-summit/\">Apply to Attend the 2023 Community Summit</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/02/06/community-booth-at-wordcamp-asia-2023/\">Community Booth at WordCamp Asia 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/02/10/whats-new-in-gutenberg-15-1-8-february/\">What’s new in Gutenberg 15.1? (8 February)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/15/a-week-in-core-february-13-2023/\">A Week in Core – February 13, 2023</a></li>\n</ul>\n\n\n\n<h3 id=\"h-wordpress-6-2\">WordPress 6.2</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/02/14/wordpress-6-2-beta-2/\">WordPress 6.2 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2, Finale</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/03/hallway-hangout-performance-improvements-for-wordpress-6-2/\">Hallway Hangout: Performance Improvements for WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/06/roadmap-to-6-2/\">Roadmap to 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/18/bug-scrub-schedule-for-6-2/\">Bug Scrub Schedule for 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/11/early-bug-scrub-schedule-for-wp-6-2/\">Early bug scrub schedule for WP 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/17/wordpress-6-2-planning-roundup/\">WordPress 6.2 Planning Roundup</a></li>\n</ul>\n\n\n\n<h3 id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/02/14/dev-chat-agenda-february-15-2023/\">Dev Chat Agenda, February 15, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/13/editor-chat-agenda-february-15th-2023/\">Editor Chat Agenda: February 15th, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/09/dev-chat-summary-february-8-2023/\">Dev Chat, Summary, February 8, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/09/editor-chat-summary-february-8th-2023/\">Editor chat summary: February 8th, 2023</a></li>\n</ul>\n\n\n\n<h3 id=\"h-developer-blog\">Developer Blog</h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/02/whats-new-for-developers-february-2023/\">What’s new for developers? (February 2023)</a></li>\n</ul>\n\n\n\n<h2 id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/02/10/agenda-for-docs-team-bi-weekly-meeting-february-21-2023/\">Agenda for Docs Team bi-weekly meeting February 21, 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/02/14/notes-global-marketing-team-meeting-7-february-2023/\">Notes: Global Marketing Team meeting, 7 February 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/02/10/theme-directory-redesign-update/\">Theme Directory redesign update</a></li>\n</ul>\n\n\n\n<h2 id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/02/08/openverse-org-is-live/\">Openverse.org is live</a></li>\n</ul>\n\n\n\n<h2 id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/02/14/performance-chat-summary-14-february-2023/\">Performance Chat Summary: 14 February 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-polyglots\">Polyglots</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/02/14/agenda-weekly-polyglots-chat-feb-15-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – Feb. 15, 2023 (13:00 UTC)</a></li>\n</ul>\n\n\n\n<h2 id=\"h-plugins\">Plugins</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/02/03/twitter-api-changes/\">Twitter API Changes</a></li>\n</ul>\n\n\n\n<h2 id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/02/06/proposal-creating-a-wordpress-contributor-mentorship-program/\">Proposal: Creating a WordPress Contributor Mentorship Program</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/01/27/discussion-ending-the-eternal-september/\">Discussion: Ending the Eternal September</a></li>\n</ul>\n\n\n\n<h2 id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/02/block-editor-live-in-most-forums/\"></a><a href=\"https://make.wordpress.org/support/2023/02/agenda-for-february-9th-support-meeting-2/\">Agenda for February 9th Support Meeting</a></li>\n</ul>\n\n\n\n<h2 id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/02/14/fse-program-find-your-style-summary/\">FSE Program Find Your Style Summary</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\">Help Test WordPress 6.2</a></li>\n</ul>\n\n\n\n<h2 id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/individual-learner-survey/\">How did you learn WordPress?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/02/13/meeting-agenda-for-february-14-2023/\">Meeting Agenda for February 14, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/02/13/wordcamp-asia-2023-contributor-day/\">WordCamp Asia 2023 Contributor Day</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/02/10/training-teams-new-onboarding-program-is-now-live/\">Training Team’s new onboarding program is now live!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/02/08/video-conferencing-options-for-online-workshops/\">Video conferencing options for Online Workshops</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/02/06/meeting-agenda-for-february-7-2023/\">Meeting Agenda for February 7, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/02/06/training-team-2023-goals-setting/\">Training Team 2023 Goals Setting</a></li>\n</ul>\n\n\n\n<h3 id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=community-sharing-media-plugins\">Community Sharing: Media Plugins</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=lets-code-developer-ama-ask-me-anything\">Let’s code: Developer AMA – Ask Me Anything</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-building-a-react-app-utilising-the-wp-rest-api\">WP dev livestream: Building a React app utilising the WP REST API</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=come-join-the-wordpress-training-team-2\">Come join the WordPress Training Team!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=come-join-the-wordpress-training-team\">Come join the WordPress Training Team!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-learn-wordpress-timezone-2\">What is Learn WordPress? (Timezone 2)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E7%94%BB%E5%83%8F%E3%81%AEseo%E5%AF%BE%E7%AD%96-%E3%80%9Cwordpress%E3%81%A7%E3%81%A7%E3%81%8D%E3%82%8B%E3%81%93%E3%81%A8%E3%80%9C-2\">画像のSEO対策 〜WordPressでできること〜</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E7%94%BB%E5%83%8F%E3%81%AEseo%E5%AF%BE%E7%AD%96-%E3%80%9Cwordpress%E3%81%A7%E3%81%A7%E3%81%8D%E3%82%8B%E3%81%93%E3%81%A8%E3%80%9C\">画像のSEO対策 〜WordPressでできること〜</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-learn-wordpress\">What is Learn WordPress?</a></li>\n</ul>\n\n\n\n<h3 id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/migrating-your-wordpress-website-to-a-different-host-and-domain/\">Migrating your WordPress website to a different host and domain</a></li>\n</ul>\n\n\n\n<h2 id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://www.php.net/archive/2023.php#2023-02-02-1\">PHP 8.2.2 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-02-02-2\">PHP 8.1.15 Released!</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status’ <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It’s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Feb 2023 07:08: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:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:64:\"WPTavern: WordPress Unveils Commemorative 20th Anniversary Wapuu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=142005\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/wordpress-unveils-commemorative-20th-anniversary-wapuu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1940:\"<p>The global WordPress community is celebrating the 20th anniversary of the software’s <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">first release</a> on May 27, 2023. Two decades ago, WordPress made its debut featuring Texturize, XHTML 1.1, manual excerpts, and a new admin interface. </p>\n\n\n\n<p>An <a href=\"https://wp20.wordpress.net/\">official anniversary website</a> is publishing updates about how the community can get involved in the upcoming celebration plans. Organizers and participants will be using the #WP20 hashtag on social media to designate posts as related to the event. Community organizers hosting celebrations can have their events listed on the website by <a href=\"https://docs.google.com/forms/d/e/1FAIpQLSf9lIkZ8GtXAt1ZL11K6G47iHkArt1L_o2oarLjzllbcShc0w/viewform\">submitting them through a form</a>.</p>\n\n\n\n<p>As part of the festivities, the project has released a set of commemorative logos, which were created in the style of the new WordPress.org design. The project has adopted a more vibrant blue color in recent days, allowing the original dusty blue to fade into history.</p>\n\n\n\n<img />\n\n\n\n<p>WordPress is also releasing a new commemorative 20th anniversary wapuu. The mascot is festooned with a party hat and a balloon with the anniversary logo. It was created by WordPress contributor <a href=\"https://profiles.wordpress.org/triforcepower/\">Emalina “Ema” DeRosia</a>.</p>\n\n\n\n<img />\n\n\n\n<p>The artwork for the wapuu is available for anyone to <a href=\"https://wp20.wordpress.net/wp-content/uploads/WP20-Wapuu.zip\">download</a> and use. It comes in multiple file types, including SVG, PDF, PNG, along with the Adobe Illustrator design file. WordPress’ <a href=\"https://mercantile.wordpress.org/\">swag store</a> is closed at the moment but is expected to reopen soon with limited edition 20th anniversary swag, and some items may feature the commemorative wapuu. </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, 15 Feb 2023 02:08:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:120:\"WPTavern: WordPress 6.2 Beta 2 Released with Fixes for 71 Issues and Important Performance Improvements for Block Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=142035\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"https://wptavern.com/wordpress-6-2-beta-2-released-with-fixes-for-71-issues-and-important-performance-improvements-for-block-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3311:\"<p><a href=\"https://make.wordpress.org/core/2023/02/14/wordpress-6-2-beta-2/\">WordPress 6.2 Beta 2</a> was released today and is now available for testing, one week after Beta 1. Testers can easily download the <a href=\"https://wordpress.org/wordpress-6.2-beta2.zip\">latest beta zip file</a> or install the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin and set it to the “Bleeding edge” channel and the “Beta/RC Only” stream.</p>\n\n\n\n<p>Beta 2 includes fixes for ~71 issues since last week’s release, along with the most recent <a href=\"https://wptavern.com/gutenberg-15-1-adds-openverse-integration\">Gutenberg plugin 15.1</a> release, which was not included in <a href=\"https://wordpress.org/news/2023/02/wordpress-6-2-beta-1/\">Beta 1</a>. Testers can check out the list of the most <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.2\">recent commits to 6.2 on GitHub</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=02%2F07%2F2023..02%2F14%2F2023&milestone=6.2&col=id&col=owner&col=type&col=priority&col=milestone&order=id\">recent commits on Trac</a>. </p>\n\n\n\n<p>In the most recent Performance Team meeting, WordPress core committer Felix Arntz highlighted <a href=\"https://core.trac.wordpress.org/changeset/55318\">an important fix for how lazy loading is handled in block themes</a>. WordPress 5.9 <a href=\"https://core.trac.wordpress.org/changeset/52065\">fixed a performance regression</a> where WordPress’ default of lazy loading all images was causing slower performance on the Largest Contentful Paint metric (LCP) metric. This resulted in <a href=\"https://wptavern.com/wordpress-5-9-to-fix-lazy-loading-performance-regression-resulting-in-30-faster-page-loads-in-some-cases\">30% faster page loads in some cases</a>. </p>\n\n\n\n<p>Four months ago, it was discovered that block themes were having an issue with lazy loading where the previous fix was not working as expected.</p>\n\n\n\n<p>“With the introduction of block themes, that logic was not functioning correctly, resulting in all featured images to be lazy-loaded, regardless of whether it was the LCP image or not,” Arntz said in the commit message.</p>\n\n\n\n<p>“Together with an update to the <code>core/post-featured-image</code> block included in <a href=\"https://core.trac.wordpress.org/changeset/55079\">[55079]</a>, this changeset fixes the logic to correctly handle featured images in block themes as well.</p>\n\n\n\n<p>“Additionally, in combination with an update to the <code>core/template-part</code> block from <a href=\"https://core.trac.wordpress.org/changeset/55246\">[55246]</a>, this changeset includes an enhancement which uses the benefits of block template parts to avoid lazy-loading images in the <code>header</code> block template part, making the lazy-loading heuristics even more accurate for sites using a block theme.”</p>\n\n\n\n<p>The <a href=\"https://core.trac.wordpress.org/changeset/55318\">fix</a>, which is included in the 6.2 Beta 2 release, introduces enhanced logic to determine the LCP image in block themes and avoid lazy-loading it. </p>\n\n\n\n<p>Provided everything stays on track, the official release is now just six weeks away, targeted for March 28, 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:\"Tue, 14 Feb 2023 22:20:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:90:\"WordCamp Central: GoDaddy joins the WordPress global community sponsorship program in 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3161230\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"https://central.wordcamp.org/news/2023/02/godaddy-joins-the-wordpress-global-community-sponsorship-program-in-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3410:\"<p>Please join us in welcoming <a href=\"https://www.godaddy.com/pro?utm_source=wcglobal_2023_sponsorship&utm_medium=events&utm_campaign=en-us_events_prg_awa_partners_part_wcsponsordesc_001\">GoDaddy</a> to the <a href=\"https://central.wordcamp.org/sponsor-multiple-wordcamps/\">2023 WordPress global community sponsorship program</a>! GoDaddy’s pledge to sponsor all official WordPress community events (WordCamps, Meetups, and more) all around the world provides support and stability to our hardworking crew of volunteer event organizers. Thanks for everything, GoDaddy!</p>\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://central.wordcamp.org/files/2023/02/Copy-of-gd-logo-480x360-1.png\"><img /></a></div>\n\n\n<p>At <a href=\"https://www.godaddy.com/pro?utm_source=wcglobal_2023_sponsorship&utm_medium=events&utm_campaign=en-us_events_prg_awa_partners_part_wcsponsordesc_001\">GoDaddy</a>, our mission is to empower a worldwide community of entrepreneurs by giving them all the help and tools they need to grow online — including a simpler, safer WordPress experience. </p>\n\n\n\n<p>We champion our Makers of the Web by delivering a suite of WordPress solutions that enable fast and easy setup and then enables users to harness all the power of the world’s most popular CMS. </p>\n\n\n\n<p>The <a href=\"https://community.godaddy.com/s/group/0F93t000000I7EfCAK/godaddy-pro?utm_source=wcglobal_2023_sponsorship&utm_medium=events&utm_campaign=en-us_events_prg_awa_partners_part_wcsponsordesc_001\">GoDaddy Pro Community</a> was built by and for website designers and developers. Whether you’re new to web design or growing your existing business, you’ll find free tools, products, education, and expert support to help you more efficiently create and maintain beautiful sites — and wow clients.</p>\n\n\n\n<p>We provide a <a href=\"https://www.godaddy.com/hosting/wordpress-hosting?utm_source=wcglobal_2023_sponsorship&utm_medium=events&utm_campaign=en-us_events_prg_awa_partners_part_wcsponsordesc_001\">Managed WordPress experience</a> that is as easy as it is effective. The latest version of WordPress comes pre-installed with exclusive themes, plugins, and tools to get you up and running quickly, with automated backups, updates, and malware removal so our Pros can spend less time on monotonous maintenance, and more time building their businesses.GoDaddy Pro works tirelessly to foster an active, nurturing community, with initiatives including the sponsorship of WordCamps globally, weekly <a href=\"https://events.godaddy.com/godaddy-pro-online?utm_source=wcglobal_2023_sponsorship&utm_medium=events&utm_campaign=en-us_events_prg_awa_partners_part_wcsponsordesc_001\">GoDaddy Pro Meetups</a>, our free <a href=\"https://www.godaddy.com/pro/academy?utm_source=wcglobal_2023_sponsorship&utm_medium=events&utm_campaign=en-us_events_prg_awa_partners_part_wcsponsordesc_001\">GoDaddy Pro Academy</a> courses, and our <a href=\"https://community.godaddy.com/s/group/0F93t000000I7EfCAK/godaddy-pro?utm_source=wcglobal_2023_sponsorship&utm_medium=events&utm_campaign=en-us_events_prg_awa_partners_part_wcsponsordesc_001\">GoDaddy Pro Discussions Group</a>. We’re proud to be a partner of the WordPress community and look forward to witnessing all the individual greatness that our efforts help support.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Feb 2023 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Isotta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:77:\"Do The Woo Community: Multi-tenant WooCommerce Sites with Wijnand van Leeuwen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74501\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://dothewoo.io/multi-tenant-woocommerce-sites/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:410:\"<p>Wijnand van Leeuwen from WPCS.io joins Carl and Zach for a Woo DevChat about Multi-tenant sites, performance, hosting and more.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/multi-tenant-woocommerce-sites/\">Multi-tenant WooCommerce Sites with Wijnand van Leeuwen</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Feb 2023 10:08:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:64:\"WPTavern: Watch WordCamp Asia 2023 via Livestream February 17-19\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=142007\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/watch-wordcamp-asia-2023-via-livestream-february-17-19\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3116:\"<p>WordPress enthusiasts from around the world are beginning their journeys to attend the inaugural WordCamp Asia, which is happening in Bangkok, Thailand, February 17-19. Organizers are expecting 1,500 attendees at this new flagship event. For those who cannot attend in-person, there will be a livestream broadcasting the sessions from the conference days after Contributor Day, which kicks off on Day 1.</p>\n\n\n\n<p>The <a href=\"https://asia.wordcamp.org/2023/schedule/livestream/\">livestream schedule</a> shows dates and times in visitors’ local timezones. Depending on where you are in the world, it may be tricky to catch some of the sessions but the event will also be recorded. Virtual attendees can favorite the sessions they are interested to watch and print or email them to keep track. </p>\n\n\n\n<p>There are topics for every experience level – from <a href=\"https://asia.wordcamp.org/2023/session/starting-your-wordpress-blog-the-first-6-months/\">starting a WordPress blog</a> to <a href=\"https://asia.wordcamp.org/2023/session/advanced-performance-scalability-for-php-developers/\">advanced performance and scalability for PHP developers</a>. Attendees can learn how to <a href=\"https://asia.wordcamp.org/2023/session/start-your-subscription-business-with-no-code-saas-and-fse-full-site-editing/\">start a subscription business with a no-code SaaS and FSE (Full Site Editing)</a>. Theme authors can learn <a href=\"https://asia.wordcamp.org/2023/session/how-can-theme-developers-monetize-in-the-era-of-block-themes/\">how to monetize in the era of block themes</a> and website owners can explore <a href=\"https://asia.wordcamp.org/2023/session/take-your-wordpress-site-to-another-level-using-ai-translation/\">using AI translation to translate their websites</a> to find a wider audience. WordCamp Asia will also feature a few sessions on careers, including <a href=\"https://asia.wordcamp.org/2023/session/non-technical-career-options-in-the-wordpress-market/\">non-technical careers in the WordPress market</a> and <a href=\"https://asia.wordcamp.org/2023/session/career-detour-from-the-medical-field-to-wordpress/\">career changes from the medical field to WordPress</a>. This is just a small sampling of the interesting topics that will be discussed at WordCamp Asia. </p>\n\n\n\n<p><a href=\"https://asia.wordcamp.org/2023/session/ama-ask-matt-anything/\">Matt Mullenweg will join for an AMA</a> on February 18, in Track 1, which will also be livestreamed to Tracks 2 and 3. </p>\n\n\n\n<p>During the event, organizers plan to announce the location of the next WordCamp Asia coming in 2024. <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>, one of the organizers, joined the WP Tavern Jukebox podcast last week to discuss the organizing process and the importance of WordPress hosting its first flagship event in Asia. Check out the <a href=\"https://wptavern.com/podcast/62-naoko-takano-on-the-importance-of-the-first-wordcamp-asia\">episode</a> for more perspective on the event, which has been in planning for years after getting cancelled and postponed multiple times due to the pandemic.</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, 13 Feb 2023 22:22:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:100:\"WordPress.org blog: WP Briefing: Episode 49: Everything You Need to Know About the Community Summit!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=14404\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wordpress.org/news/2023/02/episode-49-everything-you-need-to-know-about-the-community-summit/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15541:\"<p>Episode forty-nine of the WordPress Briefing explores the What, Why, and Who behind the upcoming Community Summit in National Harbor, DC, USA, August 22-23, 2023. Join Executive Director Josepha Haden Chomphosy to learn the importance of the gathering to the WordPress project. </p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo: <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production: <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br />Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/updates/2019/06/17/observations-on-wordpress-contributor-team-structure/\" target=\"_blank\">Observations on WordPress Contributor Team Structure</a></p>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/community/2023/02/08/apply-to-attend-the-2023-community-summit/\" target=\"_blank\">Apply to attend the 2023 Community Summit</a></p>\n\n\n\n<p><a target=\"_blank\" href=\"https://communitysummit.wordcamp.org/2023/topic-submissions-for-2023-community-summit/\" rel=\"noreferrer noopener\">Topic Submissions for the 2023 Community Summit</a></p>\n\n\n\n<p><a target=\"_blank\" href=\"https://en.wikipedia.org/wiki/Tuckman%27s_stages_of_group_development\" rel=\"noreferrer noopener\">Tuckman’s Theory: Stages of Group Development</a></p>\n\n\n\n<p><a target=\"_blank\" href=\"https://en.wikipedia.org/wiki/Chatham_House_Rule\" rel=\"noreferrer noopener\">Chatham House Rules</a></p>\n\n\n\n<p><a target=\"_blank\" href=\"https://make.wordpress.org/project/2023/02/06/proposal-creating-a-wordpress-contributor-mentorship-program/\" rel=\"noreferrer noopener\">Proposal for a project-wide mentorship program</a></p>\n\n\n\n<p><a target=\"_blank\" href=\"http://www.openverse.org\" rel=\"noreferrer noopener\">Openverse.org</a></p>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://wordpress.org/news/2023/02/wordpress-6-2-beta-1/\" target=\"_blank\">6.2 Beta 1 is open for testing</a><br /><br /></p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14404\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00] </strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks.</p>\n\n\n\n<p>I’m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:40] </strong></p>\n\n\n\n<p>A couple of episodes ago, I mentioned the Community Summit in the small list of big things. That’s coming up on August 22nd and 23rd, right before WordCamp US. And for some of you, that made complete sense, and the only thought in your mind was, wow, our last one was in 2017, how could so many years have passed since then? And since so many years have passed, today we’re gonna talk a bit about the Community Summit, what it is, where it came from, and why it’s so important for the WordPress project.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:09] </strong></p>\n\n\n\n<p>First things first, let’s talk about what exactly the Community Summit is. The Community Summit is a small event where folks from around the WordPress project and community come together to work through some of the most difficult topics the project currently faces, many of which are easier or at least less fraught when we can be face-to-face.</p>\n\n\n\n<p>The Community Summit is usually done in an “<a href=\"https://en.wikipedia.org/wiki/Unconference\">unconference</a>” style, and when we were smaller, we left topic gathering and voting to the day of. That’s evolved a bit as our group of fearless contributors has grown over the years, and this year, we have been asking for topics ahead of time so that we can make sure we have the right folks in the room and are making the best use of everyone’s limited time. </p>\n\n\n\n<p>It’s easy to take a look at this event and think it’s like some fun exclusive thing with a who’s who of WordPress. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:00] </strong></p>\n\n\n\n<p>But I assure you it’s a working event. Decisions are not finalized during the event, but since we try very hard to account for many, many viewpoints, it ends up being two days of hard discussions, contentious viewpoints, and problem definition at a level of complexity you don’t really see every day.</p>\n\n\n\n<p>Hearing how hard this event is, you may be wondering why we put in that effort. There are a lot of reasons, but there are three that come to my mind immediately. So for starters, working across cultures is hard. Apart from the cultural differences, we tend to be aware of things like where we’re located or our lived experiences, things like that– working remotely or distributedly is a whole different set of skills than working in person. This helps remind everyone that we’re humans, that there are humans behind those comments and behind those messages in Slack. The second thing is that I’m a big supporter of Tuckman’s theory of group development.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:00] </strong></p>\n\n\n\n<p>If you don’t know what that is, you can look for it, we’ll put a link in the show notes, but it’s that forming, storming, norming, performing kind of concept of how groups come together. Because there are so many of us and our community has such a large footprint, there are little storms a-brewin all the time.</p>\n\n\n\n<p>Some get really big, some stay small. But at some point, most of them have to be addressed. And this is a space that is specifically designed to help us do that. Which brings us to the third reason that we do it. This event uses something called the Chatham House Rule, which creates a kind of temporal psychological safety.</p>\n\n\n\n<p>Right. Psychological safety, if you’re a leader, you know that that’s something that is built over time and requires a lot of trust and a lot of conversations with people that you’re working with, and we can’t quite do that. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:00] </strong></p>\n\n\n\n<p>And so Chatham House Rule builds an environment that helps create that suddenly in the moment and requires, you know, some, some faith in one another.</p>\n\n\n\n<p>But basically, no one can be quoted about what they said in those conversations. No one’s examples can be attributed to them. But the conversations can be summarized and published, which we do on the Community Summit website. And then, we publish those for our collective knowledge over time. This lets folks who are attending advocate for themselves and others fully without worrying over whether they’re gonna be taken out of context later.</p>\n\n\n\n<p>And finally, one of the biggest questions we get ahead of any Community Summit is why it is by invitation only. The most commonly cited reasons for keeping this small and invite only have everything to do with logistics and leadership. You want it to be large enough to have good representation but small enough to have high-quality interactions. It’s just a really narrow Goldilocks moment, if you will. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:00]</strong></p>\n\n\n\n<p>But that reason doesn’t necessarily address the need for invitations rather than letting it be first come, first served. The reason for that is more of a philosophical one and requires you to go on a mini historical journey with me.</p>\n\n\n\n<p>This also has changed a bit over the years. The first ever Community Summit, way back in 2012, was before my time, but if I recall my history correctly, it was truly by invitation only. The summit after that included a closed nomination process. The next included a team nomination process, and then the last two, 2017 and 2023, have included open nominations.</p>\n\n\n\n<p>Now, even in the nomination era of Community Summit organizing, there is still a selection process. The organizers review the list of suggested attendees and check for the same types of things we expect major WordCamp organizers to look for in their speaker selection. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00]</strong></p>\n\n\n\n<p>Things like which teams they contribute to, what communities they advocate for, and how long they’ve been a member of the community.</p>\n\n\n\n<p>And then they adjust for balance. In addition to those things, there are also four types of voices that we always want represented at our Community Summit. So first is leading voices, people who are already in the community and kind of are helping us to make decisions. I am considered one of those leading voices; I have put in my application to be included in the Community Summit. Really hope we select me. </p>\n\n\n\n<p>The second one is future leading voices. Specifically, those are people who are active in the community already and are showing a lot of promise, either because they really understand the values that the WordPress open source project is putting forward or understand the basic processes of communicating and guiding people in such a complex ecosystem as the WordPress project represents. Or because they have said quite plainly they are interested in helping us to make sure that the WordPress project is able to move and continue to create and continue to support democratizing publishing. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:00]</strong></p>\n\n\n\n<p>So it’s a little bit potentially folks who are self-selecting for that. People who already are showing that they are doing that either in WordPress or in their local communities. That’s one of the types of voices we want to include. A third one that we want to include all the time is voices we need, so voices that we need to hear. People that specifically we are building WordPress for, people that have indicated to us that the CMS is not necessarily perfect for some of the use cases that they run into regularly.</p>\n\n\n\n<p>So the people and users and community organizers that can and are able to advocate for the types of user interactions, the types of community interactions that we absolutely want to be able to see. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:00] </strong></p>\n\n\n\n<p>And so that’s a third group of voices that we want to make sure we have represented.</p>\n\n\n\n<p>And then the fourth and final group that we always want to have represented is a group that I call voices we miss. And so those are the people that we want to be able to hear more from in our project that we don’t necessarily either have a good group of representative voices for, so it’s hard to hear them, or that we know are probably users of the CMS or they are attending events, they are somehow involved in the WordPress project.</p>\n\n\n\n<p>But we don’t necessarily have any way to have accounted for them while we were building solutions way back in 2012 or 2006 when things were being built for us. And so those are the four groups of people, the four types of voices that I absolutely want to have represented at our Community Summit.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:09:00]</strong></p>\n\n\n\n<p>And I ask organizers to go through this incredibly complicated selection process because we want not simply a microcosm of the WordPress community as we see it today and hope to see it in the future but also an equitably voiced forum during that critical problem definition phase. </p>\n\n\n\n<p>So TLDL. For, listen?! T L D Real Listen. Although if you didn’t make it through that, you definitely are not getting to this point. So a TLDR for folks who skimmed the transcript and got here, I guess we keep this invitation structure because we want to account for voices we don’t hear every day in the WordPress project. Not because we don’t value them but because we already hear them.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:09:44] </strong></p>\n\n\n\n<p>And now that brings us to our small list of big things. This week it’s actually kind of a big list of big things, but you know, there it is. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:00] </strong></p>\n\n\n\n<p>First things first. The applications for the Community Summit are now open. Those are the applications to attend. It’s pretty short. I filled mine out this morning and it’s three questions about who you are and your username on wordpress.org, and then three questions about the topics you are most interested in and the experience that you have in those conversations so far.</p>\n\n\n\n<p>Yeah. It took me, like, I think, 90 seconds. Like, a full minute and a half. So head on over there. We have a link in the show notes, but also, you’ll be able to find it in newsletters across the entire WordPress media ecosystem. I am pretty sure about that. </p>\n\n\n\n<p>The second thing is that there is a proposal out for a project-wide mentorship program.</p>\n\n\n\n<p>This is a huge potential win for us. It is aiming to fix some of our broken ladders. If you’re not familiar with my Broken Ladder Theory of the WordPress project, I’ll try to remember to find a link to that post and put that in the show notes. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:00] </strong></p>\n\n\n\n<p>Number three is that Openverse moved. I shared this last week that happened last week. They didn’t move very far, though. They have a new URL, you can find them at openverse.org. It’s the same team. It’s the same product. It’s the same group of excellent openly-licensed images and media that you have come to expect. It just has its own standalone URL now. Huge kudos to the contributors who got that done. </p>\n\n\n\n<p>Another thing that happened last week is that WordPress 6.2 has moved into its beta phase, and so now is the time to get out there and test.</p>\n\n\n\n<p>There also was an excellent, excellent write-up about how to test any given release. And I think it also includes how to file a good bug. And so we’ll send all of those things into the show notes. They’ll be easy to find. Get out there and do your testing. </p>\n\n\n\n<p>And number five, longest, small list of big things in recent history. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:12:00] </strong></p>\n\n\n\n<p>I got some interest on [a] women, and non-binary led release for 2023, and so since there was some interest shown for that, it is hereby verbally confirmed. Keep an eye out on make.wordpress.org for more information about what that process is gonna look like and how to volunteer your time for that if that is something that calls to you.</p>\n\n\n\n<p>Woo. And that, my friends, is your small list of big things, your big list of big things. Thanks for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosy, and I’ll see you again in a couple of weeks.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Feb 2023 17:01: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:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:80:\"WordCamp Central: Thanks to Weglot for supporting the global WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3161226\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://central.wordcamp.org/news/2023/02/weglot-supports-the-global-wordpress-community/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1793:\"<p>Many thanks to Weglot for their support of the <a href=\"https://central.wordcamp.org/sponsor-multiple-wordcamps/\">WordPress global community sponsorship program</a> at the Gold level! The sponsorship that <a href=\"https://weglot.com/integrations/wordpress-translation-plugin/\" target=\"_blank\" rel=\"noreferrer noopener\">Weglot</a> and other global sponsors provide to WordPress community events is truly invaluable. Weglot has been part of this program since 2022, and we couldn’t be more grateful!</p>\n\n\n\n<a href=\"https://central.wordcamp.org/files/2022/02/weglot-logo.png\"><img /></a>\n\n\n\n<p><a href=\"https://weglot.com/integrations/wordpress-translation-plugin/\">Weglot</a> is a WordPress multilingual plugin to translate and display your website in multiple languages. It provides a fast first layer of automated translation which you can easily edit yourself or by adding teammates, or collaborate with pro-translators through the Weglot dashboard. Trusted by more than 60,000 website owners and developers and with a 5-star rating on the WordPress directory (1000+ reviews) – you can have a multilingual website up and running in minutes.</p>\n\n\n\n<p>Key benefits include:</p>\n\n\n\n<ul>\n<li>Simple and quick set-up</li>\n\n\n\n<li>Multilingual SEO best practices (translated URLs & metadata)</li>\n\n\n\n<li>Compatibility with any Themes and Plugins (incl. WooCommerce)</li>\n\n\n\n<li>Automatic and human translations</li>\n\n\n\n<li>A unique dashboard with an ‘in context editor’, easily edit translations & invite teammates to collaborate on projects</li>\n\n\n\n<li>Expert support: a fully dedicated technical support team at your disposal</li>\n</ul>\n\n\n\n<p>Learn more at <a href=\"https://weglot.com/integrations/wordpress-translation-plugin/\">Weglot</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Feb 2023 06:30: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:6:\"Isotta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:69:\"WPTavern: WooCommerce to Launch WC Blocks Extensibility Monthly Chat\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=141871\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/woocommerce-to-launch-wc-blocks-extensibility-monthly-chat\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1777:\"<p>WooCommerce is calling on its developer community to <a href=\"https://developer.woocommerce.com/2023/01/30/announcing-wc-blocks-extensibility-monthly-chat/?utm_content=buffer61fff&utm_medium=social&utm_source=twitter&utm_campaign=buffer\">join a new monthly chat</a> focused on WooCommerce block extensibility. The chat is being run as a three-month pilot program with different topics each month. </p>\n\n\n\n<p>“During these sessions, we want developers to actively shape the future of WC Blocks by hearing what developers’ integrations need from us to be successful and get feedback on existing extensibility points,” WooCommerce developer advocate Stephanie Pi said.</p>\n\n\n\n<p>In order to have the right engineers available for the sessions while testing out the format, the first three months will focus on the Cart and Checkout blocks. WooCommerce developers have recently been attempting to <a href=\"https://wptavern.com/woocommerce-seeks-to-improve-cart-and-checkout-blocks-performance#comment-436476\">solicit feedback on Cart and Checkout block performance</a> on GitHub, though few have weighed in on the topic so far. This monthly chat may provide a more casual way to get extensibility issues on the WooCommerce team’s radar.</p>\n\n\n\n<p>The first session will be held in the <a rel=\"noreferrer noopener\" href=\"https://woocommercecommunity.slack.com/archives/C1KAZ91E3\" target=\"_blank\">#developers</a> channel on the <a rel=\"noreferrer noopener\" href=\"https://woocommerce.com/community-slack/\" target=\"_blank\">WooCommerce Community Slack</a> on Monday, February 13, at 1600 UTC. At the end of the pilot program, WooCommerce will evaluate whether it’s a good use of the community’s time and if the monthly chats should be continued.</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, 11 Feb 2023 04:22: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: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:51:\"WPTavern: Gutenberg 15.1 Adds Openverse Integration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=141846\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wptavern.com/gutenberg-15-1-adds-openverse-integration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3928:\"<p><a href=\"https://make.wordpress.org/core/2023/02/10/whats-new-in-gutenberg-15-0-18-january-2/\">Gutenberg 15.1</a> was released this week with Openverse integration in the Media tab. The Openverse library of openly licensed and public domain works has also moved to <a href=\"https://openverse.org/\">its own website</a> with an updated design. It contains more than 600 million free-to-use images and audio files that are now available inside WordPress’ editor:</p>\n\n\n\n<img />\n\n\n\n<p>Clicking on an Openverse image will instantly insert it as an Image block with the proper attribution and license automatically added to the caption. The experience is so much faster than downloading from the Openverse website and then uploading to the Media Library.</p>\n\n\n\n<img src=\"https://cdn.stocksnap.io/img-thumbs/960w/Y8CKB0O8C2.jpg\" alt=\"\" />“<a href=\"https://stocksnap.io/photo/stars-galaxy-Y8CKB0O8C2\" target=\"_blank\" rel=\"noreferrer noopener\">Stars Galaxy</a>” by <a href=\"https://stocksnap.io/author/17101\" target=\"_blank\" rel=\"noreferrer noopener\">Greg Rakozy</a>/ <a href=\"https://creativecommons.org/publicdomain/zero/1.0/?ref=openverse\" target=\"_blank\" rel=\"noreferrer noopener\">CC0 1.0</a>\n\n\n\n<p class=\"ticss-9da20087\">Another major highlight in 15.1 is the ability to <a href=\"https://github.com/WordPress/gutenberg/pull/46571\">add custom CSS on a per-block basis</a>. This can be done through the Global Styles menu in the Site Editor. For each block you can add your own CSS to customize the block appearance by scrolling to the bottom of the panel to the “Additional Block CSS” button. These CSS edits will be applied to all instances of the block on the site.</p>\n\n\n\n<img />\n\n\n\n<p>Gutenberg 15.1 also introduces <a href=\"https://github.com/WordPress/gutenberg/pull/46502\">support for shadow presets</a> in Global Styles, with four defaults available (Natural, Crisp, Sharp, and Softy), and the ability for theme authors to add custom presets via ‘theme.json’. The announcement post included a video that demonstrates the new UI:</p>\n\n\n\n\n\n\n\n<p>In 15.1 Navigation has been added to the browse mode sidebar in the Site Editor, so users can quickly access their menus and menu items, rearrange them via drag and drop, or navigate the links.</p>\n\n\n\n<p>This release makes some <a href=\"https://github.com/WordPress/gutenberg/pull/47430\">changes to the “paste styles” feature</a> that was introduced in <a href=\"https://wptavern.com/gutenberg-15-0-introduces-sticky-position-block-support-adds-paste-styles-option\">version 15.0</a>. The Options menu in the block toolbar now displays both “Copy styles” and “Paste Styles” to make it easier to understand how to use the feature, as it previously was unclear with just the “Copy Styles” option available.</p>\n\n\n\n<img />\n\n\n\n<p>Gutenberg 15.2 <a href=\"https://github.com/WordPress/gutenberg/pull/47182\">improves the Site Editor loading state</a> for better initialization. This is an important update for making the Site Editor ready to come out of Beta. It’s not a complete solution but makes it a bit more polished with the following changes, as outlined by Riad Benguella in the <a href=\"https://github.com/WordPress/gutenberg/pull/47182\">PR</a>:</p>\n\n\n\n<ul>\n<li>A CanvasSpinner that can be used in components that have a “ready” state. So instead of rendering an empty white page, the spinner is rendered when these components are not ready.</li>\n\n\n\n<li>Makes sure the iframe has a “white” background by default to avoids too much background color switches during initialization.</li>\n</ul>\n\n\n\n<p>These are just a few of the highlights. Check out the <a href=\"https://make.wordpress.org/core/2023/02/10/whats-new-in-gutenberg-15-0-18-january-2/\">15.1 release post</a> for the full list of enhancements, bug fixes, performance improvements, and tooling changes.</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, 10 Feb 2023 22:56:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:74:\"Do The Woo Community: Blocks, Themes and Page Builders with 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74479\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://dothewoo.io/blocks-themes-and-page-builders-with-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:423:\"<p>Recently I had a run in with blocks, the editor, themes and page builders., when rebranding BobWP.com. We chat about that.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/blocks-themes-and-page-builders-with-nathan-wrigley/\">Blocks, Themes and Page Builders with Nathan Wrigley</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Feb 2023 09:07:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Post Status: Product People with Vova Feldman of Freemius — Post Status Draft 140\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=147156\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/product-people-with-vova-feldman-of-freemius-post-status-draft-140/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:46835:\"<div class=\"is-layout-flow wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">In this episode, <a href=\"https://twitter.com/vovafeldman\">Vova Feldman</a> of <a href=\"http://freemius\">Freemius</a> joins Cory Miller to discuss the need for developers to prioritize products over infrastructure, the state of WordPress, and goals for providing a better user experience for customers. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">53</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p>Learn from the owner of <a href=\"http://freemius\">Freemius</a>, <a href=\"https://twitter.com/vovafeldman\">Vova Feldman</a>, as he talks with Cory Miller about the opportunities for indie developers, how to best bring products into the industry, the importance of community, and more.</p>\n\n\n\n<p><strong>Top Takeaways:</strong></p>\n\n\n\n<ul>\n<li><strong>Living in an Open Source Ecosystem. </strong>Developers don’t need to reinvent the wheel. With such a large ecosystem of products, finding a secret niche spot to develop your product isn’t always the best or even attainable solution. Doing something better than the next company is sometimes all it takes for great success. </li>\n\n\n\n<li><strong>The David and Goliath Struggle. </strong>It’s obvious that there has always been and will continue to be an unbalanced level of success between independent WordPress product owners and large companies. But that’s not to say there isn’t room for everyone; there is. An independent startup can move much faster into achieving short-term goals and growth than large-scale established companies can with a heavier workload and slower forward movement. </li>\n\n\n\n<li><strong>Valuing Community Over All Else. </strong>The WordPress community is what drives the future of WordPress. It’s not so much all the great new things the system offers but the people behind the process. Taking that same thought into your business, making people the center of your solutions, is an undeniable way to create a business that is surrounded by community. </li>\n\n\n\n<li><strong>Removing Language Barriers. </strong>Creating website language translation is becoming more of a priority. It ties in with the need for developing a better user experience for your customers. Your community needs a specialized way to interact with your products and site. That’s one main task Vova’s team is tackling for their customers this year</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<div class=\"is-layout-flex wp-container-38 wp-block-columns sponsor has-theme-palette-8-background-color has-background\" id=\"StellarWP\">\n<div class=\"is-layout-flow wp-block-column\">\n<h3 class=\"StellarWP has-theme-palette-1-color has-text-color\" id=\"Sponsor\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> Sponsor: <span><a href=\"https://poststat.us/elementor\" rel=\"sponsored nofollow\">Elementor</a></span></h3>\n\n\n\n<p><strong>Elementor </strong>enables web creators to build professional, pixel-perfect websites with an intuitive visual builder. Quickly create amazing websites for your clients or your business with complete control over every piece, without writing a single line of code. Join <a href=\"https://elementor.com/community/\">a vast community of web creators</a> from all around the world who deliver exceptional websites using Elementor.</p>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column is-vertically-aligned-top\"><div class=\"wp-block-image elementor-logo\">\n<img src=\"https://cdn.poststatus.com/wp-content/uploads/2022/08/Elementor-Logo-Symbol-Blue-150x150.png\" alt=\"Elementor\" class=\"wp-image-104033\" width=\"150\" height=\"150\" title=\"Elementor Logo\" />Elementor</div></div>\n</div>\n</div></div>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"?\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://freemius.com/\">Freemius</a></li>\n\n\n\n<li><a href=\"https://ithemes.com/\">iThemes</a></li>\n\n\n\n<li><a href=\"https://elementor.com/?utm_source=google&utm_medium=cpc&utm_campaign=6487935276&utm_term=elementor&gclid=CjwKCAiArY2fBhB9EiwAWqHK6qYD-cCG8rlI6kGvOjh4HNqbY7YK7PshpiK1nnS4VyLHEtkaadENbRoCtuQQAvD_BwE\">Elementor</a></li>\n\n\n\n<li><a href=\"https://woocommerce.com/\">WooCommerce</a></li>\n\n\n\n<li><a href=\"https://yoast.com/\">Yoast</a></li>\n\n\n\n<li><a href=\"https://il.linkedin.com/in/vovafeldman\">Vova Feldman on Linkedin </a></li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia</a></li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/vovafeldman\">Vova Feldman</a> (Founder & CEO, <a href=\"https://twitter.com/Freemius\">Freemius</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"?\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p><strong>Cory Miller:</strong> [00:00:00] Hey everybody. Welcome back to Post draft. I’ve got a unique interview today, but one that’s overdue with my friend, VO Vva Feldman, uh, premius. Um, I, I met, I’m trying to think VO when we met, but I think it was at a big word, camp, maybe Philadelphia, and this was years ago. And what I’ve admired about you along the way, Is this was your thing and how you’ve stuck with it.</p>\n\n\n\n<p>You continue to hustle and grow this. Cuz to me, outside in, I go, this guy’s passionate about what he does called FIUs because you’re always doing something. Man, I wish I had some of your energy. Um, but anyway, VVA, would you mind sharing a little bit about what you do in</p>\n\n\n\n<p><strong>Vova Feldman:</strong> Word. Of course. So first of all, thanks for having me, Corey.</p>\n\n\n\n<p>I think it’s the second time we’re doing this on post status. Yeah. Uh, so a bit about free use. Uh, we are, we are, uh, [00:01:00] payments, taxes, substructure, infrastructure, uh, with the focus on software and more specifically on the WordPress products ecosystem, which is plugins and themes. Uh, something that I’ve been passionate about for.</p>\n\n\n\n<p>Uh, probably 10 years already. Uh, I’ve been running with free use for about 80 years. Um, we’re a good size team right now. Uh, have, uh, over a thousand, uh, products sold for free use. Uh, over 500, uh, selling partners that are selling through free use. We keep growing, uh, and getting, you know, uh, bigger and more successful.</p>\n\n\n\n<p>Products joining the platform. Very exciting. Keep evolving all the time. Yeah. Things are going well. Yeah.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Well, we’re gonna dive into all of that, um, for sure. But again, I could say to to you, bva, I wanna give this as a compliment to you, but anybody listening to is what [00:02:00] you’d love in entrepreneurs is it’s not just the money, it’s passion, it’s purpose, it’s people, and again, You’ve been doing this for a long time and I think that’s the people that win and do great in the world is just staying with it and growing.</p>\n\n\n\n<p>This thing that you’ve got today that you just shared what all where, where all FIUs is today? Where did Free, when did Femia start?</p>\n\n\n\n<p><strong>Vova Feldman:</strong> So I think I, I opened the company, uh, in the beginning of 2015. Okay. Uh, but I actually started like processing and thinking about it, uh, in the end of 2014. Yeah. So, so</p>\n\n\n\n<p><strong>Cory Miller:</strong> what led you to FIUs and what you’re doing and have been doing for, for what, eight</p>\n\n\n\n<p><strong>Vova Feldman:</strong> years now?</p>\n\n\n\n<p>Yeah. So, Before free use. Uh, I was a c o co-founder with startup company that was acquired in mid 2013, and I left the company slightly before it was [00:03:00] acquired. So I had the freedom to kind of choose what I want. Uh, and I had a side project like many other developers, something that, you know, I build in my spare time.</p>\n\n\n\n<p>I realized that I had many users. It was totally a free, uh, product. Uh, but I said, you know, let’s see if we can turn that into something bigger. Joined with another partner online from Slovenia. Uh, and he was the ui ux guy, and we’ve been working for a year. We actually joined with another developer and it was part-time and turned that, you know, side thing into a business.</p>\n\n\n\n<p>Uh, but what was really interesting to discover after this year of where two of us worked on this full-time is that the product didn’t change at all. And everything that we’ve been working was, you know, the infrastructure that’s re related to the commercial stuff. So we realized, you know, that was the aha moment, that something [00:04:00] doesn’t make sense here, right?</p>\n\n\n\n<p>Like anyone who wanna sell their products online, their software, their SaaS, whatever, regardless of their product, need this type of infrastructure out. And it doesn’t make sense that you would need to spend 10 x more time on the infrastructure rather than the product itself. Where actually what makers, you know, and creators wanna focus at is their product and their customers and not the infrastructure.</p>\n\n\n\n<p>So we basically identified a gap in the market. I started to talk with, you know, many people in the industry get their feed. Uh, you know, it was before I involved in a WordPress ecosystem and everything. Uh, now many of them are my friends and this is how you know it all started. We realize it, it’s a good opportunity, something that we’re passionate about, and that’s how we kind of embarked into free.</p>\n\n\n\n<p><strong>Cory Miller:</strong> I think if you [00:05:00] had started, uh, a couple years earlier, uh, the. The need. Like I, I know the need of what you’re doing is like how much time and effort you’re spending with all these things when you just wanna focus on your product and how many product companies could have benefited. Um, but it’s obvious that the, the need is there, you know, or doing all this stuff.</p>\n\n\n\n<p>And I love the, when you’re able to take something that’s not in their full wheelhouse, but they’re capable of doing. Yeah, I’m capable of spinning these things up, but like let them concentrate on product. I think that’s pretty cool. Well, VVA, you Vva, you spent a lot of time, you’ve got a lot of experience and expertise even beyond WordPress, and what I’m curious to hear is today being the product guy that have seen so much data in all the, the customers that you have and their customers, where do you think we are today?</p>\n\n\n\n<p>[00:06:00] In WordPress products, like overall, what are your perspectives and opinions about where we are in the state of WordPress products, commercial WordPress products, I</p>\n\n\n\n<p><strong>Vova Feldman:</strong> should say? Yeah, so I think the market, you know, if we’re comparing it to what was like five, six series ago, it is much more mature these days.</p>\n\n\n\n<p>Uh, like we also, you know, everyone, uh, so the amount of acquisitions that happen in the past few years, And I think that unlike when previously everyone could just get into the market and build a lifestyle business very easily today, it’s harder because there is much more competition. And also I’m seeing more players with money that getting into a mar, into the.</p>\n\n\n\n<p>Much more strategically. If previously the workers products ecosystem was driven mostly by developers and [00:07:00] agencies. Today you have people that are looking at it from an investment perspective that, you know, I have money. Where can I make more money? Right? So there is the whole SaaS business. I can go and acquire a SaaS, but that’s much in terms of operation.</p>\n\n\n\n<p>It’s much more complex run SaaS business than a plug-in business. But on the other hand, there are plenty of plug-ins. Many of them are non monetized. You know, I can buy it as a real estate investment. Uh, usually the people that are in that space, they’re more marketing business driven, so they actually have an advantage from a commercial perspective because they’re not, you know, their excitement is, uh, product making more money and less about adding features and coding.</p>\n\n\n\n<p>They also have better understanding in ui ux, so they’re like more mature [00:08:00] people are getting into a more mature ecosystem. So all of that makes it, you know, harder for new players to get in, uh, because you know, all these dynamics that have changed. Uh, but I wanna say that the market is still growing in terms of size, in terms of inventory, in terms of everything we are seeing.</p>\n\n\n\n<p>Some verticals growing more than others. You know, before we start this convers conversation, you mentioned, uh, you know, ai. Uh, so we definitely in the past few months, like we’ve seen a bunch of new products added to free use that are integrating with ai, AI tools, whether it’s, you know, generative text or whether it’s generative visuals.</p>\n\n\n\n<p>Uh, but we’re seeing growth in that vertical for. So there are [00:09:00] things happening all the time.</p>\n\n\n\n<p><strong>Cory Miller:</strong> That’s good to hear. Um, because, you know, I, I started iThemes in 2008 and seeing it go from baby infancy to more mature, I think , I kinda, uh, and then now like you said, it’s just this round of, uh, investors coming in, big companies.</p>\n\n\n\n<p>Um, coming in with a lot of money to roll ups and we were obviously a part of that. Um, with now what’s known as, I guess as stellar wp. Um, what, what I wonder before we talk about future and stuff is, I guess this is part of the future is my question is vva. Like you got these big companies can come in and they’ve got a lot of money and they’ve got a lot of fire power and can really take parts of the industry to another level.</p>\n\n\n\n<p>Um, even. I would say professional, uh, even though I think we’re pros, um, more professional and I start to go like, is there [00:10:00] still a day for the independent product owner in WordPress? What are your thoughts?</p>\n\n\n\n<p><strong>Vova Feldman:</strong> I think, uh, I think it will always remain this way. It, it’s always, you know, David Goliath, uh, I’m seeing it, you know, on FIUs, like the more we are growing, the slower we can, you know, we’re moving.</p>\n\n\n\n<p>Period. There’s just more things to deal with, uh, and the fact that, you know, when you are starting something new, you are so much more agile. Then not only by the size of the team, but also you don’t have customers that you need to respond to. So you can move so much quicker and you don’t even need to deal with a lot of like edge cases and you know, things that once you grow, you have to facilitate because you do wanna keep your existing customers.</p>\n\n\n\n<p>Yeah. Uh, so I think, you know, there’s, there will always be a room for that indie [00:11:00] developer, uh, to build their business. How big of a business. That’s another question, you know? Yeah. It depends also on your aspirations and the market size and, you know, many of those things. Uh, but I definitely still think there is a room for, you know, niches, micro niches.</p>\n\n\n\n<p>And there are so many things and so many use cases and, you know, to build like a business that will, again, depends on where you live geographically, but building a business that will just sustain your salary as an individual. I think it’s definitely doable. You don’t need so many customers. Mm-hmm. ,</p>\n\n\n\n<p><strong>Cory Miller:</strong> so you mentioned verticals and what I, what I have seen in just my perspective is, um, like you go seo, you got Yost out there now Sidey has, uh, WP.</p>\n\n\n\n<p>All in one seo and, and there’s others that I’m not thinking of off the [00:12:00] top of my head, but like that’s a competitive market. So if you’re trying to do something in seo, I go, wow. Not, not saying there’s somebody that can’t innovate and disrupt, but you mentioned verticals and what are the, what are the things you’re seeing from a vertical side, like I go SEO page builder.</p>\n\n\n\n<p>Uh, backup security, all these main, like big categories are pretty dang competitive. Um, not to say they can’t be disrupted or innovated in at all, but what are the verticals and what are the opportunities you’re seeing that product owners are starting to, to lean</p>\n\n\n\n<p><strong>Vova Feldman:</strong> into? In my opinion, I actually think that it’s the easiest and quickest to build a lifestyle business in a very competitive.</p>\n\n\n\n<p>Vertical, like seo, like backups, because every website need them, right? Yeah. So even if you capture half percent of the market, you don’t need to be a litter, you know, a half percent of, of 40 per 43% of the web. It’s [00:13:00] huge, right? Yeah. So I know that people like thinking product people. You want to innovate and come up with something you, but you don’t have to reinvent the wheel.</p>\n\n\n\n<p>You can build a wheel that looks little, like more shiny from the angle of the Micronesia you’re targeting. And that’s enough because the decision, I mean, that’s enough. It requires marketing and you know, all, all the stuff behind the scenes to make it work. Uh, but I do think that there is actually a better, uh, chance to succeed in a very competitive market, very competitive mass market kind of product, rather than the choosing like a very narrow niche.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Uh, that totally resets my thinking and I love that perspective because I, it you don’t have to build the next yo. Or what, whatever those cool products are out there, you have to find something that sustains and does the life that you want it to, to do for [00:14:00] you. And I think that was probably what I needed to hear today, but I totally agree with you.</p>\n\n\n\n<p>Um, you think about that and you’re like, there’s probably a problem in there that yos or what, whatever product we’re talking about solves on the general level, but there’s a specific thing in there you could do better for people and carve out a really good living doing.</p>\n\n\n\n<p><strong>Vova Feldman:</strong> And I will add more to that, that we’re living in an open source ecosystem so we can piggyback on top of existing products.</p>\n\n\n\n<p>So if I wanna start. Another SEO product, I can take existing one for Kit. You probably don’t want to do that because there’s so much code that you will need to suddenly maintain, but theoretically you don’t need to start from zero. You can leverage all the lessons, improvements, that being there for decades.</p>\n\n\n\n<p>Right, so, so I think that’s actually a big advantage because I am seeing, you know, developers that are choosing [00:15:00] very, very narrow niche without really thinking about the potential market size and. Like the, the chance that they will be able to build a business that is big enough. That’s a very common mistake that people don’t, you know, calculate the potential.</p>\n\n\n\n<p>They’re kind of, you know, I’m excited about this problem. I have a client that you know needs it and I’m going all in. But you know how many clients like this out there? This is a hundred thousand, 10,000. Like, will you be able to get to all the 10,000? ? No. How do you price it then? Like you, you have to run the numbers to choose, you know, where are you aiming to grow?</p>\n\n\n\n<p>Take the potential like market and run the numbers that you can really get there, because many times the calculation is simply not working. Yeah.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, I, I see that for sure. Um, you know, if you, [00:16:00] I, I see a lot of products to come from, own your own experience or client experience too, and go, they’re not served as well.</p>\n\n\n\n<p>And I, I think too, There’s, you gotta add some care and passion to it to be able to do it as a lifestyle too. You know, think about Sean Hesketh, the WP 1 0 1 saw a problem with his clients that was causing him problems, decided to roll out what now is WP 1 0 1? And you’re like, that formula still still works.</p>\n\n\n\n<p>There’s enough out. It seems like vva though. It’s like, okay, so the question would be how do you pick that product? How do you deter, how do you find that balance? Um, what are your thoughts on that? And find like, okay, I’m gonna do this. It’s maybe total billable market is a hundred thousand people. Maybe, you know, how, how do you even think through, if you’re giving advice to, uh, developer product, a budding product donor to, to start to [00:17:00] find what that is?</p>\n\n\n\n<p><strong>Vova Feldman:</strong> Yeah, so it, it, it’s exactly as you, you know, try to assess the, the potential size, how much do you believe, and in how much time will you be able to get to that market share. Whether you’re running a paid only product or freemium, because if it’s freemium, then there are benchmarks for conversions. So you’re immediately, let’s say just for the sake of the, you know, example, your total addressable market in terms of number of websites is 10,000, right?</p>\n\n\n\n<p>And it’s a freemium product, then most likely you are not going to get more than 5%. Okay. Which is great. Yeah. So it’s, we we’re talking about in 10005%, I think it’s 500, uh, right. 10%. It’s 1000. Yeah. 500. So if, if you are pricing your product for a hundred dollars per year, and at most you’re gonna [00:18:00] get 500 customers.</p>\n\n\n\n<p>Run the meth, that’s your cap and you will need to work hard for it. Is that enough for you? Are you aiming for something bigger? So it’s actually like when you think about it, it’s not so hard to do the meth. You just need to do that and think about it. And many times it could be a slight shift or reframing of the product to a different market, maybe a different niche, and suddenly it can open up and you know, change your potential a lot.</p>\n\n\n\n<p>Mm-hmm. .</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yep. And I, I’m a firm believer too, of trying stuff. . I’ve got way more failures than successes, but you try stuff, you know, try to refine the model and find that magical area that’s your thing. And, uh, it turns out pretty, pretty cool. And,</p>\n\n\n\n<p><strong>Vova Feldman:</strong> and you always hear about opportunities and ideas like once you have something, because people love to share feedback or you can [00:19:00] ask them or ask for features and you know, the more conversation, even if you start with a, you know, niche that is not necessarily like big enough, you can find your way if you are opening your eyes and ears into something more lucrative, more interesting by having conversations with your audience, you know?</p>\n\n\n\n<p>A product can also be kind of a penetration strategy to start discussions with a certain, you know, uh, vertical or persona that you are interested to tackle for whatever reason. Uh, and then from there you can learn about their challenges, about their pains in the business and see, You know, maybe you can make some tweaks that will actually be applicable to much bigger audience, or people would be willing to pay much more for it, or it’ll be, you know, will require much less support.</p>\n\n\n\n<p>Uh, whatever you wanna [00:20:00] optimize there. Now, the question you asked me about verticals, so , I’m jumping back a little. Yeah, yeah. So the two, the two biggest verticals that we are seeing, Based on our data is, like you said, page builders and specifically Elementor. Uh, like there are so many extensions of top Elementor.</p>\n\n\n\n<p>And also for WooCommerce like WooCommerce extensions. These are the two biggest verticals that we’re seeing in frame use. And it makes sense because those are platforms. So, uh, you know, they, they have their own ecosystem of plugins pretty much. Mm-hmm. and different solutions that you can build. Uh, and WooCommerce is, you know, like more lucrative because people are making money by using your products.</p>\n\n\n\n<p>So they should have money to pay for plugins too. Um, ,</p>\n\n\n\n<p><strong>Cory Miller:</strong> that’s, uh, that’s really interesting. [00:21:00] Um, I, I wouldn’t have thought those would be the one you would’ve said, uh, but it makes sense. Um, platforms on a platform, you know. Yeah. On the WordPress platform and WooCommerce is def two great names, woo Commerce and Elementor.</p>\n\n\n\n<p>I see so much growth, particularly with Elementor and what they’re doing over there. Um, and getting to know that team, uh, a little bit. And it’s. It’s a, it’s a great product. So, but that’s interesting. Add-ons for Elementor. Yep. And Will Commerce, I would’ve thought, man, that’s gotta be saturated. But, but you’re saying there’s still an opportunity over there and I mean, it makes sense.</p>\n\n\n\n<p>I hear from Katie Keith at Barn Two and different people like will Commerce, specific businesses doing pretty well.</p>\n\n\n\n<p><strong>Vova Feldman:</strong> Yep. Absolutely.</p>\n\n\n\n<p><strong>Cory Miller:</strong> All right. Well, um, So next, so just what the future holds, um, where you see WordPress tech, [00:22:00] um, we find ourself in, um, so much of the tech outside of our, our bubble and WordPress has really accelerated.</p>\n\n\n\n<p>Um, and we have, I’m even having another conversation today about open AI and AI in general. It seems like there’s a, it’s, it’s a different day in WordPress and on the web, and so I’m curious what your thoughts are out into the future. Where’s all this going? What things are you seeing out there? I know you’re not a prophet, but you have really good perspectives and I’d love to hear ’em where, where WordPress is going, where the web is going, what’s changing, what things are you seeing?</p>\n\n\n\n<p>Challenges out there? Opportunities overall.</p>\n\n\n\n<p><strong>Vova Feldman:</strong> Yeah. Um, I mean, I, I do. Think like what is hot out there right now? It’s like generative AI in whatever it is, whether it’s text, audio, vi like video, uh, images. And I do think that [00:23:00] like WordPress, uh, is getting there. Through integration, through plugin developers or building, you know, the bridges.</p>\n\n\n\n<p>Uh, and it’s not new. You know, I will mention like Veto with and Andrew with Berta ai. Like they’ve been running this for over a year for sure. Before, you know, C G P T became a big thing. Uh, yeah. And I’m sure there are other products out there like, uh, like I said, in the past month we probably saw like 10 new products that are to free use around generative ai and Interesting.</p>\n\n\n\n<p>I do feel that WordPress will be a big part in that play because like text and visuals. Is kind of, you know, one of the main things that WordPress is made for . You know, we generat text and images. Yeah. So I think it will be, you know, through plugins in the beginning, maybe in three years, you know, like something [00:24:00] more native in terms of integration.</p>\n\n\n\n<p>Uh, but I definitely think that it will be, you know, very tightly integrated together. Um, So, yeah, that, that’s my perspective on that whole thing. In terms of, you know, growth of WordPress in general, uh, like the market share, I don’t know if WordPress will keep growing. It’s a hard question. Uh, I don’t think it will, you know, disappear.</p>\n\n\n\n<p>There are many solutions out there for building websites these days, and they’re great for the virus niche. But this is also, you know, not something new there. Like Wix was there for many years, square space and all the others. Uh, so you have like different types of solutions. But in the end of the day, you know, the flexibility and the things that you can do with WordPress, plus adding the [00:25:00] community component to that.</p>\n\n\n\n<p>This is the winner and we’re seeing that, you know, uh, so I, I, I don’t, as long as the, the community part is strong and there’s no, some sort of, you know, uh, deviation separation, the community or something, you know, crazy happening. I think the worker’s ecosystem will be good for the next two, three years. I don’t know what’s gonna happen after.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah. Yeah. I, I mean, WordPress has, uh, evolved so much and I think this is our time to take a big, deep breath, look around and go, we got this, you know, see these opportunities, but make sure we’re still watching these opportunities in certain integration. And I. Into WordPress and like you were saying, and I think, and I believe the business ecosystem of WordPress can do that, can meet that challenge and opportunity.</p>\n\n\n\n<p>I mean, it’s really an [00:26:00] opportunity. Um, I think about the fed averse, I started having a little bit more about that, just some alternative to closed walled garden, um, that WordPress has always flown the flag of freedom. The ability to go out and build whatever you want, how ugly or awesome it is, you know, and I, I want that for, for my kids.</p>\n\n\n\n<p>And w WordPress turning 20 year, I’m 20 this year. I’ve been really reflective of those things. So, uh, I, I like it. I think this is an opportunity for us to ride like you, you nailed it. Community. That’s what drives this thing. It’s not just the code, code needs to change and evolve, but the people are the heart of it.</p>\n\n\n\n<p>So I, I love that emphasis vo. All right. Tell me what cool things you got going on at FIUs Man. Um, I, I know you’re always iterating on things, but you know, maybe the first question is what are the, what are the things about the platform you really cherish that we might gloss over? Cuz you’ve been doing it so long [00:27:00] and then new stuff you’re working on, um, for your, your</p>\n\n\n\n<p><strong>Vova Feldman:</strong> customers.</p>\n\n\n\n<p>Yeah. I’ll probably, there’s no like one feature that will be, you know, exciting for everyone. Everyone have their own flavors. Uh, I, I think the, our main kind of selling point is that with free use, you can make more money with less headache. Uh, that’s, you know, the, the things and you get a true partner that cares about your growth.</p>\n\n\n\n<p>And, uh, you know, we are very, uh, proactive and here to help. Uh, we’ve been working on, you know, many things all the time. Uh, I will share some stuff that, you know, we plan to, to do this year. Uh, we wanna, uh, like one of the things that we are lacking and been postponing for a while is, uh, localizing the checkout, uh, to allow it, you know, to be loaded in the native language [00:28:00] depending on the geolocation of the customer.</p>\n\n\n\n<p>Uh, it is something. That is like, there are micro ecosystems, uh, even though the world is global, but not everything is English. Uh, you know countries like Germany Yes. France, uh, places in South Africa where they do like mostly in native languages, and there are many products that. Also in our space that the companies are specifically targeting their country and that’s it.</p>\n\n\n\n<p>It’s big enough that they don’t need to expand to the US market and other places. Uh, so this is a big one that we’re really excited about. Uh, and that’s it. This year is, it is happening , we’re also. Doing some modernization of our dashboards, uh, you know, it’s time to kind of refresh the UI and give it a, uh, a new, uh, slick scheme.</p>\n\n\n\n<p>Uh, so that’s [00:29:00] also, you know, things that are important for us doing some optimization. So the checkout, uh, also in terms of conversion, making it even better. Um, we did add last year a bunch of special, we call them special coupons, uh, that are aimed to, uh, maximize conversion rates and minimizing, uh, churn rates, uh, that are really unique and developers don’t really need to do anything in order to, to make it happen.</p>\n\n\n\n<p>So, for example, when someone goes. and, you know, starts a cancellation process of their subscription. Developers can define a coupon that will say, Hey, you know, before you go, like, take 15% just to say on the subscription. Uh, so the, we seeing that really helpful, uh, and exit intent discount that, you know, if you are trying to leave the checkout in the middle, give you an extra incentive, [00:30:00] uh, to, to continue with the checkout and, and a bunch of.</p>\n\n\n\n<p>So this is just, you know, some of the things, uh, there are many more. Let me see if I have something. Yeah. Another one that we wanna, uh, prioritize this year is we, we do offer an affiliate platform for FIA’s developers. But currently the, the payouts, uh, handling is up to the developers. So this is a need that we, a pain that we’re hearing from our community that they would love us to take care of the payouts for them.</p>\n\n\n\n<p>It will add some, you know, operational, uh, hassle for us. But it’s okay. You know, we are, Solve it for everyone. Uh, so that’s also something that we’re really, really excited about and, uh, going to ship this year and it will, you know, streamline and save that whole operational hassle for developers to deal with affiliates to pay them out.[00:31:00]</p>\n\n\n\n<p><strong>Cory Miller:</strong> That’s awesome. I, I wanna go back to, I love that iteration on everything you’re doing for your community. Uh, I want to go back to the localization part because something I totally glossed over or didn’t even think of until you said that, but, um, word for Texas Global, and you mentioned three regions, countries, um, Seem to have potential for high growth, uh, with unique needs that aren’t served just from English, you know, uh, I, you know, from a market size, I go, gosh, Europe and that whole.</p>\n\n\n\n<p>Time zone band all the way down to what you said. South Africa, I’m not as aware, I don’t have any many, as many relationships in South Africa, but I go Europe, gosh. Um,</p>\n\n\n\n<p><strong>Vova Feldman:</strong> money to spend. I meant South America by the way. Sorry if I said South Africa. Oh, oh, okay. South. Well that’s,[00:32:00]</p>\n\n\n\n<p><strong>Cory Miller:</strong> that’s even more interesting um, cuz like I see Europe for sure. Talk to me about South.</p>\n\n\n\n<p><strong>Vova Feldman:</strong> Yeah, I, I, I mean, you know, uh, when I say South America, I meant, uh, uh, not, uh, the usa right? I meant like Brazil, Argentina, all these places. So, so they’re like, e everything there is kind of native, that’s expectation.</p>\n\n\n\n<p>It’s not an English. Yeah. And it’s Portuguese. Yeah, exactly. Portuguese, uh, Spanish. Spanish, you know, et cetera. And. . Um, they, they have a local economy that is like big enough in terms of audience that you can build a business, a local business purely for a plugins, whatever digital business, just target your local country.</p>\n\n\n\n<p>But it will, you know, it’s kind of awkward if you, everything is. Portuguese, but then the checkout is in English. Yeah, yeah. You know, and things like that.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Well, so Portuguese, you know, I spent some time in [00:33:00] Portugal, but I know Brazil for, for instance, enormous country. And you know, you look at most, um, global type sites and communities, let’s say Facebook, you’re gonna see a Portuguese in, in the top, you know, three to five of like translations and stuff.</p>\n\n\n\n<p>But I’m curious what you’re seeing in. Uh, port Brazil, Portuguese speaking obviously is dominant there. Um, but like, how are they using, or WordPress, how, how big is the market? Is it, you know, is it growing? I, I get kind of, my perspective gets Europe, you know, have money doing cool commerce over there using WordPress just aren’t tap, you know, WordPress itself because it is like, You know, it started here in, I guess in the US and Gro grew to the us but there’s so much good stuff going on there that they just don’t decide to go to a Word camp, for instance.</p>\n\n\n\n<p>But I’m curious what your perspectives are in like Brazil and South America. Like how are they [00:34:00] using WordPress? The, the actual your customer’s?</p>\n\n\n\n<p><strong>Vova Feldman:</strong> Customers? So, honestly, I don’t have these answers, so I don’t wanna say, you know, come up with with things. I, I just, you know, I. Like familiar on this angle from the commercial perspective.</p>\n\n\n\n<p>Gotcha. And those like Microeconomists. And it’s not only Yeah, you know, south America or places in Europe, it’s also in Asia, like, you know, Japan, Asia, uh, China. Yeah. Uh, like all, all these places, like they are focused on their country. They have like over a hundred million, you know? Yeah. Uh, uh, citizens there.</p>\n\n\n\n<p>Uh, so it’s, it’s big enough of a market just to win debt. Uh, so just by, and I think this is something that many are maybe overlooking, but that’s another opportunity. The fact that you have Yost, s e. You can start a yo competitor that it’s like, you know, Japanese [00:35:00] focused. Yeah. And most likely build something that in Japan will be a winner.</p>\n\n\n\n<p>And OTOs as an example. Yeah. Okay. Well,</p>\n\n\n\n<p><strong>Cory Miller:</strong> yeah, I think you’re drilling it down for me and seeing the perspectives, but I, I go, my, one of my friends from Portugal, Marco Almeda, has a payment. Processing solution that’s just for Portugal, because that’s how they do commerce for WooCommerce and does pretty well with it.</p>\n\n\n\n<p>And I’m like, I get that, you know, that nuance and, and I guess I was asking it from the product, you know, when you think about the world, I go, okay. I think big categories of. Of, you know, products, but now it’s drilling it down to like, there might be a need that just like his product solution isn’t gonna probably be used outside of Portugal, but it’s in there.</p>\n\n\n\n<p>There’s, I think there’s 35 million people there, you know? So what percentage of that, like you said, can make a living and do good work? Um, there’s, there’s just trying to [00:36:00] demonstrate for those listening too, like, You’re saying there’s more opportunities than we’re we always think of</p>\n\n\n\n<p><strong>Vova Feldman:</strong> instantly. Yeah, and, and I will say it’s even easier even if the product is not specifically relevant to that geolocation, but if all your marketing efforts, your branding, the people behind the product are native and local.</p>\n\n\n\n<p>You can win that market in some markets because that’s what people are looking, you know? Mm-hmm. , like I, I, I’m pretty sure that, you know, many of the market leaders, whatever it is, SEO or other places, they’re not optimizing for Japanese. Maybe they localize and have some automatic plugin that does something, but that’s.</p>\n\n\n\n<p>Is not really optimizing for Japan, right? Like if you really wanna build a business there, you need to go to the local events. Have people that understand the culture, know the, you know, whatever, how the websites are supposed to look there. [00:37:00] So it’s like a whole different ecosystem. So you don’t even need to invent anything.</p>\n\n\n\n<p>You just need to localize your brand company product to the local market in some economies to succeed and get involved there with the local influencers and, you know, Target specifically.market, and I think you can win that. I, I’ve seen some products of doing that. Yeah. Yeah.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Okay. Thank you for letting me to to digress on that because I just keep going like, what are the opportunities?</p>\n\n\n\n<p>Cuz we need more and more people innovating out there and being able to see there’s. There’s really incredible opportunities in WordPress that they don’t come but a part of the localization. So I totally understand that’s one of the things you’re excited about to do. The ui ux work you’re doing will be great, I’m sure.</p>\n\n\n\n<p>And the affiliates that’s, uh, helping people make money. So I love it. You’ve be, you’re a platform and, and you’re really taking care of your community with this forward thinking</p>\n\n\n\n<p><strong>Vova Feldman:</strong> things. And I, I also want to add one more [00:38:00] thing. Uh, in the past two years, we did recognize. That, you know, previously we’ve been very focused on developers.</p>\n\n\n\n<p>It’s not like we ignored users. Okay. But we didn’t always pay attention or. Kind of look on the perspective of the user. Mm-hmm. , and we did get a little pushback in the past two years, I would say. Uh, and we’re working very hard to first of all address the feedback that we are receiving, uh, as well as changing kind of the way we work.</p>\n\n\n\n<p>Uh, whatever we do in a company, we think about developers and we also put ourselves in the minds. Of users, you know, to make sure, because sometimes, you know, it, it’s, uh, can be a, uh, a thin, uh, thin line, I would say, you know? Yeah. Sometimes there is a [00:39:00] balance that you need to keep, you know, because something that the, a developer will benefit directly doesn’t necessarily that the user will benefit from.</p>\n\n\n\n<p>So there is some sort of a balance and, you know, Michan going forward is to make sure that FIUs is a great solution for users as it is for developers. Yep. And yeah.</p>\n\n\n\n<p><strong>Cory Miller:</strong> That’s awesome. Well, um, Veva, thank you for your time today and talking about sharing really openly about what you’re seeing in the product market with WordPress.</p>\n\n\n\n<p>Uh, I think it’s something that’s always like, I love products, so I love talking about product, and geek can geek out on that. Where can they find more about</p>\n\n\n\n<p><strong>Vova Feldman:</strong> FIUs? Sure. Uh, so, uh, freeez.com i is our homepage. Uh, we write a lot of, uh, content around the business, marketing, pricing, customer support, everything related to the business, to the commercial side, uh, of [00:40:00] software Pluggin theme, develop development, uh, f.com/blog.</p>\n\n\n\n<p>Uh, you can find me on Twitter. It’s Vva Feldman. Uh, I would also like to mention that a big chunk of our team is going to be in World Camp Asia next month, so if you’re coming, I have the t-shirt here. So</p>\n\n\n\n<p><strong>Cory Miller:</strong> nice . I love it. . Yeah, .</p>\n\n\n\n<p><strong>Vova Feldman:</strong> Cool. Uh, so if you’re coming, you know, please come say hi. We’re also going to, uh, have, uh, our famous makers meet up, where we bring together, uh, you know, product makers, uh, plugging and thin developers, uh, SaaS owners, uh, just for a little, you know, side event of networking, drinks, food, uh, and you know, having good time together.</p>\n\n\n\n<p>It’s an invite only event. So if you are, you know, a product person and interested to come, uh, email [00:41:00] us@meetupsfree.com and we’ll happily send you an invite.</p>\n\n\n\n<p><strong>Cory Miller:</strong> That’s awesome. And also you’re in post outta Slack, so. Absolutely. Well, thanks Fava, uh, love what you’re doing. Keep up the great work and thanks for sharing your perspectives with today at Post Status draft.</p>\n\n\n\n<p><strong>Vova Feldman:</strong> Thanks for having me.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Feb 2023 23:23:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:66:\"WPTavern: WordPress.com Is Testing AI-Generated Images and Content\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=141772\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wptavern.com/wordpress-com-is-testing-ai-generated-images-and-content\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3992:\"<p>WordPress.com is currently testing two new blocks for generating images and paragraph content using AI. The blocks, which are currently labeled as experimental, were first spotted by Jen T of <a href=\"https://wpcommaven.com/\">WPcomMaven</a> who published a few examples on her blog this week. </p>\n\n\n\n<p>WordPress.com developed the blocks through a partnership with OpenAI, creators of ChatGPT and DALL·E. Automattic engineer Artur Piszek gave a quick overview of the experimental blocks in a <a href=\"https://wordpress.com/forums/topic/jetpack-ai/\">post</a> on the WordPress.com support forums, calling the new feature “Jetpack AI – your writing assistant on WordPress.com.”</p>\n\n\n\n<p>I took both blocks for a test drive, starting with the image generator. Users put in a prompt in a simple UI and the block generates four images, which can be expanded before selection. Here are a few examples: </p>\n\n\n\n<img />\n\n\n\n<img />\n\n\n\n<p>I was not terribly impressed with the images, which every time seemed blurry and ill-conceived. Some of them bore an almost cruel likeness to the prompts, with living creatures and humans faring poorly compared to images of inanimate objects. The faces are almost always distorted with what appears to be bits of flesh melting off. Unless a user is unusually skilled in crafting the prompts, they may struggle to get any useful images.</p>\n\n\n\n<img />\n\n\n\n<p>The AI-generated paragraphs are a somewhat better experience but need more flexibility. The block will automatically generate new paragraphs based on your existing content. It does a decent job, but it would be more useful if you could start from a blank page and feed it a prompt instead, as one of the main benefits of using AI for generating content is that it can offer a starting place from which the writer can improve. </p>\n\n\n\n<img />\n\n\n\n<p>The content can be further edited by transforming the block into a paragraph. This isn’t easy to discover and would need to be emphasized better in the UI.</p>\n\n\n\n<p>“We were considering making the block outright editable, and I see that we may need to create a more intuitive editing experience,” Piszek said after reviewing feedback from users in the forum.</p>\n\n\n\n<p>When using this experimental paragraph-generating block, users may want to familiarize themselves with how AI-generated content can impact their search rankings. Google recently published <a href=\"https://developers.google.com/search/blog/2023/02/google-search-and-ai-content\">guidance</a> stating it will reward high-quality content however it is produced but cautions that “those seeking success in Google Search should be looking to produce original, high-quality, people-first content demonstrating qualities E-E-A-T (expertise, experience, authoritativeness, and trustworthiness).” This is not always possible when using automation.</p>\n\n\n\n<p>WordPress.com’s AI-generated content blocks are in the earliest stages of testing and are not guaranteed to be publicly launched or make it into Jetpack. With some refinements, the blocks could prove useful but will more than likely only be available to paying customers, as the costs of AI-generated processing resources can stack up fairly quickly.</p>\n\n\n\n<p>“AI models and tools are a bit unpredictable,” Piszek said. “We want to be mindful of how those tools behave, what impact they have on your creativity, and how we can make them support you.</p>\n\n\n\n<p>“At the same time, we are still learning and adapting, so please keep in mind that these features can change or disappear anytime.</p>\n\n\n\n<p>“Once we announce them, they are most likely be paid extra (on top of existing plans) depending on how much we have to pay OpenAI for their services.”</p>\n\n\n\n<p>WordPress.com users who test the experimental blocks are encouraged to leave their feedback in the announcement <a href=\"https://wordpress.com/forums/topic/jetpack-ai/\">thread</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, 09 Feb 2023 23:03:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Do The Woo Community: WordCamp Asia 2023 Builder Tips from the Speakers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74465\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://dothewoo.io/wordcamp-asia-2023-builder-tips/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:377:\"<p>As tradition with the flagship WordCamps, here is a collection of tips from WordCamp Asia speakers.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wordcamp-asia-2023-builder-tips/\">WordCamp Asia 2023 Builder Tips from the Speakers</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Feb 2023 10:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:117:\"WPTavern: Twitter Outage Uncovers More Details on Upcoming API Access Changes, Giving the Fediverse a Shot in the Arm\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=141774\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"https://wptavern.com/twitter-outage-uncovers-more-details-on-upcoming-api-access-changes-giving-the-fediverse-a-shot-in-the-arm\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3976:\"<p>Twitter experienced a major outage today <a href=\"https://downdetector.ca/status/twitter/\">lasting several hours</a>, which left most users unable to tweet or send private messages to each other. Some reported receiving error messages telling them they were “over the daily limit for sending tweets.”</p>\n\n\n\n<p>Twitter’s development team took the opportunity to update users on the upcoming changes to API access, which it appears the team was working on before CEO Elon Musk <a href=\"https://twitter.com/kyliebytes/status/1623458872106311680\">advised</a> them to pause “in favor of maximizing system stability and robustness, especially with the Super Bowl coming up.”</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">We have been busy with some updates to the Twitter API so you can continue to build and innovate with us. <br /><br />We’re excited to announce an extension of the current free Twitter API access through February 13. Here’s what we’re shipping then <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9f5.png\" alt=\"?\" class=\"wp-smiley\" /></p>— Twitter Dev (@TwitterDev) <a href=\"https://twitter.com/TwitterDev/status/1623467615539859456?ref_src=twsrc%5Etfw\">February 8, 2023</a></blockquote>\n</div>\n\n\n\n<p>The Twitter Dev account announced that after February 13, free access users will be limited to 1,500 tweets per month:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>We have been busy with some updates to the Twitter API so you can continue to build and innovate with us. We’re excited to announce an extension of the current free Twitter API access through February 13. Here’s what we’re shipping then:</p>\n\n\n\n<p>Paid basic access that offers low level of API usage, and access to Ads API for a $100 monthly fee.</p>\n\n\n\n<p>A new form of free access will be introduced as this is extremely important to our ecosystem – limited to Tweet creation of up to 1,500 Tweets per month for a single authenticated user token, including Login with Twitter.</p>\n\n\n\n<p>Also on February 13, we will deprecate the Premium API. If you’re subscribed to Premium, you can apply for Enterprise to continue using these endpoints.</p>\n\n\n\n<p>This is a new chapter for the Twitter API to increase quality, reduce spam, and enable a thriving ecosystem. We appreciate your patience as we implement these changes and we can’t wait to see what you build next! Stay tuned for more information on continued Twitter API access.</p>\n</blockquote>\n\n\n\n<p>With no more third-party clients, Twitter has severely diminished its resilience during outages like these. Many users were driven to platforms like Mastodon to speculate about the reasons for Twitter breaking. Cloudflare also found some lucky timing today in <a href=\"https://blog.cloudflare.com/welcome-to-wildebeest-the-fediverse-on-cloudflare/\">launching Wildebeest</a>, an AcitivityPub and Mastodon-compatible server that enables anyone to operate their Fediverse server and identity on their domain with minimal setup and without needing to keep up the infrastructure.</p>\n\n\n\n<p>For those who are looking to get started on Mastodon as the result of Twitter’s recent outage, WordPress developer Daniel Auener curates and maintains <a href=\"https://wp-community-on-mastodon.wptoots.social/\">a list of WordPress community members’ Mastodon accounts</a> that anyone can follow by downloading a CSV file and importing it into Mastodon.</p>\n\n\n\n<img />\n\n\n\n<p>The <a href=\"https://wp-community-on-mastodon.wptoots.social/\">list</a> includes all accounts, where the account owner has at least one community badge on their WordPress.org profile page. Auener has also published a <a href=\"https://www.danielauener.com/the-wordpressers-guide-to-the-fediverse/\">WordPress guide to the Fediverse</a> with helpful information on finding an instance, following hashtags, and engaging with the WordPress 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:\"Thu, 09 Feb 2023 03:42:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:80:\"WPTavern: WP Community Collective Names Alex Stine as First Accessibility Fellow\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=141760\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/wp-community-collective-names-alex-stine-as-first-accessibility-fellow\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2622:\"<img />WordPress Accessibility contributor Alex Stine – photo credit: The WP Community Collective\n\n\n\n<p>The WP Community Collective (WPCC), a newly formed nonprofit organization dedicated to funding individual WordPress contributors and community-led initiatives, has <a href=\"https://www.thewpcommunitycollective.com/2023/02/07/press-release-the-wp-community-collective-announces-first-accessibility-fellow/\">announced</a> its first Accessibility Fellow. Alex Stine, a fully blind individual contributor who has been working with the WordPress Accessibility team since 2016, is the first recipient of the fellowship.</p>\n\n\n\n<p>WPCC is managing its finances transparently on <a href=\"https://opencollective.com/thewpcc\">Open Collective</a>. The fellowship has yet to be fully funded. Just $645.63 USD of $15,000 (4%) has been raised for the Accessibility Fellowship, although individual memberships are at $3,589.75 USD of the organization’s $20,000 goal. </p>\n\n\n\n<p>“We’ve set up a few different ways folks can support the WPCC,” co-founder Sé Reed said. “We’re just launching our fundraising campaign for the Accessibility Fellowship now. So far, most of our contributors have opted to support us as members, with a recurring membership pledge.</p>\n\n\n\n<p>“Monthly membership funds go to our general fund, which will primarily be used to support our fellowships and projects. As of today, we’ve raised slightly more than $4k, with $3,600 of that reserved for the Accessibility Fellowship.”</p>\n\n\n\n<p>The organization is currently in the process of finalizing sponsorships from a few large companies and is building out a corporate sponsorship program and a small business sponsorship program.</p>\n\n\n\n<p>“We can’t discuss anything yet as we’re still working out the details, but there is a lot happening that we hope to announce soon,” Reed said.</p>\n\n\n\n<p>Once the Accessibility fellowship is funded, Stine will continue his work with WordPress’ Accessibility Team and will serve as the Team Rep, while continuing his private work as a consultant and an engineer at Waystar.</p>\n\n\n\n<p>“I am excited to have the opportunity to give back to the project that provided me with my start in the technology field,” Stine said. “I could not continue to give back at my current capacity without this generous program. I will help ensure WordPress becomes more accessible, and I will fight to have the community as a whole adopt new principles that will ensure accessibility is the first thought, never the last.”</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, 08 Feb 2023 20:47:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:117:\"Post Status: WordPress 6.2 Beta 1 • Phase 2 Finale • Creating a Mentorship Program • Apply for Community Summit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=147107\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://poststatus.com/wordpress-6-2-beta-1-phase-2-finale-creating-a-mentorship-program-apply-for-community-summit/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17154:\"<h2 id=\"h-this-week-at-wordpress-org-february-6-2023\">This Week at WordPress.org (February 6, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">WordPress 6.2 Beta 1 is out now and you can help test it before final release on March 28. With that comes the end of Gutenberg Phase 2. WordPress considers a mentorship program focused on onboarding and assisting contributors. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div id=\"kt-info-box_94d1bd-77\" class=\"wp-block-kadence-infobox\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kt-info-svg-icon kt-info-svg-icon-fas_rocket\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">WP 6.2, Phase 2 Finale, and Mentorships</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f680.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/02/wordpress-6-2-beta-1/\">WordPress 6.2 Beta 1</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64b-1f3ff-200d-2642-fe0f.png\" alt=\"??♂️\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\">Help Test WordPress 6.2</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f6aa.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2, Finale</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f469-1f3fb-200d-1f3eb.png\" alt=\"???\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/project/2023/02/06/proposal-creating-a-wordpress-contributor-mentorship-program/\">Proposal: Creating a WordPress Contributor Mentorship Program</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64b-1f3fc-200d-2640-fe0f.png\" alt=\"??♀️\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/community/2023/02/08/apply-to-attend-the-2023-community-summit/\">Apply to Attend the 2023 Community Summit</a></p></div></div></div>\n\n\n\n<h2 id=\"h-news\">News<a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-3/\"></a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/01/the-month-in-wordpress-december-2022/\">The Month in WordPress – December 2022</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"is-layout-flex wp-container-47 wp-block-columns\">\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-accessibility\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/02/06/accessibility-team-meeting-notes-february-3-2023/\">Accessibility Team Meeting Notes: February 3, 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-community\">Community</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/02/08/apply-to-attend-the-2023-community-summit/\">Apply to Attend the 2023 Community Summit</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/02/06/community-booth-at-wordcamp-asia-2023/\">Community Booth at WordCamp Asia 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/02/03/update-apac-meetup-reactivation-project/\">Update: APAC Meetup Reactivation Project</a></li>\n</ul>\n\n\n\n<h2 id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/02/07/developer-hours-is-returning/\">Developer Hours is returning</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/07/performance-team-meeting-summary-31-january-2023-2/\">Performance Chat Summary: 7 February 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/07/a-week-in-core-february-6-2023/\">A Week in Core – February 6, 2023</a></li>\n</ul>\n\n\n\n<h3 id=\"h-wordpress-6-2\">WordPress 6.2</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2, Finale</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/03/hallway-hangout-performance-improvements-for-wordpress-6-2/\">Hallway Hangout: Performance Improvements for WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/06/roadmap-to-6-2/\">Roadmap to 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/18/bug-scrub-schedule-for-6-2/\">Bug Scrub Schedule for 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/11/early-bug-scrub-schedule-for-wp-6-2/\">Early bug scrub schedule for WP 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/17/wordpress-6-2-planning-roundup/\">WordPress 6.2 Planning Roundup</a></li>\n</ul>\n\n\n\n<h3 id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/02/06/editor-chat-agenda-february-8-2023/\">Editor Chat Agenda: February 8, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/06/editor-chat-summary-february-1st-2023/\">Editor chat summary: February 1st, 2023</a></li>\n</ul>\n\n\n\n<h3 id=\"h-developer-blog\">Developer Blog</h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/02/creating-custom-block-styles-in-wordpress-themes/\">Creating custom block styles in WordPress themes</a></li>\n</ul>\n\n\n\n<h2 id=\"h-design\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/01/30/design-share-jan-16-jan-27/\">Design Share: Jan 16-Jan 27</a></li>\n</ul>\n\n\n\n<h2 id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/02/07/agenda-for-docs-team-bi-weekly-meeting-february-7-2023/\">Agenda for Docs Team bi-weekly meeting February 7, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/02/03/onboarding-session-for-github-related-roles/\">Onboarding session for GitHub-related roles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/02/06/documentation-team-update-february-6-2023/\">Documentation Team Update – February 6, 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/02/07/notes-global-marketing-team-meeting-january-31-2023/\">Notes: Global Marketing Team meeting, January 31, 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/01/26/wordpress-org-redesign-recent-launches/\">WordPress.org Redesign Recent Launches</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/01/25/a-meta-subproject-for-evaluating-matrix/\">A Meta subproject for evaluating Matrix</a></li>\n</ul>\n\n\n\n<h2 id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/mobile/2023/01/24/call-for-testing-wordpress-for-ios-21-6/\">Call for Testing: WordPress for iOS 21.6</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/02/08/mobile-team-update-february-8th-2/\">Mobile Team Update – February 8th</a></li>\n</ul>\n\n\n\n<h2 id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/02/07/community-meeting-recap-07-february-2023/\">Community Meeting Recap (07 February 2023)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/02/03/openverse-is-moving/\">Openverse is Moving!</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/02/07/performance-chat-agenda-07-february-2023/\">Performance Chat Agenda: 7 February 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/performance/2023/02/01/core-performance-team-rep-updates/\">Core Performance Team Rep Updates</a></li>\n</ul>\n\n\n\n<h2 id=\"h-polyglots\">Polyglots</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/02/07/agenda-weekly-polyglots-chat-february-08-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – February 08, 2023 (07:00 UTC)</a></li>\n</ul>\n\n\n\n<h2 id=\"h-plugins\">Plugins</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/02/03/twitter-api-changes/\">Twitter API Changes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/02/08/plugin-review-team-6-feb-2023/\">Plugin Review Team: 6 Feb 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/02/06/proposal-creating-a-wordpress-contributor-mentorship-program/\">Proposal: Creating a WordPress Contributor Mentorship Program</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/01/27/discussion-ending-the-eternal-september/\">Discussion: Ending the Eternal September</a></li>\n</ul>\n\n\n\n<h2 id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/02/block-editor-live-in-most-forums/\">Block Editor Live in Most Forums</a></li>\n</ul>\n\n\n\n<h2 id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\">Help Test WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/02/06/test-team-update-6-february-2023/\">Test Team Update: 6 February 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/individual-learner-survey/\">How did you learn WordPress?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/01/24/brainstorm-wordcamp-asia-2023-contributor-day/\">Brainstorm – WordCamp Asia 2023 Contributor Day</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/02/06/training-team-2023-goals-setting/\">Training Team 2023 Goals Setting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/02/03/proposal-training-faculty-developer-squad/\">Proposal: Training Faculty Developer Squad</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/02/03/new-learn-wordpress-github-project-view-updates/\">New Learn WordPress GitHub Project View Updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/02/02/training-team-values-exercise-recap/\">Training Team Values Exercise Recap</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/02/06/whats-new-on-learnwp-in-january-2023/\">What’s new on LearnWP in January 2023</a></li>\n</ul>\n\n\n\n<h3 id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-create-a-video-tutorial-about-wordpress-using-free-computer-software\">How to create a video tutorial about WordPress (using free computer software)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=block-themes-and-wordpress-live-stream-8\">Block Themes and WordPress: Live Stream</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=updating-a-blogs-design-informal-live-stream-part-2\">Updating a blog’s design (Informal live stream) – Part 2</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=updating-a-blogs-design-informal-live-stream-part-1\">Updating a blog’s design (Informal live stream) – Part 1</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=27874\">Block Themes and WordPress: Live Stream</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=block-themes-and-wordpress-live-stream-7\">Block Themes and WordPress: Live Stream</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=block-themes-and-wordpress-live-stream-6\">Block Themes and WordPress: Live Stream</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=lets-code-wp-rest-api-custom-routes-and-endpoints\">Let’s code: WP REST API – custom routes and endpoints</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=27869\">WP dev livestream: WP REST API – custom routes and endpoints</a></li>\n</ul>\n\n\n\n<h3 id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/introduction-to-securely-developing-plugins/\">Introduction to securely developing plugins</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/using-theme-json-with-classic-themes/\">Using theme.json with classic themes</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-improve-seo-rankings/\">How to improve SEO rankings</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/creating-custom-fields/\">Creating Custom Fields</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><a href=\"https://learn.wordpress.org/tutorial/tools-site-health/\">Tools: Site Health</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/introduction-to-theme-json/\">Introduction to theme.json</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/creating-a-call-to-action/\">Creating a Call To Action</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/displaying-the-post-comments-block-in-block-themes/\">Displaying the Comments block in Block Themes</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/wordpress-theme-template-tour/\">WordPress Theme Template Tour</a></li>\n</ul>\n\n\n\n<h2 id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://www.php.net/archive/2023.php#2023-02-02-1\">PHP 8.2.2 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-02-02-2\">PHP 8.1.15 Released!</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status’ <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It’s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Feb 2023 18:11:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:75:\"WPTavern: #62 – Naoko Takano on the Importance of the First WordCamp Asia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=141721\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wptavern.com/podcast/62-naoko-takano-on-the-importance-of-the-first-wordcamp-asia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:31719:\"Transcript<div>\n<p>[00:00:00] Nathan Wrigley: Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case the reasons why WordCamp Asia is such an important event.</p>\n\n\n\n<p>If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to WPTavern.com forward slash contact forward slash jutebox and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Naoko Takano.</p>\n\n\n\n<p>A few days from now, from the 17th to the 19th of February 2023, to be precise, the first in-person WordCamp Asia will take place in Bangkok, Thailand. If you follow WordPress events closely, then I’m sure that you’ve seen the excitement mounting.</p>\n\n\n\n<p>Naoko is on the podcast today to talk about this important event, how it came to be, and why it matters.</p>\n\n\n\n<p>We start off getting some background on Naoko and her personal journey with WordPress. She’s currently sponsored full-time by Automattic to work with the wordpress.org community and polyglots teams.</p>\n\n\n\n<p>The conversation then turns to the event itself. It’s sold out, but you can still take parts by watching the live streams of the three tracks that are running.</p>\n\n\n\n<p>We talk about the fact that, although this is the first in-person WordCamp Asia, it should not have been. WordCamp Asia was in the books for 2020. More or less everything was planned and prepared, and then Covid struck. The timing could not have been worse. It was heartbreaking. Naoko talks about the disappointment felt by the community, and how they’ve managed to maintain their commitment to making the event happen.</p>\n\n\n\n<p>The team that is putting on the current event, contains some people from the cancelled 2020 event, but there’s new members too, and they span many Asian countries. So there’s a real diversity in the organization.</p>\n\n\n\n<p>Towards the end of the podcast, we get into the important question of why we need a WordCamp Asia. Naoko makes the point that the other flagship WordPress events are not that accessible for some people. This could be because of the difficulty in acquiring visas for the U.S. Or Europe, but also the costs of traveling to the event, and accommodation whilst there. It’s hoped that WordCamp Asia will provide a chance for a whole new audience to attend, in a location which is closer to home.</p>\n\n\n\n<p>We wrap up with Naoko explaining how WordCamp Asia aims to differ from the other events through their vision of being welcoming, nurturing, and experimental.</p>\n\n\n\n<p>If you’re attending WordCamp Asia your in-person or online, this podcast will give you a new perspective on the event. And if you’re not planning on being there, maybe this episode will make you rethink.</p>\n\n\n\n<p>If you’re interested in finding out more, you can find all the links in the show notes by heading over to WPTavern.com forward slash podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Naoko Takano.</p>\n\n\n\n<p>I am joined on the podcast today by Naoko Takano. Hello Naoko.</p>\n\n\n\n<p>[00:04:20] Naoko Takano: Hello.</p>\n\n\n\n<p>[00:04:21] Nathan Wrigley: Very nice to have you on the podcast today. We’re going to be talking today about a very exciting subject, a very new, an exciting event called WordCamp Asia. We’ll get onto why it’s not quite as new as it may seem a little bit later. But first Naoko, I wonder if you wouldn’t mind just giving us a little potted history about yourself, about your relationship with WordPress, your history with WordPress and WordPress events, and things like that. So it’s over to you. Introduce yourself please.</p>\n\n\n\n<p>[00:04:51] Naoko Takano: Sure. I’m Naoko Takano based in Tokyo. I’ve been using WordPress for as long as WordPress has been around actually. So it’s been 20 years now. I started using WordPress as a personal blog platform, since I was living in the US and I wanted to have a place to write in Japanese, to communicate online. And then it, it’s a long story since then. I started building websites. Then became a front end engineer. Then became a freelancer.</p>\n\n\n\n<p>Then, I actually started organizing WordCamps in Japan, Tokyo. And then I met Matt Mullenweg at WordCamp in Japan. And since then, I got hired by Automattic as a support engineer. And then, since 2019, I am a community manager of WordPress.org. I’m a full-time sponsored volunteer for wordpress.org community and polyglots team.</p>\n\n\n\n<p>[00:05:49] Nathan Wrigley: You really do have a very long history with WordPress. Yeah. It’s very rare that I bump into somebody who has 20 years of WordPress under their belt. That’s most impressive. Well, thank you for joining us on the show today. We are here to talk about WordCamp Asia, which is going to be happening if all the stars align, and this podcast episode is published on the date I’m expecting it to be published.</p>\n\n\n\n<p>It will be just around the corner. It’ll be a matter of days, possibly just over a week before the event is coming around. There must be great excitement in your part of the world about it. Do you want to just lay out for us when and where it is. So just the nuts and the bolts of when it’s happening, where it is, and so on.</p>\n\n\n\n<p>[00:06:31] Naoko Takano: Sure. So, the first WordCamp Asia will be happening in 2023. Is from 17th to 19th, February. It’s a three day event in Thailand, Bangkok, Thailand.</p>\n\n\n\n<p>[00:06:47] Nathan Wrigley: And it’s happening at the, now, forgive me if I get the name of this wrong. It’s the True Icon Hall. Is that the name of the venue?</p>\n\n\n\n<p>[00:06:55] Naoko Takano: That’s correct. That’s correct.</p>\n\n\n\n<p>[00:06:56] Nathan Wrigley: It’s a conference center in the middle of Bangkok.</p>\n\n\n\n<p>[00:06:59] Naoko Takano: Yes. it’s a newly built conference hall. I think they were built in 2019, and it’s by the Chao Phraya River. And it’s part of the Icon Siam Complex and it’s very beautiful place even there in 2019.</p>\n\n\n\n<p>[00:07:17] Nathan Wrigley: Excellent, excellent. Now, I think it’s probably important to say at this point that if you are not in possession of a ticket, no matter what we say, don’t make plans to go to WordCamp Asia. Because my understanding is that the full amount of tickets, I think it’s 1,500, have in fact sold out. Is that true?</p>\n\n\n\n<p>[00:07:36] Naoko Takano: Yes, at the moment, we don’t have any plan for releasing any batch of tickets. You may be able to get refunded tickets that will be released as they come back. But unless one of the very lucky ones that will get these very few refunded tickets. We don’t have any plan on raising any big amount of tickets anymore.</p>\n\n\n\n<p>[00:07:58] Nathan Wrigley: Yeah, well that’s okay though because if you are keen to participate in WordCamp Asia and do not have a ticket and have no plans to attend. My understanding is, and you can confirm this I hope, is that the event itself will be live streamed, in the way that we’ve been used to over the last couple of years, is that in fact true?</p>\n\n\n\n<p>[00:08:18] Naoko Takano: Yes. We have three tracks and all the tracks will be live streamed.</p>\n\n\n\n<p>[00:08:22] Nathan Wrigley: Great. Even if you don’t possess a ticket, you’ll be able to get there. So we have WordCamp Europe, these great big, I’m going to say international events. I don’t know if there’s a correct terminology for these kind of flagship events. But we’ve got WordCamp Europe, we’ve got WordCamp US, and now into the mix we have WordCamp Asia.</p>\n\n\n\n<p>So obviously the first event actually happening. But there is a sort of disappointing story behind this, because if you are following the WordPress news and you have been since 2019, you’ll know that the event, tragically, I’m going to use that word, had to be cancelled more or less at the last moment due to the Covid outbreak.</p>\n\n\n\n<p>Do you want to get into that a little bit? Might be interesting to hear the story. It was, if memory serves, very much several weeks away, it was really, really close, and the whole thing got pulled. With hindsight, that was probably a very wise decision. But at the time, I remember community members who, as yet, we’re unable to grasp the scope of Covid because it really hadn’t gone anywhere yet.</p>\n\n\n\n<p>There was much gnashing of teeth and rending of clothes and people sort of saying, oh, what a shame. Just tell us from your perspective, because I know you were on the team for that. What was that disappointment like to suffer through?</p>\n\n\n\n<p>[00:09:40] Naoko Takano: So, yes, WordCamp Asia 2020 was the first WordCamp that was cancelled due to Covid 19. And that was the end of February in 2020, that was supposed to happen. And, because I think it was probably the first event that was cancelled due to pandemic of any type of situation in the world, in the whole history of WorldCamps. And we just couldn’t believe that happened. We always believed WordCamp will be planned and it will happen, you know, when the day comes.</p>\n\n\n\n<p>So it was such a loss to us. To me it was like losing someone by an accident. Just lost someone, you know, or something that was so sure. That you were looking forward to. It was very, very crushing for us. At the time we didn’t understand the amount of what’s coming. So, we actually rescheduled it for the same year and we did that twice. And then after that we didn’t say anything for sure about the upcoming schedule.</p>\n\n\n\n<p>[00:10:47] Nathan Wrigley: Yeah, incredibly disappointing. I actually do want to dwell on this for a little bit longer, if you don’t mind. Because if you’ve ever been to a WordCamp, maybe that’s in a city near you or one of the bigger ones, as we’ve just described, Europe or US. You’ll probably have understood the amount of organization that goes into it.</p>\n\n\n\n<p>This is not an event which comes up and is organized several weeks in advance. This is something that takes a lot of people, a very large amount of time to organize. There’s speakers, there’s venues, there’s sponsors, there’s meals, there’s accessibility. There’s a whole host of things going. And for the rest of us, it was simply a case of, oh, it’s been cancelled. Well that’s disappointing. Perhaps I’ve got to get a refund on my air travel, or perhaps I don’t have to do anything because I wasn’t attending anyway.</p>\n\n\n\n<p>The point being that it was simply a question that it was cancelled. Whereas for you and the community that had gathered together to organize it, it must have been, like you said, crushing. And I’m just wondering how easy it was to get people back on board this time around. Or whether people left the WordCamp ecosystem and decided, I’m not getting involved with that again. How’s it been?</p>\n\n\n\n<p>[00:12:05] Naoko Takano: So the bright side of things is that we became stronger team because of the challenges that we had to face. But situations changed for many people. You know, three years is a long time. So we did lose some people due to changing their situation or commitment level. They could promise after three years. But, we did have nice number of people who came back. I would say in the beginning of reunion, I would say probably like 80%. Everybody wanted to come back and do it again because we weren’t able to. So, yeah, it wasn’t like a disbanding of the whole community organizers, but we came back.</p>\n\n\n\n<p>[00:12:47] Nathan Wrigley: Yeah, that’s remarkable. Sometimes I have to pinch myself when I think about WordPress and the fact that this little piece of software, which began 20 years ago, which probably didn’t have any pretensions of growing to the size that it is now. Yeah, I have to pinch myself for the breadth and the depth, the amazing spread globally of the project.</p>\n\n\n\n<p>So you’ve kindly written in the show notes a list of the countries that people have come from in order to assemble WordCamp Asia, this year, 2023. And I’m just going to read it out because it’s, it’s amazing. So we’ve got participants or volunteers, I should say, helping to organize from the following countries, Bangladesh, Bhutan, Hong Kong, India, Indonesia, Japan, Lebanon, Malaysia, Nepal, Pakistan, Philippines, Singapore, Taiwan, and Thailand. I mean, that’s just remarkable. Very impressive.</p>\n\n\n\n<p>[00:13:45] Naoko Takano: Yeah. I think it’s, that’s why we were so fascinated and amazed with this community. Because, I think there’s rare chance that you get to work with such a diverse group of people around the world, around Asia. And in itself organizing is interesting and learning experience and also community building experience, I think.</p>\n\n\n\n<p>[00:14:08] Nathan Wrigley: Yeah. If I was to assist with the WordCamp US team, I’m guessing that a lot of them would come from the US and so broadly speaking, their backgrounds would be quite similar. And although Europe is perhaps a little bit more different from country to country. You know, if you go from the southern part of Europe to the northern part of Europe there are differences in the cultures. But they’re not tremendously different, shall we say.</p>\n\n\n\n<p>Whereas you’ve got from India to Pakistan, to the Philippines, to Taiwan and Thailand. That must be a really interesting collection of people, because, I would imagine that the countries that they come from are very different in very great respects.</p>\n\n\n\n<p>[00:14:48] Naoko Takano: Yeah, we have different culture, different style of communication. Only, I think, small percentage of us speak English as native language, or day-to-day, everyday language. So there’s big barrier around communication style. But as I said, it’s also like an experience that you can’t get outside of this community, especially as a such tight group that you talk to every day.</p>\n\n\n\n<p>So that’s the difference between other type of contribution in WordPress. WordCamp organization is very interesting in experience that we get to learn about each other very deeply.</p>\n\n\n\n<p>[00:15:29] Nathan Wrigley: Can I ask how you do, do the organization? We’ll come into how long you’ve been preparing this event in a moment. But what are you using? I know that typically things like Slack may involved. But also are you, broadly speaking, communicating in English across the team? How is it working? So what tools are you using and what language have you tended to default to?</p>\n\n\n\n<p>[00:15:52] Naoko Takano: Yeah, so the communication tool that we used the most is Slack. And we are on it, the same Slack, separate from Make WordPress. And then we use English. But there are channels that are used by local members. For example, we have a Japanese channel to do some chit chat or ask question in our language. And local team has Thai channel to communicate with each other. But the overall language is in English. And we use Zoom to have meetings. So it’s like work.</p>\n\n\n\n<p>work If</p>\n\n\n\n<p>[00:16:25] Nathan Wrigley: I was somebody living in, let’s say, I don’t know, just to pick one off the list, Nepal, and my English was not sufficient, let’s say to carry out the tasks that may be needed by a volunteer. What happens there? Is there any encouragement or any, anything that can be done, or is it essentially you would need a modest amount of English in order to participate, in order to communicate with the team? Or could somebody from say Nepal, work with other Nepalese people speaking the language that they have, Nepali, I believe it is? I’m sorry for my ignorance there. Nepalese, I apologize. What do you do around all of that? If somebody doesn’t have the mastery of English, that might be needed to communicate over the whole project.</p>\n\n\n\n<p>[00:17:08] Naoko Takano: So we don’t require a mastery of English because that would be very hard barrier to participate. But we do select, we do vet organizers based on their community involvement, in their local community. And also some English is of course needed. But you don’t have to be able to speak fluently as long as they can communicate. While on Slack, you can use translation tool on your own. That’s okay. So as long as you can communicate on Slack, we would like to see active community organisers regardless of English fluency.</p>\n\n\n\n<p>[00:17:46] Nathan Wrigley: I understand. Yeah, thank you. Okay, so it’s a silly question, but I’m going to ask it anyway. Why do we need a WordCamp Asia? We have lots of events. I’m imagining there’s lots of WordCamps spread throughout Asia. But at some point, WordCamp Europe came along and WordCamp US. Why did the community feel there was a need for that? And I’m really just offering you that question so that you can answer it. I don’t actually think, well, why do we need a WordCamp Asia? That’s not the intention of the question.</p>\n\n\n\n<p>[00:18:18] Naoko Takano: Yeah, thanks for asking because I like to share why we are so enthusiastic about holding WordCamp Asia in person in Thailand. This might be little known, but there are very unique barriers to attending existing flagship events for residents in Asia. Like visa, obtaining visa to go to US it’s very, very hard for many people.</p>\n\n\n\n<p>For some people Europe, it’s also not easy to travel in terms of cost and time. And then also for people attending online, watching streaming in real time. Time zone difference is very hard, both in US and Europe, to participate in real time. So we want to cater this event to Asian residents to have the same kind of experience that many of the organizers had experienced in WordCamp Europe, WordCamp US.</p>\n\n\n\n<p>And we want to bring this great feeling, great communication, connection to Asian community. So that they can easily attend in an affordable price.</p>\n\n\n\n<p>[00:19:29] Nathan Wrigley: Yeah, that’s interesting. The affordable thing speaks for itself, I suppose. But in terms of the visas, that’s a really interesting one. Obviously it’s completely outside of WordPress. It’s a political thing, but my understanding is that in some jurisdictions it is very difficult to get a visa, let’s say, for the United States.</p>\n\n\n\n<p>And so you are, really it’s an up hill struggle if you want to attend those events. And I’m expecting from what you’ve just said, that the relationship between Asian countries is more open. So as an example, a visitor coming to Thailand, I’m guessing there’s less barriers to actually applying for and successfully getting those visas.</p>\n\n\n\n<p>[00:20:11] Naoko Takano: Yes, relatively speaking, especially Bangkok. We chose Bangkok as the first city, host city, mainly because visa accessibility and also flights from main Asian cities. So that’s into our consideration for sure.</p>\n\n\n\n<p>[00:20:29] Nathan Wrigley: Yeah, there’s lots of, amazing options in terms of flights, isn’t there? But also Bangkok itself is such a, an amazing and vibrant city and has absolutely heaps of accommodation options as well, doesn’t it? It’s a really good place to kick it off for WordCamp Asia. Speaking of kicking it off, how did it all get started?</p>\n\n\n\n<p>I mean, obviously there was the event which was destined to happen in 2020, so we’re going back before then. Were you part of the team? How did it actually all begin and how did you assemble this event? Because you can’t just suddenly announce, we’re going to do WordCamp Asia. There must be an awful lot of backwards and forwards, perhaps talking to people at Automattic and various other organizations to get it all started. Do you know about how it all began?</p>\n\n\n\n<p>[00:21:12] Naoko Takano: Yes, so the direct event that led to WordCamp Asia application was the contributor day at WordCamp Bangkok 2019. I wasn’t attending actually, but a group of community organizers who had been traveling to go to different WordCamps outside of the country met in person and they decided to apply at that time. But the same, or some of the same, people had been traveling since, I would say 2014, 15 and going to each other’s countries or flagship events and making connections and becoming friends. And then from that kind of connection, this idea came around and it came to, came to happen, yes.</p>\n\n\n\n<p>[00:22:00] Nathan Wrigley: And so how much time and well, effort is harder to measure, but in terms of time, how long have you, you and the team, been working on this version of WordCamp Asia? So the 2023 one. How far back do we go before you decided, yep. A, we’re going to go for it, and B, it’s going to be in February, 2023. How much time have you been spending on this?</p>\n\n\n\n<p>[00:22:23] Naoko Takano: So yeah, at the end of 2021, we reunited on a Zoom call and started talking about restarting this effort, because we always wanted to find the time to come back to Bangkok. By the time of spring 2022, we started actually working on the event organizing. And through 2022 we’ve worked and now it’s getting really close. We are very excited about it.</p>\n\n\n\n<p>[00:22:51] Nathan Wrigley: Nice. Now, in terms of the event itself, obviously the location is new and interesting for a whole selection of the audience, I imagine. Perhaps many of them have never been to Thailand in particular. Perhaps never been to Asia. We’ll wait and see how that all goes. So there’s obviously that, it’s going to be different because it’s in a, a new and interesting part of the world for these flagship events.</p>\n\n\n\n<p>But in terms of the event, from your perspective, what is the vision? What’s the thing that you talk to people about when you say, okay, this is going to be great, this is going to be new and different. What’s the vision that you are, you are letting everybody know about?</p>\n\n\n\n<p>[00:23:32] Naoko Takano: So yeah, as a WordCamp Asia organizing team, we didn’t want to make another event that’s just like WordCamp US or just like WordCamp Europe. That wasn’t our intention. We wanted to make a unique event. We have three visions that are welcoming, nurturing, and experimental.</p>\n\n\n\n<p>So we wanted to create an event that’s true to our culture, which is inclusive and diverse. And then also we wanted to have this event because we wanted to nurture the community in Asia. Not because we wanted to have this big event just because. We all came together because of WordCamps. We became friends and community builders because of other WordCamps. So we wanted this event to ignite more communities in Asia.</p>\n\n\n\n<p>And also we wanted to do something different. So that’s the experimental part. And we want to do the first event in Asia that’s flagship. So we want to, while people with our creative activity, our design teams doing a great job. And I like to see how people feel when they come.</p>\n\n\n\n<p>[00:24:44] Nathan Wrigley: Yeah, it’s going to be really interesting seeing what people’s reactions are. You’ve got 1500 attendees. I don’t know exactly how many people are involved on the, the organizing side, but it will be, it’ll be interesting to see what the conversations are like in the hall. How is this different? What are we enjoying about it? As much for the location, Thailand and Bangkok and all of that. It’ll be really interesting to see what people’s discussions are. So the vision can be boiled down to three words. It’s going to be welcoming, it’s going to be nurturing, and it’s going to be experimental.</p>\n\n\n\n<p>In terms of, well sadly, getting back to Covid, which one doesn’t really want to, but it appears, certainly at this point in time, Covid has become part of the news cycle again. It felt, in my country at least anyway, that it had dropped off and it wasn’t being talked about. And more recently it is getting some more attention.</p>\n\n\n\n<p>So I’m just wondering if there’s anything that you need to disseminate in terms of masking or restrictions or vaccinations, anything like that, which Thailand may enforce, or indeed just your event is enforcing. Because that’s probably a very important component of people’s safety should they decide to attend in person.</p>\n\n\n\n<p>[00:25:54] Naoko Takano: Yeah, this is a frequently asked question. And at the moment of this recording, we are not making masking or vaccination mandatory. So this is based on community teams guideline for WordCamps. If that changes we will change our guidelines accordingly.</p>\n\n\n\n<p>And if Thailand requirement changes, we would have to abide by that. But at the moment we are not requiring masking or vaccination. They’re both recommended. And we will provide stickers for people who like to be respected. So we ask people to stay away or wear masks around people with those stickers.</p>\n\n\n\n<p>[00:26:32] Nathan Wrigley: Okay. So there’s going to be some symbol that you can wear, a sticker that you can have if you would wish to have a little bit of separation between you and other people. And the hope is people will notice those stickers and give you a, a wider birth than might normally be the case. Okay, that’s interesting.</p>\n\n\n\n<p>So given that your tickets have sold out. 1500 seats have been snapped up, bought, and hopefully they’ll all be filled during the event. Given all of that, and I know you won’t be able to tell me much about this, but I do want to ask anyway. Do you know if we are planning to have a WordCamp Asia 2024? I know it’s a bit early for that, but do you see that the community has rallied around and is beginning to talk about that? Because, you know, no sooner is one event finished than the other one needs to be announced. And in fact, in many of these flagship events the location of the next event is announced during the conference itself. So yeah, as much as you can say, but you may not be able to say much .</p>\n\n\n\n<p>[00:27:33] Naoko Takano: So yeah, in fact at the moment we have the call of host city for 2024 open. But by the time this is, we might not have it open. So we’ll be reviewing those applications and we are hoping we will be able to announce during, or the end of, the event. Yeah, just keep your excitement until we announce.</p>\n\n\n\n<p>[00:27:56] Nathan Wrigley: So it sounds like if the call for venues has gone out, there’s definitely going to be one, but we don’t as yet, know where it is.</p>\n\n\n\n<p>[00:28:05] Naoko Takano: Yes, we do have applications that came in. So, a city will be selected, yes.</p>\n\n\n\n<p>[00:28:11] Nathan Wrigley: So hopefully this will be a podcast that we get to repeat each year, and it will be the first of many. I really appreciate you chatting to us today Naoko about WordCamp Asia and about its first well, not that it should have been the first, but it’s first live, in-person, event. I hope it goes well. I really, really do.</p>\n\n\n\n<p>Thanks for talking to us today. Just before I let you go, is there anything that I missed or is there something that you would like to have said that we didn’t say? That could be just telling people where the website address is, should they wish to have a look at that? It could be, I don’t know, a Twitter handle that you are keen to promote. Anything you like.</p>\n\n\n\n<p>[00:28:50] Naoko Takano: Sure, our website is asia.wordcamp.org/2023. And just wish us the best of the luck because, we need a lot of it.</p>\n\n\n\n<p>[00:29:00] Nathan Wrigley: From my point of view, you have all of those wishes. I really hope it goes extremely well. I would wish you the greatest success. Hopefully in a couple of months time we’ll be able to chat about how successful it was.</p>\n\n\n\n<p>Naoko, thank you very much for chatting to me today. I really appreciate it.</p>\n\n\n\n<p>[00:29:17] Naoko Takano: Thank you for having me.</p>\n</div>\n\n\n\n<p>On the podcast today, we have <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>.</p>\n\n\n\n<p>A few days from now, from the 17th to the 19th February 2023, to be precise, the first in-person <a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia</a> will take place in Bangkok, Thailand. If you follow WordPress events closely, then I’m sure that you’ve seen the excitement mounting.</p>\n\n\n\n<p>Naoko is on the podcast today to talk about this important event; how it came to be and why it matters.</p>\n\n\n\n<p>We start off getting some background on Naoko and her personal journey with WordPress. She’s currently sponsored full time by Automattic to work with the wordpress.org community and polyglots teams.</p>\n\n\n\n<p>The conversation then turns to the event itself. It’s sold out, but you can still take part by watching the live streams of the three tracks that are running.</p>\n\n\n\n<p>We talk about the fact that, although this is the first in-person WordCamp Asia, it should not have been. WordCamp Asia was in the books for 2020. More or less everything was planned and prepared, and then Covid struck. The timing could not have been worse, it was heartbreaking. Naoko talks about the disappointment felt by the community and how they’ve managed to maintain their commitment to making the event happen. The team that is putting on the current event contains some people from the cancelled 2020 event, but there’re new members too, and they span many Asian countries, so there’s a real diversity in the organisation.</p>\n\n\n\n<p>Towards the end of the podcast, we get into the important question of why we need a WordCamp Asia. Naoko makes the point that the other ‘flagship’ WordPress events are not that accessible for some people. This could be because of the difficulty in acquiring visas for the U.S. or Europe, but also the costs of travelling to the event and accommodation whilst there. It’s hoped that WordCamp Asia will provide a chance for a whole new audience to attend in a location which is closer to home.</p>\n\n\n\n<p>We wrap up with Naoko explaining how WordCamp Asia aims to differ from other events through their vision of being welcoming, nurturing and experimental.</p>\n\n\n\n<p>If you’re attending WordCamp Asia in-person or online, this podcast will give you a new perspective on the event, and if you’re not planning on being there, maybe this episode will make you rethink.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia 2023 website</a></p>\n\n\n\n<p><a href=\"https://asia.wordcamp.org/2023/location/\">WordCamp Asia 2023 location</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, 08 Feb 2023 15: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:72:\"Gutenberg Times: Quick Tip: Creating a custom webpack configuration file\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=23317\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://gutenbergtimes.com/quick-tip-creating-a-custom-webpack-configuration-file/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4831:\"<div class=\"wp-block-embed__wrapper\">\n\n</div><a href=\"https://www.youtube.com/shorts/VgK_Y9wAGXw\">Ryan Welcher on YouTube Shorts. </a>– <a href=\"https://www.tiktok.com/@ryanwelchercodes/video/7195978911073717510\">Also available on TikTok </a>\n\n\n\n<p><em><strong>Ryan Welcher </strong>started a recording YouTube Shorts also available on TikTok. Here is a transcript and code example of his first one. <a href=\"https://www.youtube.com/@RyanWelcherCodes/\">Subscribe to his YouTube channel </a>so you won’t miss any new streams or shorts. </em>For TikTokers, follow his account: <a href=\"https://www.tiktok.com/@ryanwelchercodes\">@ryanwelchercodes</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>There have been many times when I wanted to have my build process compile my blocks, but also add something custom, for example registering a slot fill or a block variation. </p>\n\n\n\n<p>Configuring webpack can be difficult, but thankfully the WordPress scripts package makes customizing the build process pretty straightforward.</p>\n\n\n\n<ul>\n<li><strong>Step 1:</strong> add a <code>webpack.config.js</code> file into the root directory of our plugin. </li>\n\n\n\n<li><strong>Step 2:</strong> require the <code>defaultConfig</code> that comes with the package. </li>\n\n\n\n<li><strong>Step 3:</strong> require the <code>getWebpackEntryPoints</code> function. This ensures that the scripts package can detect and compile our blocks. </li>\n\n\n\n<li><strong>Step 4:</strong> In the <code>module.exports</code> object,\n<ul>\n<li>add the <code>defaultConfig</code> using the spread operator. </li>\n\n\n\n<li>Add an <code>entry</code> object, </li>\n\n\n\n<li>spread the results of <code>getWebpackEntryPoints</code>, and then </li>\n\n\n\n<li>add any custom entry points as needed.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<p><strong>Code Example from the video </strong></p>\n\n\n\n<p>Example that adds a <code>variation-icon.js</code> file to the build process.</p>\n\n\n<pre class=\"wp-block-code\"><div><code class=\"hljs language-javascript shcb-code-table shcb-line-numbers shcb-wrap-lines\"><span class=\"shcb-loc\"><span><span class=\"hljs-comment\">// Import the original config from the @wordpress/scripts package.</span>\n</span></span><span class=\"shcb-loc\"><span><span class=\"hljs-keyword\">const</span> defaultConfig = <span class=\"hljs-built_in\">require</span>(<span class=\"hljs-string\">\'@wordpress/scripts/config/webpack.config\'</span>);\n</span></span><span class=\"shcb-loc\"><span>\n</span></span><span class=\"shcb-loc\"><span><span class=\"hljs-comment\">// Import the helper to find and generate the entry points in the src directory</span>\n</span></span><span class=\"shcb-loc\"><span><span class=\"hljs-keyword\">const</span> { getWebpackEntryPoints } = <span class=\"hljs-built_in\">require</span>(<span class=\"hljs-string\">\'@wordpress/scripts/utils/config\'</span>);\n</span></span><span class=\"shcb-loc\"><span>\n</span></span><span class=\"shcb-loc\"><span><span class=\"hljs-comment\">// Add any a new entry point by extending the webpack config.</span>\n</span></span><span class=\"shcb-loc\"><span><span class=\"hljs-built_in\">module</span>.exports = {\n</span></span><span class=\"shcb-loc\"><span> ...defaultConfig,\n</span></span><span class=\"shcb-loc\"><span> <span class=\"hljs-attr\">entry</span>: {\n</span></span><span class=\"shcb-loc\"><span> ...getWebpackEntryPoints(),\n</span></span><span class=\"shcb-loc\"><span> <span class=\"hljs-string\">\'variation-icon\'</span>: <span class=\"hljs-string\">\'./src/variation-icon.js\'</span>,\n</span></span><span class=\"shcb-loc\"><span> },\n</span></span><span class=\"shcb-loc\"><span>};\n</span></span></code></div><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:</span> <span class=\"shcb-language__name\">JavaScript</span> <span class=\"shcb-language__paren\">(</span><span class=\"shcb-language__slug\">javascript</span><span class=\"shcb-language__paren\">)</span></small></pre>\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em><a href=\"https://github.com/ryanwelcher/twitch/blob/trunk/plugins/gb-14-9-review/webpack.config.js\">The code example is also available on GitHub</a></em></p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Resources to learn more</strong>: </h2>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/block-editor/reference-guides/packages/packages-scripts/\">@wordpress/scripts package reference</a></li>\n\n\n\n<li><a href=\"https://webpack.js.org/concepts/entry-points/\">Webpack Documentation: Entry Points</a> </li>\n</ul>\n\n\n\n<ul>\n<li><a href=\"https://www.twitch.tv/ryanwelchercodes\">Ryan Welcher live streams on Twitch</a> every Thursday at 10:30 ET / 15:30 UTC. </li>\n\n\n\n<li>Previous streams recordings are <a href=\"https://www.youtube.com/@RyanWelcherCodes/\">available on YouTube </a></li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Feb 2023 10:50:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Ryan Welcher\";s: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:35:\"HeroPress: I am built on WordPress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=5174\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://heropress.com/essays/i-am-built-on-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=i-am-built-on-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9486:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/02/020723-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress has helped me find the best version of me.\" />\nHere is Samantha reading her own story aloud.\n\n\n\n\n\n\n<p>The first time I put my hands on a computer was in kindergarten. Once a week we’d go up to the top floor where no other regular classes were held. Inside, there were dozens of giant computers (a bit later, shiny new Macintosh Classics) in three long rows. We learned BASIC at 5 years old. We played Oregon Trail and Gertrude’s Secrets. I loved my computer class, and not just because it was always ice cold in the room. That was the only place I got to use computers for years. </p>\n\n\n\n<p>My great-grandmother, not really a fan of <em>anyone</em>, had always liked me. Around this time, she pulled me aside and told me, “Stick with the computers.” She was convinced that was the way to make money. I smiled and nodded. I don’t think she’d ever seen one in person. </p>\n\n\n\n<p>My dad took me to a store in Marine Park when I was in 6th grade. I walked around the store in awe of what was available — and the prices. He bought a Packard Bell computer that had fewer megahertz than our home phone — but it was glorious. I begged for a game not included in the bundle — Myst, which I’d seen my best friend’s mom play. I became glued to my computer. We didn’t even have the internet yet. I’d spend hours on Myst and then printing pictures and articles from Grolier’s Encyclopedia about stealth planes (don’t ask). </p>\n\n\n\n<h2 class=\"kt-adv-heading_b899ae-51 wp-block-kadence-advancedheading\">Getting Online</h2>\n\n\n\n<p>By the time I was in high school, everyone had AOL. Using AOL Hometown web hosting to “expand” your profile was what all the cool kids did. We’d fill it with webrings, poor resolution photos, glittery animations, song lyrics — all a manifestation of our personalities. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The “cool kid” Samantha wanted to be a writer. </p>\n</blockquote>\n\n\n\n<p>When LiveJournal came on to the scene I started blogging and making online friends — but somehow it still didn’t feel like “my” space (zero pun intended). When I first heard about WordPress, I was jazzed about it. It felt like the grownup version of LiveJournal — and blew past AOL Hometown. But, nobody else I knew was using it. Of course there were others I didn’t know that were, but for me it felt special and unique because my little sphere of the world wasn’t catching on to the “new hotness” yet. It also felt more “me” than anything else I’d dabbled with. I have had <em>many</em> accounts over the years. </p>\n\n\n\n<p>I had taught myself basic HTML to edit my early “sites” and MySpace profile. I’d go through phases. I’d post religiously, hate my work, and then nuke the whole thing. I’d forget I had one for a while. I’d start all over and make something beautiful — only to fall out of love with it. What I didn’t realize is that I kept learning a valuable skill. </p>\n\n\n\n<h2 class=\"kt-adv-heading_f97dc7-19 wp-block-kadence-advancedheading\">Finding My Path</h2>\n\n\n\n<p>By the time I was in college, I had all but abandoned the creative bursts of poetry, prose, and short stories. I was going to major in psychology. That lasted as long as the guy who registered me for my first classes told me it would. I fell in love with English. I took as many courses as I could with the professors that encapsulated what I wanted to be — and created another WordPress blog. </p>\n\n\n\n<p>This time I bought a domain, something no one I knew had done at the time. I did a bit of searching and figured out how to point CNAME records to A records. Now I had my own site, and I was going hard on content creation. I decided I wouldn’t just teach English. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>I’d be a poet, and people would come across my site and my words would change them, like the authors I had read changed me. </p>\n</blockquote>\n\n\n\n<p>And then eventually I deleted that too. Periodically I’d also get dumb ideas that I found very funny, buy a domain, and create a single-use site (I think my favorite was “GeraldoRiverasMustache.com” where the only thing on the page was a cropped picture of his mustache). Deleted. At one point, friends and I started a blog where we actually got to interview a couple of celebrities as part of a larger plan that didn’t come to fruition. Deleted. </p>\n\n\n\n<p>I got certified to teach and began tutoring at another college, eventually getting a position as an adjunct lecturer. There, I also wanted to change people — and my students and I organized a small concert in Coney Island. I made a site, posted updates, and pictures after the event. Deleted. </p>\n\n\n\n<h2 class=\"kt-adv-heading_bde166-28 wp-block-kadence-advancedheading\">Finding WordPress In The Wild</h2>\n\n\n\n<p>I decided to leave teaching at some point and found a job at an online conference company. One of the requirements was knowing WordPress — lucky, lucky. I was hired. It wasn’t the bulk of the job. I was a glorified assistant that helped edit audio and video, help with online conferences, whatever was needed. But, since I knew WordPress, I could go in and update copy, change settings as needed, make new landing pages for events, and so on. Learning, still — not ever expecting to do more with it. </p>\n\n\n\n<p>Later, I moved halfway across the country to live with my now-husband. We’d known each other for many years from a video game related social blogging site (not WordPress, but the UI was very similar so I was in my element). Now years later, I needed a job. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>I leveraged my experience with computers, education, and WordPress to get a job at a nonprofit. </p>\n</blockquote>\n\n\n\n<p>When they migrated their outdated site — an incredibly long and problematic process — the person who was in charge of that was fired partway through. I was brought in to help. I took a look at the CMS and said to myself … “Is this just WordPress?” It pretty much was, with some membership management component. It was as intuitive and easy to navigate, so I was able to help. </p>\n\n\n\n<p>A couple of jobs (and blogs) later, I found myself miserable in the midst of a pandemic. Besides not having a creative outlet, my talent as an employee wasn’t really being fully utilized. It wore on me the longer I was there. I could be doing so much more. I threw myself into a digital marketing certification program — knowing all my work is always on computers, I’m comfortable with computers, and my last job was essentially marketing anyway. And then I found a job in WordPress hosting. </p>\n\n\n\n<h2 class=\"kt-adv-heading_bb8cde-28 wp-block-kadence-advancedheading\">Coming Home</h2>\n\n\n\n<p>I knew WordPress. Not the dev side, but I could get a lot further than someone who’d never used it before. This was opening a new but familiar door. The certification course helped me learn more about what I wanted to do, but not nearly as much as working in WordPress hosting itself did. </p>\n\n\n\n<p>I’m in content, so I get to read, research, and write about WordPress and adjacent topics. I’m going on two years in this position. I love working in the WordPress space. It’s far less stressful than any other job I’ve worked because it’s familiar and comfortable. Tech was the right space for my skills and my personality. </p>\n\n\n\n<p>Growing up on the internet, I didn’t think about how what I was learning would end up having such a profound impact on my day-to-day life. I was simply trying to fit in and, at times, one-up everyone else’s skills. I never thought the place I used to post crappy poetry would eventually pay my bills. </p>\n\n\n\n<p>The work I do doesn’t just help customers learn and become inspired — working in this space keeps me “updated.” For as many versions of WordPress there have been, there’s as many versions of Samantha. That malleability is innate to WordPress. You can reinvent yourself over and over, and their developers have only made that easier to accomplish over the years. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Now that I’ve found my comfort zone, something that would have been impossible had I never used WordPress — I’ve also addressed my creative zone again. </p>\n</blockquote>\n\n\n\n<p>My main WordPress site is a satire news blog that brings me joy even if it doesn’t have the traffic that The Onion gets. WordPress has more or less helped me find the best version of me, even if I’m named after Bewitched and not a famous jazz artist.</p>\n\n\n\n<p>When Topher put out the request for essays that depicted how WordPress made my life better, I knew he wasn’t going to get a couple of paragraphs from me. I’m still the same blogger that is going type up a Tolstoy and want to delete it. I won’t this time, but, I can also sum it up quickly. <strong><em>I</em></strong> was built on WordPress. </p>\n\n\n\n<p>And yes, Great-grandma. I stuck with the computers.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/i-am-built-on-wordpress/\">I am built on WordPress.</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Feb 2023 08:00: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:16:\"Samantha Mueller\";s: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:64:\"WPTavern: WordPress Opens Applications for 2023 Community Summit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=141745\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/wordpress-opens-applications-for-2023-community-summit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2386:\"<p>The WordPress open source project will be <a href=\"https://make.wordpress.org/community/2023/02/08/apply-to-attend-the-2023-community-summit/#comment-30688\">hosting a Community Summit</a> as part of WordCamp US this year. It will take place prior to the main conference on August 22-23, 2023, in National Harbor, Washington, DC. The invitation-only event will be the first summit in six years, since the last one was held in Paris, France in 2017.</p>\n\n\n\n<p>In the past the Community Summit was created to provide an opportunity for contributors to have important discussions and open communication channels about their work and the future of the project. A few proposed topics include streamlining contributions to components of Gutenberg that are already part of WordPress core, the importance of performance, strengthening the contributor pipeline, improving cross-team communication, modernizing and simplifying WordPress settings pages, to name a few.</p>\n\n\n\n<p>“Our goal is to have a diverse and inclusive summit that provides a safe and encouraging space for our dedicated contributors to work on the WordPress project and the problems we encounter within it,” Automattic-sponsored Community Team contributor Julia Golomb said.</p>\n\n\n\n<p>“We iterated this year by holding the <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\" target=\"_blank\">call for topics</a> before asking people to apply to participate. By identifying the topics that are relevant right now, we are positioned to build the invited participants list in a new way, mixing in the long-time contributors we need and including newer contributors who haven’t yet had the opportunity to contribute in this way in the past.”</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/community/2023/02/08/apply-to-attend-the-2023-community-summit/#comment-30688\">application to attend is open</a> to any contributor, regardless of how long they have been involved in the project. Golomb also said the event may include a travel assistance program so that no selected attendee is left out due to financial reasons. Applicants will be selected on a rolling basis to ensure enough time for those who need visas to acquire them. Organizers are aiming to notify all applicants by the end of June 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, 08 Feb 2023 04:34: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: WordPress 6.2 Beta 1 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=141724\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/wordpress-6-2-beta-1-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:3382:\"<p><a href=\"https://wordpress.org/news/2023/02/wordpress-6-2-beta-1/\">WordPress 6.2 Beta 1</a> was released on time today, and can be tested by using the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or <a href=\"https://wordpress.org/wordpress-6.2-beta1.zip\">downloaded</a> directly. In just seven weeks, the upcoming major release will roll in the last nine Gutenberg plugin releases, which account for 292 editor enhancements and 354 bug fixes.</p>\n\n\n\n<p>The beta 1 announcement confirms that WordPress 6.2 will be <a href=\"https://wptavern.com/wordpress-contributors-work-towards-removing-site-editor-beta-label-for-6-2-release\">removing the Beta label from the Site Editor</a>. Although the remaining <a href=\"https://github.com/WordPress/gutenberg/issues/39293\">required items</a> for removal, namely a ticket for <a href=\"https://github.com/WordPress/gutenberg/issues/35503\">refining the Site Editor loading state</a>, remains open, Editor Triage co-lead Anne McCarthy confirmed that work has “quickly progressed over the last few weeks to <a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/gutenberg/pull/46467#issuecomment-1408522571\" target=\"_blank\">to get some items in place for 6.2</a> and to <a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/gutenberg/pull/47612\" target=\"_blank\">start a new PR for improving the loading state further</a>,” beyond the <a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/gutenberg/pull/47182\" target=\"_blank\">initial effort</a> from Gutenberg engineer Riad Benguella.</p>\n\n\n\n<p>WordPress 6.2 contributors have published a detailed <a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\">testing guide</a>, with information on setting up a testing environment and key features to test with videos, screenshots, and information on what features should do and how they can be tested.</p>\n\n\n\n<p>One of the major highlights in this release includes the new distraction-free mode, which offers a more focused writing experience that hides unnecessary interface elements from the editor. The testing guide demonstrates how it can be enabled and disabled.</p>\n\n\n\nvideo credit: <a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\">WordPress 6.2 Testing Guide</a>\n\n\n\n<p>WordPress 6.2 also makes major strides towards improving the Navigation experience, which has proven to be one of the more complicated problems to solve on the full-site editing journey. The testing guide offers a quick tour of the updated Navigation Block UI, which now contains an editable view in the block settings sidebar, along with inline editing for menu items.</p>\n\n\n\nvideo credit: <a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\">WordPress 6.2 Testing Guide</a>\n\n\n\n<p>A few other highlights of the upcoming 6.2 release include the completely revamped Site Editor interface, block settings with split controls for Styles and Settings, improved Pattern insertion, a new Style Book for previewing block styles, custom CSS for specific blocks, and Openverse integration with the WordPress media library.</p>\n\n\n\n<p>Following a few more beta releases, RC 1 is expected on March 7, and the final release is scheduled for <a href=\"https://make.wordpress.org/core/6-2/\">March 28, 2023</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 Feb 2023 22:50: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: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:40:\"WordPress.org blog: WordPress 6.2 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14375\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2023/02/wordpress-6-2-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7796:\"<p>WordPress 6.2 Beta 1 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, you should test Beta 1 on a test server and site.</p>\n\n\n\n<p>You can test WordPress 6.2 Beta 1 in three ways:</p>\n\n\n\n<p><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.2-beta1.zip\">Beta 1 version (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use the following WP-CLI command:</p>\n\n\n\n<p><code>wp core update --version=6.2-beta1</code></p>\n\n\n\n<p>The current target for the final release is <strong>March 28, 2023</strong>, which is seven weeks away. Your help testing this version is vital to ensuring everything in this release is the best it can be.</p>\n\n\n\n<p>Get an overview of the <a href=\"https://make.wordpress.org/core/6-2/\">6.2 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-2/\">6.2-related posts</a> in the coming weeks for further details.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How you can help: testing!</strong></h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. This <a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\">detailed guide</a> is a great place to start if you’ve never tested a beta release. </p>\n\n\n\n<p>If you build products for WordPress, you probably realize that the sooner you can test this release with your themes, plugins, and patterns, the easier it will be for you to offer a seamless experience to your users.</p>\n\n\n\n<p>Want to know more about testing releases in general? You can follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack workspace</a>.</p>\n\n\n\n<p>If you think you may have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. 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>Interested in Gutenberg features? Find out what’s been included since WordPress 6.1 (the last major release of WordPress). You will find more details in the currently available <em>What’s new in Gutenberg</em> posts for <a href=\"https://make.wordpress.org/core/2023/02/10/whats-new-in-gutenberg-15-0-18-january-2/\">15.1</a>, <a href=\"https://make.wordpress.org/core/2023/01/20/whats-new-in-gutenberg-15-0-18-january/\">15.0</a>, <a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/\">14.9</a>, <a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\">14.8</a>, <a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\">14.7</a>, <a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/\">14.6</a>, <a href=\"https://make.wordpress.org/core/2022/11/09/whats-new-in-gutenberg-14-5-9-november/\">14.5</a>, <a href=\"https://make.wordpress.org/core/2022/10/27/whats-new-in-gutenberg-14-4-26-october/\">14.4</a>, <a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/\">14.3</a>, and <a href=\"https://make.wordpress.org/core/2022/09/30/whats-new-in-gutenberg-14-2-28-september/\">14.2</a>. </p>\n\n\n\n<p>This release contains more than 292 enhancements and 354 bug fixes for the editor, including more than <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=6.2&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">195 tickets for the WordPress 6.2 core</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>A major release for a major project milestone</strong></h2>\n\n\n\n<p>WordPress 6.2 is one of the last planned major releases of Phase 2 on the <a href=\"https://wordpress.org/about/roadmap/\">Gutenberg project’s roadmap</a>. The platform has come a long way in the past few years. The 6.2 release both celebrates that progress and looks toward a future of publishing that puts ever more powerful tools in your hands. </p>\n\n\n\n<p>Next stop: collaboration tools and more, in <a href=\"https://wordpress.org/news/2023/01/letter-from-wordpress-executive-director-2022/\">Phase 3</a>!</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Notable highlights</strong></h2>\n\n\n\n<p><em>Want to know what’s new in WordPress version 6.2? Read on for a taste of what’s coming.</em></p>\n\n\n\n<ul>\n<li>Beta label is gone—signaling that the Site Editor is stable and ready for anyone to explore, create, and experiment!</li>\n\n\n\n<li>Distraction-free mode for a clear, focused writing experience.</li>\n\n\n\n<li>A new Site Editor interface shows you previews of your templates and Template Parts first, so you can choose exactly where you want to start editing.</li>\n\n\n\n<li>Scaled block settings with split controls organize your Styles and Settings options to easily find what you need—and clearly see everything a block can do. </li>\n\n\n\n<li>Color-coded labels help you find your Template Parts and Reusable Blocks fast, everywhere you look: in the List View, the Block toolbar, even on the Canvas.</li>\n\n\n\n<li>An improved Navigation experience makes menus simple to create and manage—right from the block settings sidebar.</li>\n\n\n\n<li>Patterns are easier to find and insert—with even more categories to choose from like headers and footers! </li>\n\n\n\n<li>A new Style Book offers one place to see all your Styles across every block, for a complete overview of your site’s design details.</li>\n\n\n\n<li>Custom CSS support for specific blocks, or your whole site, for another level of control over how you want things to look. </li>\n\n\n\n<li>Openverse integration lets you pull free, openly-licensed media directly into your content as you work—along with a quicker way to insert media from your existing library.</li>\n\n\n\n<li>Widgets become Template Parts when you switch from a Classic to a Block Theme—making the transition that much smoother.</li>\n</ul>\n\n\n\n<p><em>Please note that the features in this list may change before the final release.</em></p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>A haiku for 6.2</strong></h2>\n\n\n\n<p>Last of Phase 2 now<br />Let’s get the party started<br />WordPress turns 20</p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post: </em><a href=\"https://profiles.wordpress.org/marybaum/\"><em>@marybaum</em></a><em> </em><a href=\"https://profiles.wordpress.org/laurlittle/\"><em>@laurlittle</em></a><em> </em><a href=\"https://profiles.wordpress.org/cbringmann/\"><em>@cbringmann</em></a><em>, </em><a href=\"https://profiles.wordpress.org/webcommsat/\"><em>@webcommsat</em></a><em>, </em><a href=\"https://profiles.wordpress.org/audrasjb/\"><em>@audrasjb</em></a><em>, </em><a href=\"https://profiles.wordpress.org/annezazu/\"><em>@annezazu</em></a>, <a href=\"https://profiles.wordpress.org/bph/\"><em>@bhp</em></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 Feb 2023 19:32: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:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:85:\"Do The Woo Community: From a Hackathon to Accepting Web3 Payments with Sebastian Pape\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=74428\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://dothewoo.io/from-a-hackathon-to-accepting-web3-payments/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:411:\"<p>From a hackathon to Web3 payments, Sebastian has quite the story and some fantastic insights into crypto.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/from-a-hackathon-to-accepting-web3-payments/\">From a Hackathon to Accepting Web3 Payments with Sebastian Pape</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Feb 2023 10:40: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: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:113:\"WPTavern: BuddyPress 12.0 to Focus on Merging BP Rewrites Into Core, Moving Legacy Widgets Into BP Classic Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=141704\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"https://wptavern.com/buddypress-12-0-to-focus-on-merging-bp-rewrites-into-core-moving-legacy-widgets-into-bp-classic-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3280:\"<p>During the most recent BuddyPress development meeting, contributors <a href=\"https://bpdevel.wordpress.com/2023/02/04/bp-dev-chat-summary-january-30-2023/\">decided</a> to focus the upcoming 12.0 release on merging the <a href=\"https://wordpress.org/plugins/bp-rewrites/\">BP Rewrites feature plugin</a> into core. This plugin is the result of a ten-year-old effort to migrate BuddyPress’ custom URI parser to use WordPress’ Rewrite API.</p>\n\n\n\n<p>One year ago, <a href=\"https://wptavern.com/bp-rewrites-feature-plugin-now-in-beta\">BP Rewrites went into beta</a>. It’s not certain how the change will interact with different plugins, so BP developers recommended it be tested for at least two major BuddyPress core releases before considering a merge. Early testers <a href=\"https://wordpress.org/support/plugin/bp-rewrites/\">uncovered many incompatibilities</a> and conflicts with various BuddyPress features.</p>\n\n\n\n<p>In order to move forward confidently with support for users who may experience plugin conflicts, BP Rewrites’ maintainers have decided to create a new plugin that will provide backward compatibility. This new plugin will be called <a href=\"https://github.com/buddypress/bp-classic\">BP Classic</a> and will also contain BuddyPress’ legacy widgets, a change that BuddyPress core developer Mathieu Viet said “will be our first move towards progressively rebooting BuddyPress.” <a href=\"https://wptavern.com/buddypress-9-0-0-transforms-legacy-widgets-into-blocks\">BP 9.0.0</a> (released July 2021) gave users the ability to transform legacy widgets into a block with two clicks. Moving these widgets out into BP Classic will be a significant step towards their eventual retirement.</p>\n\n\n\n<p>The <a href=\"https://github.com/buddypress/bp-attachments\">BP Attachments</a> Add-on, a new component for managing BuddyPress attachments, is ready to move into beta testing. Viet has updated the plugin’s README file to include the features it will launch with in the plugin on WordPress.org:</p>\n\n\n\n<ul>\n<li>Front-end and back-end Media library for all your members</li>\n\n\n\n<li>Administrators can moderate Members media from the back-end Media library</li>\n\n\n\n<li>Members can upload public or private media into their personal Media Library as well as organize them creating file directories, photo albums, movie or music playlists</li>\n\n\n\n<li>User media blocks for all your site’s content contributors</li>\n\n\n\n<li>Members can upload and attach public media to their activity updates (Needs the BP Activity component to be active)</li>\n\n\n\n<li>Members can upload and attach private media to their private messages (Needs the BP Messages component to be active)</li>\n\n\n\n<li>All members public media can be browsed from the Community Media directory.</li>\n\n\n\n<li>(beta) A new avatar Upload UI<a href=\"https://github.com/buddypress/bp-attachments#future-features\"></a></li>\n</ul>\n\n\n\n<p>Future versions of the feature plugin will include a new cover image upload UI, and the ability to share media with friends and between group members.</p>\n\n\n\n<p>BuddyPress contributors anticipate bumping the required WordPress version to 5.8 in the 12.0 release. Beta 1 is planned for April 15, with the official release landing May 31.</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 Feb 2023 03:50:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 27 Feb 2023 14:48:25 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Mon, 27 Feb 2023 14:30:29 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20230227143137\";}','no'),(154,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1677552505','no'),(155,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1677509305','no'),(156,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1677552505','no'),(157,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/02/episode-49-everything-you-need-to-know-about-the-community-summit/\'>WP Briefing: Episode 49: Everything You Need to Know About the Community Summit!</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/02/wordpress-6-2-beta-1/\'>WordPress 6.2 Beta 1</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://dothewoo.io/wordcamp-asia-2023-a-shining-star-in-the-wordpress-community/\'>Do The Woo Community: WordCamp Asia 2023, A Shining Star in the WordPress Community</a></li><li><a class=\'rsswidget\' href=\'https://gutenbergtimes.com/6-2-live-demo-20-year-anniversary-intrinsic-design-html-tag-processor-wcasia-weekend-edition-244/\'>Gutenberg Times: 6.2 Live Demo, 20-Year anniversary, Intrinsic design HTML Tag Processor, #WCAsia – Weekend Edition #244</a></li><li><a class=\'rsswidget\' href=\'https://central.wordcamp.org/news/2023/02/get-your-tickets-for-wordcamp-kerala-2023-on-march-25th/\'>WordCamp Central: Get your tickets for WordCamp Kerala 2023 on March 25th!</a></li></ul></div>','no'),(158,'can_compress_scripts','0','no'),(159,'recently_activated','a:0:{}','yes'),(162,'finished_updating_comment_type','1','yes'),(166,'_site_transient_timeout_available_translations','1677521098','no'),(167,'_site_transient_available_translations','a:130:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.3\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.3/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.1.1/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-27 01:36:03\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.21\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.21/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-24 22:28:51\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.22\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.22/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-17 10:40:57\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:6:\"5.4.12\";s:7:\"updated\";s:19:\"2020-10-31 08:48:37\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.12/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-23 10:33:03\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-21 08:26:37\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-14 15:48:08\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-01-10 08:19:28\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-01-16 12:27:34\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.1.1/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-01-16 12:27:22\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-23 20:48:19\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.1.1/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-23 20:51:13\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.0.3\";s:7:\"updated\";s:19:\"2022-03-17 12:58:14\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.3/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.1.1/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-22 14:01:36\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-21 05:55:12\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-10 21:58:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-01-31 12:11:44\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.0.3\";s:7:\"updated\";s:19:\"2022-04-01 22:35:34\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.3/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.0.3\";s:7:\"updated\";s:19:\"2021-12-24 12:36:39\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.3/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-18 21:56:09\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-17 14:28:26\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-16 13:13:32\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-10 19:19:07\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.6/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.6/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.12\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.12/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-10 18:26:21\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.17\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.17/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-07-22 14:08:10\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-01 03:10:20\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-13 17:54:51\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-25 16:37:05\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-19 17:10:42\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-25 09:13:10\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-07 05:25:25\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-12 18:38:54\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-27 10:47:36\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.21\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.21/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-14 10:36:13\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:6:\"4.9.22\";s:7:\"updated\";s:19:\"2018-09-14 12:33:48\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.22/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.29\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.29/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-26 12:01:36\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:6:\"5.4.12\";s:7:\"updated\";s:19:\"2020-11-06 12:34:38\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.12/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-06 12:29:04\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-07-18 19:40:10\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.1.1/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-15 17:19:30\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-29 15:17:58\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.22\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.22/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-21 14:05:13\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-01-06 07:11:58\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.22\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.22/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.0.3\";s:7:\"updated\";s:19:\"2022-10-24 08:01:09\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.3/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-01-21 21:13:06\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.1.1/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.22\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.22/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.17\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.17/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-10-20 17:15:28\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-21 23:01:12\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-12-07 16:32:30\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.6/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"بهردهوام به\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-24 03:51:58\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-01-06 16:38:45\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.3\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.3/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-01-02 15:24:05\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.22\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.22/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.11\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.11/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.34\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.34/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-11 01:42:08\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-25 10:09:15\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-05 12:28:58\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.1.1/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-01-26 10:11:03\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-27 08:47:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.21\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.21/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-21 19:04:45\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.30\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.30/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-08-09 12:26:21\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.1.1/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-01-09 08:47:14\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-10-01 12:16:29\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-01 21:54:59\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-23 14:32:34\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-21 07:46:37\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.12\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.12/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-01-20 04:27:59\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-16 15:38:21\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.1.1/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-11 12:48:55\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-18 12:57:42\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-08-01 21:21:06\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.6/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-21 12:06:05\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:6:\"5.3.14\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.3.14/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.34\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.34/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.6/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.21\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.21/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-01-04 13:32:22\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:6:\"4.9.22\";s:7:\"updated\";s:19:\"2021-07-03 18:41:33\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.22/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-26 12:48:41\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.12\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.12/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2023-02-12 07:49:12\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-15 22:21:52\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-18 06:20:30\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),(168,'WPLANG','','yes'),(169,'new_admin_email','dcl@thelannies.us','yes'),(176,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1677521598','no'),(177,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:5978;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4813;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2785;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2657;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2047;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1908;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1902;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1624;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1562;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1549;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1544;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1515;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1503;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1463;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1358;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1316;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1266;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1176;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1155;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1142;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:1042;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:1013;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:995;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:963;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:901;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:875;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:873;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:869;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:868;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:865;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:864;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:819;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:791;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:779;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:777;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:771;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:765;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:759;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:732;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:729;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:726;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:721;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:720;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:684;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:683;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:683;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:673;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:666;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:631;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:620;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:612;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:608;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:607;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:605;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:596;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:590;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:588;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:587;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:574;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:568;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:567;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:564;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:555;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:550;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:547;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:540;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:538;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:530;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:530;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:528;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:520;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:515;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:511;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:509;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:507;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:501;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:479;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:474;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:469;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:468;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:450;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:448;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:445;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:436;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:430;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:426;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:424;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:421;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:418;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:417;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:417;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:415;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:411;}s:8:\"payments\";a:3:{s:4:\"name\";s:8:\"payments\";s:4:\"slug\";s:8:\"payments\";s:5:\"count\";i:405;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:403;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:397;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:394;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:391;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:391;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:386;}}','no'),(182,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1677513200;s:7:\"checked\";a:4:{s:5:\"astra\";s:5:\"4.0.2\";s:14:\"twentynineteen\";s:3:\"2.4\";s:12:\"twentytwenty\";s:3:\"2.1\";s:15:\"twentytwentyone\";s:3:\"1.7\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:4:{s:5:\"astra\";a:6:{s:5:\"theme\";s:5:\"astra\";s:11:\"new_version\";s:5:\"4.0.2\";s:3:\"url\";s:35:\"https://wordpress.org/themes/astra/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/astra.4.0.2.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.3\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.4.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.1.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.7.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(183,'current_theme','Astra','yes'),(184,'theme_mods_astra','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}','yes'),(185,'theme_switched','','yes'),(187,'astra-settings','a:2:{s:18:\"theme-auto-version\";s:5:\"4.0.2\";s:22:\"is_theme_queue_running\";b:0;}','yes'),(188,'astra_docs_data','O:8:\"stdClass\":2:{s:10:\"categories\";O:8:\"stdClass\":10:{s:24:\"installation-and-updates\";O:8:\"stdClass\":2:{s:4:\"name\";s:24:\"Installation and Updates\";s:13:\"subcategories\";a:0:{}}s:28:\"astra-theme-walkthrough-docs\";O:8:\"stdClass\":2:{s:4:\"name\";s:23:\"Astra Theme Walkthrough\";s:13:\"subcategories\";a:0:{}}s:25:\"astra-customizer-settings\";O:8:\"stdClass\":2:{s:4:\"name\";s:19:\"Customizer Settings\";s:13:\"subcategories\";O:8:\"stdClass\":10:{s:17:\"header-and-footer\";O:8:\"stdClass\":2:{s:4:\"name\";s:19:\"Header & Footer\";s:13:\"subcategories\";O:8:\"stdClass\":2:{s:24:\"header-footer-before-3-0\";O:8:\"stdClass\":2:{s:4:\"name\";s:43:\"Old Header & Footer (Before Astra v3.0)\";s:13:\"subcategories\";a:0:{}}s:23:\"header-footer-after-3-0\";O:8:\"stdClass\":2:{s:4:\"name\";s:41:\"Header & Footer Builder (Astra v3.0+)\";s:13:\"subcategories\";a:0:{}}}}s:6:\"global\";O:8:\"stdClass\":2:{s:4:\"name\";s:6:\"Global\";s:13:\"subcategories\";a:0:{}}s:10:\"breadcrumb\";O:8:\"stdClass\":2:{s:4:\"name\";s:10:\"Breadcrumb\";s:13:\"subcategories\";a:0:{}}s:4:\"blog\";O:8:\"stdClass\":2:{s:4:\"name\";s:4:\"Blog\";s:13:\"subcategories\";a:0:{}}s:7:\"sidebar\";O:8:\"stdClass\":2:{s:4:\"name\";s:7:\"Sidebar\";s:13:\"subcategories\";a:0:{}}s:9:\"learndash\";O:8:\"stdClass\":2:{s:4:\"name\";s:9:\"LearnDash\";s:13:\"subcategories\";a:0:{}}s:22:\"easy-digital-downloads\";O:8:\"stdClass\":2:{s:4:\"name\";s:22:\"Easy Digital Downloads\";s:13:\"subcategories\";a:0:{}}s:9:\"lifterlms\";O:8:\"stdClass\":2:{s:4:\"name\";s:9:\"LifterLMS\";s:13:\"subcategories\";a:0:{}}s:16:\"woocommerce-free\";O:8:\"stdClass\":2:{s:4:\"name\";s:11:\"WooCommerce\";s:13:\"subcategories\";a:0:{}}s:13:\"meta-settings\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Meta Settings\";s:13:\"subcategories\";a:0:{}}}}s:17:\"astra-pro-modules\";O:8:\"stdClass\":2:{s:4:\"name\";s:17:\"Astra Pro Modules\";s:13:\"subcategories\";O:8:\"stdClass\":18:{s:11:\"white-label\";O:8:\"stdClass\":2:{s:4:\"name\";s:11:\"White Label\";s:13:\"subcategories\";a:0:{}}s:13:\"mobile-header\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Mobile Header\";s:13:\"subcategories\";a:0:{}}s:8:\"nav-menu\";O:8:\"stdClass\":2:{s:4:\"name\";s:8:\"Nav Menu\";s:13:\"subcategories\";a:0:{}}s:14:\"typography-pro\";O:8:\"stdClass\":2:{s:4:\"name\";s:10:\"Typography\";s:13:\"subcategories\";a:0:{}}s:21:\"colors-background-pro\";O:8:\"stdClass\":2:{s:4:\"name\";s:23:\"Colors & Background\";s:13:\"subcategories\";a:0:{}}s:21:\"custom-layouts-module\";O:8:\"stdClass\":2:{s:4:\"name\";s:21:\"Custom Layouts Module\";s:13:\"subcategories\";a:0:{}}s:11:\"site-layout\";O:8:\"stdClass\":2:{s:4:\"name\";s:11:\"Site Layout\";s:13:\"subcategories\";a:0:{}}s:15:\"header-sections\";O:8:\"stdClass\":2:{s:4:\"name\";s:15:\"Header Sections\";s:13:\"subcategories\";a:0:{}}s:13:\"sticky-header\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Sticky Header\";s:13:\"subcategories\";a:0:{}}s:12:\"page-headers\";O:8:\"stdClass\":2:{s:4:\"name\";s:12:\"Page Headers\";s:13:\"subcategories\";a:0:{}}s:8:\"blog-pro\";O:8:\"stdClass\":2:{s:4:\"name\";s:8:\"Blog Pro\";s:13:\"subcategories\";a:0:{}}s:21:\"footer-widgets-module\";O:8:\"stdClass\":2:{s:4:\"name\";s:21:\"Footer Widgets Module\";s:13:\"subcategories\";a:0:{}}s:7:\"spacing\";O:8:\"stdClass\":2:{s:4:\"name\";s:7:\"Spacing\";s:13:\"subcategories\";a:0:{}}s:3:\"woo\";O:8:\"stdClass\":2:{s:4:\"name\";s:11:\"WooCommerce\";s:13:\"subcategories\";a:0:{}}s:27:\"learndash-astra-pro-modules\";O:8:\"stdClass\":2:{s:4:\"name\";s:9:\"LearnDash\";s:13:\"subcategories\";a:0:{}}s:19:\"lifterlms-astra-pro\";O:8:\"stdClass\":2:{s:4:\"name\";s:9:\"LifterLMS\";s:13:\"subcategories\";a:0:{}}s:29:\"easy-digital-downloads-module\";O:8:\"stdClass\":2:{s:4:\"name\";s:29:\"Easy Digital Downloads Module\";s:13:\"subcategories\";a:0:{}}s:18:\"native-amp-support\";O:8:\"stdClass\":2:{s:4:\"name\";s:18:\"Native AMP Support\";s:13:\"subcategories\";a:0:{}}}}s:17:\"starter-templates\";O:8:\"stdClass\":2:{s:4:\"name\";s:17:\"Starter Templates\";s:13:\"subcategories\";a:0:{}}s:15:\"translate-astra\";O:8:\"stdClass\":2:{s:4:\"name\";s:15:\"Translate Astra\";s:13:\"subcategories\";a:0:{}}s:7:\"general\";O:8:\"stdClass\":2:{s:4:\"name\";s:7:\"General\";s:13:\"subcategories\";a:0:{}}s:17:\"account-and-store\";O:8:\"stdClass\":2:{s:4:\"name\";s:17:\"Account and Store\";s:13:\"subcategories\";a:0:{}}s:20:\"custom-code-snippets\";O:8:\"stdClass\":2:{s:4:\"name\";s:20:\"Custom Code Snippets\";s:13:\"subcategories\";O:8:\"stdClass\":5:{s:23:\"astra-theme-pro-filters\";O:8:\"stdClass\":2:{s:4:\"name\";s:29:\"Astra Theme & Pro Filters\";s:13:\"subcategories\";a:0:{}}s:27:\"astra-header-footer-filters\";O:8:\"stdClass\":2:{s:4:\"name\";s:33:\"Astra Header & Footer Filters\";s:13:\"subcategories\";a:0:{}}s:12:\"blog-filters\";O:8:\"stdClass\":2:{s:4:\"name\";s:12:\"Blog Filters\";s:13:\"subcategories\";a:0:{}}s:19:\"woocommerce-filters\";O:8:\"stdClass\":2:{s:4:\"name\";s:19:\"WooCommerce Filters\";s:13:\"subcategories\";a:0:{}}s:10:\"custom-css\";O:8:\"stdClass\":2:{s:4:\"name\";s:10:\"Custom CSS\";s:13:\"subcategories\";a:0:{}}}}s:15:\"troubleshooting\";O:8:\"stdClass\":2:{s:4:\"name\";s:15:\"Troubleshooting\";s:13:\"subcategories\";a:0:{}}}s:4:\"docs\";a:454:{i:0;O:8:\"stdClass\":3:{s:5:\"title\";s:69:\"How to Resolve Update Failed: -1 issue with Starter Templates plugin?\";s:3:\"url\";s:55:\"https://wpastra.com/docs/resolve-update-failed-1-issue/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:1;O:8:\"stdClass\":3:{s:5:\"title\";s:27:\"Astra 4.0.0 Nav Menu Module\";s:3:\"url\";s:41:\"https://wpastra.com/docs/nav-menu-module/\";s:8:\"category\";a:1:{i:0;s:8:\"nav-menu\";}}i:2;O:8:\"stdClass\":3:{s:5:\"title\";s:58:\"We are facing a temporary issue in importing this template\";s:3:\"url\";s:84:\"https://wpastra.com/docs/we-are-facing-a-temporary-issue-in-importing-this-template/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:3;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"How to use dynamic customizer from Astra 4.0.0\";s:3:\"url\";s:70:\"https://wpastra.com/docs/how-to-use-dynamic-customizer-from-astra-4-0/\";s:8:\"category\";a:1:{i:0;s:25:\"astra-customizer-settings\";}}i:4;O:8:\"stdClass\":3:{s:5:\"title\";s:63:\"Changing the Post Title’s Tag of the Related Post Section\";s:3:\"url\";s:82:\"https://wpastra.com/docs/changing-the-post-titles-tag-of-the-related-post-section/\";s:8:\"category\";a:1:{i:0;s:27:\"astra-header-footer-filters\";}}i:5;O:8:\"stdClass\":3:{s:5:\"title\";s:37:\"Narrow Width – Container Layout\";s:3:\"url\";s:55:\"https://wpastra.com/docs/narrow-width-container-layout/\";s:8:\"category\";a:1:{i:0;s:6:\"global\";}}i:6;O:8:\"stdClass\":3:{s:5:\"title\";s:67:\"Quick admin bar navigation to edit custom layout & page header\";s:3:\"url\";s:86:\"https://wpastra.com/docs/quick-admin-bar-navigation-to-edit-custom-layout-page-header/\";s:8:\"category\";a:1:{i:0;s:21:\"custom-layouts-module\";}}i:7;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"Mega Menu Support for all Builder Menus\";s:3:\"url\";s:65:\"https://wpastra.com/docs/mega-menu-support-for-all-builder-menus/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:8;O:8:\"stdClass\":3:{s:5:\"title\";s:30:\"Improved Spectra Compatibility\";s:3:\"url\";s:56:\"https://wpastra.com/docs/improved-spectra-compatibility/\";s:8:\"category\";a:1:{i:0;s:28:\"astra-theme-walkthrough-docs\";}}i:9;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"How to add a custom cart button in WordPress\";s:3:\"url\";s:70:\"https://wpastra.com/docs/how-to-add-a-custom-cart-button-in-wordpress/\";s:8:\"category\";a:0:{}}i:10;O:8:\"stdClass\":3:{s:5:\"title\";s:34:\"Show Password eye icon not visible\";s:3:\"url\";s:60:\"https://wpastra.com/docs/show-password-eye-icon-not-visible/\";s:8:\"category\";a:1:{i:0;s:19:\"woocommerce-filters\";}}i:11;O:8:\"stdClass\":3:{s:5:\"title\";s:64:\"Revert support for Single Product’s legacy Gallery layouts\";s:3:\"url\";s:83:\"https://wpastra.com/docs/revert-support-for-single-products-legacy-gallery-layouts/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:12;O:8:\"stdClass\":3:{s:5:\"title\";s:38:\"Revert support for old Astra cart icon\";s:3:\"url\";s:64:\"https://wpastra.com/docs/revert-support-for-old-astra-cart-icon/\";s:8:\"category\";a:1:{i:0;s:19:\"woocommerce-filters\";}}i:13;O:8:\"stdClass\":3:{s:5:\"title\";s:45:\"How to Manage WooCommerce Product Image Width\";s:3:\"url\";s:71:\"https://wpastra.com/docs/how-to-manage-woocommerce-product-image-width/\";s:8:\"category\";a:1:{i:0;s:3:\"woo\";}}i:14;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"How to enable Product Quantity (Plus-Minus)?\";s:3:\"url\";s:67:\"https://wpastra.com/docs/how-to-enable-product-quantity-plus-minus/\";s:8:\"category\";a:1:{i:0;s:3:\"woo\";}}i:15;O:8:\"stdClass\":3:{s:5:\"title\";s:30:\"Sticky Header Background Color\";s:3:\"url\";s:56:\"https://wpastra.com/docs/sticky-header-background-color/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:16;O:8:\"stdClass\":3:{s:5:\"title\";s:58:\"How to remove Author’s name from a Single Blog Post?\";s:3:\"url\";s:76:\"https://wpastra.com/docs/how-to-remove-authors-name-from-a-single-blog-post/\";s:8:\"category\";a:1:{i:0;s:4:\"blog\";}}i:17;O:8:\"stdClass\":3:{s:5:\"title\";s:37:\"How to Highlight the active menu item\";s:3:\"url\";s:63:\"https://wpastra.com/docs/how-to-highlight-the-active-menu-item/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:18;O:8:\"stdClass\":3:{s:5:\"title\";s:52:\"How to Change “Add to Cart” button text?\";s:3:\"url\";s:63:\"https://wpastra.com/docs/how-to-change-add-to-cart-button-text/\";s:8:\"category\";a:1:{i:0;s:15:\"translate-astra\";}}i:19;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"How to change site background color in Astra\";s:3:\"url\";s:70:\"https://wpastra.com/docs/how-to-change-site-background-color-in-astra/\";s:8:\"category\";a:1:{i:0;s:6:\"global\";}}i:20;O:8:\"stdClass\":3:{s:5:\"title\";s:36:\"Fix Mobile Usability Issues on Astra\";s:3:\"url\";s:62:\"https://wpastra.com/docs/fix-mobile-usability-issues-on-astra/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:21;O:8:\"stdClass\":3:{s:5:\"title\";s:84:\"How to remove horizontal & vertical gallery layouts from a single product page?\";s:3:\"url\";s:102:\"https://wpastra.com/docs/how-to-remove-horizontal-vertical-gallery-layouts-from-a-single-product-page/\";s:8:\"category\";a:1:{i:0;s:20:\"custom-code-snippets\";}}i:22;O:8:\"stdClass\":3:{s:5:\"title\";s:64:\"Transparent Header Menu Color not working with Mobile Breakpoint\";s:3:\"url\";s:90:\"https://wpastra.com/docs/transparent-header-menu-color-not-working-with-mobile-breakpoint/\";s:8:\"category\";a:1:{i:0;s:10:\"custom-css\";}}i:23;O:8:\"stdClass\":3:{s:5:\"title\";s:49:\"cURL error 60: unable to install Astra Pro plugin\";s:3:\"url\";s:74:\"https://wpastra.com/docs/curl-error-60-unable-to-install-astra-pro-plugin/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:24;O:8:\"stdClass\":3:{s:5:\"title\";s:60:\"WP_Error-cURL error 7: Failed to connect to websitedemos.net\";s:3:\"url\";s:85:\"https://wpastra.com/docs/wp_error-curl-error-7-failed-to-connect-to-websitedemos-net/\";s:8:\"category\";a:2:{i:0;s:15:\"troubleshooting\";i:1;s:17:\"starter-templates\";}}i:25;O:8:\"stdClass\":3:{s:5:\"title\";s:66:\"How to create a multisite network and use Astra child theme on it.\";s:3:\"url\";s:83:\"https://wpastra.com/docs/how-to-create-a-multisite-network-using-astra-child-theme/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:26;O:8:\"stdClass\":3:{s:5:\"title\";s:61:\"How to ensure text remains visible during web font load Astra\";s:3:\"url\";s:87:\"https://wpastra.com/docs/how-to-ensure-text-remains-visible-during-web-font-load-astra/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:27;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"How to create a sticky sidebar in Astra\";s:3:\"url\";s:65:\"https://wpastra.com/docs/how-to-create-a-sticky-sidebar-in-astra/\";s:8:\"category\";a:1:{i:0;s:25:\"astra-customizer-settings\";}}i:28;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"Change Color of Sale Badge – WooCommerce\";s:3:\"url\";s:64:\"https://wpastra.com/docs/change-color-of-sale-badge-woocommerce/\";s:8:\"category\";a:1:{i:0;s:3:\"woo\";}}i:29;O:8:\"stdClass\":3:{s:5:\"title\";s:40:\"How to design Footer Background in Astra\";s:3:\"url\";s:57:\"https://wpastra.com/docs/how-to-design-footer-background/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:30;O:8:\"stdClass\":3:{s:5:\"title\";s:28:\"How to disable logo cropping\";s:3:\"url\";s:54:\"https://wpastra.com/docs/how-to-disable-logo-cropping/\";s:8:\"category\";a:1:{i:0;s:25:\"astra-customizer-settings\";}}i:31;O:8:\"stdClass\":3:{s:5:\"title\";s:24:\"Misc – WooCommerce\";s:3:\"url\";s:42:\"https://wpastra.com/docs/misc-woocommerce/\";s:8:\"category\";a:1:{i:0;s:3:\"woo\";}}i:32;O:8:\"stdClass\":3:{s:5:\"title\";s:40:\"How To add Custom CSS for Specific Pages\";s:3:\"url\";s:66:\"https://wpastra.com/docs/how-to-add-custom-css-for-specific-pages/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:33;O:8:\"stdClass\":3:{s:5:\"title\";s:27:\"How to create a Mobile Menu\";s:3:\"url\";s:53:\"https://wpastra.com/docs/how-to-create-a-mobile-menu/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:34;O:8:\"stdClass\":3:{s:5:\"title\";s:66:\"Uploaded file exceeds the upload_max_filesize directive in php.ini\";s:3:\"url\";s:92:\"https://wpastra.com/docs/uploaded-file-exceeds-the-upload_max_filesize-directive-in-php-ini/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:35;O:8:\"stdClass\":3:{s:5:\"title\";s:47:\"What are the Best Astra Settings for Elementor?\";s:3:\"url\";s:72:\"https://wpastra.com/docs/what-are-the-best-astra-settings-for-elementor/\";s:8:\"category\";a:1:{i:0;s:13:\"meta-settings\";}}i:36;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"Astra theme string translation for WooCommerce\";s:3:\"url\";s:72:\"https://wpastra.com/docs/astra-theme-string-translation-for-woocommerce/\";s:8:\"category\";a:1:{i:0;s:15:\"translate-astra\";}}i:37;O:8:\"stdClass\":3:{s:5:\"title\";s:73:\"How To Fix Not Being Able To Edit Submenu Colors, Above and Below Header?\";s:3:\"url\";s:97:\"https://wpastra.com/docs/how-to-fix-not-being-able-to-edit-submenu-colors-above-and-below-header/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:38;O:8:\"stdClass\":3:{s:5:\"title\";s:48:\"How to Import / Export Astra Customizer Settings\";s:3:\"url\";s:72:\"https://wpastra.com/docs/how-to-import-export-astra-customizer-settings/\";s:8:\"category\";a:1:{i:0;s:25:\"astra-customizer-settings\";}}i:39;O:8:\"stdClass\":3:{s:5:\"title\";s:45:\"How to disable cart fragments on WooCommerce?\";s:3:\"url\";s:70:\"https://wpastra.com/docs/how-to-disable-cart-fragments-on-woocommerce/\";s:8:\"category\";a:1:{i:0;s:3:\"woo\";}}i:40;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"How to add custom CSS and JavaScript to Astra theme\";s:3:\"url\";s:77:\"https://wpastra.com/docs/how-to-add-custom-css-and-javascript-to-astra-theme/\";s:8:\"category\";a:1:{i:0;s:10:\"custom-css\";}}i:41;O:8:\"stdClass\":3:{s:5:\"title\";s:48:\"How to add custom post type with the Astra theme\";s:3:\"url\";s:74:\"https://wpastra.com/docs/how-to-add-custom-post-type-with-the-astra-theme/\";s:8:\"category\";a:1:{i:0;s:8:\"blog-pro\";}}i:42;O:8:\"stdClass\":3:{s:5:\"title\";s:43:\"How to change the menu color in Astra theme\";s:3:\"url\";s:69:\"https://wpastra.com/docs/how-to-change-the-menu-color-in-astra-theme/\";s:8:\"category\";a:1:{i:0;s:21:\"colors-background-pro\";}}i:43;O:8:\"stdClass\":3:{s:5:\"title\";s:47:\"How to use the color palette of the Astra theme\";s:3:\"url\";s:73:\"https://wpastra.com/docs/how-to-use-the-color-palette-of-the-astra-theme/\";s:8:\"category\";a:2:{i:0;s:25:\"astra-customizer-settings\";i:1;s:6:\"global\";}}i:44;O:8:\"stdClass\":3:{s:5:\"title\";s:40:\"How to create a correct format svg logo?\";s:3:\"url\";s:65:\"https://wpastra.com/docs/how-to-create-a-correct-format-svg-logo/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:45;O:8:\"stdClass\":3:{s:5:\"title\";s:40:\"How to translate the WooCommerce string?\";s:3:\"url\";s:65:\"https://wpastra.com/docs/how-to-translate-the-woocommerce-string/\";s:8:\"category\";a:1:{i:0;s:15:\"translate-astra\";}}i:46;O:8:\"stdClass\":3:{s:5:\"title\";s:8:\"SVG Icon\";s:3:\"url\";s:34:\"https://wpastra.com/docs/svg-icon/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:47;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"Using Advanced Custom Fields with Astra\";s:3:\"url\";s:65:\"https://wpastra.com/docs/using-advanced-custom-fields-with-astra/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:48;O:8:\"stdClass\":3:{s:5:\"title\";s:56:\"How to add a wishlist button to your WooCommerce Website\";s:3:\"url\";s:82:\"https://wpastra.com/docs/how-to-add-a-wishlist-button-to-your-woocommerce-website/\";s:8:\"category\";a:2:{i:0;s:7:\"general\";i:1;s:3:\"woo\";}}i:49;O:8:\"stdClass\":3:{s:5:\"title\";s:69:\"Error 406 while importing Starter Templates on your WordPress website\";s:3:\"url\";s:95:\"https://wpastra.com/docs/error-406-while-importing-starter-templates-on-your-wordpress-website/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:50;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"How to import Starter Templates with WP CLI Command\";s:3:\"url\";s:77:\"https://wpastra.com/docs/how-to-import-starter-templates-with-wp-cli-command/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:51;O:8:\"stdClass\":3:{s:5:\"title\";s:26:\"Auto Update Plugin Support\";s:3:\"url\";s:52:\"https://wpastra.com/docs/auto-update-plugin-support/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:52;O:8:\"stdClass\":3:{s:5:\"title\";s:41:\"The blank screen in the Customizer area \";s:3:\"url\";s:65:\"https://wpastra.com/docs/the-blank-screen-in-the-customizer-area/\";s:8:\"category\";a:2:{i:0;s:25:\"astra-customizer-settings\";i:1;s:17:\"starter-templates\";}}i:53;O:8:\"stdClass\":3:{s:5:\"title\";s:13:\"Mixed Content\";s:3:\"url\";s:39:\"https://wpastra.com/docs/mixed-content/\";s:8:\"category\";a:2:{i:0;s:7:\"general\";i:1;s:15:\"troubleshooting\";}}i:54;O:8:\"stdClass\":3:{s:5:\"title\";s:41:\"How to check JavaScript errors/conflicts?\";s:3:\"url\";s:66:\"https://wpastra.com/docs/how-to-check-javascript-errors-conflicts/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:55;O:8:\"stdClass\":3:{s:5:\"title\";s:60:\"How Astra is tuned for performance and is the fastest theme?\";s:3:\"url\";s:85:\"https://wpastra.com/docs/how-astra-is-tuned-for-performance-and-is-the-fastest-theme/\";s:8:\"category\";a:1:{i:0;s:6:\"global\";}}i:56;O:8:\"stdClass\":3:{s:5:\"title\";s:26:\"Transparent Header for HFB\";s:3:\"url\";s:52:\"https://wpastra.com/docs/transparent-header-for-hfb/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:57;O:8:\"stdClass\":3:{s:5:\"title\";s:47:\"How ‘Enable Filter Accordion’ Works\";s:3:\"url\";s:59:\"https://wpastra.com/docs/how-enable-filter-accordion-works/\";s:8:\"category\";a:1:{i:0;s:3:\"woo\";}}i:58;O:8:\"stdClass\":3:{s:5:\"title\";s:49:\"How to improve the CLS score with the Astra theme\";s:3:\"url\";s:75:\"https://wpastra.com/docs/how-to-improve-the-cls-score-with-the-astra-theme/\";s:8:\"category\";a:1:{i:0;s:6:\"global\";}}i:59;O:8:\"stdClass\":3:{s:5:\"title\";s:34:\"System requirement for Astra Theme\";s:3:\"url\";s:60:\"https://wpastra.com/docs/system-requirement-for-astra-theme/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:60;O:8:\"stdClass\":3:{s:5:\"title\";s:17:\"WooCommerce hooks\";s:3:\"url\";s:43:\"https://wpastra.com/docs/woocommerce-hooks/\";s:8:\"category\";a:1:{i:0;s:16:\"woocommerce-free\";}}i:61;O:8:\"stdClass\":3:{s:5:\"title\";s:45:\"Set shop page as homepage – Woocommerce\";s:3:\"url\";s:63:\"https://wpastra.com/docs/set-shop-page-as-homepage-woocommerce/\";s:8:\"category\";a:1:{i:0;s:16:\"woocommerce-free\";}}i:62;O:8:\"stdClass\":3:{s:5:\"title\";s:35:\"Astra – Customize the submenu\";s:3:\"url\";s:53:\"https://wpastra.com/docs/astra-customize-the-submenu/\";s:8:\"category\";a:1:{i:0;s:25:\"astra-customizer-settings\";}}i:63;O:8:\"stdClass\":3:{s:5:\"title\";s:45:\"Remove default stretched block layout spacing\";s:3:\"url\";s:71:\"https://wpastra.com/docs/remove-default-stretched-block-layout-spacing/\";s:8:\"category\";a:1:{i:0;s:20:\"custom-code-snippets\";}}i:64;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"Improvements on the CheckOut page(Astra 3.9.0)\";s:3:\"url\";s:70:\"https://wpastra.com/docs/improvements-on-the-checkout-pageastra-3-9-0/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:65;O:8:\"stdClass\":3:{s:5:\"title\";s:41:\"Improvments on the Cart Page(Astra 3.9.0)\";s:3:\"url\";s:54:\"https://wpastra.com/docs/improvments-on-the-cart-page/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:66;O:8:\"stdClass\":3:{s:5:\"title\";s:52:\"Astra WooCommerce update (version 3.9.0) Misc Update\";s:3:\"url\";s:76:\"https://wpastra.com/docs/astra-woocommerce-update-version-3-9-0-misc-update/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:67;O:8:\"stdClass\":3:{s:5:\"title\";s:56:\"Astra WooCommerce update (version 3.9.0) My Account Page\";s:3:\"url\";s:80:\"https://wpastra.com/docs/astra-woocommerce-update-version-3-9-0-my-account-page/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:68;O:8:\"stdClass\":3:{s:5:\"title\";s:60:\"Astra WooCommerce update (version 3.9.0) Single Product Page\";s:3:\"url\";s:84:\"https://wpastra.com/docs/astra-woocommerce-update-version-3-9-0-single-product-page/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:69;O:8:\"stdClass\":3:{s:5:\"title\";s:50:\"Astra WooCommerce update (version 3.9.0) Shop Page\";s:3:\"url\";s:74:\"https://wpastra.com/docs/astra-woocommerce-update-version-3-9-0-shop-page/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:70;O:8:\"stdClass\":3:{s:5:\"title\";s:40:\"Astra WooCommerce update (version 3.9.0)\";s:3:\"url\";s:64:\"https://wpastra.com/docs/astra-woocommerce-update-version-3-9-0/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:71;O:8:\"stdClass\":3:{s:5:\"title\";s:61:\"Improvement: WooCommerce – Modify the Cart label design\";s:3:\"url\";s:78:\"https://wpastra.com/docs/improvement-woocommerce-modify-the-cart-label-design/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:72;O:8:\"stdClass\":3:{s:5:\"title\";s:43:\"Improved Block Editor Experience with Astra\";s:3:\"url\";s:58:\"https://wpastra.com/docs/improved-block-editor-experience/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:73;O:8:\"stdClass\":3:{s:5:\"title\";s:54:\"How to Remove Google Fonts Suggestions in Astra Theme?\";s:3:\"url\";s:72:\"https://wpastra.com/docs/remove-google-fonts-suggestions-in-astra-theme/\";s:8:\"category\";a:1:{i:0;s:20:\"custom-code-snippets\";}}i:74;O:8:\"stdClass\":3:{s:5:\"title\";s:66:\"How to Resolve Repeater Fields Not Working in Widget Block Editor?\";s:3:\"url\";s:86:\"https://wpastra.com/docs/resolving-repeater-fields-not-working-in-widget-block-editor/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:75;O:8:\"stdClass\":3:{s:5:\"title\";s:62:\"Enhancement: Applying Content Background to Full-Width Layouts\";s:3:\"url\";s:75:\"https://wpastra.com/docs/applying-content-background-to-full-width-layouts/\";s:8:\"category\";a:1:{i:0;s:21:\"colors-background-pro\";}}i:76;O:8:\"stdClass\":3:{s:5:\"title\";s:33:\"Move Related Posts Below Comments\";s:3:\"url\";s:59:\"https://wpastra.com/docs/move-related-posts-below-comments/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:77;O:8:\"stdClass\":3:{s:5:\"title\";s:40:\"Disable Astra Global Colors In Elementor\";s:3:\"url\";s:66:\"https://wpastra.com/docs/disable-astra-global-colors-in-elementor/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:78;O:8:\"stdClass\":3:{s:5:\"title\";s:49:\"Remove Woocommerce Product Category Archive Title\";s:3:\"url\";s:67:\"https://wpastra.com/docs/remove-woocommerce-category-archive-title/\";s:8:\"category\";a:1:{i:0;s:19:\"woocommerce-filters\";}}i:79;O:8:\"stdClass\":3:{s:5:\"title\";s:42:\"Remove Astra Customization for WooCommerce\";s:3:\"url\";s:68:\"https://wpastra.com/docs/remove-astra-customization-for-woocommerce/\";s:8:\"category\";a:1:{i:0;s:19:\"woocommerce-filters\";}}i:80;O:8:\"stdClass\":3:{s:5:\"title\";s:34:\"How To Change Web Stories Position\";s:3:\"url\";s:53:\"https://wpastra.com/docs/change-web-stories-position/\";s:8:\"category\";a:1:{i:0;s:6:\"global\";}}i:81;O:8:\"stdClass\":3:{s:5:\"title\";s:30:\"Manage Astra Pro With Composer\";s:3:\"url\";s:56:\"https://wpastra.com/docs/manage-astra-pro-with-composer/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:82;O:8:\"stdClass\":3:{s:5:\"title\";s:59:\"How to Turn Astra Website Multilingual with TranslatePress?\";s:3:\"url\";s:69:\"https://wpastra.com/docs/turn-astra-multilingual-with-translatepress/\";s:8:\"category\";a:1:{i:0;s:15:\"translate-astra\";}}i:83;O:8:\"stdClass\":3:{s:5:\"title\";s:22:\"Starter Templates FAQs\";s:3:\"url\";s:48:\"https://wpastra.com/docs/starter-templates-faqs/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:84;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"Building Your Website With Starter Templates\";s:3:\"url\";s:70:\"https://wpastra.com/docs/building-your-website-with-starter-templates/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:85;O:8:\"stdClass\":3:{s:5:\"title\";s:27:\"Starter Templates Importing\";s:3:\"url\";s:53:\"https://wpastra.com/docs/starter-templates-importing/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:86;O:8:\"stdClass\":3:{s:5:\"title\";s:38:\"Getting Started With Starter Templates\";s:3:\"url\";s:64:\"https://wpastra.com/docs/getting-started-with-starter-templates/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:87;O:8:\"stdClass\":3:{s:5:\"title\";s:56:\"Creating Your Header and Footer With Astra or Elementor?\";s:3:\"url\";s:62:\"https://wpastra.com/docs/astra-or-elementor-header-and-footer/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:88;O:8:\"stdClass\":3:{s:5:\"title\";s:64:\"Gutenberg Editor And Frontend UI Improvements With Astra (3.7.4)\";s:3:\"url\";s:62:\"https://wpastra.com/docs/gutenberg-ui-improvements-with-astra/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:89;O:8:\"stdClass\":3:{s:5:\"title\";s:50:\"Replace Deprecated Astra Theme and Astra Pro Hooks\";s:3:\"url\";s:48:\"https://wpastra.com/docs/deprecated-astra-hooks/\";s:8:\"category\";a:2:{i:0;s:23:\"astra-theme-pro-filters\";i:1;s:27:\"astra-header-footer-filters\";}}i:90;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"Hide the Text by Setting the Font Size to Zero\";s:3:\"url\";s:51:\"https://wpastra.com/docs/setting-font-size-to-zero/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:91;O:8:\"stdClass\":3:{s:5:\"title\";s:66:\"How to Translate Categories, Tags, and Astra Strings with Polylang\";s:3:\"url\";s:77:\"https://wpastra.com/docs/translate-categories-tags-and-strings-with-polylang/\";s:8:\"category\";a:1:{i:0;s:15:\"translate-astra\";}}i:92;O:8:\"stdClass\":3:{s:5:\"title\";s:73:\"What To Do When Product Count Is Not Visible on Mini Cart With Astra Pro?\";s:3:\"url\";s:45:\"https://wpastra.com/docs/product-count-color/\";s:8:\"category\";a:2:{i:0;s:3:\"woo\";i:1;s:15:\"troubleshooting\";}}i:93;O:8:\"stdClass\":3:{s:5:\"title\";s:48:\"How to Roll Back to A Previous Version of Astra?\";s:3:\"url\";s:61:\"https://wpastra.com/docs/roll-back-to-previous-astra-version/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:94;O:8:\"stdClass\":3:{s:5:\"title\";s:53:\"How to Turn Astra Website Multilingual with Polylang?\";s:3:\"url\";s:63:\"https://wpastra.com/docs/turn-astra-multilingual-with-polylang/\";s:8:\"category\";a:1:{i:0;s:15:\"translate-astra\";}}i:95;O:8:\"stdClass\":3:{s:5:\"title\";s:42:\"Starter Templates – Wireframe Blocks\";s:3:\"url\";s:60:\"https://wpastra.com/docs/starter-templates-wireframe-blocks/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:96;O:8:\"stdClass\":3:{s:5:\"title\";s:49:\"How to Enable Debugging in WordPress (Debug Mode)\";s:3:\"url\";s:55:\"https://wpastra.com/docs/enable-debugging-in-wordpress/\";s:8:\"category\";a:1:{i:0;s:6:\"global\";}}i:97;O:8:\"stdClass\":3:{s:5:\"title\";s:52:\"How To Override Astra’s theme.json in Child Theme?\";s:3:\"url\";s:52:\"https://wpastra.com/docs/override-astras-theme-json/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:98;O:8:\"stdClass\":3:{s:5:\"title\";s:63:\"How To Hide Quantity Number When the Woocommerce Cart Is Empty?\";s:3:\"url\";s:58:\"https://wpastra.com/docs/hide-quantity-when-cart-is-empty/\";s:8:\"category\";a:1:{i:0;s:19:\"woocommerce-filters\";}}i:99;O:8:\"stdClass\":3:{s:5:\"title\";s:58:\"How to Display the Post Category as a Related Posts Title?\";s:3:\"url\";s:65:\"https://wpastra.com/docs/display-category-as-related-posts-title/\";s:8:\"category\";a:1:{i:0;s:12:\"blog-filters\";}}i:100;O:8:\"stdClass\":3:{s:5:\"title\";s:48:\"How To Remove the Astra Header From Entire Site?\";s:3:\"url\";s:62:\"https://wpastra.com/docs/remove-astra-header-from-entire-site/\";s:8:\"category\";a:1:{i:0;s:27:\"astra-header-footer-filters\";}}i:101;O:8:\"stdClass\":3:{s:5:\"title\";s:55:\"How To Change Navigation Links Text for a Blog Archive?\";s:3:\"url\";s:65:\"https://wpastra.com/docs/replace-blog-archive-navigation-strings/\";s:8:\"category\";a:1:{i:0;s:12:\"blog-filters\";}}i:102;O:8:\"stdClass\":3:{s:5:\"title\";s:43:\"Frequently Asked Questions – VIP Care\";s:3:\"url\";s:39:\"https://wpastra.com/docs/faqs-vip-care/\";s:8:\"category\";a:1:{i:0;s:17:\"account-and-store\";}}i:103;O:8:\"stdClass\":3:{s:5:\"title\";s:72:\"How To Remove Underlined Content Links on Buttons and Specifics Classes?\";s:3:\"url\";s:57:\"https://wpastra.com/docs/remove-underlined-content-links/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:104;O:8:\"stdClass\":3:{s:5:\"title\";s:24:\"Astra Typography Presets\";s:3:\"url\";s:50:\"https://wpastra.com/docs/astra-typography-presets/\";s:8:\"category\";a:1:{i:0;s:6:\"global\";}}i:105;O:8:\"stdClass\":3:{s:5:\"title\";s:20:\"Astra Button Presets\";s:3:\"url\";s:53:\"https://wpastra.com/docs/astra-button-styles-presets/\";s:8:\"category\";a:1:{i:0;s:6:\"global\";}}i:106;O:8:\"stdClass\":3:{s:5:\"title\";s:26:\"Astra Global Color Palette\";s:3:\"url\";s:61:\"https://wpastra.com/docs/astra-global-color-palette-settings/\";s:8:\"category\";a:1:{i:0;s:6:\"global\";}}i:107;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"How To Disable the Block Editor Support for Widgets\";s:3:\"url\";s:61:\"https://wpastra.com/docs/disable-widget-block-editor-support/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:108;O:8:\"stdClass\":3:{s:5:\"title\";s:80:\"How To Enable Design Options for Header and Footer Widgets in Block-Based Editor\";s:3:\"url\";s:60:\"https://wpastra.com/docs/enable-astra-widget-design-options/\";s:8:\"category\";a:1:{i:0;s:27:\"astra-header-footer-filters\";}}i:109;O:8:\"stdClass\":3:{s:5:\"title\";s:52:\"Restrict Search Results to WooCommerce Products Only\";s:3:\"url\";s:58:\"https://wpastra.com/docs/restrict-search-results-products/\";s:8:\"category\";a:1:{i:0;s:19:\"woocommerce-filters\";}}i:110;O:8:\"stdClass\":3:{s:5:\"title\";s:58:\"Fix Swap Sections Not Working on Mobile (Old Astra Header)\";s:3:\"url\";s:55:\"https://wpastra.com/docs/fix-swap-sections-not-working/\";s:8:\"category\";a:1:{i:0;s:20:\"custom-code-snippets\";}}i:111;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"Remove Spacing Around Elementor Pro TOC Widget\";s:3:\"url\";s:54:\"https://wpastra.com/docs/remove-spacing-elementor-toc/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:112;O:8:\"stdClass\":3:{s:5:\"title\";s:61:\"Fix Woocommerce Cart Becoming Transparent With Header Builder\";s:3:\"url\";s:58:\"https://wpastra.com/docs/fix-transparent-woocommerce-cart/\";s:8:\"category\";a:1:{i:0;s:19:\"woocommerce-filters\";}}i:113;O:8:\"stdClass\":3:{s:5:\"title\";s:53:\"How To Fix Right Margin for the Footer Widget Element\";s:3:\"url\";s:56:\"https://wpastra.com/docs/fix-footer-widget-right-margin/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:114;O:8:\"stdClass\":3:{s:5:\"title\";s:47:\"How to Add Elementor Template to the Mega Menu?\";s:3:\"url\";s:51:\"https://wpastra.com/docs/add-template-to-mega-menu/\";s:8:\"category\";a:1:{i:0;s:8:\"nav-menu\";}}i:115;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"The Recommended Size for Featured Image Upload\";s:3:\"url\";s:61:\"https://wpastra.com/docs/recommended-size-for-featured-image/\";s:8:\"category\";a:2:{i:0;s:7:\"general\";i:1;s:4:\"blog\";}}i:116;O:8:\"stdClass\":3:{s:5:\"title\";s:48:\"Why Doesn’t Parallax Scrolling Work on Mobile?\";s:3:\"url\";s:56:\"https://wpastra.com/docs/parallax-not-working-on-mobile/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:117;O:8:\"stdClass\":3:{s:5:\"title\";s:63:\"How To Fix Horizontal Scrollbar on Mobile When Using Elementor?\";s:3:\"url\";s:60:\"https://wpastra.com/docs/fix-horizontal-scrollbar-on-mobile/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:118;O:8:\"stdClass\":3:{s:5:\"title\";s:47:\"How To Apply New Default Button Padding Values?\";s:3:\"url\";s:54:\"https://wpastra.com/docs/apply-default-button-padding/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:119;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"Responsive Editing With the Astra Theme\";s:3:\"url\";s:61:\"https://wpastra.com/docs/responsive-editing-with-astra-theme/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:120;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"How To Hide Astra Settings for Specific User Roles?\";s:3:\"url\";s:60:\"https://wpastra.com/docs/hide-astra-settings-for-user-roles/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:121;O:8:\"stdClass\":3:{s:5:\"title\";s:67:\"How To Create a Header With a Centrally Positioned Logo With Astra?\";s:3:\"url\";s:70:\"https://wpastra.com/docs/create-header-with-centrally-positioned-logo/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:122;O:8:\"stdClass\":3:{s:5:\"title\";s:59:\"Manage Your Site Identity With Astra’s Header Builder\";s:3:\"url\";s:55:\"https://wpastra.com/docs/manage-site-identity-and-logo/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:123;O:8:\"stdClass\":3:{s:5:\"title\";s:58:\"How to Change the Heading Tag for the Related Posts Title?\";s:3:\"url\";s:60:\"https://wpastra.com/docs/change-tag-for-related-posts-title/\";s:8:\"category\";a:1:{i:0;s:27:\"astra-header-footer-filters\";}}i:124;O:8:\"stdClass\":3:{s:5:\"title\";s:56:\"Host Google Fonts Locally – Performance Is the Key\";s:3:\"url\";s:48:\"https://wpastra.com/docs/performance-is-the-key/\";s:8:\"category\";a:1:{i:0;s:28:\"astra-theme-walkthrough-docs\";}}i:125;O:8:\"stdClass\":3:{s:5:\"title\";s:36:\"How To Improve CLS For the SVG Logo?\";s:3:\"url\";s:50:\"https://wpastra.com/docs/improve-cls-for-svg-logo/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:126;O:8:\"stdClass\":3:{s:5:\"title\";s:53:\"How to Fix Font-Weight Not Applying To Widget Titles?\";s:3:\"url\";s:55:\"https://wpastra.com/docs/font-weight-for-widget-titles/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:127;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"How to Self-Host Google Fonts in Astra?\";s:3:\"url\";s:50:\"https://wpastra.com/docs/self-hosted-google-fonts/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:128;O:8:\"stdClass\":3:{s:5:\"title\";s:57:\"Gutenberg Plugin Causing Issues With the Astra Customizer\";s:3:\"url\";s:62:\"https://wpastra.com/docs/astra-customizer-options-unavailable/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:129;O:8:\"stdClass\":3:{s:5:\"title\";s:89:\"Change the “Shopping Cart” Text for WooCommerce & EDD Mobile Header Cart\";s:3:\"url\";s:50:\"https://wpastra.com/docs/update-mobile-cart-title/\";s:8:\"category\";a:1:{i:0;s:19:\"woocommerce-filters\";}}i:130;O:8:\"stdClass\":3:{s:5:\"title\";s:29:\"Modify Your PHP Configuration\";s:3:\"url\";s:55:\"https://wpastra.com/docs/modify-your-php-configuration/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:131;O:8:\"stdClass\":3:{s:5:\"title\";s:48:\"Could not store XML file in /wp-content/ folder?\";s:3:\"url\";s:68:\"https://wpastra.com/docs/could-not-store-files-in-wp-content-folder/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:132;O:8:\"stdClass\":3:{s:5:\"title\";s:56:\"How to Fix 5XX Error While Importing a Starter Template?\";s:3:\"url\";s:53:\"https://wpastra.com/docs/5xx-error-starter-templates/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:133;O:8:\"stdClass\":3:{s:5:\"title\";s:69:\"How to Fix Blocked Requests Error While Importing a Starter Template?\";s:3:\"url\";s:66:\"https://wpastra.com/docs/blocked-requests-error-starter-templates/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:134;O:8:\"stdClass\":3:{s:5:\"title\";s:68:\"How to Fix Operation Timed Error While Importing a Starter Template?\";s:3:\"url\";s:65:\"https://wpastra.com/docs/operation-timed-error-starter-templates/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:135;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"How to Fix Starter Template Importing Issues\";s:3:\"url\";s:63:\"https://wpastra.com/docs/fix-starter-template-importing-issues/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:136;O:8:\"stdClass\":3:{s:5:\"title\";s:73:\"How to Remove Border Around the Cart? (Issue After Updating to Astra 3.4)\";s:3:\"url\";s:51:\"https://wpastra.com/docs/remove-border-around-cart/\";s:8:\"category\";a:1:{i:0;s:3:\"woo\";}}i:137;O:8:\"stdClass\":3:{s:5:\"title\";s:35:\"Getting the Most Out of Astra Theme\";s:3:\"url\";s:53:\"https://wpastra.com/docs/getting-the-most-with-astra/\";s:8:\"category\";a:1:{i:0;s:28:\"astra-theme-walkthrough-docs\";}}i:138;O:8:\"stdClass\":3:{s:5:\"title\";s:36:\"How To Build Quick Sites With Astra?\";s:3:\"url\";s:46:\"https://wpastra.com/docs/build-quick-websites/\";s:8:\"category\";a:1:{i:0;s:28:\"astra-theme-walkthrough-docs\";}}i:139;O:8:\"stdClass\":3:{s:5:\"title\";s:28:\"See Other Customizer Options\";s:3:\"url\";s:50:\"https://wpastra.com/docs/other-customizer-options/\";s:8:\"category\";a:1:{i:0;s:28:\"astra-theme-walkthrough-docs\";}}i:140;O:8:\"stdClass\":3:{s:5:\"title\";s:17:\"Build Your Footer\";s:3:\"url\";s:48:\"https://wpastra.com/docs/footer-builder-options/\";s:8:\"category\";a:1:{i:0;s:28:\"astra-theme-walkthrough-docs\";}}i:141;O:8:\"stdClass\":3:{s:5:\"title\";s:17:\"Add Your Sidebars\";s:3:\"url\";s:45:\"https://wpastra.com/docs/how-to-add-sidebars/\";s:8:\"category\";a:1:{i:0;s:28:\"astra-theme-walkthrough-docs\";}}i:142;O:8:\"stdClass\":3:{s:5:\"title\";s:16:\"Set Up Your Blog\";s:3:\"url\";s:43:\"https://wpastra.com/docs/how-to-setup-blog/\";s:8:\"category\";a:1:{i:0;s:28:\"astra-theme-walkthrough-docs\";}}i:143;O:8:\"stdClass\":3:{s:5:\"title\";s:29:\"Find the Way With Breadcrumbs\";s:3:\"url\";s:43:\"https://wpastra.com/docs/using-breadcrumbs/\";s:8:\"category\";a:1:{i:0;s:28:\"astra-theme-walkthrough-docs\";}}i:144;O:8:\"stdClass\":3:{s:5:\"title\";s:17:\"Build Your Header\";s:3:\"url\";s:48:\"https://wpastra.com/docs/header-builder-options/\";s:8:\"category\";a:1:{i:0;s:28:\"astra-theme-walkthrough-docs\";}}i:145;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"Style Your Website With Global Settings\";s:3:\"url\";s:52:\"https://wpastra.com/docs/style-with-global-settings/\";s:8:\"category\";a:1:{i:0;s:28:\"astra-theme-walkthrough-docs\";}}i:146;O:8:\"stdClass\":3:{s:5:\"title\";s:23:\"This Is Your Customizer\";s:3:\"url\";s:51:\"https://wpastra.com/docs/manage-customizer-options/\";s:8:\"category\";a:1:{i:0;s:28:\"astra-theme-walkthrough-docs\";}}i:147;O:8:\"stdClass\":3:{s:5:\"title\";s:23:\"Astra Theme Walkthrough\";s:3:\"url\";s:49:\"https://wpastra.com/docs/astra-theme-walkthrough/\";s:8:\"category\";a:1:{i:0;s:28:\"astra-theme-walkthrough-docs\";}}i:148;O:8:\"stdClass\":3:{s:5:\"title\";s:41:\"Display Related Posts on Single Blog Post\";s:3:\"url\";s:47:\"https://wpastra.com/docs/display-related-posts/\";s:8:\"category\";a:1:{i:0;s:4:\"blog\";}}i:149;O:8:\"stdClass\":3:{s:5:\"title\";s:41:\"How do I check my Support Ticket History?\";s:3:\"url\";s:54:\"https://wpastra.com/docs/check-support-ticket-history/\";s:8:\"category\";a:1:{i:0;s:17:\"account-and-store\";}}i:150;O:8:\"stdClass\":3:{s:5:\"title\";s:69:\"How to Resolve Fatal Error: Call to Undefined function ctype_xdigit()\";s:3:\"url\";s:50:\"https://wpastra.com/docs/fatal-error-ctype-xdigit/\";s:8:\"category\";a:2:{i:0;s:24:\"installation-and-updates\";i:1;s:15:\"troubleshooting\";}}i:151;O:8:\"stdClass\":3:{s:5:\"title\";s:56:\"Toggle Button for Desktop – Header Builder Element\";s:3:\"url\";s:51:\"https://wpastra.com/docs/toggle-button-for-desktop/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:152;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"Astra’s Default Font Icons Replaced With SVG\";s:3:\"url\";s:47:\"https://wpastra.com/docs/ast-font-icons-to-svg/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:153;O:8:\"stdClass\":3:{s:5:\"title\";s:38:\"Fix Spacing Issues in Gutenberg Blocks\";s:3:\"url\";s:47:\"https://wpastra.com/docs/fix-spacing-gb-blocks/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:154;O:8:\"stdClass\":3:{s:5:\"title\";s:74:\"Optimize Astra HTML and CSS – For Existing Astra Users (Before v3.3)\";s:3:\"url\";s:54:\"https://wpastra.com/docs/optimize-css-html-before-3-3/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:155;O:8:\"stdClass\":3:{s:5:\"title\";s:67:\"FAQs – Astra Pro 3.2 – Custom Layout Inside Pages/Posts\";s:3:\"url\";s:44:\"https://wpastra.com/docs/faqs-astra-pro-3-2/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:156;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"Inside Page/Post Content Custom Layouts\";s:3:\"url\";s:52:\"https://wpastra.com/docs/custom-layouts-inside-page/\";s:8:\"category\";a:1:{i:0;s:21:\"custom-layouts-module\";}}i:157;O:8:\"stdClass\":3:{s:5:\"title\";s:73:\"How to Remove the White Bars in the Safari Browser on iPhone X and Higher\";s:3:\"url\";s:53:\"https://wpastra.com/docs/remove-white-bars-on-safari/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:158;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"Sorry, You Are Not Allowed To Access This Page\";s:3:\"url\";s:52:\"https://wpastra.com/docs/not-allowed-to-access-page/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:159;O:8:\"stdClass\":3:{s:5:\"title\";s:34:\"Getting Started with Growth Bundle\";s:3:\"url\";s:55:\"https://wpastra.com/docs/getting-started-growth-bundle/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:160;O:8:\"stdClass\":3:{s:5:\"title\";s:37:\"Getting Started with Essential Bundle\";s:3:\"url\";s:58:\"https://wpastra.com/docs/getting-started-essential-bundle/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:161;O:8:\"stdClass\":3:{s:5:\"title\";s:67:\"Can’t See Newly Added Templates in Starter Templates Library?\";s:3:\"url\";s:48:\"https://wpastra.com/docs/sync-starter-templates/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:162;O:8:\"stdClass\":3:{s:5:\"title\";s:55:\"Filter to Remove Starter Templates Button on Post Types\";s:3:\"url\";s:67:\"https://wpastra.com/docs/filter-to-remove-starter-templates-button/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:163;O:8:\"stdClass\":3:{s:5:\"title\";s:41:\"Using Language Switcher Element with WPML\";s:3:\"url\";s:49:\"https://wpastra.com/docs/using-language-switcher/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:164;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"Importing Gutenberg Pages, Patterns, and Wireframes\";s:3:\"url\";s:50:\"https://wpastra.com/docs/import-gb-pages-patterns/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:165;O:8:\"stdClass\":3:{s:5:\"title\";s:33:\"Revamped Astra’s Customizer\";s:3:\"url\";s:51:\"https://wpastra.com/docs/revamped-astra-customizer/\";s:8:\"category\";a:2:{i:0;s:23:\"header-footer-after-3-0\";i:1;s:7:\"general\";}}i:166;O:8:\"stdClass\":3:{s:5:\"title\";s:50:\"Clone and Delete Elements in Header Footer Builder\";s:3:\"url\";s:50:\"https://wpastra.com/docs/clone-delete-hf-elements/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:167;O:8:\"stdClass\":3:{s:5:\"title\";s:33:\"How to Clear Astra’s Cache?\";s:3:\"url\";s:43:\"https://wpastra.com/docs/clear-astra-cache/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:168;O:8:\"stdClass\":3:{s:5:\"title\";s:67:\"FAQs – Astra Header/Footer Builder – Existing Customers\";s:3:\"url\";s:51:\"https://wpastra.com/docs/faqs-hf-builder-old-users/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:169;O:8:\"stdClass\":3:{s:5:\"title\";s:54:\"How To Create Mobile Header With Astra Header Builder?\";s:3:\"url\";s:66:\"https://wpastra.com/docs/create-mobile-header-with-header-builder/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:170;O:8:\"stdClass\":3:{s:5:\"title\";s:49:\"How To Create a Footer With Astra Footer Builder?\";s:3:\"url\";s:59:\"https://wpastra.com/docs/create-footer-with-footer-builder/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:171;O:8:\"stdClass\":3:{s:5:\"title\";s:49:\"How To Create a Header With Astra Header Builder?\";s:3:\"url\";s:59:\"https://wpastra.com/docs/create-header-with-header-builder/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:172;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"Add Multiple Elements in Header Footer Builder\";s:3:\"url\";s:60:\"https://wpastra.com/docs/multiple-elements-in-header-footer/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:173;O:8:\"stdClass\":3:{s:5:\"title\";s:40:\"FAQs – Astra Header/Footer Builder\";s:3:\"url\";s:58:\"https://wpastra.com/docs/faqs-astra-header-footer-builder/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:174;O:8:\"stdClass\":3:{s:5:\"title\";s:64:\"Elements in Header/Footer Builder With Astra Theme and Astra Pro\";s:3:\"url\";s:59:\"https://wpastra.com/docs/elements-in-header-footer-builder/\";s:8:\"category\";a:1:{i:0;s:23:\"header-footer-after-3-0\";}}i:175;O:8:\"stdClass\":3:{s:5:\"title\";s:42:\"How to Add Gutenberg Design Compatibility?\";s:3:\"url\";s:49:\"https://wpastra.com/docs/gb-design-compatibility/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:176;O:8:\"stdClass\":3:{s:5:\"title\";s:56:\"New Color Controls in Astra theme & Astra Pro Addon\";s:3:\"url\";s:53:\"https://wpastra.com/docs/new-color-controls-in-astra/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:177;O:8:\"stdClass\":3:{s:5:\"title\";s:30:\"Astra Pro Shortcodes Reference\";s:3:\"url\";s:56:\"https://wpastra.com/docs/astra-pro-shortcodes-reference/\";s:8:\"category\";a:0:{}}i:178;O:8:\"stdClass\":3:{s:5:\"title\";s:68:\"Filter to Add Global Button Settings Support for WooCommerce Buttons\";s:3:\"url\";s:71:\"https://wpastra.com/docs/global-button-support-for-woocommerce-buttons/\";s:8:\"category\";a:1:{i:0;s:19:\"woocommerce-filters\";}}i:179;O:8:\"stdClass\":3:{s:5:\"title\";s:72:\"Blog Featured Image Size Not Working / Error in Image Processing Library\";s:3:\"url\";s:57:\"https://wpastra.com/docs/blog-featured-image-size-issues/\";s:8:\"category\";a:2:{i:0;s:15:\"troubleshooting\";i:1;s:12:\"blog-filters\";}}i:180;O:8:\"stdClass\":3:{s:5:\"title\";s:50:\"Unable to find “No Toggle” Menu Style?\";s:3:\"url\";s:61:\"https://wpastra.com/docs/unable-to-find-no-toggle-menu-style/\";s:8:\"category\";a:1:{i:0;s:13:\"mobile-header\";}}i:181;O:8:\"stdClass\":3:{s:5:\"title\";s:58:\"Filters to Support CPTs for Blog Meta and Single Blog Meta\";s:3:\"url\";s:52:\"https://wpastra.com/docs/add-blog-meta-support-cpts/\";s:8:\"category\";a:1:{i:0;s:12:\"blog-filters\";}}i:182;O:8:\"stdClass\":3:{s:5:\"title\";s:29:\"Header Improvements in Astra!\";s:3:\"url\";s:54:\"https://wpastra.com/docs/header-improvements-in-astra/\";s:8:\"category\";a:1:{i:0;s:15:\"header-sections\";}}i:183;O:8:\"stdClass\":3:{s:5:\"title\";s:58:\"Filter to Add Support for Gutenberg Cover and Group blocks\";s:3:\"url\";s:70:\"https://wpastra.com/docs/support-for-gutenberg-cover-and-group-blocks/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:184;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"Change Footer Widget Title’s Heading Tag\";s:3:\"url\";s:64:\"https://wpastra.com/docs/change-footer-widget-title-heading-tag/\";s:8:\"category\";a:1:{i:0;s:27:\"astra-header-footer-filters\";}}i:185;O:8:\"stdClass\":3:{s:5:\"title\";s:41:\"How to Modify/Change the Quick View text?\";s:3:\"url\";s:48:\"https://wpastra.com/docs/modify-quick-view-text/\";s:8:\"category\";a:1:{i:0;s:19:\"woocommerce-filters\";}}i:186;O:8:\"stdClass\":3:{s:5:\"title\";s:30:\"Deprecated Google Fonts Filter\";s:3:\"url\";s:56:\"https://wpastra.com/docs/deprecated-google-fonts-filter/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:187;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"Mountain Template With Elementor Theme Style\";s:3:\"url\";s:65:\"https://wpastra.com/docs/mountain-template-elementor-theme-style/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:188;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"Plugin Installation Failed – Multisite\";s:3:\"url\";s:62:\"https://wpastra.com/docs/plugin-installation-failed-multisite/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:189;O:8:\"stdClass\":3:{s:5:\"title\";s:58:\"How to Modify Read Time Text on Blog and Single Post Page?\";s:3:\"url\";s:47:\"https://wpastra.com/docs/modify-read-time-text/\";s:8:\"category\";a:0:{}}i:190;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"System Requirements – Starter Templates\";s:3:\"url\";s:63:\"https://wpastra.com/docs/system-requirements-starter-templates/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:191;O:8:\"stdClass\":3:{s:5:\"title\";s:58:\"Custom Layout not Rendering Correctly with Beaver Builder?\";s:3:\"url\";s:56:\"https://wpastra.com/docs/custom-layouts-rendering-issue/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:192;O:8:\"stdClass\":3:{s:5:\"title\";s:83:\"Unable to Upload the Astra Pro ZIP File because it is Unzipped During the Download?\";s:3:\"url\";s:65:\"https://wpastra.com/docs/unable-to-upload-the-astra-pro-zip-file/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:193;O:8:\"stdClass\":3:{s:5:\"title\";s:64:\"How to Update Responsive Breakpoints for Tablet+Mobile in Astra?\";s:3:\"url\";s:71:\"https://wpastra.com/docs/set-update-breakpoints-tablet-mobile-in-astra/\";s:8:\"category\";a:2:{i:0;s:23:\"header-footer-after-3-0\";i:1;s:27:\"astra-header-footer-filters\";}}i:194;O:8:\"stdClass\":3:{s:5:\"title\";s:14:\"Usage Tracking\";s:3:\"url\";s:40:\"https://wpastra.com/docs/usage-tracking/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:195;O:8:\"stdClass\":3:{s:5:\"title\";s:47:\"How to Install Starter Templates (Free) Plugin?\";s:3:\"url\";s:56:\"https://wpastra.com/docs/install-free-starter-templates/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:196;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"Starter Templates – Restore Customizer Backup\";s:3:\"url\";s:51:\"https://wpastra.com/docs/restore-customizer-backup/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:197;O:8:\"stdClass\":3:{s:5:\"title\";s:34:\"How to Update Your Payment Method?\";s:3:\"url\";s:47:\"https://wpastra.com/docs/update-payment-method/\";s:8:\"category\";a:0:{}}i:198;O:8:\"stdClass\":3:{s:5:\"title\";s:49:\"How to Setup Custom Adobe Fonts (Typekit) Plugin?\";s:3:\"url\";s:65:\"https://wpastra.com/docs/setup-custom-adobe-fonts-typekit-plugin/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:199;O:8:\"stdClass\":3:{s:5:\"title\";s:56:\"Can I Import Starter Templates Site on Existing Website?\";s:3:\"url\";s:62:\"https://wpastra.com/docs/import-templates-on-existing-website/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:200;O:8:\"stdClass\":3:{s:5:\"title\";s:62:\"Premium Starter Templates – Install and Activate License\";s:3:\"url\";s:59:\"https://wpastra.com/docs/install-premium-starter-templates/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:201;O:8:\"stdClass\":3:{s:5:\"title\";s:43:\"Not Valid License – Starter Templates\";s:3:\"url\";s:43:\"https://wpastra.com/docs/not-valid-license/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:202;O:8:\"stdClass\":3:{s:5:\"title\";s:50:\"Starter Templates – Requires plugins missing\";s:3:\"url\";s:52:\"https://wpastra.com/docs/plugin-installation-failed/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:203;O:8:\"stdClass\":3:{s:5:\"title\";s:55:\"Filter to Remove Link From Featured Images on Blog Page\";s:3:\"url\";s:65:\"https://wpastra.com/docs/remove-featured-image-link-on-blog-page/\";s:8:\"category\";a:1:{i:0;s:12:\"blog-filters\";}}i:204;O:8:\"stdClass\":3:{s:5:\"title\";s:58:\"Set Parallax Effect on Responsive Devices with Page Header\";s:3:\"url\";s:46:\"https://wpastra.com/docs/parallax-page-header/\";s:8:\"category\";a:1:{i:0;s:12:\"page-headers\";}}i:205;O:8:\"stdClass\":3:{s:5:\"title\";s:50:\"Starter Templates – Free Images from Pixabay\";s:3:\"url\";s:58:\"https://wpastra.com/docs/starter-templates-pixabay-images/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:206;O:8:\"stdClass\":3:{s:5:\"title\";s:41:\"Starter Templates – Elementor Popup\";s:3:\"url\";s:59:\"https://wpastra.com/docs/starter-templates-elementor-popup/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:207;O:8:\"stdClass\":3:{s:5:\"title\";s:49:\"Update Required Plugins – Starter Templates\";s:3:\"url\";s:49:\"https://wpastra.com/docs/update-required-plugins/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:208;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"XMLReader Support Missing – Starter Templates\";s:3:\"url\";s:43:\"https://wpastra.com/docs/xmlreader-missing/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:209;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"Disable Debug Mode – Starter Templates\";s:3:\"url\";s:44:\"https://wpastra.com/docs/disable-debug-mode/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:210;O:8:\"stdClass\":3:{s:5:\"title\";s:59:\"Required File Permissions Missing – Starter Templates\";s:3:\"url\";s:51:\"https://wpastra.com/docs/required-file-permissions/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:211;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"cURL Support Missing – Starter Templates\";s:3:\"url\";s:46:\"https://wpastra.com/docs/curl-support-missing/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:212;O:8:\"stdClass\":3:{s:5:\"title\";s:35:\"Starter Templates with Other Themes\";s:3:\"url\";s:61:\"https://wpastra.com/docs/starter-templates-with-other-themes/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:213;O:8:\"stdClass\":3:{s:5:\"title\";s:53:\"How to Import A Complete Site With Starter Templates?\";s:3:\"url\";s:57:\"https://wpastra.com/docs/starter-templates-complete-site/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:214;O:8:\"stdClass\":3:{s:5:\"title\";s:37:\"Starter Templates — Basics and FAQs\";s:3:\"url\";s:55:\"https://wpastra.com/docs/starter-templates-basics-faqs/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:215;O:8:\"stdClass\":3:{s:5:\"title\";s:49:\"How to Import Single Page With Starter Templates?\";s:3:\"url\";s:48:\"https://wpastra.com/docs/import-single-template/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:216;O:8:\"stdClass\":3:{s:5:\"title\";s:59:\"New Header Button Options in Astra theme (Old Astra Header)\";s:3:\"url\";s:59:\"https://wpastra.com/docs/new-button-options-in-astra-theme/\";s:8:\"category\";a:1:{i:0;s:24:\"header-footer-before-3-0\";}}i:217;O:8:\"stdClass\":3:{s:5:\"title\";s:53:\"How to Enable Astra Comment Box on Custom Post Types?\";s:3:\"url\";s:57:\"https://wpastra.com/docs/enable-astra-comment-box-on-cpt/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:218;O:8:\"stdClass\":3:{s:5:\"title\";s:28:\"Astra 2.2 for Existing Users\";s:3:\"url\";s:54:\"https://wpastra.com/docs/astra-2-2-for-existing-users/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:219;O:8:\"stdClass\":3:{s:5:\"title\";s:50:\"How to Remove Featured Image Link on Archive Page?\";s:3:\"url\";s:68:\"https://wpastra.com/docs/remove-featured-image-link-on-archive-page/\";s:8:\"category\";a:2:{i:0;s:7:\"general\";i:1;s:12:\"blog-filters\";}}i:220;O:8:\"stdClass\":3:{s:5:\"title\";s:47:\"Display Settings of Custom Layouts in Astra Pro\";s:3:\"url\";s:48:\"https://wpastra.com/docs/display-rules-in-astra/\";s:8:\"category\";a:1:{i:0;s:21:\"custom-layouts-module\";}}i:221;O:8:\"stdClass\":3:{s:5:\"title\";s:53:\"Get SkillJet Access – Brainstorm Force Customer\";s:3:\"url\";s:48:\"https://wpastra.com/docs/unlock-skilljet-access/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:222;O:8:\"stdClass\":3:{s:5:\"title\";s:53:\"How to Disable Product Quantity (Plus-Minus) Buttons?\";s:3:\"url\";s:52:\"https://wpastra.com/docs/disable-plus-minus-buttons/\";s:8:\"category\";a:1:{i:0;s:19:\"woocommerce-filters\";}}i:223;O:8:\"stdClass\":3:{s:5:\"title\";s:52:\"Change Placeholder for Search Box (Old Astra Header)\";s:3:\"url\";s:51:\"https://wpastra.com/docs/change-search-placeholder/\";s:8:\"category\";a:1:{i:0;s:27:\"astra-header-footer-filters\";}}i:224;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"How to Disable Schema Markup Added by Astra?\";s:3:\"url\";s:47:\"https://wpastra.com/docs/disable-schema-markup/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:225;O:8:\"stdClass\":3:{s:5:\"title\";s:50:\"Change the String “Search Results For”\";s:3:\"url\";s:46:\"https://wpastra.com/docs/change-search-string/\";s:8:\"category\";a:1:{i:0;s:27:\"astra-header-footer-filters\";}}i:226;O:8:\"stdClass\":3:{s:5:\"title\";s:37:\"Restrict Search Results to Posts Only\";s:3:\"url\";s:54:\"https://wpastra.com/docs/restrict-search-results-post/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:227;O:8:\"stdClass\":3:{s:5:\"title\";s:32:\"How to Remove Page Header Title?\";s:3:\"url\";s:50:\"https://wpastra.com/docs/remove-page-header-title/\";s:8:\"category\";a:1:{i:0;s:12:\"page-headers\";}}i:228;O:8:\"stdClass\":3:{s:5:\"title\";s:45:\"Naming Convention for Astra 2.1.0 CSS File(s)\";s:3:\"url\";s:53:\"https://wpastra.com/docs/naming-convention-astra-2-1/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:229;O:8:\"stdClass\":3:{s:5:\"title\";s:43:\"How to Get Started with CSS File Generation\";s:3:\"url\";s:52:\"https://wpastra.com/docs/enable-css-file-generation/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:230;O:8:\"stdClass\":3:{s:5:\"title\";s:24:\"Browser Support by Astra\";s:3:\"url\";s:50:\"https://wpastra.com/docs/browser-support-by-astra/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:231;O:8:\"stdClass\":3:{s:5:\"title\";s:33:\"Structuring Shop WooCommerce Page\";s:3:\"url\";s:44:\"https://wpastra.com/docs/shop-woocommerce-2/\";s:8:\"category\";a:1:{i:0;s:3:\"woo\";}}i:232;O:8:\"stdClass\":3:{s:5:\"title\";s:66:\"How to Deal with Update Issues in Astra Theme and Astra Pro Addon?\";s:3:\"url\";s:59:\"https://wpastra.com/docs/overcoming-update-issues-in-astra/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:233;O:8:\"stdClass\":3:{s:5:\"title\";s:31:\"How to Manage License on Store?\";s:3:\"url\";s:56:\"https://wpastra.com/docs/how-to-manage-license-on-store/\";s:8:\"category\";a:1:{i:0;s:17:\"account-and-store\";}}i:234;O:8:\"stdClass\":3:{s:5:\"title\";s:35:\"How to Update Astra Theme Manually?\";s:3:\"url\";s:47:\"https://wpastra.com/docs/update-theme-manually/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:235;O:8:\"stdClass\":3:{s:5:\"title\";s:55:\"How to Change the Heading Tag for the Page/Post Titles?\";s:3:\"url\";s:59:\"https://wpastra.com/docs/change-heading-tag-for-post-title/\";s:8:\"category\";a:1:{i:0;s:27:\"astra-header-footer-filters\";}}i:236;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"Astra Compatibility with LearnDash Version 3.0\";s:3:\"url\";s:64:\"https://wpastra.com/docs/astra-compatibility-with-learndash-3-0/\";s:8:\"category\";a:2:{i:0;s:27:\"learndash-astra-pro-modules\";i:1;s:9:\"learndash\";}}i:237;O:8:\"stdClass\":3:{s:5:\"title\";s:34:\"Modify font-display Property Value\";s:3:\"url\";s:60:\"https://wpastra.com/docs/modify-font-display-property-value/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:238;O:8:\"stdClass\":3:{s:5:\"title\";s:50:\"How to Change HTML tag for Site Title and Tagline?\";s:3:\"url\";s:60:\"https://wpastra.com/docs/change-site-title-tagline-html-tag/\";s:8:\"category\";a:1:{i:0;s:27:\"astra-header-footer-filters\";}}i:239;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"Why font-display property is added to Astra?\";s:3:\"url\";s:56:\"https://wpastra.com/docs/font-display-property-in-astra/\";s:8:\"category\";a:0:{}}i:240;O:8:\"stdClass\":3:{s:5:\"title\";s:49:\"Disable All Meta Settings of Page/Post by Default\";s:3:\"url\";s:75:\"https://wpastra.com/docs/disable-all-meta-settings-of-page-post-by-default/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:241;O:8:\"stdClass\":3:{s:5:\"title\";s:36:\"How to Remove Inline CSS from Astra?\";s:3:\"url\";s:54:\"https://wpastra.com/docs/remove-inline-css-from-astra/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:242;O:8:\"stdClass\":3:{s:5:\"title\";s:35:\"How to Add RTL CSS via Child Theme?\";s:3:\"url\";s:49:\"https://wpastra.com/docs/rtl-css-via-child-theme/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:243;O:8:\"stdClass\":3:{s:5:\"title\";s:66:\"How to Change Previous and Next Link Text from a Single Blog Post?\";s:3:\"url\";s:67:\"https://wpastra.com/docs/replace-navigation-strings-on-single-post/\";s:8:\"category\";a:1:{i:0;s:12:\"blog-filters\";}}i:244;O:8:\"stdClass\":3:{s:5:\"title\";s:75:\"Add Title attribute to Header Background Image as a Substitute for Alt Text\";s:3:\"url\";s:68:\"https://wpastra.com/docs/title-attribute-in-header-background-image/\";s:8:\"category\";a:1:{i:0;s:27:\"astra-header-footer-filters\";}}i:245;O:8:\"stdClass\":3:{s:5:\"title\";s:52:\"How to Switch From Existing Breadcrumb to New Trail?\";s:3:\"url\";s:64:\"https://wpastra.com/docs/filter-to-switch-bread-from-old-to-new/\";s:8:\"category\";a:1:{i:0;s:10:\"breadcrumb\";}}i:246;O:8:\"stdClass\":3:{s:5:\"title\";s:74:\"How to Display a Breadcrumb Anywhere within a Page or Post with Shortcode?\";s:3:\"url\";s:59:\"https://wpastra.com/docs/display-breadcrumb-with-shortcode/\";s:8:\"category\";a:1:{i:0;s:10:\"breadcrumb\";}}i:247;O:8:\"stdClass\":3:{s:5:\"title\";s:54:\"How to Add Breadcrumbs in WordPress Website with Astra\";s:3:\"url\";s:52:\"https://wpastra.com/docs/add-breadcrumbs-with-astra/\";s:8:\"category\";a:1:{i:0;s:10:\"breadcrumb\";}}i:248;O:8:\"stdClass\":3:{s:5:\"title\";s:42:\"Disable Astra’s Native AMP Functionality\";s:3:\"url\";s:51:\"https://wpastra.com/docs/disable-astra-amp-support/\";s:8:\"category\";a:2:{i:0;s:18:\"native-amp-support\";i:1;s:23:\"astra-theme-pro-filters\";}}i:249;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"Astra Options that won’t work with AMP\";s:3:\"url\";s:63:\"https://wpastra.com/docs/astra-options-that-wont-work-with-amp/\";s:8:\"category\";a:2:{i:0;s:18:\"native-amp-support\";i:1;s:7:\"general\";}}i:250;O:8:\"stdClass\":3:{s:5:\"title\";s:20:\"Configure AMP Plugin\";s:3:\"url\";s:46:\"https://wpastra.com/docs/configure-amp-plugin/\";s:8:\"category\";a:2:{i:0;s:18:\"native-amp-support\";i:1;s:7:\"general\";}}i:251;O:8:\"stdClass\":3:{s:5:\"title\";s:59:\"How to Activate the License for Astra Premium Sites Plugin?\";s:3:\"url\";s:73:\"https://wpastra.com/docs/activate-license-for-astra-premium-sites-plugin/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:252;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"White Label Constants to Change Strings Permanently\";s:3:\"url\";s:77:\"https://wpastra.com/docs/white-label-constants-to-change-strings-permanently/\";s:8:\"category\";a:1:{i:0;s:11:\"white-label\";}}i:253;O:8:\"stdClass\":3:{s:5:\"title\";s:30:\"Manually Install Astra via FTP\";s:3:\"url\";s:56:\"https://wpastra.com/docs/manually-install-astra-via-ftp/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:254;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"Change Sidebar Widget Title Heading Tag\";s:3:\"url\";s:65:\"https://wpastra.com/docs/change-sidebar-widget-title-heading-tag/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:255;O:8:\"stdClass\":3:{s:5:\"title\";s:48:\"How to Change the Direction for Submenu Opening?\";s:3:\"url\";s:66:\"https://wpastra.com/docs/change-the-direction-for-submenu-opening/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:256;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"Display Products from Same Category with Navigation\";s:3:\"url\";s:78:\"https://wpastra.com/docs/products-from-same-directed-category-with-navigation/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:257;O:8:\"stdClass\":3:{s:5:\"title\";s:27:\"Native AMP Support in Astra\";s:3:\"url\";s:50:\"https://wpastra.com/docs/astra-native-amp-support/\";s:8:\"category\";a:2:{i:0;s:18:\"native-amp-support\";i:1;s:7:\"general\";}}i:258;O:8:\"stdClass\":3:{s:5:\"title\";s:52:\"How to Disable the White Label Settings Permanently?\";s:3:\"url\";s:77:\"https://wpastra.com/docs/how-to-disable-the-white-label-settings-permanently/\";s:8:\"category\";a:2:{i:0;s:11:\"white-label\";i:1;s:7:\"general\";}}i:259;O:8:\"stdClass\":3:{s:5:\"title\";s:73:\"Troubleshooting Steps ( with Health Check & Troubleshooting plugin )\";s:3:\"url\";s:47:\"https://wpastra.com/docs/troubleshooting-steps/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:260;O:8:\"stdClass\":3:{s:5:\"title\";s:31:\"How to Add Icons to Menu Items?\";s:3:\"url\";s:56:\"https://wpastra.com/docs/how-to-add-icons-to-menu-items/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:261;O:8:\"stdClass\":3:{s:5:\"title\";s:67:\"How Translations can be Manually Exported and Uploaded to the Site?\";s:3:\"url\";s:54:\"https://wpastra.com/docs/manually-upload-translations/\";s:8:\"category\";a:1:{i:0;s:15:\"translate-astra\";}}i:262;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"How to Add Button as Last Item in Menu?\";s:3:\"url\";s:57:\"https://wpastra.com/docs/add-button-as-last-item-in-menu/\";s:8:\"category\";a:2:{i:0;s:7:\"general\";i:1;s:24:\"header-footer-before-3-0\";}}i:263;O:8:\"stdClass\":3:{s:5:\"title\";s:33:\"Transparent Header in Astra Theme\";s:3:\"url\";s:50:\"https://wpastra.com/docs/astra-transparent-header/\";s:8:\"category\";a:1:{i:0;s:24:\"header-footer-before-3-0\";}}i:264;O:8:\"stdClass\":3:{s:5:\"title\";s:77:\"‘The preview could not be loaded’ Pop Up with Astra and Elementor\";s:3:\"url\";s:64:\"https://wpastra.com/docs/the-preview-could-not-be-loaded-pop-up/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:265;O:8:\"stdClass\":3:{s:5:\"title\";s:36:\"Change Woocommerce Out of Stock Text\";s:3:\"url\";s:62:\"https://wpastra.com/docs/change-woocommerce-out-of-stock-text/\";s:8:\"category\";a:1:{i:0;s:19:\"woocommerce-filters\";}}i:266;O:8:\"stdClass\":3:{s:5:\"title\";s:50:\"Does White Label Feature Make Changes in the Code?\";s:3:\"url\";s:97:\"https://wpastra.com/docs/does-white-label-feature-in-astra-pro-make-changes-in-the-frontend-code/\";s:8:\"category\";a:1:{i:0;s:11:\"white-label\";}}i:267;O:8:\"stdClass\":3:{s:5:\"title\";s:26:\"Typography options for EDD\";s:3:\"url\";s:52:\"https://wpastra.com/docs/typography-options-for-edd/\";s:8:\"category\";a:1:{i:0;s:29:\"easy-digital-downloads-module\";}}i:268;O:8:\"stdClass\":3:{s:5:\"title\";s:40:\"Colors & Background options for EDD\";s:3:\"url\";s:59:\"https://wpastra.com/docs/colors-background-options-for-edd/\";s:8:\"category\";a:1:{i:0;s:29:\"easy-digital-downloads-module\";}}i:269;O:8:\"stdClass\":3:{s:5:\"title\";s:40:\"Checkout Page – EDD Module Options\";s:3:\"url\";s:58:\"https://wpastra.com/docs/checkout-page-edd-module-options/\";s:8:\"category\";a:1:{i:0;s:29:\"easy-digital-downloads-module\";}}i:270;O:8:\"stdClass\":3:{s:5:\"title\";s:41:\"Single Product – EDD Module Options\";s:3:\"url\";s:59:\"https://wpastra.com/docs/single-product-edd-module-options/\";s:8:\"category\";a:1:{i:0;s:29:\"easy-digital-downloads-module\";}}i:271;O:8:\"stdClass\":3:{s:5:\"title\";s:42:\"Product Archive – EDD Module Options\";s:3:\"url\";s:60:\"https://wpastra.com/docs/product-archive-edd-module-options/\";s:8:\"category\";a:1:{i:0;s:29:\"easy-digital-downloads-module\";}}i:272;O:8:\"stdClass\":3:{s:5:\"title\";s:34:\"General – EDD Module Options\";s:3:\"url\";s:52:\"https://wpastra.com/docs/general-edd-module-options/\";s:8:\"category\";a:1:{i:0;s:29:\"easy-digital-downloads-module\";}}i:273;O:8:\"stdClass\":3:{s:5:\"title\";s:50:\"EDD – Easy Digital Downloads Module Overview\";s:3:\"url\";s:64:\"https://wpastra.com/docs/easy-digital-downloads-module-overview/\";s:8:\"category\";a:1:{i:0;s:29:\"easy-digital-downloads-module\";}}i:274;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"EDD Integration Overview in Free Astra Theme\";s:3:\"url\";s:62:\"https://wpastra.com/docs/edd-integration-overview-astra-theme/\";s:8:\"category\";a:1:{i:0;s:22:\"easy-digital-downloads\";}}i:275;O:8:\"stdClass\":3:{s:5:\"title\";s:68:\"How to Display a Mini Cart Anywhere Using Shortcode? (Astra and EDD)\";s:3:\"url\";s:49:\"https://wpastra.com/docs/edd-mini-cart-shortcode/\";s:8:\"category\";a:2:{i:0;s:29:\"easy-digital-downloads-module\";i:1;s:7:\"general\";}}i:276;O:8:\"stdClass\":3:{s:5:\"title\";s:49:\"How to Add EDD Cart in Header? (Old Astra Header)\";s:3:\"url\";s:44:\"https://wpastra.com/docs/edd-cart-in-header/\";s:8:\"category\";a:3:{i:0;s:7:\"general\";i:1;s:22:\"easy-digital-downloads\";i:2;s:29:\"easy-digital-downloads-module\";}}i:277;O:8:\"stdClass\":3:{s:5:\"title\";s:72:\"How to Add Download Archive Pages to the Menu When Using Astra with EDD?\";s:3:\"url\";s:59:\"https://wpastra.com/docs/add-download-archive-page-to-menu/\";s:8:\"category\";a:3:{i:0;s:7:\"general\";i:1;s:22:\"easy-digital-downloads\";i:2;s:29:\"easy-digital-downloads-module\";}}i:278;O:8:\"stdClass\":3:{s:5:\"title\";s:35:\"How to Disable EDD Inbuilt Styling?\";s:3:\"url\";s:53:\"https://wpastra.com/docs/disable-edd-inbuilt-styling/\";s:8:\"category\";a:3:{i:0;s:7:\"general\";i:1;s:22:\"easy-digital-downloads\";i:2;s:29:\"easy-digital-downloads-module\";}}i:279;O:8:\"stdClass\":3:{s:5:\"title\";s:77:\"How to Apply For Brainstorm Force Affiliate Program? (Become Astra Affiliate)\";s:3:\"url\";s:48:\"https://wpastra.com/docs/become-astra-affiliate/\";s:8:\"category\";a:1:{i:0;s:17:\"account-and-store\";}}i:280;O:8:\"stdClass\":3:{s:5:\"title\";s:33:\"How to Add Custom Fonts in Astra?\";s:3:\"url\";s:58:\"https://wpastra.com/docs/how-to-add-custom-fonts-in-astra/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:281;O:8:\"stdClass\":3:{s:5:\"title\";s:28:\"How to Upgrade to Astra Pro?\";s:3:\"url\";s:46:\"https://wpastra.com/docs/upgrade-to-astra-pro/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:282;O:8:\"stdClass\":3:{s:5:\"title\";s:32:\"Typography Improvement for Astra\";s:3:\"url\";s:58:\"https://wpastra.com/docs/typography-improvement-for-astra/\";s:8:\"category\";a:1:{i:0;s:6:\"global\";}}i:283;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"How Does Astra Work with the Gutenberg Editor?\";s:3:\"url\";s:53:\"https://wpastra.com/docs/astra-with-gutenberg-editor/\";s:8:\"category\";a:0:{}}i:284;O:8:\"stdClass\":3:{s:5:\"title\";s:63:\"How to Create Different Headers on Different Pages Using Astra?\";s:3:\"url\";s:62:\"https://wpastra.com/docs/different-headers-on-different-pages/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:285;O:8:\"stdClass\":3:{s:5:\"title\";s:25:\"Dim Content on Menu Hover\";s:3:\"url\";s:51:\"https://wpastra.com/docs/dim-content-on-menu-hover/\";s:8:\"category\";a:1:{i:0;s:10:\"custom-css\";}}i:286;O:8:\"stdClass\":3:{s:5:\"title\";s:42:\"Which Zip Should I Install from the Store?\";s:3:\"url\";s:46:\"https://wpastra.com/docs/which-zip-to-install/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:287;O:8:\"stdClass\":3:{s:5:\"title\";s:37:\"How to Set Animation To The Sub Menu?\";s:3:\"url\";s:62:\"https://wpastra.com/docs/how-to-set-animation-to-the-sub-menu/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:288;O:8:\"stdClass\":3:{s:5:\"title\";s:37:\"Display SubMenu Just Below the Header\";s:3:\"url\";s:59:\"https://wpastra.com/docs/display-sub-menu-below-the-header/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:289;O:8:\"stdClass\":3:{s:5:\"title\";s:77:\"How to Duplicate ‘Custom Layouts’ and ‘Page Headers’?\";s:3:\"url\";s:67:\"https://wpastra.com/docs/duplicate-custom-layouts-and-page-headers/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:290;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"How to Set up a WordPress Staging Site?\";s:3:\"url\";s:54:\"https://wpastra.com/docs/how-to-set-up-a-staging-site/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:291;O:8:\"stdClass\":3:{s:5:\"title\";s:30:\"How to Disable Primary Header?\";s:3:\"url\";s:55:\"https://wpastra.com/docs/how-to-disable-primary-header/\";s:8:\"category\";a:1:{i:0;s:27:\"astra-header-footer-filters\";}}i:292;O:8:\"stdClass\":3:{s:5:\"title\";s:36:\"Nav Menu Module [Create a Mega Menu]\";s:3:\"url\";s:40:\"https://wpastra.com/docs/nav-menu-addon/\";s:8:\"category\";a:1:{i:0;s:8:\"nav-menu\";}}i:293;O:8:\"stdClass\":3:{s:5:\"title\";s:42:\"How to Switch to Astra from Another Theme?\";s:3:\"url\";s:48:\"https://wpastra.com/docs/how-to-switch-to-astra/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:294;O:8:\"stdClass\":3:{s:5:\"title\";s:35:\"Google Fonts Not Loading with Astra\";s:3:\"url\";s:61:\"https://wpastra.com/docs/google-fonts-not-loading-with-astra/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:295;O:8:\"stdClass\":3:{s:5:\"title\";s:74:\"Adding Custom Sidebar to the Theme with Lightweight Sidebar Manager plugin\";s:3:\"url\";s:47:\"https://wpastra.com/docs/adding-custom-sidebar/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:296;O:8:\"stdClass\":3:{s:5:\"title\";s:32:\"Automatic Beta Updates for Astra\";s:3:\"url\";s:58:\"https://wpastra.com/docs/automatic-beta-updates-for-astra/\";s:8:\"category\";a:2:{i:0;s:7:\"general\";i:1;s:24:\"installation-and-updates\";}}i:297;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"How to Add Font Awesome Icons in Astra?\";s:3:\"url\";s:57:\"https://wpastra.com/docs/add-font-awesome-icons-in-astra/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:298;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"Color for Anchor Tag Inside Heading Tag\";s:3:\"url\";s:55:\"https://wpastra.com/docs/anchor-tag-inside-heading-tag/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:299;O:8:\"stdClass\":3:{s:5:\"title\";s:43:\"Search Shortcode to Add Search Box in Astra\";s:3:\"url\";s:55:\"https://wpastra.com/docs/search-box-shortcode-in-astra/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:300;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"LifterLMS Shortcode to Add Profile Link\";s:3:\"url\";s:62:\"https://wpastra.com/docs/lifterlms-shortcode-for-profile-link/\";s:8:\"category\";a:2:{i:0;s:7:\"general\";i:1;s:19:\"lifterlms-astra-pro\";}}i:301;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"LearnDash Shortcode to Add Profile Link\";s:3:\"url\";s:62:\"https://wpastra.com/docs/learndash-shortcode-for-profile-link/\";s:8:\"category\";a:2:{i:0;s:7:\"general\";i:1;s:27:\"learndash-astra-pro-modules\";}}i:302;O:8:\"stdClass\":3:{s:5:\"title\";s:71:\"How to Download Older Version of Astra Theme or Astra Pro Addon plugin?\";s:3:\"url\";s:57:\"https://wpastra.com/docs/download-older-version-of-astra/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:303;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"How to Add Google Tag Manager Code to Astra?\";s:3:\"url\";s:69:\"https://wpastra.com/docs/how-to-add-google-tag-manager-code-to-astra/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:304;O:8:\"stdClass\":3:{s:5:\"title\";s:56:\"Mobile Header with Above/Below Header (Old Astra Header)\";s:3:\"url\";s:63:\"https://wpastra.com/docs/mobile-header-with-above-below-header/\";s:8:\"category\";a:1:{i:0;s:13:\"mobile-header\";}}i:305;O:8:\"stdClass\":3:{s:5:\"title\";s:56:\"How to Stick Footer to Bottom when Page Content is Less?\";s:3:\"url\";s:81:\"https://wpastra.com/docs/how-to-stick-footer-to-bottom-when-page-content-is-less/\";s:8:\"category\";a:2:{i:0;s:7:\"general\";i:1;s:21:\"footer-widgets-module\";}}i:306;O:8:\"stdClass\":3:{s:5:\"title\";s:35:\"Quick View for WooCommerce Products\";s:3:\"url\";s:61:\"https://wpastra.com/docs/quick-view-for-woocommerce-products/\";s:8:\"category\";a:1:{i:0;s:3:\"woo\";}}i:307;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"Off Canvas Sidebar for WooCommerce Shop Page\";s:3:\"url\";s:70:\"https://wpastra.com/docs/off-canvas-sidebar-for-woocommerce-shop-page/\";s:8:\"category\";a:1:{i:0;s:3:\"woo\";}}i:308;O:8:\"stdClass\":3:{s:5:\"title\";s:74:\"Colors & Background Options for Transparent Header (Old Astra Header)\";s:3:\"url\";s:74:\"https://wpastra.com/docs/colors-background-options-for-transparent-header/\";s:8:\"category\";a:1:{i:0;s:24:\"header-footer-before-3-0\";}}i:309;O:8:\"stdClass\":3:{s:5:\"title\";s:74:\"Colors/Background and Typography options for Footer Bar (Old Astra Footer)\";s:3:\"url\";s:81:\"https://wpastra.com/docs/colors-background-and-typography-options-for-footer-bar/\";s:8:\"category\";a:1:{i:0;s:24:\"header-footer-before-3-0\";}}i:310;O:8:\"stdClass\":3:{s:5:\"title\";s:62:\"How to Add WooCommerce Mini Cart in Header? (Old Astra Header)\";s:3:\"url\";s:61:\"https://wpastra.com/docs/add-woocommerce-mini-cart-to-header/\";s:8:\"category\";a:3:{i:0;s:7:\"general\";i:1;s:16:\"woocommerce-free\";i:2;s:3:\"woo\";}}i:311;O:8:\"stdClass\":3:{s:5:\"title\";s:41:\"How to Translate Astra Strings with WPML?\";s:3:\"url\";s:53:\"https://wpastra.com/docs/translate-astra-string-wpml/\";s:8:\"category\";a:1:{i:0;s:15:\"translate-astra\";}}i:312;O:8:\"stdClass\":3:{s:5:\"title\";s:61:\"Know More about Astra Beta Versions? How to Download and Use?\";s:3:\"url\";s:45:\"https://wpastra.com/docs/about-beta-versions/\";s:8:\"category\";a:2:{i:0;s:7:\"general\";i:1;s:24:\"installation-and-updates\";}}i:313;O:8:\"stdClass\":3:{s:5:\"title\";s:40:\"How to Add Social Media Icons to Header?\";s:3:\"url\";s:65:\"https://wpastra.com/docs/how-to-add-social-media-icons-to-header/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:314;O:8:\"stdClass\":3:{s:5:\"title\";s:42:\"How to Translate Custom Layouts with WPML?\";s:3:\"url\";s:67:\"https://wpastra.com/docs/how-to-translate-custom-layouts-with-wpml/\";s:8:\"category\";a:2:{i:0;s:15:\"translate-astra\";i:1;s:21:\"custom-layouts-module\";}}i:315;O:8:\"stdClass\":3:{s:5:\"title\";s:22:\"Why Is My Logo Blurry?\";s:3:\"url\";s:47:\"https://wpastra.com/docs/why-is-my-logo-blurry/\";s:8:\"category\";a:1:{i:0;s:24:\"header-footer-before-3-0\";}}i:316;O:8:\"stdClass\":3:{s:5:\"title\";s:58:\"How to Disable Title on Posts, Pages, or Other Post Types?\";s:3:\"url\";s:52:\"https://wpastra.com/docs/disable-title-on-post-type/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:317;O:8:\"stdClass\":3:{s:5:\"title\";s:59:\"Disable Featured Image on Posts, Pages, or Other Post Types\";s:3:\"url\";s:61:\"https://wpastra.com/docs/disable-featured-image-on-post-type/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:318;O:8:\"stdClass\":3:{s:5:\"title\";s:81:\"How to Display “Last Updated” instead of “Published” Date\";s:3:\"url\";s:62:\"https://wpastra.com/docs/show-last-updated-not-published-date/\";s:8:\"category\";a:3:{i:0;s:8:\"blog-pro\";i:1;s:12:\"blog-filters\";i:2;s:4:\"blog\";}}i:319;O:8:\"stdClass\":3:{s:5:\"title\";s:36:\"How To Reset WordPress Installation?\";s:3:\"url\";s:61:\"https://wpastra.com/docs/how-to-reset-wordpress-installation/\";s:8:\"category\";a:1:{i:0;s:17:\"starter-templates\";}}i:320;O:8:\"stdClass\":3:{s:5:\"title\";s:43:\"Mobile Header with Astra (Old Astra Header)\";s:3:\"url\";s:50:\"https://wpastra.com/docs/mobile-header-with-astra/\";s:8:\"category\";a:1:{i:0;s:13:\"mobile-header\";}}i:321;O:8:\"stdClass\":3:{s:5:\"title\";s:35:\"Disable featured image on all pages\";s:3:\"url\";s:61:\"https://wpastra.com/docs/disable-featured-image-on-all-pages/\";s:8:\"category\";a:0:{}}i:322;O:8:\"stdClass\":3:{s:5:\"title\";s:60:\"Elementor Error: The Content Area Was Not Found in Your Page\";s:3:\"url\";s:79:\"https://wpastra.com/docs/elementor-the-content-area-was-not-found-in-your-page/\";s:8:\"category\";a:0:{}}i:323;O:8:\"stdClass\":3:{s:5:\"title\";s:68:\"Sidebar / Container Options in Customizer for Learndash Not Working?\";s:3:\"url\";s:91:\"https://wpastra.com/docs/sidebar-container-options-in-customizer-for-learndash-not-working/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:324;O:8:\"stdClass\":3:{s:5:\"title\";s:38:\"About Icons Font That Comes with Astra\";s:3:\"url\";s:57:\"https://wpastra.com/docs/default-font-icon-list-in-astra/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:325;O:8:\"stdClass\":3:{s:5:\"title\";s:29:\"How to Add Background Images?\";s:3:\"url\";s:82:\"https://wpastra.com/docs/how-to-add-background-images-to-various-sections-on-site/\";s:8:\"category\";a:3:{i:0;s:21:\"colors-background-pro\";i:1;s:24:\"header-footer-before-3-0\";i:2;s:7:\"sidebar\";}}i:326;O:8:\"stdClass\":3:{s:5:\"title\";s:56:\"Default Structured Data and Schema Markup in Astra Theme\";s:3:\"url\";s:68:\"https://wpastra.com/docs/structured-data-and-schema-markup-in-astra/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:327;O:8:\"stdClass\":3:{s:5:\"title\";s:20:\"Below Header Section\";s:3:\"url\";s:46:\"https://wpastra.com/docs/below-header-section/\";s:8:\"category\";a:1:{i:0;s:15:\"header-sections\";}}i:328;O:8:\"stdClass\":3:{s:5:\"title\";s:20:\"Above Header Section\";s:3:\"url\";s:46:\"https://wpastra.com/docs/above-header-section/\";s:8:\"category\";a:1:{i:0;s:15:\"header-sections\";}}i:329;O:8:\"stdClass\":3:{s:5:\"title\";s:27:\"How to Install Astra Theme?\";s:3:\"url\";s:52:\"https://wpastra.com/docs/how-to-install-astra-theme/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:330;O:8:\"stdClass\":3:{s:5:\"title\";s:50:\"Not Receiving Update Notification for Astra Theme?\";s:3:\"url\";s:75:\"https://wpastra.com/docs/not-receiving-update-notification-for-astra-theme/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:331;O:8:\"stdClass\":3:{s:5:\"title\";s:62:\"Do Not See License Activation Form for Astra Pro Addon Plugin?\";s:3:\"url\";s:60:\"https://wpastra.com/docs/do-not-see-license-activation-form/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:332;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"How to Refresh / Flush WordPress Permalinks?\";s:3:\"url\";s:61:\"https://wpastra.com/docs/how-to-refresh-wordpress-permalinks/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:333;O:8:\"stdClass\":3:{s:5:\"title\";s:71:\"How to Merge Above/Below Header Menu with a Primary Menu in Responsive?\";s:3:\"url\";s:96:\"https://wpastra.com/docs/how-to-merge-above-below-header-menu-with-a-primary-menu-in-responsive/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:334;O:8:\"stdClass\":3:{s:5:\"title\";s:50:\"How to add Google Analytics code with Astra theme?\";s:3:\"url\";s:75:\"https://wpastra.com/docs/how-to-add-google-analytics-code-with-astra-theme/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:335;O:8:\"stdClass\":3:{s:5:\"title\";s:104:\"Getting error – The package could not be installed. The theme is missing the style.css stylesheet?\";s:3:\"url\";s:120:\"https://wpastra.com/docs/getting-error-the-package-could-not-be-installed-the-theme-is-missing-the-style-css-stylesheet/\";s:8:\"category\";a:2:{i:0;s:24:\"installation-and-updates\";i:1;s:15:\"troubleshooting\";}}i:336;O:8:\"stdClass\":3:{s:5:\"title\";s:34:\"Typography Options for WooCommerce\";s:3:\"url\";s:60:\"https://wpastra.com/docs/typography-options-for-woocommerce/\";s:8:\"category\";a:1:{i:0;s:3:\"woo\";}}i:337;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"Getting Started with Astra Pro Addon Plugin!\";s:3:\"url\";s:56:\"https://wpastra.com/docs/getting-started-with-astra-pro/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:338;O:8:\"stdClass\":3:{s:5:\"title\";s:48:\"Colors & Background options for WooCommerce\";s:3:\"url\";s:67:\"https://wpastra.com/docs/colors-background-options-for-woocommerce/\";s:8:\"category\";a:1:{i:0;s:3:\"woo\";}}i:339;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"How to Activate License Key on WordPress Multisite?\";s:3:\"url\";s:76:\"https://wpastra.com/docs/how-to-activate-license-key-on-wordpress-multisite/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:340;O:8:\"stdClass\":3:{s:5:\"title\";s:37:\"How to Edit style.css in Child Theme?\";s:3:\"url\";s:62:\"https://wpastra.com/docs/how-to-edit-style-css-in-child-theme/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:341;O:8:\"stdClass\":3:{s:5:\"title\";s:61:\"How to Display WooCommerce Sidebar on Top for Mobile Devices?\";s:3:\"url\";s:77:\"https://wpastra.com/docs/how-to-display-woocommerce-sidebar-on-top-on-mobile/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:342;O:8:\"stdClass\":3:{s:5:\"title\";s:41:\"How to Set Background Image for the Site?\";s:3:\"url\";s:66:\"https://wpastra.com/docs/how-to-set-background-image-for-the-site/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:343;O:8:\"stdClass\":3:{s:5:\"title\";s:60:\"How to add Google Analytics code with Custom Layouts Module?\";s:3:\"url\";s:85:\"https://wpastra.com/docs/how-to-add-google-analytics-code-with-custom-layouts-module/\";s:8:\"category\";a:0:{}}i:344;O:8:\"stdClass\":3:{s:5:\"title\";s:124:\"Fix for- cURL error 51: SSL: no alternative certificate subject name matches target host name ‘websitedemos.net’\";s:3:\"url\";s:133:\"https://wpastra.com/docs/fix-for-curl-error-51-ssl-no-alternative-certificate-subject-name-matches-target-host-name-websitedemos-net/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:345;O:8:\"stdClass\":3:{s:5:\"title\";s:61:\"How to Remove Previous and Next Link from a Single Blog Post?\";s:3:\"url\";s:84:\"https://wpastra.com/docs/how-to-remove-previous-and-next-link-from-single-blog-post/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:346;O:8:\"stdClass\":3:{s:5:\"title\";s:15:\"Custom 404 Page\";s:3:\"url\";s:41:\"https://wpastra.com/docs/custom-404-page/\";s:8:\"category\";a:1:{i:0;s:21:\"custom-layouts-module\";}}i:347;O:8:\"stdClass\":3:{s:5:\"title\";s:27:\"Custom Layout – Hooks\";s:3:\"url\";s:45:\"https://wpastra.com/docs/custom-layout-hooks/\";s:8:\"category\";a:1:{i:0;s:21:\"custom-layouts-module\";}}i:348;O:8:\"stdClass\":3:{s:5:\"title\";s:13:\"Custom Footer\";s:3:\"url\";s:39:\"https://wpastra.com/docs/custom-footer/\";s:8:\"category\";a:1:{i:0;s:21:\"custom-layouts-module\";}}i:349;O:8:\"stdClass\":3:{s:5:\"title\";s:13:\"Custom Header\";s:3:\"url\";s:39:\"https://wpastra.com/docs/custom-header/\";s:8:\"category\";a:1:{i:0;s:21:\"custom-layouts-module\";}}i:350;O:8:\"stdClass\":3:{s:5:\"title\";s:61:\"Cannot edit Custom Layouts / Custom Layouts having 404 error?\";s:3:\"url\";s:84:\"https://wpastra.com/docs/cannot-edit-custom-layouts-custom-layouts-having-404-error/\";s:8:\"category\";a:1:{i:0;s:21:\"custom-layouts-module\";}}i:351;O:8:\"stdClass\":3:{s:5:\"title\";s:49:\"Astra Options Page – All Settings Explained\";s:3:\"url\";s:54:\"https://wpastra.com/docs/new-welcome-screen-for-astra/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:352;O:8:\"stdClass\":3:{s:5:\"title\";s:25:\"How to White Label Astra?\";s:3:\"url\";s:50:\"https://wpastra.com/docs/how-to-white-label-astra/\";s:8:\"category\";a:1:{i:0;s:11:\"white-label\";}}i:353;O:8:\"stdClass\":3:{s:5:\"title\";s:32:\"How to Install Astra Pro Plugin?\";s:3:\"url\";s:63:\"https://wpastra.com/docs/how-to-install-astra-pro-addon-plugin/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:354;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"Backup Your Website in Less than 10 Minutes!\";s:3:\"url\";s:69:\"https://wpastra.com/docs/backup-your-website-in-less-than-10-minutes/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:355;O:8:\"stdClass\":3:{s:5:\"title\";s:29:\"How to use RGBA color picker?\";s:3:\"url\";s:54:\"https://wpastra.com/docs/how-to-use-rgba-color-picker/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:356;O:8:\"stdClass\":3:{s:5:\"title\";s:47:\"How to fix Fatal Error / White Screen of Death?\";s:3:\"url\";s:66:\"https://wpastra.com/docs/fixing-fatal-error-white-screen-of-death/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:357;O:8:\"stdClass\":3:{s:5:\"title\";s:65:\"Fix for – Parse error: syntax error, unexpected T_FUNCTION\";s:3:\"url\";s:79:\"https://wpastra.com/docs/fixing-parse-error-syntax-error-unexpected-t-function/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:358;O:8:\"stdClass\":3:{s:5:\"title\";s:75:\"How to Disable the Loading of Astra’s Default Font File? (Astra.woff)\";s:3:\"url\";s:77:\"https://wpastra.com/docs/disable-loading-astras-default-font-file-astra-woff/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:359;O:8:\"stdClass\":3:{s:5:\"title\";s:48:\"Overview of LearnDash Integration in Astra Theme\";s:3:\"url\";s:56:\"https://wpastra.com/docs/learndash-integration-overview/\";s:8:\"category\";a:1:{i:0;s:9:\"learndash\";}}i:360;O:8:\"stdClass\":3:{s:5:\"title\";s:34:\"LearnDash Integration in Astra Pro\";s:3:\"url\";s:60:\"https://wpastra.com/docs/learndash-integration-in-astra-pro/\";s:8:\"category\";a:1:{i:0;s:27:\"learndash-astra-pro-modules\";}}i:361;O:8:\"stdClass\":3:{s:5:\"title\";s:25:\"Checkout Page WooCommerce\";s:3:\"url\";s:51:\"https://wpastra.com/docs/checkout-page-woocommerce/\";s:8:\"category\";a:1:{i:0;s:3:\"woo\";}}i:362;O:8:\"stdClass\":3:{s:5:\"title\";s:26:\"Single Product WooCommerce\";s:3:\"url\";s:52:\"https://wpastra.com/docs/single-product-woocommerce/\";s:8:\"category\";a:1:{i:0;s:3:\"woo\";}}i:363;O:8:\"stdClass\":3:{s:5:\"title\";s:84:\"How to Design a Product Catalog Page or Shop Page Using WooCommerce Module in Astra?\";s:3:\"url\";s:42:\"https://wpastra.com/docs/shop-woocommerce/\";s:8:\"category\";a:1:{i:0;s:3:\"woo\";}}i:364;O:8:\"stdClass\":3:{s:5:\"title\";s:27:\"WooCommerce Module Overview\";s:3:\"url\";s:53:\"https://wpastra.com/docs/woocommerce-module-overview/\";s:8:\"category\";a:1:{i:0;s:3:\"woo\";}}i:365;O:8:\"stdClass\":3:{s:5:\"title\";s:19:\"General WooCommerce\";s:3:\"url\";s:45:\"https://wpastra.com/docs/general-woocommerce/\";s:8:\"category\";a:0:{}}i:366;O:8:\"stdClass\":3:{s:5:\"title\";s:17:\"Typography Module\";s:3:\"url\";s:43:\"https://wpastra.com/docs/typography-module/\";s:8:\"category\";a:1:{i:0;s:14:\"typography-pro\";}}i:367;O:8:\"stdClass\":3:{s:5:\"title\";s:37:\"Global Typography – Astra Theme\";s:3:\"url\";s:41:\"https://wpastra.com/docs/typography-free/\";s:8:\"category\";a:1:{i:0;s:6:\"global\";}}i:368;O:8:\"stdClass\":3:{s:5:\"title\";s:31:\"Colors & Background Module\";s:3:\"url\";s:50:\"https://wpastra.com/docs/colors-background-module/\";s:8:\"category\";a:1:{i:0;s:21:\"colors-background-pro\";}}i:369;O:8:\"stdClass\":3:{s:5:\"title\";s:33:\"Global Colors – Astra Theme\";s:3:\"url\";s:43:\"https://wpastra.com/docs/colors-background/\";s:8:\"category\";a:1:{i:0;s:6:\"global\";}}i:370;O:8:\"stdClass\":3:{s:5:\"title\";s:37:\"Astra WooCommerce Mini Cart Shortcode\";s:3:\"url\";s:55:\"https://wpastra.com/docs/shortcode-for-astra-mini-cart/\";s:8:\"category\";a:1:{i:0;s:3:\"woo\";}}i:371;O:8:\"stdClass\":3:{s:5:\"title\";s:34:\"LifterLMS Integration in Astra Pro\";s:3:\"url\";s:46:\"https://wpastra.com/docs/lifterlms-module-pro/\";s:8:\"category\";a:1:{i:0;s:19:\"lifterlms-astra-pro\";}}i:372;O:8:\"stdClass\":3:{s:5:\"title\";s:18:\"LifterLMS Overview\";s:3:\"url\";s:44:\"https://wpastra.com/docs/lifterlms-overview/\";s:8:\"category\";a:1:{i:0;s:9:\"lifterlms\";}}i:373;O:8:\"stdClass\":3:{s:5:\"title\";s:41:\"LifterLMS Integration in Free Astra Theme\";s:3:\"url\";s:40:\"https://wpastra.com/docs/lifterlms-free/\";s:8:\"category\";a:1:{i:0;s:9:\"lifterlms\";}}i:374;O:8:\"stdClass\":3:{s:5:\"title\";s:43:\"How to Manage Sidebars in Free Astra Theme?\";s:3:\"url\";s:38:\"https://wpastra.com/docs/sidebar-free/\";s:8:\"category\";a:1:{i:0;s:7:\"sidebar\";}}i:375;O:8:\"stdClass\":3:{s:5:\"title\";s:25:\"Single post with Blog Pro\";s:3:\"url\";s:46:\"https://wpastra.com/docs/single-post-blog-pro/\";s:8:\"category\";a:1:{i:0;s:8:\"blog-pro\";}}i:376;O:8:\"stdClass\":3:{s:5:\"title\";s:28:\"Blog / Archive with Blog Pro\";s:3:\"url\";s:47:\"https://wpastra.com/docs/blog-archive-blog-pro/\";s:8:\"category\";a:1:{i:0;s:8:\"blog-pro\";}}i:377;O:8:\"stdClass\":3:{s:5:\"title\";s:17:\"Blog Pro Overview\";s:3:\"url\";s:43:\"https://wpastra.com/docs/blog-pro-overview/\";s:8:\"category\";a:1:{i:0;s:8:\"blog-pro\";}}i:378;O:8:\"stdClass\":3:{s:5:\"title\";s:11:\"Single Post\";s:3:\"url\";s:37:\"https://wpastra.com/docs/single-post/\";s:8:\"category\";a:1:{i:0;s:4:\"blog\";}}i:379;O:8:\"stdClass\":3:{s:5:\"title\";s:14:\"Blog / Archive\";s:3:\"url\";s:38:\"https://wpastra.com/docs/blog-archive/\";s:8:\"category\";a:1:{i:0;s:4:\"blog\";}}i:380;O:8:\"stdClass\":3:{s:5:\"title\";s:13:\"Blog Overview\";s:3:\"url\";s:39:\"https://wpastra.com/docs/blog-overview/\";s:8:\"category\";a:1:{i:0;s:4:\"blog\";}}i:381;O:8:\"stdClass\":3:{s:5:\"title\";s:13:\"Scroll To Top\";s:3:\"url\";s:43:\"https://wpastra.com/docs/scroll-to-top-pro/\";s:8:\"category\";a:1:{i:0;s:28:\"astra-theme-walkthrough-docs\";}}i:382;O:8:\"stdClass\":3:{s:5:\"title\";s:23:\"Custom Layouts Overview\";s:3:\"url\";s:44:\"https://wpastra.com/docs/custom-layouts-pro/\";s:8:\"category\";a:1:{i:0;s:21:\"custom-layouts-module\";}}i:383;O:8:\"stdClass\":3:{s:5:\"title\";s:36:\"Footer Widgets Module with Astra Pro\";s:3:\"url\";s:50:\"https://wpastra.com/docs/footer-widgets-astra-pro/\";s:8:\"category\";a:1:{i:0;s:21:\"footer-widgets-module\";}}i:384;O:8:\"stdClass\":3:{s:5:\"title\";s:15:\"Footer Overview\";s:3:\"url\";s:41:\"https://wpastra.com/docs/footer-overview/\";s:8:\"category\";a:1:{i:0;s:24:\"header-footer-before-3-0\";}}i:385;O:8:\"stdClass\":3:{s:5:\"title\";s:10:\"Footer Bar\";s:3:\"url\";s:36:\"https://wpastra.com/docs/footer-bar/\";s:8:\"category\";a:1:{i:0;s:24:\"header-footer-before-3-0\";}}i:386;O:8:\"stdClass\":3:{s:5:\"title\";s:14:\"Footer Widgets\";s:3:\"url\";s:40:\"https://wpastra.com/docs/footer-widgets/\";s:8:\"category\";a:1:{i:0;s:24:\"header-footer-before-3-0\";}}i:387;O:8:\"stdClass\":3:{s:5:\"title\";s:19:\"Astra Meta Settings\";s:3:\"url\";s:44:\"https://wpastra.com/docs/page-meta-settings/\";s:8:\"category\";a:1:{i:0;s:13:\"meta-settings\";}}i:388;O:8:\"stdClass\":3:{s:5:\"title\";s:45:\"How to Manage Spacing in Headers Using Astra?\";s:3:\"url\";s:49:\"https://wpastra.com/docs/header-spacing-controls/\";s:8:\"category\";a:1:{i:0;s:7:\"spacing\";}}i:389;O:8:\"stdClass\":3:{s:5:\"title\";s:24:\"Sidebar Spacing Controls\";s:3:\"url\";s:50:\"https://wpastra.com/docs/sidebar-spacing-controls/\";s:8:\"category\";a:1:{i:0;s:7:\"spacing\";}}i:390;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"How to Manage Spacing on the Blog Page Using Astra?\";s:3:\"url\";s:55:\"https://wpastra.com/docs/blog-archive-spacing-controls/\";s:8:\"category\";a:1:{i:0;s:7:\"spacing\";}}i:391;O:8:\"stdClass\":3:{s:5:\"title\";s:23:\"Footer Spacing Controls\";s:3:\"url\";s:49:\"https://wpastra.com/docs/footer-spacing-controls/\";s:8:\"category\";a:1:{i:0;s:7:\"spacing\";}}i:392;O:8:\"stdClass\":3:{s:5:\"title\";s:21:\"Page Headers Overview\";s:3:\"url\";s:47:\"https://wpastra.com/docs/page-headers-overview/\";s:8:\"category\";a:1:{i:0;s:12:\"page-headers\";}}i:393;O:8:\"stdClass\":3:{s:5:\"title\";s:43:\"Header Sections Overview (Old Astra Header)\";s:3:\"url\";s:45:\"https://wpastra.com/docs/header-sections-pro/\";s:8:\"category\";a:1:{i:0;s:15:\"header-sections\";}}i:394;O:8:\"stdClass\":3:{s:5:\"title\";s:62:\"How to Set the Full-width/Stretched Container Layout in Astra?\";s:3:\"url\";s:63:\"https://wpastra.com/docs/full-width-stretched-container-layout/\";s:8:\"category\";a:1:{i:0;s:6:\"global\";}}i:395;O:8:\"stdClass\":3:{s:5:\"title\";s:43:\"Full Width / Contained – Container Layout\";s:3:\"url\";s:63:\"https://wpastra.com/docs/full-width-contained-container-layout/\";s:8:\"category\";a:1:{i:0;s:6:\"global\";}}i:396;O:8:\"stdClass\":3:{s:5:\"title\";s:38:\"Content Boxed – Container Layout\";s:3:\"url\";s:56:\"https://wpastra.com/docs/content-boxed-container-layout/\";s:8:\"category\";a:1:{i:0;s:6:\"global\";}}i:397;O:8:\"stdClass\":3:{s:5:\"title\";s:26:\"Boxed – Container Layout\";s:3:\"url\";s:48:\"https://wpastra.com/docs/boxed-container-layout/\";s:8:\"category\";a:1:{i:0;s:6:\"global\";}}i:398;O:8:\"stdClass\":3:{s:5:\"title\";s:26:\"Container Spacing Controls\";s:3:\"url\";s:52:\"https://wpastra.com/docs/container-spacing-controls/\";s:8:\"category\";a:1:{i:0;s:7:\"spacing\";}}i:399;O:8:\"stdClass\":3:{s:5:\"title\";s:30:\"Site Identity Spacing Controls\";s:3:\"url\";s:56:\"https://wpastra.com/docs/site-identity-spacing-controls/\";s:8:\"category\";a:1:{i:0;s:7:\"spacing\";}}i:400;O:8:\"stdClass\":3:{s:5:\"title\";s:22:\"Spacing Addon Overview\";s:3:\"url\";s:48:\"https://wpastra.com/docs/spacing-addon-overview/\";s:8:\"category\";a:1:{i:0;s:7:\"spacing\";}}i:401;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"Color and Typography for Primary Header\";s:3:\"url\";s:57:\"https://wpastra.com/docs/color-typography-primary-header/\";s:8:\"category\";a:1:{i:0;s:24:\"header-footer-before-3-0\";}}i:402;O:8:\"stdClass\":3:{s:5:\"title\";s:14:\"Primary Header\";s:3:\"url\";s:40:\"https://wpastra.com/docs/primary-header/\";s:8:\"category\";a:1:{i:0;s:24:\"header-footer-before-3-0\";}}i:403;O:8:\"stdClass\":3:{s:5:\"title\";s:15:\"Header Overview\";s:3:\"url\";s:41:\"https://wpastra.com/docs/header-overview/\";s:8:\"category\";a:1:{i:0;s:24:\"header-footer-before-3-0\";}}i:404;O:8:\"stdClass\":3:{s:5:\"title\";s:36:\"Global Container – Astra Theme\";s:3:\"url\";s:44:\"https://wpastra.com/docs/container-overview/\";s:8:\"category\";a:1:{i:0;s:6:\"global\";}}i:405;O:8:\"stdClass\":3:{s:5:\"title\";s:71:\"How to Add Logo, Favicon, and Site Title with Astra? (Old Astra Header)\";s:3:\"url\";s:46:\"https://wpastra.com/docs/manage-site-identity/\";s:8:\"category\";a:1:{i:0;s:24:\"header-footer-before-3-0\";}}i:406;O:8:\"stdClass\":3:{s:5:\"title\";s:64:\"How to Add a Sticky Header or On-Scroll Fixed Header with Astra?\";s:3:\"url\";s:43:\"https://wpastra.com/docs/sticky-header-pro/\";s:8:\"category\";a:1:{i:0;s:13:\"sticky-header\";}}i:407;O:8:\"stdClass\":3:{s:5:\"title\";s:18:\"Padded Site Layout\";s:3:\"url\";s:44:\"https://wpastra.com/docs/padded-site-layout/\";s:8:\"category\";a:1:{i:0;s:11:\"site-layout\";}}i:408;O:8:\"stdClass\":3:{s:5:\"title\";s:17:\"Fluid Site Layout\";s:3:\"url\";s:43:\"https://wpastra.com/docs/fluid-site-layout/\";s:8:\"category\";a:1:{i:0;s:11:\"site-layout\";}}i:409;O:8:\"stdClass\":3:{s:5:\"title\";s:21:\"Max Width Site Layout\";s:3:\"url\";s:47:\"https://wpastra.com/docs/max-width-site-layout/\";s:8:\"category\";a:1:{i:0;s:11:\"site-layout\";}}i:410;O:8:\"stdClass\":3:{s:5:\"title\";s:22:\"Full Width Site Layout\";s:3:\"url\";s:48:\"https://wpastra.com/docs/full-width-site-layout/\";s:8:\"category\";a:1:{i:0;s:11:\"site-layout\";}}i:411;O:8:\"stdClass\":3:{s:5:\"title\";s:20:\"Site Layout Overview\";s:3:\"url\";s:46:\"https://wpastra.com/docs/site-layout-overview/\";s:8:\"category\";a:1:{i:0;s:11:\"site-layout\";}}i:412;O:8:\"stdClass\":3:{s:5:\"title\";s:40:\"Change the Astra Header Breakpoint Width\";s:3:\"url\";s:62:\"https://wpastra.com/docs/change-astra-header-breakpoint-width/\";s:8:\"category\";a:1:{i:0;s:27:\"astra-header-footer-filters\";}}i:413;O:8:\"stdClass\":3:{s:5:\"title\";s:43:\"How to Add Custom Javascript Code in Astra?\";s:3:\"url\";s:58:\"https://wpastra.com/docs/add-custom-javascript-code-astra/\";s:8:\"category\";a:0:{}}i:414;O:8:\"stdClass\":3:{s:5:\"title\";s:31:\"What is a Favicon or Site Icon?\";s:3:\"url\";s:43:\"https://wpastra.com/docs/favicon-site-icon/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:415;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"Complete List of WordPress Locale Codes\";s:3:\"url\";s:62:\"https://wpastra.com/docs/complete-list-wordpress-locale-codes/\";s:8:\"category\";a:0:{}}i:416;O:8:\"stdClass\":3:{s:5:\"title\";s:53:\"Fix for – The PCLZIP_ERR_BAD_FORMAT (-10) Error\";s:3:\"url\";s:60:\"https://wpastra.com/docs/fix-pclzip-err-bad-format-10-error/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:417;O:8:\"stdClass\":3:{s:5:\"title\";s:27:\"How to Add Custom PHP Code?\";s:3:\"url\";s:45:\"https://wpastra.com/docs/add-custom-php-code/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:418;O:8:\"stdClass\":3:{s:5:\"title\";s:52:\"WooCommerce Integration Overview in Free Astra Theme\";s:3:\"url\";s:58:\"https://wpastra.com/docs/woocommerce-integration-overview/\";s:8:\"category\";a:1:{i:0;s:16:\"woocommerce-free\";}}i:419;O:8:\"stdClass\":3:{s:5:\"title\";s:38:\"How to Replicate the Astra Screenshot?\";s:3:\"url\";s:52:\"https://wpastra.com/docs/replicating-the-screenshot/\";s:8:\"category\";a:0:{}}i:420;O:8:\"stdClass\":3:{s:5:\"title\";s:41:\"How to Turn Astra Multilingual with WPML?\";s:3:\"url\";s:59:\"https://wpastra.com/docs/turn-astra-multilingual-with-wpml/\";s:8:\"category\";a:1:{i:0;s:15:\"translate-astra\";}}i:421;O:8:\"stdClass\":3:{s:5:\"title\";s:81:\"How to Build Advanced Websites Based on Custom Post Types with Toolset and Astra?\";s:3:\"url\";s:57:\"https://wpastra.com/docs/custom-post-types-toolset-astra/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:422;O:8:\"stdClass\":3:{s:5:\"title\";s:36:\"How to Get License Key of Astra Pro?\";s:3:\"url\";s:42:\"https://wpastra.com/docs/get-license-keys/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:423;O:8:\"stdClass\":3:{s:5:\"title\";s:40:\"How to Activate Astra Pro Addon License?\";s:3:\"url\";s:58:\"https://wpastra.com/docs/activate-astra-pro-addon-license/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:424;O:8:\"stdClass\":3:{s:5:\"title\";s:35:\"How to Design Bullets & Lists?\";s:3:\"url\";s:46:\"https://wpastra.com/docs/design-bullets-lists/\";s:8:\"category\";a:1:{i:0;s:10:\"custom-css\";}}i:425;O:8:\"stdClass\":3:{s:5:\"title\";s:45:\"How to Disable Comments on WordPress website?\";s:3:\"url\";s:49:\"https://wpastra.com/docs/how-to-disable-comments/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:426;O:8:\"stdClass\":3:{s:5:\"title\";s:37:\"How to Highlight a Certain Menu Item?\";s:3:\"url\";s:53:\"https://wpastra.com/docs/highlight-certain-menu-item/\";s:8:\"category\";a:1:{i:0;s:10:\"custom-css\";}}i:427;O:8:\"stdClass\":3:{s:5:\"title\";s:76:\"How to Bulk Edit Astra Meta Settings on Multiple Pages & Posts at Once?\";s:3:\"url\";s:76:\"https://wpastra.com/docs/bulk-edit-astra-meta-settings-multiple-pages-posts/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:428;O:8:\"stdClass\":3:{s:5:\"title\";s:14:\"Font Selection\";s:3:\"url\";s:40:\"https://wpastra.com/docs/font-selection/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:429;O:8:\"stdClass\":3:{s:5:\"title\";s:28:\"How to Renew Yearly License?\";s:3:\"url\";s:46:\"https://wpastra.com/docs/renew-yearly-license/\";s:8:\"category\";a:1:{i:0;s:17:\"account-and-store\";}}i:430;O:8:\"stdClass\":3:{s:5:\"title\";s:52:\"How to Increase PHP Time Limit for a WordPress Site?\";s:3:\"url\";s:65:\"https://wpastra.com/docs/increase-php-time-limit-wordpress-sites/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:431;O:8:\"stdClass\":3:{s:5:\"title\";s:25:\"Astra Pro WP CLI Commands\";s:3:\"url\";s:41:\"https://wpastra.com/docs/wp-cli-commands/\";s:8:\"category\";a:2:{i:0;s:7:\"general\";i:1;s:23:\"astra-theme-pro-filters\";}}i:432;O:8:\"stdClass\":3:{s:5:\"title\";s:29:\"How Do License Upgrades Work?\";s:3:\"url\";s:51:\"https://wpastra.com/docs/how-license-upgrades-work/\";s:8:\"category\";a:1:{i:0;s:17:\"account-and-store\";}}i:433;O:8:\"stdClass\":3:{s:5:\"title\";s:59:\"Recommended Settings for Beaver Builder and the Astra Theme\";s:3:\"url\";s:67:\"https://wpastra.com/docs/recommended-settings-beaver-builder-astra/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:434;O:8:\"stdClass\":3:{s:5:\"title\";s:54:\"Recommended Settings for Elementor and the Astra Theme\";s:3:\"url\";s:60:\"https://wpastra.com/docs/recommended-settings-for-elementor/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:435;O:8:\"stdClass\":3:{s:5:\"title\";s:27:\"How to Force Check Updates?\";s:3:\"url\";s:45:\"https://wpastra.com/docs/force-check-updates/\";s:8:\"category\";a:0:{}}i:436;O:8:\"stdClass\":3:{s:5:\"title\";s:56:\"How to Disable or Change Position of the Featured Image?\";s:3:\"url\";s:64:\"https://wpastra.com/docs/disable-change-position-featured-image/\";s:8:\"category\";a:0:{}}i:437;O:8:\"stdClass\":3:{s:5:\"title\";s:42:\"How do I manage margin between paragraphs?\";s:3:\"url\";s:50:\"https://wpastra.com/docs/manage-margin-paragraphs/\";s:8:\"category\";a:0:{}}i:438;O:8:\"stdClass\":3:{s:5:\"title\";s:57:\"How to Update the Plugin Manually from WordPress Backend?\";s:3:\"url\";s:66:\"https://wpastra.com/docs/update-plugin-manually-wordpress-backend/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:439;O:8:\"stdClass\":3:{s:5:\"title\";s:40:\"How to Adjust the Width of Your Sidebar?\";s:3:\"url\";s:46:\"https://wpastra.com/docs/adjust-width-sidebar/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:440;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"Where Does Astra Primary Color Setting Take Effect?\";s:3:\"url\";s:65:\"https://wpastra.com/docs/astra-primary-color-setting-take-effect/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:441;O:8:\"stdClass\":3:{s:5:\"title\";s:59:\"How to Disable Header or Footer for a Landing Page or Post?\";s:3:\"url\";s:65:\"https://wpastra.com/docs/disable-header-footer-landing-page-post/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:442;O:8:\"stdClass\":3:{s:5:\"title\";s:54:\"What Is a Child Theme and How To Install It for Astra?\";s:3:\"url\";s:51:\"https://wpastra.com/docs/install-astra-child-theme/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:443;O:8:\"stdClass\":3:{s:5:\"title\";s:47:\"Increasing the PHP Memory Limit of Your Website\";s:3:\"url\";s:61:\"https://wpastra.com/docs/increasing-php-memory-limit-website/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:444;O:8:\"stdClass\":3:{s:5:\"title\";s:76:\"How to Translate Astra Theme / Plugins in Your Own Language using GlotPress?\";s:3:\"url\";s:42:\"https://wpastra.com/docs/how-to-translate/\";s:8:\"category\";a:1:{i:0;s:15:\"translate-astra\";}}i:445;O:8:\"stdClass\":3:{s:5:\"title\";s:40:\"Does Astra support Beaver Themer Plugin?\";s:3:\"url\";s:65:\"https://wpastra.com/docs/does-astra-support-beaver-themer-plugin/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:446;O:8:\"stdClass\":3:{s:5:\"title\";s:40:\"Remove Primary Navigation Menu with Hook\";s:3:\"url\";s:63:\"https://wpastra.com/docs/how-to-remove-primary-navigation-menu/\";s:8:\"category\";a:1:{i:0;s:27:\"astra-header-footer-filters\";}}i:447;O:8:\"stdClass\":3:{s:5:\"title\";s:33:\"Footer Custom Text Helper Strings\";s:3:\"url\";s:59:\"https://wpastra.com/docs/footer-custom-text-helper-strings/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:448;O:8:\"stdClass\":3:{s:5:\"title\";s:24:\"What is Astra Pro Addon?\";s:3:\"url\";s:41:\"https://wpastra.com/docs/astra-pro-addon/\";s:8:\"category\";a:1:{i:0;s:24:\"installation-and-updates\";}}i:449;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"How to Change the Destination URL for Website Logo?\";s:3:\"url\";s:40:\"https://wpastra.com/docs/astra-logo-url/\";s:8:\"category\";a:1:{i:0;s:27:\"astra-header-footer-filters\";}}i:450;O:8:\"stdClass\":3:{s:5:\"title\";s:20:\"Using Hooks in Astra\";s:3:\"url\";s:37:\"https://wpastra.com/docs/using-hooks/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:451;O:8:\"stdClass\":3:{s:5:\"title\";s:59:\"Standard server 404 page showing instead of custom 404 page\";s:3:\"url\";s:85:\"https://wpastra.com/docs/standard-server-404-page-showing-instead-of-custom-404-page/\";s:8:\"category\";a:0:{}}i:452;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"How to Change the Default Astra Strings\";s:3:\"url\";s:47:\"https://wpastra.com/docs/astra-default-strings/\";s:8:\"category\";a:1:{i:0;s:23:\"astra-theme-pro-filters\";}}i:453;O:8:\"stdClass\":3:{s:5:\"title\";s:55:\"How to Add Custom CSS Code Without Editing Theme Files?\";s:3:\"url\";s:48:\"https://wpastra.com/docs/adding-custom-css-code/\";s:8:\"category\";a:1:{i:0;s:10:\"custom-css\";}}}}','yes'),(189,'_transient_timeout_astra-theme-cron-test-ok','1677515125','no'),(190,'_transient_astra-theme-cron-test-ok','1','no'),(198,'_transient_timeout_global_styles_astra','1677512314','no'),(199,'_transient_global_styles_astra','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;}body { margin: 0;--wp--style--global--content-size: var(--wp--custom--ast-content-width-size);--wp--style--global--wide-size: var(--wp--custom--ast-wide-width-size); }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }.wp-site-blocks > * { margin-block-start: 0; margin-block-end: 0; }.wp-site-blocks > * + * { margin-block-start: 24px; }body { --wp--style--block-gap: 24px; }body .is-layout-flow > *{margin-block-start: 0;margin-block-end: 0;}body .is-layout-flow > * + *{margin-block-start: 24px;margin-block-end: 0;}body .is-layout-constrained > *{margin-block-start: 0;margin-block-end: 0;}body .is-layout-constrained > * + *{margin-block-start: 24px;margin-block-end: 0;}body .is-layout-flex{gap: 24px;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: none;}.wp-element-button, .wp-block-button__link{background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(200,'_transient_is_multi_author','0','yes'),(201,'_transient_timeout_global_styles_svg_filters_astra','1677512314','no'),(202,'_transient_global_styles_svg_filters_astra','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no'),(205,'_site_transient_timeout_theme_roots','1677514859','no'),(206,'_site_transient_theme_roots','a:4:{s:5:\"astra\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";}','no'),(207,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1677513199;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:0:{}}','no'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_postmeta` -- LOCK TABLES `wp_postmeta` WRITE; /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'); /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_posts` -- LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; INSERT INTO `wp_posts` VALUES (1,1,'2021-03-10 20:15:34','2021-03-10 20:15:34','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2021-03-10 20:15:34','2021-03-10 20:15:34','',0,'http://thelannies.us//?p=1',0,'post','',1),(2,1,'2021-03-10 20:15:34','2021-03-10 20:15:34','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://thelannies.us//wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2021-03-10 20:15:34','2021-03-10 20:15:34','',0,'http://thelannies.us//?page_id=2',0,'page','',0),(3,1,'2021-03-10 20:15:34','2021-03-10 20:15:34','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://thelannies.us/.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2021-03-10 20:15:34','2021-03-10 20:15:34','',0,'http://thelannies.us//?page_id=3',0,'page','',0),(4,1,'2023-02-27 14:48:16','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-02-27 14:48:16','0000-00-00 00:00:00','',0,'http://thelannies.us/?p=4',0,'post','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` VALUES (1,1,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_taxonomy` -- LOCK TABLES `wp_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_termmeta` -- DROP TABLE IF EXISTS `wp_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_termmeta` -- LOCK TABLES `wp_termmeta` WRITE; /*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_usermeta` -- LOCK TABLES `wp_usermeta` WRITE; /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','David'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'default_password_nag',''),(16,1,'show_welcome_panel','0'),(17,1,'session_tokens','a:2:{s:64:\"00c6290c1d5fe2f3dfaf385281a9f739bd720cbe0bae03acaa6056a14858566c\";a:4:{s:10:\"expiration\";i:1677682070;s:2:\"ip\";s:12:\"92.119.16.33\";s:2:\"ua\";s:20:\"Mozilla/5.0 (en-us;)\";s:5:\"login\";i:1677509270;}s:64:\"337a1706e5696dffc53c9c931416c1e6b58e2f0f17fc918e1097892a6661d2c7\";a:4:{s:10:\"expiration\";i:1677684631;s:2:\"ip\";s:12:\"92.119.16.33\";s:2:\"ua\";s:20:\"Mozilla/5.0 (en-us;)\";s:5:\"login\";i:1677511831;}}'),(18,1,'wp_dashboard_quick_press_last_post_id','4'),(19,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"92.119.16.0\";}'),(20,1,'astra-sites-on-active','notice-dismissed'),(21,1,'wp_user-settings',''),(22,1,'wp_user-settings-time','1677511557'); /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_users` -- DROP TABLE IF EXISTS `wp_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`), KEY `user_email` (`user_email`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_users` -- LOCK TABLES `wp_users` WRITE; /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; INSERT INTO `wp_users` VALUES (1,'David','$P$BSpMMVLDhh8oZfEWuW4ciUHv991ES51','David','dcl@thelannies.us','http://thelannies.us/','2021-03-10 20:15:34','',0,'David'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database '1_0151108_9' -- /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2023-02-27 11:12:47