-- MySQL dump 10.13 Distrib 8.0.40, for Linux (x86_64) -- -- Host: localhost Database: gggg -- ------------------------------------------------------ -- Server version 8.0.40-0ubuntu0.22.04.1 /*!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 */; /*!50503 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Current Database: `gggg` -- -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_comments` ( `comment_ID` bigint unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint 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 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 unsigned NOT NULL DEFAULT '0', `user_id` bigint 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/','','2024-11-13 08:57:08','2024-11-13 08:57:08','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 Gravatar.',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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_links` ( `link_id` bigint 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 unsigned NOT NULL DEFAULT '1', `link_rating` int 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_options` ( `option_id` bigint 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=164 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,'cron','a:10:{i:1731488229;a:2:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s: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:1731488237;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1731488242;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:1731488249;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1731488297;a:1:{s:28:\"wp_update_comment_type_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1731491827;a:1:{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;}}}i:1731493627;a:1:{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;}}}i:1731495427;a:1:{s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1731574629;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;}','on'),(2,'siteurl','https://wordpress-56409-0.cloudclusters.net','on'),(3,'home','https://wordpress-56409-0.cloudclusters.net','on'),(4,'blogname','wordpress','on'),(5,'blogdescription','Just another WordPress site','on'),(6,'users_can_register','0','on'),(7,'admin_email','example@cloudclusters.io','on'),(8,'start_of_week','1','on'),(9,'use_balanceTags','0','on'),(10,'use_smilies','1','on'),(11,'require_name_email','1','on'),(12,'comments_notify','1','on'),(13,'posts_per_rss','10','on'),(14,'rss_use_excerpt','0','on'),(15,'mailserver_url','mail.example.com','on'),(16,'mailserver_login','login@example.com','on'),(17,'mailserver_pass','','on'),(18,'mailserver_port','110','on'),(19,'default_category','1','on'),(20,'default_comment_status','open','on'),(21,'default_ping_status','open','on'),(22,'default_pingback_flag','1','on'),(23,'posts_per_page','10','on'),(24,'date_format','F j, Y','on'),(25,'time_format','g:i a','on'),(26,'links_updated_date_format','F j, Y g:i a','on'),(27,'comment_moderation','0','on'),(28,'moderation_notify','1','on'),(29,'permalink_structure','','on'),(30,'rewrite_rules','','on'),(31,'hack_file','0','on'),(32,'blog_charset','UTF-8','on'),(33,'moderation_keys','','off'),(34,'active_plugins','a:0:{}','on'),(35,'category_base','','on'),(36,'ping_sites','http://rpc.pingomatic.com/','on'),(37,'comment_max_links','2','on'),(38,'gmt_offset','0','on'),(39,'default_email_category','1','on'),(40,'recently_edited','','off'),(41,'template','twentytwentyfour','on'),(42,'stylesheet','twentytwentyfour','on'),(43,'comment_registration','0','on'),(44,'html_type','text/html','on'),(45,'use_trackback','0','on'),(46,'default_role','subscriber','on'),(47,'db_version','58975','on'),(48,'uploads_use_yearmonth_folders','1','on'),(49,'upload_path','','on'),(50,'blog_public','1','on'),(51,'default_link_category','2','on'),(52,'show_on_front','posts','on'),(53,'tag_base','','on'),(54,'show_avatars','1','on'),(55,'avatar_rating','G','on'),(56,'upload_url_path','','on'),(57,'thumbnail_size_w','150','on'),(58,'thumbnail_size_h','150','on'),(59,'thumbnail_crop','1','on'),(60,'medium_size_w','300','on'),(61,'medium_size_h','300','on'),(62,'avatar_default','mystery','on'),(63,'large_size_w','1024','on'),(64,'large_size_h','1024','on'),(65,'image_default_link_type','none','on'),(66,'image_default_size','','on'),(67,'image_default_align','','on'),(68,'close_comments_for_old_posts','0','on'),(69,'close_comments_days_old','14','on'),(70,'thread_comments','1','on'),(71,'thread_comments_depth','5','on'),(72,'page_comments','0','on'),(73,'comments_per_page','50','on'),(74,'default_comments_page','newest','on'),(75,'comment_order','asc','on'),(76,'sticky_posts','a:0:{}','on'),(77,'widget_categories','a:0:{}','on'),(78,'widget_text','a:0:{}','on'),(79,'widget_rss','a:0:{}','on'),(80,'uninstall_plugins','a:0:{}','off'),(81,'timezone_string','','on'),(82,'page_for_posts','0','on'),(83,'page_on_front','0','on'),(84,'default_post_format','0','on'),(85,'link_manager_enabled','0','on'),(86,'finished_splitting_shared_terms','1','on'),(87,'site_icon','0','on'),(88,'medium_large_size_w','768','on'),(89,'medium_large_size_h','0','on'),(90,'wp_page_for_privacy_policy','3','on'),(91,'show_comments_cookies_opt_in','1','on'),(92,'admin_email_lifespan','1747040227','on'),(93,'disallowed_keys','','off'),(94,'comment_previously_approved','1','on'),(95,'auto_plugin_theme_update_emails','a:0:{}','off'),(96,'auto_update_core_dev','enabled','on'),(97,'auto_update_core_minor','enabled','on'),(98,'auto_update_core_major','enabled','on'),(99,'wp_force_deactivated_plugins','a:0:{}','on'),(100,'wp_attachment_pages_enabled','0','on'),(101,'initial_db_version','58975','on'),(102,'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;}}}','on'),(103,'fresh_site','1','off'),(104,'user_count','1','off'),(105,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"\";}i:3;a:1:{s:7:\"content\";s:154:\"
Each WordPress release celebrates an artist who has made an indelible mark on the world of music. WordPress 6.7, code-named “Rollins,” pays tribute to the legendary jazz saxophonist Sonny Rollins. Known as one of the greatest improvisers and pioneers in jazz, Rollins has influenced generations of musicians with his technical brilliance, innovative spirit, and fearless approach to musical expression.
\n\n\n\nSonny Rollins’ work is characterized by its unmatched energy and emotional depth. His compositions, such as “St. Thomas,” “Oleo,” and “Airegin,” are timeless jazz standards, celebrated for their rhythmic complexity and melodic inventiveness. Rollins’ bold and exploratory style resonates with WordPress’ own commitment to empowering creators to push boundaries and explore new possibilities in digital expression.
\n\n\n\nEmbrace the spirit of innovation and spontaneity that defines Rollins’ sound as you dive into the new features and enhancements of WordPress 6.7.
\n\n\n\nWordPress 6.7 debuts the modern Twenty Twenty-Five theme, offering ultimate design flexibility for any blog at any scale. Control your site typography like never before with new font management features. The new Zoom Out feature lets you design your site with a macro view, stepping back from the details to bring the big picture to life.
\n\n\n\n \n\n\n\nTwenty Twenty-Five offers a flexible, design-focused theme that lets you build stunning sites with ease. Tailor your aesthetic with an array of style options, block patterns, and color palettes. Pared down to the essentials, this is a theme that can truly grow with you.
\n\n\n\nEdit and arrange entire sections of your content like never before. A broader view of your site lets you add, edit, shuffle, or remove patterns to your liking. Embrace your inner architect.
\n\n\n\nThis feature introduces a new UI for connecting blocks to custom fields, putting control of dynamic content directly in the editor. Link blocks with fields in just a few clicks, enhancing flexibility and efficiency when building. Your clients will love you—as if they didn’t already.
\n\n\n\nCreate, edit, remove, and apply font size presets with the next addition to the Styles interface. Override theme defaults or create your own custom font size, complete with fluid typography for responsive font scaling. Get into the details!
\n\n\n\nWordPress 6.7 delivers important performance updates, including faster pattern loading, optimized previews in the data views component, improved PHP 8+ support and removal of deprecated code, auto sizes for lazy-loaded images, and more efficient tag processing in the HTML API.
\n\n\n\n65+ accessibility fixes and enhancements focus on foundational aspects of the WordPress experience, from improving user interface components and keyboard navigation in the Editor, to an accessible heading on WordPress login screens and clearer labeling throughout.
\n\n\n\nFor a comprehensive overview of all the new features and enhancements in WordPress 6.7, please visit the feature-showcase website.
\n\n\n\n \n\n\n\nLearn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.
\n\n\n\nRead the WordPress 6.7 Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.
\n\n\n\nExplore the WordPress 6.7 Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress.
\n\n\n\nEvery release comes to you from a dedicated team of enthusiastic contributors who help keep things on track and moving smoothly. The team that has led 6.7 is a cross-functional group of contributors who are always ready to champion ideas, remove blockers, and resolve issues.
\n\n\n\nThe mission of WordPress is to democratize publishing and embody the freedoms that come with open source. A global and diverse community of people collaborating to strengthen the software supports this effort.
\n\n\n\nWordPress 6.7 reflects the tireless efforts and passion of more than 780 contributors in countries all over the world. This release also welcomed over 230 first-time contributors!
\n\n\n\nTheir collaboration delivered more than 340 enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress open source community.
\n\n\n\n!Benni · 75thtrombone · Aaron Jorbin · Aaron Robertshaw · Aaron Ware · aatanasov · Abha Thakor · abhi3315 · Abhishek Deshpande · Abir · acafourek · Adam Heckler · Adam Silverstein · Adam Wood · Adam Zieliński · Adarsh Akshat · Adrian · aduth · ah72king · Ahmar Zaidi · Ahmed Kabir Chaion · Ahmed Saeed · Ajit Bohra · Akash Dhawade · Aki Hamano · Akira Tachibana · Akshat Kakkad · Al-Amin Firdows · Alan Fuller · Albert Juhé Lluveras · Alessandro Tesoro · Alessio · Alex Concha · Alex Lende · Alex Stine · alex27 · Alexander Frank · Alexandre Buffet · Alexandru Horeanu · alexcu21 · Ali Ali · aliaghdam · allilevine · Alvaro Gómez · Alvi Tazwar · Amin Charoliya · Amir Abbas · Amit Raj · Amjad Ali · Anand Thakkar · Andrea Fercia · Andrea Roenning · Andrei Draganescu · Andrei Lupu · andreiglingeanu · Andrew Hayward · Andrew Ozz · Andrew Serong · Andrey \"Rarst\" Savchenko · André Maneiro · Andy Fragen · Angelika Reisiger · Aniket Patel · Ankit K Gupta · Ankit K. Gupta · Ankit Kumar Shah · Ankur Vishwakarma · Anne McCarthy · Anthony Burchell · Anthony Hortin · Antoine · Anton Vlasenko · Antonio Sejas · apmeyer · Ari Stathopoulos · Armando J. Perez Carreno · Armands · arnaudbroes · Art Smith · Artemio Morales · Arthur Chu · arypneta · asafm7 · Aslam Doctor · Autumn · Ayesh Karunaratne · Bård Bjerke Johannessen · Béryl de La Grandière · Balu B · Barry Ceelen · Bart Kalisz · Beatriz Fialho · Ben Dwyer · Benjamin Denis · Benjamin Zekavica · Benoit Chantre · Bernhard Kau · Bernhard Reiter · Bernhard Riedl · bernhard-reiter · berubenic · Bhavesh · bijit027 · Birgit Pauli-Haack · blindmikey · bobbyleenoblestudios · Bogdan Nikolic · Brad · brad hogan · Brad Jorsch · Brandon Kraft · Brent Jett · Brett Shumaker · Brian Alexander · Brian Coords · Brian Gardner · Brian Gosnell · Brian Henry · bridgetwes · brobken · Bruno Freiberger Garcia · Cambabutonono · Carlos Bravo · Carlos G. P. · Carolina Nymark · Carsten Bach · cbirdsong · Chirag Mathur · ChriCo · Chris Reynolds · Chris Trynkiewicz (Sukces Strony) · Christoph Daum · Christopher Finke · Christopher Kanitz · Christy Nyiri · Ciprian · codersantosh · Colin Stewart · Corey Worrell · Courtney Robertson · craynor · creativethemeshq · Cullen Whitmore · Cupid Chakma · cweiske · Cyrille · da5f656f · Dademaru · daleharrison · Damon Cook · Damon Cook · Dani Guardiola · Daniel Richards · Daniele Scasciafratte · Danny · dannyreaktiv · darerodz · Dareth NHANG · Darren Ethier (nerrad) · Darshit Rajyaguru · daveagp · David · David Ballarin Prunera · David Baumwald · David Biňovec · David Bowman · David Brown · David Calhoun · David Godleman · David Henriet · David Herrera · David Levine · David Rozando · David Shanske · David Smith · ddewan · Dean Sas · DEBARGHYA BANERJEE · Deepak Rohilla · Deepak Vijayan · Dekadinious · Dennis Snell · Derek Smart · Deryck · designsimply · Devansh Chaudhary · devspace · Dhananjay Kuber · Dharmesh Patel · Dhrumil Kumbhani · Dhruval Shah · Dhruvang21 · Dilip Bheda · Dilip Modhavadiya · Dion Hulse · Divi Banks · dj.cowan · djennez · Doni Kuntoro · Dor Zuberi · Drew Jaynes · Drivingralle · drzraf · Earle Davies · eballeste · eclev91 · Ed Beck · ejnwebmaster · elfu98 · Elio Rivero · Ella van Durpe · Elliott Richmond · Emmanue ATSÉ · Emmanuel Hesry · emmanuel78 · Enrico Battocchi · Enrique Sánchez · Eric Dye · Erik · erikiva · erikyo · Evan Herman · Evan Mullins · Fabian Kägy · Fabio Rubioglio · FahimMurshed · Faisal Ahammad · Faisal Alvi · Faizan Nabi · Farhan Ahmed · Fayyaz · Felix Arntz · Felix Renicks · Fernando Jorge Mota (a11n) · Firoz Sabaliya · Francisco · Fransisca H · fullworks · Gale Wallace · gansbrest · Gareth Elwell · Garrett Hyder · Gary Pendergast · Gaurav Tiwari · gauravsingh7 · Georg · George Mamadashvili · Gerardo Pacheco · Germán Freixinós · gmariani405 · GraemeF · Grant M. Kinney · greentreefrog · GreenWorld · Greg Ziółkowski · Guido Scialfa · Gyurmey · Héctor Prieto · Halil ESEN · hanneslsm · Hans-Gerd Gerhards · Hardip Parmar · Hareesh S · Harper Holsinger · Harsh Gajipara · harshvaishnav · Haz · hectorjarquin · hedgefield · Helen Hou-Sandi · Henrique Iamarino · Himanshu Pathak · hirschferkel · Hit Bhalodia · Hossein · htmgarcia · huubl · Huzaifa Al Mesbah · Ibrahim · Ibrahim Riaz · Imran Hossain (a11n) · Isabel Brison · IT Path Solutions · itapress · Ivan Ottinger · Jack Stevens · Jacob Cassidy · Jacob Smith · jagirbahesh · Jainil Shah · Jakob Trost · James Koster · James Osborne · James Rosado · James Wesley Goedert · Jan Pfeil · janak Kaneriya · Jarda Snajdr · jarekmorawski · Jarko Piironen · Jason Bahl · Jason LeMahieu (MadtownLems) · javad2000 · Javier Arce · Jawad Malik · Jay · Jayadevan k · jbrya029 · JD Ahir · Jean-Baptiste Audras · Jeff Chi · Jeff Ong · Jeffrey de Wit · Jeffrey Paul · Jenil Kanani · Jennifer Farhat · Jenny Dupuy · Jeremy Felt · Jeremy Herve · Jerry Jones · Jesko Bendmann · Jessica Lyschik · jetaldobariya1 · Jigar Panchal · jimmyh61 · Joe Dolson · Joe Hoyle · Joe McGill · Joen Asmussen · John Blackbourn · John Espiritu · John Godley · John James Jacoby · John Regan · JohnRDOrazio · Jon Surrell · Jonas · Jonathan Bossenger · Jonathan Desrosiers · Jonny Harris · Jonny Waters · jordesign · Jorge Costa · Jos Klever · Jose Varghese · Josepha · Joshua Goode · Jossnaz · Juan Aldasoro · JuanMa Garrido · julianoe · Julie Moynat · Juliette Reinders Folmer · Juned Sabaliya · Justin Tadlock · K. Adam White · Kaavya Iyer (woo-hc) · Kadim Gültekin · KafleG · Kai Hao · Kajal Gohel · Kamal Hosen · Kamran Hussen · Karan Gupta · Karol Manijak · Karthik Thayyil · Kartik Mehta · Kartik Suthar · kbrownkd (a11n) · Keffr3n · Kel Santiago-Pilarski · Kellen Mace · Kelly Choyce-Dwan · keoshi · Kevin Behrens · Kevin Taron · kevinswalsh · Khokan Sardar · Kira Schroder · Kishan Jasani · kisquian · Kjell Reigstad · kkmuffme · Knut Sparhell · Kowsar Hossain · kracked888 · Krishna Neupane · kristastevens · Krupa Nanda · Krupal Panchal · Kunal Madhak · Kunjan Gohel · Kurt Payne · Kushang Tailor · Lae · Lara Schenck · lastsplash (a11n) · Laura Byrne · laurelfulford · Lauren · Lawrence Joe · leemon · Lena Morita · Liam Gladdy · lifelightweb · Linkon Miyan · Linnea Huxford · liviopv · Louis Wolmarans · Lourens · Love Soni · Lucas · Luigi Teschio · Luis Felipe Zaguini · luisherranz · lukasbesch · Luke Carbis · Madhu Dollu · madpeter · Maggie Cabrera · Mahmudul Haque Nadim · Mai · Makarand G. Mane · manbo · Manesh Timilsina · Manuel Schmalstieg · Manzoor Wani (a11n) · María Anguas · Marc · Marc Armengou · Marcel Tannich · Marcelo de Moraes Serpa · Marcin Pietrzak · Marco Ciampini · Marco Pereirinha · marcwieland95 · Marek Železný · margolisj · Maria Yohana · Marie · Marin Atanasov · Mario Santos · Marius L. J. · mariushosting · Mark Howells-Mead · Mark Parnell · Mark-k · Martijn van der Klis · martin.krcho · marybaum · mat_ · Matias Benedetto · Matias Ventura · Matt Mullenweg · Matt Robinson · Matt Sherman · Matteo Enna · Matthew Boynes · Matthew Riley MacPherson · Matthias Kittsteiner · mattraines · maurodf · Mayank Tripathi · Mayur Prajapati · mcrisp1972 · Md Abul Bashar · Md Hossain Shohel · Md. Istiaq Hossain · mdviralsampat · megane9988 · Mehedi Hassan · Mehul Kaklotar · Mel Choyce-Dwan · meteorlxy · Micha Krapp · Michael Beckwith · Michael Bourne · Michael James Ilett · michaelpick · michaelwp85 · Michal Czaplinski · Michelle Bulloch · Miguel Axcar · Miguel Fonseca · Miguel Lezama · Mikael Korpela · Mike McAlister · Mike Ritter · mikeb8s · Mikey Binns · milamj · Milana Cap · Mitchell Austin · mklusak · mleathem · mlf20 · Mobarak Ali · Mohit Dadhich · Morgan Estes · Mosne / Paolo Tesei · mossy2100 · mreishus · Muhibul Haque · mujuonly · Mukesh Panchal · Mumtahina Faguni · Nadir Seghir a11n · Naeem Haque · Nagesh Pai · Narendra Sishodiya · Naresh Bheda · Nate Finch · Nate Gay · Nazmul Hasan Robin · Nebojša Jurčić · nek285 · nendeb · neo2k23 · neotrope · Nicholas Garofalo · Nick Bohle · Nick Diego · Nick Halsey · Nick the Geek · Nicole Furlan · nidhidhandhukiya · Nihar Ranjan Das · Nik Tsekouras · Nikita Solanki · Niraj Giri · Nirav Sherasiya · Nithin John · Nithin SreeRaj · Noah Allen · Noruzzaman · nurielmeni · obliviousharmony · Olaf Lederer · Olga Gleckler · Oliver Campion · Olivier Lafleur · Omar Alshaker · Oscar Hugo Paz · p15h · Paal Joachim Romdahl · Pablo Hernández · Pablo Honey · Pamela Ribeiro · pander · Paolo L. Scala · Paragon Initiative Enterprises · Parin Panjari · Parth vataliya · Pascal Birchler · Pat O\'Brien · Patricia BT · Patrick Lumumba · Paul Bearne · Paul Biron · Paul Kevan · Paul Schreiber · Paul Wilde · paulcline · Paulo Trentin · Pavan Patil · pcarvalho · Pedro Mendonça · perryrylance · Peter Rubin · Peter Wilson · petitphp · pevogam · Phi Phan · Phil Johnston · Philipp Bammes · philwebs · Pieterjan Deneys · Piotrek Boniu · Pitam Dey · Plamen Georgiev · Pooja N Muchandikar · pooja9712 · porg · ppolo99 · Praful Patel · Pranit Dugad · Pratik Kumar · Presskopp · prettyboymp · prionkor · pwtyler · Rachel Baker · Rachel Winspear · Rafael Fischmann · Rafael Gallani · Rafiqul Islam · Rahmat Gumilar · rahulharpal · Raj Patel · Rajin Sharwar · rajkumar shashwata halder · Ramon Ahnert · Ramon Corrales · ramon fincken · Ramon James · Ramswarup Rathod · Raul Martinez · rcneil · realthemes · Rejaul Alom Khan · Renatho (a11n) · reputeinfosystems · retrofox · Riad Benguella · Rich Tabor · Rick Hellewell · Riddhi Patel · Rishi Mehta · Rishi Shah · Rishit Gupta · rithik56 · Robert Anderson · Robert Biswas · Robert Ghetau · rocket.works - Dominik Friedrich · Rodel Calasagsag a11n · Rodrigo · Rodrigo Primo · Rohan Jha · rohitmathur7 · Rostislav Wolný · Roy Tanck · roygbyte · royho · rpf5573 · rslee · Ruchir Goswami · Rufaro Madamombe · Ryan Boren · Ryan Leeson · Ryan Urban · Ryan Welcher · S P Pramodh · Sébastien SERRE · Sérgio Gomes · Sören Wünsch · sadmansh · Saeed Piri · Sagar Tamang · sahiladit · Sainath Poojary · Sakib Mohammed · Sam Toohey · samiamnot · Sampat Viral · Samuel Sidler · Samuel Silva · Sanne van der Meulen · Sarah Norris · sarahricker · Sarthak Nagoshe · Sathiya Venkatesan · Satish Prajapati · Saul Fougnier · Saulius Vikerta · Saxon Fletcher · Sayedul Sayem · scholdstrom · Scott Buscemi · Scott Kingsley Clark · Scott Reilly · Scott Taylor · scottculverhouse · seanavers · Seif Radwane · Sergey · Sergey Biryukov · Serhiy Zakharchenko · Seth Rubenstein · Shail Mehta · Shalin Shah · Sharon Austin · sheulyshila · Shoe · Showrav Hasan · Shreya Agarwal · Silas Köhler · siliconforks · Simone Maranzana · Siobhan · smerriman · Sneha Patil · Sophie - a11n · Souptik Datta · Sourabh Jain · Sourav Pahwa · staurand · Stefano Minoia · stein2nd · Stephen Bernhardt · Steven Lin · Steven Thompson · Stoyan Georgiev · styleshit · Sudip Dadhaniya · Sumit Bagthariya · Sumit Singh · Sunil Prajapati · Sunny · superchlorine · Sybre Waaijer · Syeda Fahima Jannath · Takahashi Fumiki · Takashi Irie · Tammie Lister · Tanbir Ahmod · Tanvirul Haque · Tapan Kumer Das · Taylor Gorman · tdrayson · thejaydip · thelmachido a11n · them.es · Thomas Kräftner · Thrijith Thankachan · Timi Wahalahti · Timothy Jacobs · Tirth Doshi · tmanoilov · toastercookie · TobiasBg · tobifjellner (Tor-Bjorn “Tobi” Fjellner) · Tom Cafferkey · Tom de Visser · Tom J Nowell · tomhine · tomllobet · Tonya Mork · Toro_Unit (Hiroshi Urabe) · Torsten Landsiedel · tropicalista · Troy Chaplin · Trupti Kanzariya · tunetheweb · twstokes · Ugyen Dorji · Umesh Gupta · Umesh Singh · up1512001 · Uttam Kumar Dash · valer1e · vertisoft · Vicente Canales · Vijaysinh Zala · Viktor Szépe · Vinit · Vipul Ghori · Vipul Gupta · vipulpatil · Vraja Das · vrishabhsk · wbdv · WebMan Design | Oliver Juhas · webwurm · wesrapyd · Weston Ruter · Will Skora · William Alexander · williampatton · wongjn · WPeople · wpsoul · wzieba · xipasduarte · Yani · Yann · Yannis Guyon · Yogesh Bhutkar · ytfeLdrawkcaB · Yui · Yukinobu Asakawa · Yuvrajsinh Sisodiya · Zack Krida · zeelthakkar · zitaruksergij · Zunaid Amin
\n\n\n\nMore than 40 locales have fully translated WordPress 6.7 into their language making this one of the most translated releases ever on day one. Community translators are working hard to ensure more translations are on their way. Thank you to everyone who helps make WordPress available in 200 languages.
\n\n\n\nLast but not least, thanks to the volunteers who contribute to the support forums by answering questions from WordPress users worldwide.
\n\n\n\nParticipation in WordPress goes far beyond coding, and learning more and getting involved is easy. Discover the teams that come together to Make WordPress and use this interactive tool to help you decide which is right for you.
\n\";s: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:\"18066\";s: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:33:\"WordPress 6.7 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2024/11/wordpress-6-7-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Nov 2024 17:02:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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.7\";s: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=18056\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"The third release candidate (RC3) for WordPress 6.7 is ready for download and testing! This 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’s recommended that you evaluate RC3 on a test server and site. Reaching this phase […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"David Baumwald\";s: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:11405:\"\nThe third release candidate (RC3) for WordPress 6.7 is ready for download and testing!
\n\n\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’s recommended that you evaluate RC3 on a test server and site.
\n\n\n\nReaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.7 is the best it can be.
\n\n\n\nYou can test WordPress 6.7 RC3 in four ways:
\n\n\n\nPlugin | Install and activate the WordPress Beta Tester plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream). |
---|---|
Direct Download | Download the RC3 version (zip) and install it on a WordPress website. |
Command Line | Use the following WP-CLI command:wp core update --version=6.7-RC3 |
WordPress Playground | Use the 6.7 RC3 WordPress Playground instance (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup. |
The current target for the WordPress 6.7 release is November 12, 2024. Get an overview of the 6.7 release cycle, and check the Make WordPress Core blog for 6.7-related posts in the coming weeks for further details.
\n\n\n\nGet a recap of WordPress 6.7’s highlighted features in the Beta 1 announcement. For more technical information related to issues addressed since RC2, you can browse the following links:
\n\n\n\nWordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.
\n\n\n\nTesting for issues is critical to ensuring WordPress is performant and stable. It’s also a meaningful way for anyone to contribute. This detailed guide will walk you through testing features in WordPress 6.7. For those new to testing, follow this general testing guide for more details on getting set up.
\n\n\n\nIf you encounter an issue, please report it to the Alpha/Beta area of the support forums or directly to WordPress Trac if you are comfortable writing a reproducible bug report. You can also check your issue against a list of known bugs.
\n\n\n\nCurious about testing releases in general? Follow along with the testing initiatives in Make Core and join the #core-test channel on Making WordPress Slack.
\n\n\n\nFrom now until the final release of WordPress 6.7 (scheduled for November 12, 2024), the monetary reward for reporting new, unreleased security vulnerabilities is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the HackerOne page and in the security white paper.
\n\n\n\nFor plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.
\n\n\n\nThanks for continuing to test your themes and plugins with the WordPress 6.7 beta releases. With RC3, you’ll want to conclude your testing and update the “Tested up to” version in your plugin’s readme file to 6.7.
\n\n\n\nIf you find compatibility issues, please post detailed information to the support forum.
\n\n\n\nDo you speak a language other than English? ¿Español? Français? Русский? 日本? हिन्दी? বাংলা? You can help translate WordPress into more than 100 languages.
\n\n\n\nRC3 arrives,
Final polish, last bugs fall,
Six point seven calls.
Thank you to the following contributors for collaborating on this post: @peterwilsoncc, @joedolson, @sabernhardt.
\n\";s: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:\"18056\";s: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:69:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.7 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2024/10/wordpress-6-7-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Oct 2024 17:08:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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.7\";s: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=18043\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:361:\"The second release candidate (RC2) for WordPress 6.7 is ready for download and testing! This 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’s recommended that you evaluate RC2 on a test server and site. Reaching this phase […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"David Baumwald\";s: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:11116:\"\nThe second release candidate (RC2) for WordPress 6.7 is ready for download and testing!
\n\n\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’s recommended that you evaluate RC2 on a test server and site.
\n\n\n\nReaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.7 is the best it can be.
\n\n\n\nYou can test WordPress 6.7 RC2 in four ways:
\n\n\n\nPlugin | Install and activate the WordPress Beta Tester plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream). |
---|---|
Direct Download | Download the RC2 version (zip) and install it on a WordPress website. |
Command Line | Use the following WP-CLI command:wp core update --version=6.7-RC2 |
WordPress Playground | Use the 6.7 RC2 WordPress Playground instance (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup. |
The current target for the WordPress 6.7 release is November 12, 2024. Get an overview of the 6.7 release cycle, and check the Make WordPress Core blog for 6.7-related posts in the coming weeks for further details.
\n\n\n\nGet a recap of WordPress 6.7’s highlighted features in the Beta 1 announcement. For more technical information related to issues addressed since RC1, you can browse the following links:
\n\n\n\nWordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.
\n\n\n\nTesting for issues is critical to ensuring WordPress is performant and stable. It’s also a meaningful way for anyone to contribute. This detailed guide will walk you through testing features in WordPress 6.7. For those new to testing, follow this general testing guide for more details on getting set up.
\n\n\n\nIf you encounter an issue, please report it to the Alpha/Beta area of the support forums or directly to WordPress Trac if you are comfortable writing a reproducible bug report. You can also check your issue against a list of known bugs.
\n\n\n\nCurious about testing releases in general? Follow along with the testing initiatives in Make Core and join the #core-test channel on Making WordPress Slack.
\n\n\n\nFrom now until the final release of WordPress 6.7 (scheduled for November 12, 2024), the monetary reward for reporting new, unreleased security vulnerabilities is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the HackerOne page and in the security white paper.
\n\n\n\nFor plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.
\n\n\n\nThanks for continuing to test your themes and plugins with the WordPress 6.7 beta releases. With RC2, you’ll want to conclude your testing and update the “Tested up to” version in your plugin’s readme file to 6.7.
\n\n\n\nIf you find compatibility issues, please post detailed information to the support forum.
\n\n\n\nDo you speak a language other than English? ¿Español? Français? Русский? 日本? हिन्दी? বাংলা? You can help translate WordPress into more than 100 languages.
\n\n\n\nSix point seven’s dawn,
RC2 sweeps bugs away,
Sites stand firm and strong.
Thank you to the following contributors for collaborating on this post: @jorbin.
\n\";s: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:\"18043\";s: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:72:\"\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WordPress Community Creates 1,000 Block Themes in 1,000 Days\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2024/10/wordpress-community-creates-1000-block-themes-in-1000-days/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 23 Oct 2024 17:01:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s: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:7:\"Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:12:\"block editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:6:\"Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18029\";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:193:\"In nearly 1,000 days, the WordPress community has created 1,000 Block themes—coming together to use the full potential of the Site Editor and unleash new creative possibilities for everyone. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"annezazu\";s: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:4122:\"\nIn nearly 1,000 days, the WordPress community has created 1,000 Block themes—coming together to use the full potential of the Site Editor and unleash new creative possibilities for everyone.
\n\n\n\nFirst introduced in WordPress 5.9, Block themes have steadily evolved, improving flexibility and functionality for themers, users, and agencies alike. Now, design tools allow customizing almost every detail. With style variations, users can change the overall look of their site in a few clicks. You can even use curation options to customize the editing process itself. But we’re not done! We can’t wait to keep pushing Block themes even further. Thank you to every early adopter who, by embracing early features with passion, helped shape the Block themes we love today with feedback and testing.
\n\n\n\nIf you haven’t yet explored Block themes, check out some of the resources below to get inspired:
\n\n\n\nLet’s celebrate and share our contributions! Please comment on the Theme Team’s post dedicated to highlighting this milestone to share your favorite Block theme and thank those who have contributed along the way.
\n\n\n\nThank you to @kristastevens for editorial help, @beafialho for the featured image, and @kafleg for reviewing.
\n\";s: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:\"18029\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:69:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.7 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2024/10/wordpress-6-7-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Oct 2024 16:42: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: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.7\";s: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=18023\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"The first release candidate (RC1) for WordPress 6.7 is ready for download and testing! This 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’s recommended that you evaluate RC1 on a test server and site. Reaching this phase […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"David Baumwald\";s: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:10920:\"\nThe first release candidate (RC1) for WordPress 6.7 is ready for download and testing!
\n\n\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’s recommended that you evaluate RC1 on a test server and site.
\n\n\n\nReaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.7 is the best it can be.
\n\n\n\nYou can test WordPress 6.7 RC1 in four ways:
\n\n\n\nPlugin | Install and activate the WordPress Beta Tester plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream). |
---|---|
Direct Download | Download the RC1 version (zip) and install it on a WordPress website. |
Command Line | Use the following WP-CLI command:wp core update --version=6.7-RC1 |
WordPress Playground | Use the 6.7 RC1 WordPress Playground instance (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup. |
The current target for the WordPress 6.7 release is November 12, 2024. Get an overview of the 6.7 release cycle, and check the Make WordPress Core blog for 6.7-related posts in the coming weeks for further details.
\n\n\n\nGet a recap of WordPress 6.7’s highlighted features in the Beta 1 announcement. For more technical information related to issues addressed since Beta 3, you can browse the following links:
\n\n\n\nWant to look deeper into the details and technical notes for this release? These recent posts cover some of the latest updates:
\n\n\n\nWordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.
\n\n\n\nTesting for issues is critical to ensuring WordPress is performant and stable. It’s also a meaningful way for anyone to contribute. This detailed guide will walk you through testing features in WordPress 6.7. For those new to testing, follow this general testing guide for more details on getting set up.
\n\n\n\nIf you encounter an issue, please report it to the Alpha/Beta area of the support forums or directly to WordPress Trac if you are comfortable writing a reproducible bug report. You can also check your issue against a list of known bugs.
\n\n\n\nCurious about testing releases in general? Follow along with the testing initiatives in Make Core and join the #core-test channel on Making WordPress Slack.
\n\n\n\nFrom now until the final release of WordPress 6.7 (scheduled for November 12, 2024), the monetary reward for reporting new, unreleased security vulnerabilities is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the HackerOne page and in the security white paper.
\n\n\n\nFor plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.
\n\n\n\nThanks for continuing to test your themes and plugins with the WordPress 6.7 beta releases. With RC1, you’ll want to conclude your testing and update the “Tested up to” version in your plugin’s readme file to 6.7.
\n\n\n\nIf you find compatibility issues, please post detailed information to the support forum.
\n\n\n\nDo you speak a language other than English? ¿Español? Français? Русский? 日本? हिन्दी? বাংলা? You can help translate WordPress into more than 100 languages. This release milestone (RC1) also marks the hard string freeze point of the 6.7 release cycle.
\n\n\n\nI See An R.C.
You See A Chance For Testing
Six Seven For The Win!
Thank you to the following contributors for collaborating on this post: @atachibana, @jorbin.
\n\";s: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:\"18023\";s: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:62:\"Expanding Our Code of Conduct to Protect Private Conversations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2024/10/protect-private-conversations/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 19 Oct 2024 00:51:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17994\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:346:\"At the heart of our community is our shared pledge to create a space that is harassment-free, welcoming, and inclusive for all. Our Community Code of Conduct already outlines a clear set of expectations, while also providing examples of unacceptable actions. Today, we are reinforcing our values by adding another element to our list of […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2937:\"\nAt the heart of our community is our shared pledge to create a space that is harassment-free, welcoming, and inclusive for all. Our Community Code of Conduct already outlines a clear set of expectations, while also providing examples of unacceptable actions. Today, we are reinforcing our values by adding another element to our list of unacceptable behaviors: Publishing private messages without consent.
\n\n\n\nThe relationships we build within our community often involve private discussions. These conversations may involve sensitive matters, personal experiences, or simply casual exchanges. Regardless of the content, every individual should feel confident that their private communications will remain private unless they grant explicit permission to share them.
\n\n\n\nSharing private messages without consent is a breach of trust that can also lead to unintended harm, including emotional distress or misrepresentation. When members of our community feel they cannot trust others in their personal conversations, it undermines the collaborative spirit that is crucial to our collective success.
\n\n\n\nBy explicitly addressing the publication of private messages without consent, we are reinforcing an existing unacceptable behavior in our Community Code of Conduct: Other conduct which could reasonably be considered inappropriate in a professional setting. Sharing private communications without permission is a clear violation of professional integrity.
\n\n\n\nThis new addition ensures that private messages receive the same level of protection as personal information and that sensitive communications shared in confidence will not be disclosed without prior consent. An important exception to this is when sharing private messages is necessary for reporting incidents or concerns to the Incident Response Team, as part of our commitment to maintaining a safe and respectful environment.
\n\n\n\nUltimately, this change encourages honest, constructive engagement across all levels of participation.
\n\n\n\nThe strength of our community lies in the trust we place in one another. By clarifying and reinforcing our expectations, we are taking another step toward maintaining an inclusive, respectful, and safe environment for everyone.This new addition will take effect immediately, and violations will be handled in accordance with our existing enforcement guidelines. Together, we can ensure our community remains a place of collaboration, trust, and mutual respect.
\n\";s: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:\"17994\";s: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:27:\"WordPress Thanks Salesforce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2024/10/thank-you-salesforce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 18 Oct 2024 20:17: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18012\";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:326:\"In the midst of our legal battles with Silver Lake and WP Engine, I wanted to take a moment to highlight something positive. Because of my friendships with the co-founders of Slack, Stewart Butterfield and Cal Henderson, WordPress.org has had a free version of the Pro version of Slack since they started in 2009. We […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Matt Mullenweg\";s: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:2645:\"\nIn the midst of our legal battles with Silver Lake and WP Engine, I wanted to take a moment to highlight something positive.
\n\n\n\nBecause of my friendships with the co-founders of Slack, Stewart Butterfield and Cal Henderson, WordPress.org has had a free version of the Pro version of Slack since they started in 2009. We switched from IRC to Slack, and it was like superpowers were unlocked for our team.
\n\n\n\nOver the past 10 years, Slack has been our secret weapon of productivity compared to many other open source projects. Its amazing collaboration features have allowed us to scale WordPress from running just a few blogs to now powering around 43% of all websites in the world, almost 10 times the runner-up in the market.
\n\n\n\nAs we have scaled from very small to very large, Slack has scaled right alongside us, seemingly effortlessly. WordPress.org currently has 49,286 users on its Slack Business+ instance, which would cost at least $8.8M/yr if we were paying. (And we may need to go to their enterprise grid, to support e-discovery in the lawsuit attacks from WP Engine, which would cost even more.)
\n\n\n\nThis incredible generosity was continued by the enlightened leadership of Marc Benioff at Salesforce when they bought Slack in 2020. However, it has not been widely known or recognized on our Five for the Future page, which only highlights self-reported contributor hours and doesn’t mention Salesforce at all.
\n\n\n\nThis is a grave error, and we are correcting it today. Going forward:
\n\n\n\nWe just want to repeat: Thank you. We hope to deepen our partnership with Salesforce in the future.
\n\";s: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:\"18012\";s: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: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:34:\"WP Engine Promotions & Coupons\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2024/10/wp-engine-promotions/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 17 Oct 2024 15:19:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=17996\";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:354:\"Given the egregious legal attacks by WP Engine against WordPress co-founder Matt Mullenweg, a number of their customers have been looking for alternative hosting, and in return a number of hosts have created specials and promotions for WP Engine customers looking to migrate to a host that has great relations with WordPress.org. Here they are, […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2258:\"\nGiven the egregious legal attacks by WP Engine against WordPress co-founder Matt Mullenweg, a number of their customers have been looking for alternative hosting, and in return a number of hosts have created specials and promotions for WP Engine customers looking to migrate to a host that has great relations with WordPress.org. Here they are, in alphabetical order.
\n\n\n\nWe’ll update this post if any new offers come online, get in touch and we’ll link it.
\n\n\n\nWordPress 6.7 Beta 3 is now ready for testing!
\n\n\n\nThis beta 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 you evaluate Beta 3 on a test server and site.
\n\n\n\nYou can test WordPress 6.7 Beta 3 in four ways:
\n\n\n\nPlugin | Install and activate the WordPress Beta Tester plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream). |
---|---|
Direct Download | Download the Beta 3 version (zip) and install it on a WordPress website. |
Command Line | Use the following WP-CLI command:wp core update --version=6.7-beta3 |
WordPress Playground | Use the 6.7 Beta 3 WordPress Playground instance to test the software directly in your browser without the need for a separate site or setup. |
The current target date for the final release of WordPress 6.7 is November 12, 2024. Get an overview of the 6.7 release cycle, and check the Make WordPress Core blog for 6.7-related posts in the coming weeks for more information.
\n\n\n\nCatch up on what’s new in WordPress 6.7: Read the Beta 1 and Beta 2 announcements for details and highlights.
\n\n\n\nYour help testing the WordPress 6.7 Beta 3 version is key to ensuring everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. This detailed guide will walk you through testing features in WordPress 6.7.
\n\n\n\nIf you encounter an issue, please report it to the Alpha/Beta area of the support forums or directly to WordPress Trac if you are comfortable writing a reproducible bug report. You can also check your issue against a list of known bugs.
\n\n\n\nCurious about testing releases in general? Follow along with the testing initiatives in Make Core and join the #core-test channel on Making WordPress Slack.
\n\n\n\nBetween Beta 1, released on October 1, 2024, and the final Release Candidate (RC) scheduled for November 5, 2024, the monetary reward for reporting new, unreleased security vulnerabilities is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the HackerOne page and in the security white paper.
\n\n\n\nWordPress 6.7 Beta 3 contains more than 26 Editor updates and fixes since the Beta 2 release, including 18 tickets for WordPress core.
\n\n\n\nEach beta cycle focuses on bug fixes; more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 3 using these links:
\n\n\n\nCode in motion hums,
New features bloom, bugs retreat,
6.7 calls.
Props to @joedolson and @jeffpaul for proofreading and review, and haiku from @colorful-tones.
\n\";s: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:\"17984\";s: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: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:20:\"Secure Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2024/10/secure-custom-fields/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 12 Oct 2024 18:26:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17956\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:335:\"On behalf of the WordPress security team, I am announcing that we are invoking point 18 of the plugin directory guidelines and are forking Advanced Custom Fields (ACF) into a new plugin, Secure Custom Fields. SCF has been updated to remove commercial upsells and fix a security problem. On October 3rd, the ACF team announced […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Matt Mullenweg\";s: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:2841:\"\nOn behalf of the WordPress security team, I am announcing that we are invoking point 18 of the plugin directory guidelines and are forking Advanced Custom Fields (ACF) into a new plugin, Secure Custom Fields. SCF has been updated to remove commercial upsells and fix a security problem.
\n\n\n\nOn October 3rd, the ACF team announced ACF plugin updates will come directly from their website. Sites that followed the ACF team’s instructions on “How to update ACF” will continue to get updates directly from WP Engine. On October 1st, 2024, WP Engine also deployed its own solution for updates and installations for plugins and themes across their customers’ sites in place of WordPress.org’s update service.
\n\n\n\nSites that continue to use WordPress.org’s update service and have not chosen to switch to ACF updates from WP Engine can click to update to switch to Secure Custom Fields. Where sites have chosen to have plugin auto-updates from WordPress.org enabled, this update process will auto-switch them from Advanced Custom Fields to Secure Custom Fields.
\n\n\n\nThis update is as minimal as possible to fix the security issue. Going forward, Secure Custom Fields is now a non-commercial plugin, and if any developers want to get involved in maintaining and improving it, please get in touch.
\n\n\n\nSimilar situations have happened before, but not at this scale. This is a rare and unusual situation brought on by WP Engine’s legal attacks, we do not anticipate this happening for other plugins.
\n\n\n\nWP Engine has posted instructions for how to use their version of Advanced Custom Fields that uses their own update server, so you have that option, though the WordPress Security Team does not recommend it until they fix the security issues. You can uninstall Advanced Custom Fields and activate Secure Custom Fields from the plugin directory and be just fine.
\n\n\n\nThere is separate, but not directly related news that Jason Bahl has left WP Engine to work for Automattic and will be making WPGraphQL a canonical community plugin. We expect others will follow as well.
\n\";s: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:\"17956\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 13 Nov 2024 08:57:24 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:37:\"Accept-Encoding, accept, content-type\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 12 Nov 2024 22:46:37 GMT\";s:4:\"link\";s:63:\"Each WordPress release celebrates an artist who has made an indelible mark on the world of music. WordPress 6.7, code-named “Rollins,” pays tribute to the legendary jazz saxophonist Sonny Rollins. Known as one of the greatest improvisers and pioneers in jazz, Rollins has influenced generations of musicians with his technical brilliance, innovative spirit, and fearless approach to musical expression.
\n\n\n\nSonny Rollins’ work is characterized by its unmatched energy and emotional depth. His compositions, such as “St. Thomas,” “Oleo,” and “Airegin,” are timeless jazz standards, celebrated for their rhythmic complexity and melodic inventiveness. Rollins’ bold and exploratory style resonates with WordPress’ own commitment to empowering creators to push boundaries and explore new possibilities in digital expression.
\n\n\n\nEmbrace the spirit of innovation and spontaneity that defines Rollins’ sound as you dive into the new features and enhancements of WordPress 6.7.
\n\n\n\nWordPress 6.7 debuts the modern Twenty Twenty-Five theme, offering ultimate design flexibility for any blog at any scale. Control your site typography like never before with new font management features. The new Zoom Out feature lets you design your site with a macro view, stepping back from the details to bring the big picture to life.
\n\n\n\n \n\n\n\nTwenty Twenty-Five offers a flexible, design-focused theme that lets you build stunning sites with ease. Tailor your aesthetic with an array of style options, block patterns, and color palettes. Pared down to the essentials, this is a theme that can truly grow with you.
\n\n\n\nEdit and arrange entire sections of your content like never before. A broader view of your site lets you add, edit, shuffle, or remove patterns to your liking. Embrace your inner architect.
\n\n\n\nThis feature introduces a new UI for connecting blocks to custom fields, putting control of dynamic content directly in the editor. Link blocks with fields in just a few clicks, enhancing flexibility and efficiency when building. Your clients will love you—as if they didn’t already.
\n\n\n\nCreate, edit, remove, and apply font size presets with the next addition to the Styles interface. Override theme defaults or create your own custom font size, complete with fluid typography for responsive font scaling. Get into the details!
\n\n\n\nWordPress 6.7 delivers important performance updates, including faster pattern loading, optimized previews in the data views component, improved PHP 8+ support and removal of deprecated code, auto sizes for lazy-loaded images, and more efficient tag processing in the HTML API.
\n\n\n\n65+ accessibility fixes and enhancements focus on foundational aspects of the WordPress experience, from improving user interface components and keyboard navigation in the Editor, to an accessible heading on WordPress login screens and clearer labeling throughout.
\n\n\n\nFor a comprehensive overview of all the new features and enhancements in WordPress 6.7, please visit the feature-showcase website.
\n\n\n\n \n\n\n\nLearn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.
\n\n\n\nRead the WordPress 6.7 Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.
\n\n\n\nExplore the WordPress 6.7 Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress.
\n\n\n\nEvery release comes to you from a dedicated team of enthusiastic contributors who help keep things on track and moving smoothly. The team that has led 6.7 is a cross-functional group of contributors who are always ready to champion ideas, remove blockers, and resolve issues.
\n\n\n\nThe mission of WordPress is to democratize publishing and embody the freedoms that come with open source. A global and diverse community of people collaborating to strengthen the software supports this effort.
\n\n\n\nWordPress 6.7 reflects the tireless efforts and passion of more than 780 contributors in countries all over the world. This release also welcomed over 230 first-time contributors!
\n\n\n\nTheir collaboration delivered more than 340 enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress open source community.
\n\n\n\n!Benni · 75thtrombone · Aaron Jorbin · Aaron Robertshaw · Aaron Ware · aatanasov · Abha Thakor · abhi3315 · Abhishek Deshpande · Abir · acafourek · Adam Heckler · Adam Silverstein · Adam Wood · Adam Zieliński · Adarsh Akshat · Adrian · aduth · ah72king · Ahmar Zaidi · Ahmed Kabir Chaion · Ahmed Saeed · Ajit Bohra · Akash Dhawade · Aki Hamano · Akira Tachibana · Akshat Kakkad · Al-Amin Firdows · Alan Fuller · Albert Juhé Lluveras · Alessandro Tesoro · Alessio · Alex Concha · Alex Lende · Alex Stine · alex27 · Alexander Frank · Alexandre Buffet · Alexandru Horeanu · alexcu21 · Ali Ali · aliaghdam · allilevine · Alvaro Gómez · Alvi Tazwar · Amin Charoliya · Amir Abbas · Amit Raj · Amjad Ali · Anand Thakkar · Andrea Fercia · Andrea Roenning · Andrei Draganescu · Andrei Lupu · andreiglingeanu · Andrew Hayward · Andrew Ozz · Andrew Serong · Andrey \"Rarst\" Savchenko · André Maneiro · Andy Fragen · Angelika Reisiger · Aniket Patel · Ankit K Gupta · Ankit K. Gupta · Ankit Kumar Shah · Ankur Vishwakarma · Anne McCarthy · Anthony Burchell · Anthony Hortin · Antoine · Anton Vlasenko · Antonio Sejas · apmeyer · Ari Stathopoulos · Armando J. Perez Carreno · Armands · arnaudbroes · Art Smith · Artemio Morales · Arthur Chu · arypneta · asafm7 · Aslam Doctor · Autumn · Ayesh Karunaratne · Bård Bjerke Johannessen · Béryl de La Grandière · Balu B · Barry Ceelen · Bart Kalisz · Beatriz Fialho · Ben Dwyer · Benjamin Denis · Benjamin Zekavica · Benoit Chantre · Bernhard Kau · Bernhard Reiter · Bernhard Riedl · bernhard-reiter · berubenic · Bhavesh · bijit027 · Birgit Pauli-Haack · blindmikey · bobbyleenoblestudios · Bogdan Nikolic · Brad · brad hogan · Brad Jorsch · Brandon Kraft · Brent Jett · Brett Shumaker · Brian Alexander · Brian Coords · Brian Gardner · Brian Gosnell · Brian Henry · bridgetwes · brobken · Bruno Freiberger Garcia · Cambabutonono · Carlos Bravo · Carlos G. P. · Carolina Nymark · Carsten Bach · cbirdsong · Chirag Mathur · ChriCo · Chris Reynolds · Chris Trynkiewicz (Sukces Strony) · Christoph Daum · Christopher Finke · Christopher Kanitz · Christy Nyiri · Ciprian · codersantosh · Colin Stewart · Corey Worrell · Courtney Robertson · craynor · creativethemeshq · Cullen Whitmore · Cupid Chakma · cweiske · Cyrille · da5f656f · Dademaru · daleharrison · Damon Cook · Damon Cook · Dani Guardiola · Daniel Richards · Daniele Scasciafratte · Danny · dannyreaktiv · darerodz · Dareth NHANG · Darren Ethier (nerrad) · Darshit Rajyaguru · daveagp · David · David Ballarin Prunera · David Baumwald · David Biňovec · David Bowman · David Brown · David Calhoun · David Godleman · David Henriet · David Herrera · David Levine · David Rozando · David Shanske · David Smith · ddewan · Dean Sas · DEBARGHYA BANERJEE · Deepak Rohilla · Deepak Vijayan · Dekadinious · Dennis Snell · Derek Smart · Deryck · designsimply · Devansh Chaudhary · devspace · Dhananjay Kuber · Dharmesh Patel · Dhrumil Kumbhani · Dhruval Shah · Dhruvang21 · Dilip Bheda · Dilip Modhavadiya · Dion Hulse · Divi Banks · dj.cowan · djennez · Doni Kuntoro · Dor Zuberi · Drew Jaynes · Drivingralle · drzraf · Earle Davies · eballeste · eclev91 · Ed Beck · ejnwebmaster · elfu98 · Elio Rivero · Ella van Durpe · Elliott Richmond · Emmanue ATSÉ · Emmanuel Hesry · emmanuel78 · Enrico Battocchi · Enrique Sánchez · Eric Dye · Erik · erikiva · erikyo · Evan Herman · Evan Mullins · Fabian Kägy · Fabio Rubioglio · FahimMurshed · Faisal Ahammad · Faisal Alvi · Faizan Nabi · Farhan Ahmed · Fayyaz · Felix Arntz · Felix Renicks · Fernando Jorge Mota (a11n) · Firoz Sabaliya · Francisco · Fransisca H · fullworks · Gale Wallace · gansbrest · Gareth Elwell · Garrett Hyder · Gary Pendergast · Gaurav Tiwari · gauravsingh7 · Georg · George Mamadashvili · Gerardo Pacheco · Germán Freixinós · gmariani405 · GraemeF · Grant M. Kinney · greentreefrog · GreenWorld · Greg Ziółkowski · Guido Scialfa · Gyurmey · Héctor Prieto · Halil ESEN · hanneslsm · Hans-Gerd Gerhards · Hardip Parmar · Hareesh S · Harper Holsinger · Harsh Gajipara · harshvaishnav · Haz · hectorjarquin · hedgefield · Helen Hou-Sandi · Henrique Iamarino · Himanshu Pathak · hirschferkel · Hit Bhalodia · Hossein · htmgarcia · huubl · Huzaifa Al Mesbah · Ibrahim · Ibrahim Riaz · Imran Hossain (a11n) · Isabel Brison · IT Path Solutions · itapress · Ivan Ottinger · Jack Stevens · Jacob Cassidy · Jacob Smith · jagirbahesh · Jainil Shah · Jakob Trost · James Koster · James Osborne · James Rosado · James Wesley Goedert · Jan Pfeil · janak Kaneriya · Jarda Snajdr · jarekmorawski · Jarko Piironen · Jason Bahl · Jason LeMahieu (MadtownLems) · javad2000 · Javier Arce · Jawad Malik · Jay · Jayadevan k · jbrya029 · JD Ahir · Jean-Baptiste Audras · Jeff Chi · Jeff Ong · Jeffrey de Wit · Jeffrey Paul · Jenil Kanani · Jennifer Farhat · Jenny Dupuy · Jeremy Felt · Jeremy Herve · Jerry Jones · Jesko Bendmann · Jessica Lyschik · jetaldobariya1 · Jigar Panchal · jimmyh61 · Joe Dolson · Joe Hoyle · Joe McGill · Joen Asmussen · John Blackbourn · John Espiritu · John Godley · John James Jacoby · John Regan · JohnRDOrazio · Jon Surrell · Jonas · Jonathan Bossenger · Jonathan Desrosiers · Jonny Harris · Jonny Waters · jordesign · Jorge Costa · Jos Klever · Jose Varghese · Josepha · Joshua Goode · Jossnaz · Juan Aldasoro · JuanMa Garrido · julianoe · Julie Moynat · Juliette Reinders Folmer · Juned Sabaliya · Justin Tadlock · K. Adam White · Kaavya Iyer (woo-hc) · Kadim Gültekin · KafleG · Kai Hao · Kajal Gohel · Kamal Hosen · Kamran Hussen · Karan Gupta · Karol Manijak · Karthik Thayyil · Kartik Mehta · Kartik Suthar · kbrownkd (a11n) · Keffr3n · Kel Santiago-Pilarski · Kellen Mace · Kelly Choyce-Dwan · keoshi · Kevin Behrens · Kevin Taron · kevinswalsh · Khokan Sardar · Kira Schroder · Kishan Jasani · kisquian · Kjell Reigstad · kkmuffme · Knut Sparhell · Kowsar Hossain · kracked888 · Krishna Neupane · kristastevens · Krupa Nanda · Krupal Panchal · Kunal Madhak · Kunjan Gohel · Kurt Payne · Kushang Tailor · Lae · Lara Schenck · lastsplash (a11n) · Laura Byrne · laurelfulford · Lauren · Lawrence Joe · leemon · Lena Morita · Liam Gladdy · lifelightweb · Linkon Miyan · Linnea Huxford · liviopv · Louis Wolmarans · Lourens · Love Soni · Lucas · Luigi Teschio · Luis Felipe Zaguini · luisherranz · lukasbesch · Luke Carbis · Madhu Dollu · madpeter · Maggie Cabrera · Mahmudul Haque Nadim · Mai · Makarand G. Mane · manbo · Manesh Timilsina · Manuel Schmalstieg · Manzoor Wani (a11n) · María Anguas · Marc · Marc Armengou · Marcel Tannich · Marcelo de Moraes Serpa · Marcin Pietrzak · Marco Ciampini · Marco Pereirinha · marcwieland95 · Marek Železný · margolisj · Maria Yohana · Marie · Marin Atanasov · Mario Santos · Marius L. J. · mariushosting · Mark Howells-Mead · Mark Parnell · Mark-k · Martijn van der Klis · martin.krcho · marybaum · mat_ · Matias Benedetto · Matias Ventura · Matt Mullenweg · Matt Robinson · Matt Sherman · Matteo Enna · Matthew Boynes · Matthew Riley MacPherson · Matthias Kittsteiner · mattraines · maurodf · Mayank Tripathi · Mayur Prajapati · mcrisp1972 · Md Abul Bashar · Md Hossain Shohel · Md. Istiaq Hossain · mdviralsampat · megane9988 · Mehedi Hassan · Mehul Kaklotar · Mel Choyce-Dwan · meteorlxy · Micha Krapp · Michael Beckwith · Michael Bourne · Michael James Ilett · michaelpick · michaelwp85 · Michal Czaplinski · Michelle Bulloch · Miguel Axcar · Miguel Fonseca · Miguel Lezama · Mikael Korpela · Mike McAlister · Mike Ritter · mikeb8s · Mikey Binns · milamj · Milana Cap · Mitchell Austin · mklusak · mleathem · mlf20 · Mobarak Ali · Mohit Dadhich · Morgan Estes · Mosne / Paolo Tesei · mossy2100 · mreishus · Muhibul Haque · mujuonly · Mukesh Panchal · Mumtahina Faguni · Nadir Seghir a11n · Naeem Haque · Nagesh Pai · Narendra Sishodiya · Naresh Bheda · Nate Finch · Nate Gay · Nazmul Hasan Robin · Nebojša Jurčić · nek285 · nendeb · neo2k23 · neotrope · Nicholas Garofalo · Nick Bohle · Nick Diego · Nick Halsey · Nick the Geek · Nicole Furlan · nidhidhandhukiya · Nihar Ranjan Das · Nik Tsekouras · Nikita Solanki · Niraj Giri · Nirav Sherasiya · Nithin John · Nithin SreeRaj · Noah Allen · Noruzzaman · nurielmeni · obliviousharmony · Olaf Lederer · Olga Gleckler · Oliver Campion · Olivier Lafleur · Omar Alshaker · Oscar Hugo Paz · p15h · Paal Joachim Romdahl · Pablo Hernández · Pablo Honey · Pamela Ribeiro · pander · Paolo L. Scala · Paragon Initiative Enterprises · Parin Panjari · Parth vataliya · Pascal Birchler · Pat O\'Brien · Patricia BT · Patrick Lumumba · Paul Bearne · Paul Biron · Paul Kevan · Paul Schreiber · Paul Wilde · paulcline · Paulo Trentin · Pavan Patil · pcarvalho · Pedro Mendonça · perryrylance · Peter Rubin · Peter Wilson · petitphp · pevogam · Phi Phan · Phil Johnston · Philipp Bammes · philwebs · Pieterjan Deneys · Piotrek Boniu · Pitam Dey · Plamen Georgiev · Pooja N Muchandikar · pooja9712 · porg · ppolo99 · Praful Patel · Pranit Dugad · Pratik Kumar · Presskopp · prettyboymp · prionkor · pwtyler · Rachel Baker · Rachel Winspear · Rafael Fischmann · Rafael Gallani · Rafiqul Islam · Rahmat Gumilar · rahulharpal · Raj Patel · Rajin Sharwar · rajkumar shashwata halder · Ramon Ahnert · Ramon Corrales · ramon fincken · Ramon James · Ramswarup Rathod · Raul Martinez · rcneil · realthemes · Rejaul Alom Khan · Renatho (a11n) · reputeinfosystems · retrofox · Riad Benguella · Rich Tabor · Rick Hellewell · Riddhi Patel · Rishi Mehta · Rishi Shah · Rishit Gupta · rithik56 · Robert Anderson · Robert Biswas · Robert Ghetau · rocket.works - Dominik Friedrich · Rodel Calasagsag a11n · Rodrigo · Rodrigo Primo · Rohan Jha · rohitmathur7 · Rostislav Wolný · Roy Tanck · roygbyte · royho · rpf5573 · rslee · Ruchir Goswami · Rufaro Madamombe · Ryan Boren · Ryan Leeson · Ryan Urban · Ryan Welcher · S P Pramodh · Sébastien SERRE · Sérgio Gomes · Sören Wünsch · sadmansh · Saeed Piri · Sagar Tamang · sahiladit · Sainath Poojary · Sakib Mohammed · Sam Toohey · samiamnot · Sampat Viral · Samuel Sidler · Samuel Silva · Sanne van der Meulen · Sarah Norris · sarahricker · Sarthak Nagoshe · Sathiya Venkatesan · Satish Prajapati · Saul Fougnier · Saulius Vikerta · Saxon Fletcher · Sayedul Sayem · scholdstrom · Scott Buscemi · Scott Kingsley Clark · Scott Reilly · Scott Taylor · scottculverhouse · seanavers · Seif Radwane · Sergey · Sergey Biryukov · Serhiy Zakharchenko · Seth Rubenstein · Shail Mehta · Shalin Shah · Sharon Austin · sheulyshila · Shoe · Showrav Hasan · Shreya Agarwal · Silas Köhler · siliconforks · Simone Maranzana · Siobhan · smerriman · Sneha Patil · Sophie - a11n · Souptik Datta · Sourabh Jain · Sourav Pahwa · staurand · Stefano Minoia · stein2nd · Stephen Bernhardt · Steven Lin · Steven Thompson · Stoyan Georgiev · styleshit · Sudip Dadhaniya · Sumit Bagthariya · Sumit Singh · Sunil Prajapati · Sunny · superchlorine · Sybre Waaijer · Syeda Fahima Jannath · Takahashi Fumiki · Takashi Irie · Tammie Lister · Tanbir Ahmod · Tanvirul Haque · Tapan Kumer Das · Taylor Gorman · tdrayson · thejaydip · thelmachido a11n · them.es · Thomas Kräftner · Thrijith Thankachan · Timi Wahalahti · Timothy Jacobs · Tirth Doshi · tmanoilov · toastercookie · TobiasBg · tobifjellner (Tor-Bjorn “Tobi” Fjellner) · Tom Cafferkey · Tom de Visser · Tom J Nowell · tomhine · tomllobet · Tonya Mork · Toro_Unit (Hiroshi Urabe) · Torsten Landsiedel · tropicalista · Troy Chaplin · Trupti Kanzariya · tunetheweb · twstokes · Ugyen Dorji · Umesh Gupta · Umesh Singh · up1512001 · Uttam Kumar Dash · valer1e · vertisoft · Vicente Canales · Vijaysinh Zala · Viktor Szépe · Vinit · Vipul Ghori · Vipul Gupta · vipulpatil · Vraja Das · vrishabhsk · wbdv · WebMan Design | Oliver Juhas · webwurm · wesrapyd · Weston Ruter · Will Skora · William Alexander · williampatton · wongjn · WPeople · wpsoul · wzieba · xipasduarte · Yani · Yann · Yannis Guyon · Yogesh Bhutkar · ytfeLdrawkcaB · Yui · Yukinobu Asakawa · Yuvrajsinh Sisodiya · Zack Krida · zeelthakkar · zitaruksergij · Zunaid Amin
\n\n\n\nMore than 40 locales have fully translated WordPress 6.7 into their language making this one of the most translated releases ever on day one. Community translators are working hard to ensure more translations are on their way. Thank you to everyone who helps make WordPress available in 200 languages.
\n\n\n\nLast but not least, thanks to the volunteers who contribute to the support forums by answering questions from WordPress users worldwide.
\n\n\n\nParticipation in WordPress goes far beyond coding, and learning more and getting involved is easy. Discover the teams that come together to Make WordPress and use this interactive tool to help you decide which is right for you.
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Nov 2024 21:35:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s: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:110:\"WPTavern: Automattic Launches ‘WP Engine Tracker’ to Monitor Sites Leaving WP Engine, Sparking Controversy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=179470\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://wptavern.com/automattic-launches-wp-engine-tracker-to-monitor-sites-leaving-wp-engine-sparking-controversy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4649:\"The ongoing WordPress-WP Engine dispute has escalated with Automattic launching a new website – WP Engine Tracker, to track the number of websites leaving WP Engine hosting.
\n\n\n\n“An Automattic thingamajig,” this website tracks WP Engine hosting migrations from September 21, 2024, and also provides a downloadable CSV list of websites currently hosted on WP Engine, dubbed “sites ready for a new home.”
\n\n\n\nOther details on this single-page website include links to promotions offered by other hosting providers for migrating from WP Engine and the number of websites each hosting provider gained via migration. Pressable is the top gainer, followed by Bluehost and SiteGround.
\n\n\n\nIronically, the site’s URL is wordpressenginetracker.com as the whole WordPress-WP Engine dispute started with Matt accusing the hosting company of misusing the WordPress trademark. Also Automattic had opposed WP Engine’s lawsuit claiming their allegations regarding lost customers should be viewed with skepticism.
\n\n\n\nSearch Engine Journal reported that the website was blocked by Cloudflare for “suspected phishing,” but it is now up. It also reported about someone registering the domain name WPEngineTracker.com.
\n\n\n\nEric Karkovack of The WP Minute tweeted, “Sort of like Ford tracking everyone who switched from Chevy. Doesn’t matter to me, I’m a Honda guy.” WordPress developer Brian Coords shared this: “This has nice design/dev, but it’s sad to see talent and resources poured into increased negativity in the community, criticism without substance, tearing down instead of building up. Just sad that’s what WordPress is becoming a symbol for.”
\n\n\n\nSecurity researcher Daniel Ruf dubbed it “amateurish”. He continued, “I’m not sure what the goal of this website is and what Matt tries to achieve. But the community is getting increasingly annoyed of such unprofessional behavior of Matt and in the security community some also think about dropping 0days for WordPress and related plugins/themes due to this whole situation. The feedback under the tweet from the official WordPress account and in the reddit community shows, what most of us think. The whole situation hurts everyone more than needed.”
\n\n\n\nAnother person commented, “So Automattic has put together a list for spammers and hackers to use to target a bunch of sites who are no longer doing business with Matt Mullenweg’s nemesis. That’s… shortsighted. This will surely result in legal action from one or more of these sites?”
\n\n\n\nAs of November 12, 18,280 websites have left WP Engine according to this website.
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Nov 2024 19:25:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:71:\"WPTavern: Design Team Unveils New WordPress Design System Figma Library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=179442\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/design-team-unveils-new-wordpress-design-system-figma-library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2643:\"Automattician James Koster has announced the launch of a new WordPress Design System library for Figma, the popular tool the design team uses to create mockups and prototypes for WordPress. “The intention of this resource is to streamline the design process for folks working in the WordPress ecosystem,” he explained.
\n\n\n\nThe design library offers a comprehensive range of components, including buttons, forms, icons, and menus, bringing everything you need into one place. It also includes style tokens that allow you to easily manage visual details like radius, elevation, color, and typography. For added convenience, the library provides handy stickers for individual components, and more extensive UI elements like the full-screen editor and site editor.
\n\n\n\nJames also revealed that the “intention is to publish a new version of the library in line with each Gutenberg release, and from 6.8 each major WordPress release too.”
\n\n\n\nFor WordPress Design Team members, the library will be automatically enabled in all new design files within the WordPress.org community Figma organization. Designers working in other Figma organizations can access it by duplicating the file from the community page and publishing it in their own organization.
\n\n\n\nFor those new to Figma, the WordPress Design Team recommends checking out Figma’s “Learn” platform, which offers a comprehensive “Get Started” section to help users become familiar with the tool.
\n\n\n\nYou can leave your feedback in the source file or on the Gutenberg repository on GitHub.
\n\n\n\nThe community has responded positively to the new library. WordPress committer Tammie Lister shared, “It also is a step towards the true design system needed. Figma is a part of the system, but an important piece when updated regularly.”
\n\n\n\nCourtney Robertson, Open Source Developer Advocate at GoDaddy, tweeted, “#WordPress just stepped up its design game with a brand-new Figma Library as part of its Design System. Designers, it’s time to explore a more seamless workflow!”.
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Nov 2024 16:38: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: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:93:\"Do The Woo Community: Strategies for Selecting Effective Marketing Channels with Afshana Diya\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86803\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://dothewoo.io/strategies-for-selecting-effective-marketing-channels-with-afshana-diya/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:231:\"In this episode of Woo BizChat, Katie Keith and Afsaneh Diya discuss effective marketing strategies for WooCommerce and WordPress businesses, emphasizing audience understanding, community engagement, and diverse marketing channels.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Nov 2024 09:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:22:\"Matt: RIP Quincy Jones\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=129636\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://ma.tt/2024/11/rip-quincy-jones/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3206:\"Quincy Jones had such an impact on the culture that it’s impossible to summarize. His discography is amazing. I feel so lucky to have met him in 2012 when I was much earlier in my career, and he didn’t have any reason to give me time, but he treated everyone as if they were important. We talked a lot about his Count Basie and Frank Sinatra days. If you’re unfamiliar with him, the Quincy documentary on Netflix is a good start. His musical fingerprints are everywhere, including the super-catchy theme songs for Sanford and Sons and Austin Powers.
\n\n\n\nHe passed away last week, on November 3rd. As a tribute, here are ten albums he was involved in from the jazz side that have been big parts of my life. I’ll link to Spotify, but find them wherever you can:
\n\n\n\nI put all ten into one Spotify playlist if you want to check them all out.
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Nov 2024 05:57: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:74:\"Gravatar: 7 Actionable Steps to List Your Social Media Handles Effectively\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"http://blog.gravatar.com/?p=2412\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://blog.gravatar.com/2024/11/11/how-to-list-social-media-handles/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21771:\"Social media handles are your digital name tags – they help people find and connect with you across every platform. When chosen and used strategically, these identifiers do more than just label your accounts; they make your brand more recognizable and help grow your following.
\n\n\n\nFrom major corporations to personal brands, the right social media handle can be the difference between getting lost in the crowd and standing out online. These handles are like a unique fingerprint across platforms, and their presentation on business cards, websites, product packaging, and marketing materials can leave a lasting impression.
\n\n\n\nWhile it may sound like a simple thing, there is a strategy to it, and we’re here to show you exactly that. This guide walks you through seven actionable steps to list your social media handles effectively.
\n\n\n\nFrom crafting consistent handles to harnessing modern tools like QR codes and integrating your profiles into video content, you’ll discover practical strategies to boost your brand’s following and make your social profiles easily accessible.
\n\n\n\nBeing consistent with your social media handles builds recognition and allows your audience to find you across different platforms. Think of your handle as your digital signature – the more consistent it is, the more memorable you become.
\n\n\n\nInconsistent handles, on the other hand, could confuse your audience. Imagine a small business called “Green Leaf Gardens,” which has different handles on each platform:
\n\n\n\nThe mix of abbreviations, numbers, and different business names confuses potential customers and dilutes brand recognition. Using @greenleafgardens consistently (or a close variation if the exact handle isn’t available) would create a stronger, more memorable online presence.
\n\n\n\nSo, how can you prevent that?
\n\n\n\nPro tip: Start with the social platforms where your audience spends most of their time. But don’t stop there – grab your handle on emerging platforms, too, even if you’re not ready to use them yet – you might need them in the future.
Before you commit to a handle, take it for a test drive. Free tools like Namechk or KnowEm can show you if your dream handle is available across multiple social media platforms and domains.
\n\n\n\nIf your first-choice handle is taken, don’t panic. Get creative with variations that still keep your brand identity intact. Maybe add your location or an industry keyword. For example, @JohnDoeBakeryNYC tells people who you are, what you do, and where you’re based.
\n\n\n\nAnd here’s a crucial step many folks overlook: check for potential trademark issues. The last thing you want is a legal headache down the road. A quick search of your local trademark office can save you a world of trouble.
\n\n\n\nPro tip: If you’re unsure about potential trademark conflicts, it’s worth chatting with a legal pro specializing in intellectual property.
Each social media platform has its own handle requirements that you need to be aware of.
\n\n\n\nFor example, the character limitations are different. Twitter (now X) has a 15-character limit, while Instagram gives you a bit more breathing room with 30 characters. LinkedIn takes a different approach, using URLs like linkedin.com/in/username without the “@” symbol. Sometimes, you might need to tweak your handle slightly to fit a platform’s requirements. That’s okay, but try to keep it as close to your brand name as possible.
\n\n\n\nNow, let’s talk symbols. On most platforms – Twitter, Instagram, TikTok – your handle starts with an “@” symbol. It’s like a universal “hey, this is a social media handle” sign. However, platforms like LinkedIn and Facebook often skip the “@” and use the full profile URL instead.
\n\n\n\nHere’s a hot tip: avoid unnecessary symbols or numbers in your handle unless they’re essential to your brand identity. Sure, @JaneDoe_123_NYC might be available, but it’s a mouthful to say out loud and a pain to type. Keep it clean and simple.
\n\n\n\nDifferent platforms have different purposes, and your handle should adapt accordingly. LinkedIn, for instance, is all about professional networking. So, your handle there might be more formal than your fun, casual Instagram handle.
\n\n\n\nFinally, don’t forget to create a custom URL where possible. On LinkedIn or Facebook, you can often set up a custom URL (like linkedin.com/in/YourBrandName) that aligns closely with your handles on other platforms. It’s an easy way to keep your brand consistent across the board.
\n\n\n\nYour marketing materials are a great opportunity to plug your social media handles and are often the first thing people look for in business cards, brochures, and product packages. Here’s how to make the most of it:
\n\n\n\nPromoting your social media handles across platforms can complicate things for your target audience, so the best course of action is to use a centralized page where they can find everything.
\n\n\n\nGravatar is a free tool that lets you create a dynamic profile and include different types of information for your audience to see, including your verified social media profiles and other important links.
\n\n\n\nThe most important feature of Gravatar is its automatic synchronization – update your profile in one place, and it will reflect across all connected platforms, which includes Slack, OpenAI, WordPress.com, GitHub, and more!
\n\n\n\nOn top of that, Gravatar allows you to verify your accounts, adding a layer of trust and authority. This is especially valuable for online personalities, entrepreneurs, CEOs, artists, and other professionals.
\n\n\n\nIn short, this is the perfect place for you to add all your social handles and easily share them across your website, email signatures, business cards, and marketing materials. You can do this by adding your personal Gravatar .link URL or generating a QR code directly from the platform.
\n\n\n\nThis can be extremely useful as it provides users with instant access to all your verified social profiles with one quick scan.
\n\n\n\nGravatar lets you create a cohesive, professional online presence that boosts your brand’s visibility and credibility. It ensures that your audience knows they’re connecting with the real you, no matter which platform they’re on.
\n\n\n\nSpeaking of QR codes, here’s how to utilize them effectively.
\n\n\n\nRemember, QR codes are most effective when paired with clear instructions and a compelling reason to scan. Provide context for what users will gain by scanning – whether it’s access to exclusive content, special offers, or a comprehensive view of your social profiles.
\n\n\n\nYour website and landing pages are prime real estate for showcasing your social media handles. By strategically integrating these handles, you can create a true connection between your web presence and social profiles.
\n\n\n\nSocial media icons are a standard and effective method to display your handles on your website. These icons typically link directly to your social profiles, allowing visitors to follow you with a single click, which is why it’s good to place them in prominent areas like the header, footer, and contact sections of your website. This ensures visitors can easily access your handles regardless of which page they’re on.
\n\n\n\nIt’s also recommended that you use branded, recognizable icons to maintain a professional appearance and keep the user experience consistent. Still, make sure that they fit your website’s design and color scheme.
\n\n\n\nDisplay live content from various platforms, such as Instagram posts, Twitter/X updates, or TikTok videos on strategic pages. For example, if you’re a food blogger, you could include an instagram feed with mouth-watering content that will entice people to follow you there.
\n\n\n\nWhat’s important here is to make it as easy as possible for readers to find you, and the best way to do this is through CTA buttons. Place them at the end of blog posts, on product pages, or in pop-ups. Direct visitors to your social platforms with clear, actionable prompts.
\n\n\n\nWith a significant portion of web traffic coming from mobile devices, remember to make your social media links mobile-friendly. Here’s how to do that:
\n\n\n\nIncorporating your social media handles into video and audio content can significantly boost your online presence. This approach allows you to reach audiences across multiple platforms and encourages cross-platform engagement.
\n\n\n\nText overlays are an effective way to make your handles visible without disrupting the main content of your videos.
\n\n\n\nVideo platforms like YouTube, TikTok, and Vimeo offer valuable space in their description boxes for promoting your handles.
\n\n\n\nVerbal mentions of your social media handles can reinforce them and prompt your audience to follow you. However, you need to be strategic: Include handle mentions at the start, during transitions, or at the end of your content. For longer content like podcasts, naturally incorporate handle mentions during topic transitions.
\n\n\n\nWe also recommend briefly explaining what kind of content followers can expect on each platform and using a call-to-action approach, encouraging listeners to connect with you on social media.
\n\n\n\nEnd screens and outros are prime locations for promoting your social media handles, as viewers often decide what to do next after finishing a video.
\n\n\n\nLive streams offer real-time opportunities to promote your social media handles while interacting directly with your audience. Use a persistent on-screen graphic showing your primary social media handles and rotate different handles throughout the stream if you’re active on multiple platforms.
\n\n\n\nYou can also verbally encourage follows by periodically reminding viewers to follow you on other platforms and highlighting exclusive content or benefits available on specific social media channels.
\n\n\n\nWatermarks ensure your handle remains visible even if your video is shared across different platforms. Place the watermark in a corner of the video where it won’t distract from the content and ensure it’s noticeable enough for viewers to remember and easily read.
\n\n\n\nRemember to be consistent! Use the same watermark design across all your video content for brand recognition. Consider using your primary social media handle as the watermark for maximum impact.
\n\n\n\nEffectively listing and promoting your social media handles is crucial for building a strong online presence. Consistency and visibility are key, but so is efficiency. Managing multiple social media profiles can become time-consuming, especially when updating handles or ensuring consistency across platforms.
\n\n\n\nGravatar offers a straightforward solution for organizing your online presence, making it easier for others to find and follow your profiles without having to manage multiple platforms. With Gravatar, you can:
\n\n\n\nWhether you’re a small business owner, entrepreneur, or social media manager, Gravatar provides a streamlined solution to keep your social media handles up-to-date and visible across your digital footprint.
\n\n\n\nTake the first step in simplifying your online presence management. Create your Gravatar profile now and start showcasing your social media handles across all platforms with ease.
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Nov 2024 21:56:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Do The Woo Community: How to Follow Do The Woo on the Fediverse\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=86782\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://dothewoo.io/blog/how-to-follow-do-the-woo-on-the-fediverse/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:152:\"Do The Woo has joined the Fediverse, allowing users to engage with episodes and blog posts across decentralized platforms like Mastodon and Threads.net.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Nov 2024 09:42:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Matthias Pfefferle\";s: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:75:\"Gravatar: Gravatar’s Guide: Crafting an Outstanding Digital Business Card\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"http://blog.gravatar.com/?p=2388\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://blog.gravatar.com/2024/11/08/creating-a-digital-business-card/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9797:\"Imagine that you’re at a networking event, eager to make connections, but you’ve run out of business cards. Or worse, you hand someone a card only to realize it has outdated information. Situations like these highlight why professionals are turning to digital business cards. These modern alternatives offer a dynamic way to share your contact details and personal brand, complete with rich media content and real-time updates.
\n\n\n\nDigital business cards shine in both online (as a link in bio tool, in the footer of contact pages and emails) and offline (in-person networking and contact sharing) settings. So, whether you’re adding them to your email signature or sharing them at in-person events, they make networking and follow-ups much easier.
\n\n\n\n As a bonus, they’re environmentally friendly, reducing paper waste.
However, creating an effective digital business card comes with challenges. Many solutions can be costly, and designing one without the necessary skills can be daunting. Thankfully, Gravatar exists – a completely free and powerful platform for crafting digital business cards.
\n\n\n\nThis guide will show you how to use Gravatar to create a professional, eye-catching digital business card – no design expertise required!
\n\n\n\nWhile it’s good to be creative and unique with your digital business card, you still need some essential elements. Let’s see what they are:
\n\n\n\nEnter Gravatar: your free ticket to a globally recognized digital identity. This platform is a powerful tool for managing your online presence across thousands of websites and services. Think of it as your universal digital business card and personal branding hub all rolled into one.
\n\n\n\nWhat sets Gravatar apart? Its simplicity. You don’t need to be a design guru to create a standout profile. Just upload an avatar and fill in your details, and you’re good to go. But don’t let the ease of use fool you – there’s plenty of room for customization. You can play with background colors, tweak button hues, or add a custom-branded header and footer.
\n\n\n\nYou can even rearrange the layout to suit your style. And for those who want to go the extra mile, why not embed a video introduction? It’s all about making your digital card uniquely you.
\n\n\n\nHere’s what you can pack into your Gravatar profile:
\n\n\n\nBut here’s where Gravatar really shines: automatic synchronization. Update your profile once, and those changes instantly appear across all connected platforms – no more scrambling to update multiple online profiles when you change jobs or contact details. This ensures your personal brand stays consistent everywhere you appear online, from professional forums to project collaborations.
\n\n\n\nAnd for those in-person networking moments, you can generate a QR code for your Gravatar profile and watch as people scan their way straight to your digital doorstep.
\n\n\n\nNever fumble for a business card again. Your Gravatar profile now lives in your phone’s wallet!
\n\n\n\nQuick Setup:
\n\n\n\nWhy You’ll Love It:
\n\n\n\n Here’s a neat trick: Gravatar integrates with comment systems on many blogs and news sites. This means your digital business card can pop up alongside your online contributions, turning everyday interactions into potential networking gold.
So, ready to create a digital business card that works as hard as you do? Let’s dive into how you can make Gravatar work its magic for your professional brand.
\n\n\n\nGravatar isn’t just another digital business card platform – it’s a revolution in online networking. Its unique email-based system allows you to manage multiple online identities effortlessly. And with thousands of integrated platforms, your Gravatar profile becomes a centralized hub for your digital presence.
\n\n\n\nWorried about design skills or costs? Gravatar eliminates these common hurdles. It’s free, user-friendly, and doesn’t require a degree in graphic design to look professional.
\n\n\n\nHead to Gravatar.com and create your free profile using your email address. It’s time to build a digital business card that works as hard as you do!
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 08 Nov 2024 22:13:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";s: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:90:\"Do The Woo Community: Friday Shares: This Week’s Must-Reads and Community Highlights, v3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=86767\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://dothewoo.io/blog/friday-shares-this-weeks-must-reads-and-community-highlights-v3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:168:\"This week’s highlights include WordPress 6.7 updates, community events, sponsorship calls, new resources, and insights into web development and e-commerce strategies.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 08 Nov 2024 10:42:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:52:\"WPTavern: WooCommerce Set to Launch New Logo in 2025\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=179174\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wptavern.com/woocommerce-set-to-launch-new-logo-in-2025\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2561:\"WooCommerce is all set to roll out a new logo in early 2025. Tamara Niesen, Chief Marketing Officer at Woo told WP Tavern, “We saw an opportunity to evolve the brand so it aligns with our new product vision and gives us a solid foundation for continuing to grow our business. The new direction helps us stand out. It’s bold, fresh, and communicates what we do and who we’re for.”
\n\n\n\n\n\n\n\nThe updated logo, featuring a lively purple and white color palette, has already sparked a buzz in the WordPress community. It showcases “WOO” in white against a deep purple background, sometimes transitioning into a shopping cart, with the “O”s doubling as wheels—perfectly representing a platform that powers millions of online stores worldwide.
\n\n\n\nJay Walsh, Director of Communications at WooCommerce.com, shared that they recently discussed plans around the Woo and WooCommerce brand and identity during the keynote session of this year’s WooSesh. The team teased a refreshed WooCommerce logo treatment during the keynote, which is part of the wider effort to make the Woo brand, voice, and identity bolder and more engaging for current and future merchants.
\n\n\n\n“Evolving our brand and our main product is crucial to our strategy of growing new stores, reaching new merchants, and maintaining our position as the world’s most popular commerce platform”, he explained.
\n\n\n\nThe animated logo has been a hit, drawing comments like “one of the best logos I’ve seen in a while” to “This is so darn cool.” BobWP of Do the Woo Podcast tweeted, “In case you missed this. And coming from someone who used to design logos professionally, the simplest ideas, which now seem obvious, are the hardest. Great job!”
\n\n\n\nRemkus de Vries of Within WordPress newsletter, shared his excitement saying, “It’s very rare to see a rebrand with a new logo where I immediately go “Wow, that’s a huge improvement, I love it”, but when I saw this last week, that’s exactly what I thought.”
\n\n\n\nDespite the enthusiasm, a few critics questioned the color choice, but WooCommerce Product Lead James Kemp has assured that “the whole rebrand is super vibrant and the purple has been enhanced.”
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 08 Nov 2024 08:35:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:73:\"Gravatar: Choosing the Right Personalization Tool: Top 7 for Your Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=2252\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://blog.gravatar.com/2024/11/07/website-personalization-tools/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:22795:\"Are you struggling with high bounce rates and lackluster conversions on your website? You’re not alone. Many businesses find it hard to create engaging, relevant experiences for their online visitors, leading to missed opportunities and lost revenue because, as shown in a recent McKinsey report, 71% of consumers now expect personalized interactions from companies.
\n\n\n\nIf you don’t provide them with one, you’re losing business, plain and simple.
\n\n\n\nThankfully, there are many website personalization tools that are transforming how businesses connect with their audience online. These tools enable companies to deliver individualized experiences that resonate with each visitor, going beyond traditional segment-based approaches.
\n\n\n\nIn the following sections, we’ll explore the top 7 personalization tools and their features, showing you how to unlock new levels of engagement and business success.
\n\n\n\nGravatar is a unique tool in the world of website personalization. It simplifies user profile management and enhances personalization based on users’ email addresses, offering a distinct advantage by utilizing data already provided by users. This approach allows developers to personalize site experiences without extensive data collection.
\n\n\n\nGravatar offers two powerful APIs for integration:
\n\n\n\nThese APIs create a centralized hub where users can update their information once, and it syncs across all Gravatar-integrated sites. Gravatar has also introduced Interests, allowing users to list specific topics they’re interested in – something that can change the game for website owners looking to understand user preferences.
\n\n\n\nFor example, an e-commerce site could show personalized product recommendations based on these interests.
\n\n\n\nBest features:
\n\n\n\nFor developers looking to import user profiles, integration with Gravatar’s profile API is needed. To streamline the user experience, it’s recommended to explain to users that they can control their avatar and profile information directly from their Gravatar profile.
\n\n\n\nUse cases: Gravatar is particularly beneficial for developers, bloggers, and business owners. It provides a consistent brand image across platforms and maximizes engagement by offering personalized user experiences.
\n\n\n\nUsed by: Gravatar integrates with popular platforms like WordPress.com, Slack, OpenAI, Figma, and Mailchimp, demonstrating its versatility and wide-reaching impact.
\n\n\n\nPrice: One of Gravatar’s standout features is its pricing model – or lack of. It’s a completely free service for site owners, developers, and users, and is run and supported by Automattic. There’s no paid version and no usage limits, making it an accessible option for businesses of all sizes.
\n\n\n\nDynamic Yield is a powerful player in the website personalization arena, known for delivering personalized onsite experiences through AI-powered targeting and real-time analytics.
\n\n\n\nBest features:
\n\n\n\nDynamic Yield integrates well with other tools to enhance personalization efforts, particularly Twilio Segment, a customer data platform enabling real-time data collection and action.
\n\n\n\nUse cases: Businesses can use Dynamic Yield to increase engagement and conversion rates, such as personalizing homepage experiences for returning visitors.
\n\n\n\nUsed by: McDonald’s, PacSun, Cotopaxi, among others.
\n\n\n\nPrice: Dynamic Yield offers a customized pricing model tailored to each client’s specific needs and scale. For detailed pricing information, you’ll need to contact their sales team directly.
\n\n\n\nOptimizely is a leading digital experience platform that empowers businesses to create, experiment, and personalize user experiences.
\n\n\n\nBest features:
\n\n\n\nUse cases: Businesses can increase engagement and conversion rates by running A/B tests on different versions of their product pages to identify the most effective elements.
\n\n\n\nUsed by: eBay, American Express, Dolby, Fjallraven, among others.
\n\n\n\nPrice: Optimizely offers a customized pricing model tailored to each client’s specific needs and scale. Contact their sales team directly for detailed pricing information.
\n\n\n\nHubSpot is a popular all-in-one CRM platform offering many powerful tools for marketing, sales, and customer service, with a strong emphasis on website personalization.
\n\n\n\nBest features:
\n\n\n\nUse cases: Businesses can use HubSpot to increase engagement and conversion rates by delivering targeted CTAs to specific visitor groups.
\n\n\n\nUsed By: Tripadvisor, Eventbrite, WeightWatchers, and more.
\n\n\n\nPrice: HubSpot offers tiered pricing plans for their different products, which include marketing, sales, service, content, operations, and commerce. All of them start at $15/month per seat and can go up to $3,600/month, depending on what you need. They also have many free tools, so you can get a taste of the platform before you commit to subscribing.
\n\n\n\nHyperise is a personalization platform that allows businesses to dynamically personalize images and content across various digital touchpoints.
\n\n\n\nBest features:
\n\n\n\nUse cases: Businesses can use Hyperise to create personalized landing pages for different audience segments, enhancing relevance and engagement.
\n\n\n\nUsed by: G2, Placer.ai, SalesLoft, and Orca Security.
\n\n\n\nPrice: Hyperise offers various pricing plans, depending on what you want included. Their Images plan costs $69/month per seat and lets you create personalized images for your outreach. The other two tiers include adding a website and videos.
\n\n\n\nSalesforce, formerly known as Evergage, is a comprehensive customer data platform that now also includes a personalization engine as part of its marketing tools. Businesses can use their tools to create individualized experiences across multiple channels, including web, mobile, and email.
\n\n\n\nBest features:
\n\n\n\nUse cases: Businesses can use Salesforce for personalized product recommendations and content tailored to individual shopping behaviors.
\n\n\n\nUsed by: General Mills, Formula 1, Accenture, among others.
\n\n\n\nPrice: This service comes in three tiers: Marketing Cloud Engagement, Marketing Cloud Account Engagement, and Marketing Cloud Growth Edition. The first two tiers go for $1,250/month, while the third is $1,500/month per organization.
\n\n\n\nYieldify is a platform designed to optimize customer journeys through personalized experiences and conversion rate optimization, focusing on e-commerce businesses.
\n\n\n\nBest features:
\n\n\n\nUse cases: Businesses can use Yieldify to reduce cart abandonment through exit-intent pop-ups and promote special offers based on user behavior.
\n\n\n\nUsed by: Lacoste, Kiehls, Clarins, The North Face, among others.
\n\n\n\nPrice: Yieldify offers customized pricing based on specific needs. Contact them directly to get started and obtain pricing information.
\n\n\n\nChoosing the right personalization tools for your website is crucial for maximizing engagement and conversion rates. Here’s how to approach this important decision:
\n\n\n\nBefore selecting a tool, identify your specific goals and challenges. Are you looking to improve user engagement, increase conversion rates, or streamline user profile management? Assess your current marketing stack and identify integration needs to ensure quick and easy implementation.
\n\n\n\nCreate a list of essential features you need in a personalization tool. Consider factors such as:
\n\n\n\nDon’t overlook the importance of data privacy and security. Tools like Gravatar emphasize user control over personal information, allowing users to edit their public profiles and share only what they’re comfortable with. Ensure the tool complies with regulations such as GDPR and CCPA for legal data handling practices.
\n\n\n\nConsider both short-term costs and long-term value when evaluating tools. Low-cost and free tools like Gravatar offer high value and low risk, making them excellent starting points for personalization efforts.
\n\n\n\nLook at real-world examples of companies successfully using personalization tools to drive growth. For instance, a great example of successful personalization is the plant-based cosmetics brand Clarins which increased conversions by 20% using Yieldify. Some of the strategies they implemented include:
\n\n\n\nLooking at examples like this will show you the full potential of the specific platform and maybe even give you some ideas on how you can implement similar strategies in your own business.
\n\n\n\nFinally, whenever you can, take advantage of demos to better understand each tool’s capabilities before making a decision. Weigh the risk versus reward, keeping in mind that tools like Gravatar offer easy integration and are free to use, making them a low-risk option to start with.
\n\n\n\nWebsite personalization tools are powerful assets in enhancing customer engagement and boosting conversion rates. By tailoring user experiences, these tools provide a significant competitive advantage. In fact, companies excelling at personalization generate 40% more revenue than their counterparts.
\n\n\n\nWhen choosing personalization tools, consider factors like powerful features, integration capabilities, and ROI measurement.
\n\n\n\nGravatar stands out with its unique advantage of utilizing existing user data for personalization without extensive on-site data collection. Its Profile API allows developers to create more detailed and personalized user experiences by integrating additional user information into their websites.
\n\n\n\nAs you explore the tools we’ve discussed, consider how they align with your business needs. Remember, Gravatar is an excellent starting point – it’s both highly useful and free.
\n\n\n\nSo what are you waiting for? Take the best out of website personalization and create experiences that your users will love!
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 07 Nov 2024 17:33: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:11:\"Ronnie Burt\";s: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:102:\"Do The Woo Community: Do the Woo is Trailbazing the Fediverse with Matthias Pfefferle and Derek Hanson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86690\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://dothewoo.io/do-the-woo-is-trailbazing-the-fediverse-with-matthias-pfefferle-and-derek-hanson/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"Do the Woo is on the Fediverse with multi-authors, audio distribution and more to come.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 07 Nov 2024 10:15: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: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: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:112:\"Do The Woo Community: Press Release: Do the Woo 4.0 Official Launch, Elevating Voices 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:43:\"https://dothewoo.io/?post_type=blog&p=86703\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://dothewoo.io/blog/press-release-do-the-woo-4-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"Press Release: The official launch of the Do the Woo Podcast Channel 4.0 takes place during WordCamp Europe in Turino, Italy.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Nov 2024 15:00: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:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: #144 – Damon Cook & Seth Rubenstein on the Transformational Interactivity API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=178900\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/podcast/144-damon-cook-seth-rubenstein-on-the-transformational-interactivity-api\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:41793:\"Transcript[00:00:00] Nathan Wrigley: Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley. Jukebox is a podcast, which is dedicated to all things, WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how the Interactivity API will transform your WordPress websites.
\n\n\n\nIf 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/feed/podcast. And you can copy that URL into most podcasts players.
\n\n\n\nIf 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/contact/jukebox and use the form there.
\n\n\n\nSo on the podcast today we have Damon Cook and Seth Rubenstein.
\n\n\n\nDamon Cook is a developer advocate with WP Engine, and previously worked as a front end developer at several WordPress focused agencies.
\n\n\n\nSeth Rubenstein began his WordPress journey in college, and is now the lead engineer at the Pew Research Center, where he works on interactive WordPress applications.
\n\n\n\nThis is the last of the podcast recorded at WordCamp, us 2024, and our focus today is the interactivity API. You may not be familiar with what this is and why it matters, so Damon and Seth will break it down, and explain how it might transform your WordPress websites in the future.
\n\n\n\nDamon starts off by defining what an interactive website is, giving examples such as single page applications, and dynamic elements like tabs and accordions. Seth adds his perspective on how interactivity aids both the end user, and website editors. Making for a more compelling user experience and efficient content creation.
\n\n\n\nWe get into why WordPress needed an interactivity API, even though the platform already supports libraries, like React. The interactivity API provides a standardized way to create dynamic content, which is essential for modern web expectations.
\n\n\n\nWe also highlight real-world examples, including faceted searching and filtering, which have been successfully implemented using this API.
\n\n\n\nThe conversation also touches on performance improvements brought by the API, emphasizing how it can offload server resources by only updating necessary content.
\n\n\n\nTowards the end we explore how the API is being used in Gutenberg blocks, and how it supports both developers and site builders.
\n\n\n\nDamon and Seth also discussed the project’s development, encouraging more contributions and feedback from the community.
\n\n\n\nIf you’re intrigued by improving your websites’ interactivity and performance, this episode is for you.
\n\n\n\nIf you’d like to find out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.
\n\n\n\nAnd so without further delay, I bring you Damon Cook and Seth Rubenstein.
\n\n\n\nI am joined on the podcast today by Damon Cook and Seth Rubenstein. Hello.
\n\n\n\n[00:03:40] Damon Cook: Hey, how’s it going?
\n\n\n\n[00:03:41] Nathan Wrigley: Yeah, really, really nice thank you. That’s Damon.
\n\n\n\n[00:03:44] Seth Rubenstein: Hello, I’m Seth.
\n\n\n\n[00:03:45] Nathan Wrigley: Thank you so much. We’re at WordCamp US, it’s happening in Oregon. It is the month of September 2024, and I’m being joined by Damon and Seth so that we can talk about the Interactivity API.
\n\n\n\nBefore we get into that, I think it’s probably important to paint a picture of both of you, what your background is with WordPress technology, et cetera. So we’ll just keep this very brief. Let’s go for Damon first. Damon, just tell us a little bit about you, your potted bio, if you like.
\n\n\n\n[00:04:10] Damon Cook: Sure, yeah. Well, I started out as a WordPress front end developer at WordPress. There’s several different WordPress focused agencies, and now I’m a developer advocate with WP Engine.
\n\n\n\n[00:04:21] Nathan Wrigley: Thank you very much. And Seth?
\n\n\n\n[00:04:23] Seth Rubenstein: My first time using WordPress was in college. I converted all of our websites to WordPress multi-site, as like the assistant web developer. And from there I just kept going, and that was just my career track from then on, just WordPress all the time. And now I am the lead engineer at the Pew Research Center, where we have a WordPress platform that we’ve made ourselves, and we work on a lot of interactive WordPress applications.
\n\n\n\n[00:04:43] Nathan Wrigley: Just staying on your bios just for a moment, what does the Pew Research Center do? I’ve not heard of them before.
\n\n\n\n[00:04:49] Seth Rubenstein: We are a non-partisan, non advocacy social science research organisation. So we basically study the American public and where they are, what they think on certain issues. And we do a lot of public polling and things like that, and we report that back. So we’re kind of like a nonprofit news organisation.
\n\n\n\n[00:05:04] Nathan Wrigley: Gosh, okay thank you. That’s really interesting.
\n\n\n\nOkay, let’s open it up and talk about the subject at hand today. So we’ve got both of these gentlemen here to talk about the Interactivity API. I think probably we should first deal with the topic of, what is an interactive website?
\n\n\n\nProbably, dear listener, if you’re listening to this, you might know this already, but I have an intuition that some people won’t. So, what are the benefits of having an interactive website? And whoever wants to answer that, pick up the mic and go for it.
\n\n\n\n[00:05:30] Damon Cook: I think the classic example is that of a single page application. So the idea of being able to navigate from page to page, or section to section even, and just have things that seem seamless, so the page isn’t refreshing, that is a pretty common scenario. But there’s also lots of other interactive pieces like tabs, accordions, all that stuff gets really helpful when you reach for the Interactivity API in creating stuff like that.
\n\n\n\n[00:05:59] Seth Rubenstein: I don’t have anything to add to that. I guess what I would say is, on the other side of it besides the front end user, the kind of, your visitor, I think the interactivity part of a website kind of also can help out your editors, and how they’re building content, and making more engaging content.
\n\n\n\nI think this will be interesting because I think, you know, Damon might have a kind of perspective of the front end user, and I’m definitely coming from a perspective of, how can I scale up my editorial team’s ability to create interactive content? And not so much like what it looks like on the front end.
\n\n\n\n[00:06:27] Nathan Wrigley: So there’s an interesting distinction there. So, does the work that you are doing touch on both the front end and the back end? So it’s not just for the forward facing, user facing part of a WordPress website. This is things that you can do in the back end, the admin side of things too.
\n\n\n\n[00:06:40] Seth Rubenstein: Yeah, it’s how editors create interactive bits of content, and how those interactive bits of content might interact with each other. Because I think right now, without the Interactivity API, that kind of content is static and siloed on the page.
\n\n\n\n[00:06:52] Nathan Wrigley: We will link in the show notes to all of the different places, and no doubt one of the first links will be to the project itself, the Interactivity, API. But I guess I have to ask the question, why is this even a project in WordPress? Is it that WordPress historically wasn’t particularly adapted towards interactive content?
\n\n\n\nI mean, we know how to publish posts and pages, and once you’ve done that, that’s kind of it. You’ve done it, and there’s no interactivity there. Is this something that has been, I don’t know, more recently thought was necessary? Is this something that you think should be in Core? Let’s just take that. Has WordPress been bad at interactivity historically?
\n\n\n\n[00:07:28] Damon Cook: I don’t think that it’s been bad historically, I think that it’s more of kind of a, I guess a technology trend of leaning into libraries like React or Preact, which Interactivity is built upon. So I think it’s more of a trend, but also, yeah, a necessity in Core, because folks are trying to build these types of experiences, and we want to have a standardised way for them to be able to do that, and not have to pull in a bunch of different libraries. And although they still can, you know, there’s a standardised and backwards compatible way for them to do it. So that’s the idea.
\n\n\n\n[00:08:05] Nathan Wrigley: Thank you. Seth, anything to add?
\n\n\n\n[00:08:06] Seth Rubenstein: Yeah. I don’t think WordPress has done a bad job on interactivity in the past, you know, ships with jQuery, ships with React, that’s all available to you. I think the Interactivity API is kind of looking at how developers have been creating front end experience with React, and narrowing that down to be like the right tool set for blocks and for block developers specifically.
\n\n\n\n[00:08:26] Nathan Wrigley: So it’s about having the right tooling. Something standardised that everybody can get their teeth into, that every developer understands.
\n\n\n\n[00:08:32] Seth Rubenstein: Yeah, and something that fits the blocks kind of model I think, a little bit better than some of these other frameworks.
\n\n\n\n[00:08:38] Nathan Wrigley: Okay, that’s great. So give us some examples of good interactivity on the internet. So we could limit ourselves to WordPress, but let’s not do that. Let’s just go out there and try to pick good examples.
\n\n\n\nReally, I guess we could be talking about Google Docs, we could be talking about websites, we could be talking about anything. Do you want to just rattle off a few things where you’ve seen and you’ve been impressed, and thought, ah okay, there’s a good example. The only reason I’m asking this really is so that the listener can just get an idea of what interactivity means.
\n\n\n\n[00:09:05] Damon Cook: Sure. And I’m actually going to set up Seth, because I think a lot of the things that his organisation is creating are representative of what folks kind of need. So I’ll set him up for that.
\n\n\n\n[00:09:17] Seth Rubenstein: And I’ll say the word that he’s probably thinking of, facets. Amazon, you’re browsing Amazon, you want to narrow down the content that you’re looking at. Those facets on the left hand side, filters, aggregations, whatever you want to call them. I think this has probably been our biggest success with the Interactivity API, is developing out facet blocks.
\n\n\n\nAnd with the Interactivity API what that would let you do is just server side hydrate data before it gets back to the client. And you can browse through all this content, and do it in a performant way that you just couldn’t do before. Or you could, but it would take a lot of work on your part to build out the framework and the technology to handle all that.
\n\n\n\nAnd so now that’s just in the box in WordPress free to use. So we can probably touch on facets a little bit more later, but I think that’s probably the best use case for the Interactivity API thus far.
\n\n\n\n[00:10:00] Nathan Wrigley: Let’s dig into that a little bit. So when you say facets, my head is immediately going to things like, I don’t know, the posts and pages, table layout, or something like that. And the fact that, if I want to get to post number 11, I might have to click a button, wait for a moment whilst the page refreshes, there’s obviously something going on there, page refresh, I’m contacting the server and what have you. Is the idea here that, a bit like, I don’t know, if I scroll on Google, I would be able to automatically upload more pages, more posts, that kind of thing? And then be able to, I don’t know, say filter them, show me only the ones that are authored by me, or ones with featured images, and that would all happen on the fly.
\n\n\n\n[00:10:35] Seth Rubenstein: Yeah. So, you know, you can filter by author, by taxonomies, category, custom taxonomies, whatever, date, et cetera. And those results just update in real time, without you having to refresh the page.
\n\n\n\nYou can paginate through those results without having to refresh the page. That, of course, is great for the end user, but it’s also great on the backend because you’re saving server resources without having to re-render that entire page every single time. So you’re only rendering out what’s changed.
\n\n\n\nSo in that way, great for the end user and great for you as a website operator, because the Interactivity API kind of offloads some of that performance overhead that way.
\n\n\n\n[00:11:07] Nathan Wrigley: Yeah, okay. I have children, and they have been born in a world where the mobile phone is completely ubiquitous. And the idea of anything refreshing to them just seems like an anathema, just a pointless thing. You know, you want to open an app, and from that moment just everything happens. You scroll, there’s more to see, you press back, it just immediately loads and what have you.
\n\n\n\nIs that kind of where we’re going with the internet? And what I mean by that is, sites where you’ve got to click a button to see another further piece of content, or for your shopping cart to be updated, or whatever it may be, that just seems like the 1990s almost.
\n\n\n\nIs it a bit of that? Is it just we’re kind of keeping up with the times? And the expectation from the next generation of users is going to be, well, if it isn’t interactive, I’m not sticking around. So if I’ve got a, I don’t know, a WooCommerce store or something like that, it’s going to be painful for a user to have to refresh, click a button to go to a cart, wait for it to load and all that. It’s just, like I said, the 1990s.
\n\n\n\n[00:12:05] Damon Cook: Yeah, I think a lot of it does touch on that and, yeah, just reaching out to that kind of experience. But, yeah, I think Seth touched on this, but the performance impact is pretty great about the Interactivity API because you’re only updating the sections, or components on the page that are really relevant to what the user is doing. So that has a performance impact. It makes things feel seamless, faster, and I think that’s a lot of probably what we’re all looking for at the end of the day.
\n\n\n\n[00:12:30] Nathan Wrigley: It feels like something more native to the device that you are on. So it feels like a Mac app, or a Windows app, or an Android, or an iPhone app. Does that kind of make sense? It just feels like we’re in the modern world, not in the old world where any kind of refresh just seems bizarre, frankly. Anything to add, Seth?
\n\n\n\n[00:12:46] Seth Rubenstein: You know, I think the coolest part about this is it basically lets you take a PHP application and turn it into a single page JavaScript app. I mean, that’s really what the Interactivity API as a whole is doing. And I think that’s what developers are looking for these days. Look at, you know, Next.js, and frameworks like that that are really grown and are really popular. And I think that this kind of API just is an answer to those for WordPress developers.
\n\n\n\n[00:13:06] Nathan Wrigley: So if I were a developer and I was, I don’t know, creating plugins, themes, blocks, whatever it may be, where do I go and find out about this? How do I get my teeth into the project? So you might want to drop a URL at this point, wherever you want to point us.
\n\n\n\n[00:13:20] Damon Cook: Sure. Well, I can tell you how I find it because I Google it. I Google it myself. Interactivity API Handbook, I’m pretty sure that’s where you’ll find it, and developer.wordpress.org. The documentation is very thorough, and up to date, and complete. And I think that’s what’s excites me about this API because it’s a very discreet project that kind of got pulled together and, yeah, the documentation is really up to date and great, so that’s where I’d go.
\n\n\n\n[00:13:47] Nathan Wrigley: Okay, I will link to that in the show notes. And probably a good idea, dear listener, to pause at this point, go and check that out and then come back and hit play.
\n\n\n\nSo from the developer sort of point of view, how baked is it? How complete is it? Is there a lot that you have achieved already? Is there a big roadmap for things that you want to achieve?
\n\n\n\nI know that’s going to be difficult to encapsulate in a few sentences, but just tell us the state of the project now for developers listening to this, they might have some intuitions as, okay, that sounds like something I could use right now, as opposed to the roadmap features that are still going to come.
\n\n\n\n[00:14:17] Damon Cook: Sure. No, it is quite complete and ready to use, and the documentation can even step you through how to integrate it into an existing block. You can even spin up a new block with the Interactivity API already baked in.
\n\n\n\nSome of the future roadmap areas is, I know that we’re still working on like client side navigation, and then pulling in kind of different modules. Like I know one experiment that’s being explored is, there’s a package for accessibility. So just the general idea of speaking, screen reader, passing along. So these APIs have been in WordPress for a while, like some of the accessibility packages. So there’s explorations in kind of porting that over, and pulling it in, because the Interactivity APIs uses JavaScript modules for a lot of this. So it’s kind of re jigging, I guess, some of the code and pulling in some of these packages so that developers can use kind of those old, not old, but accessibility features, and have all that compatibility baked in.
\n\n\n\nSo that’s some of the areas that are still getting integrated, and I’m excited for them. And I think that’s on the roadmap right now, and there’s folks contributing towards it.
\n\n\n\n[00:15:24] Seth Rubenstein: The modules area is probably, I think probably the area that it needs the most work, and hopefully the most amount of work is going into. I would say that’s probably one of the roughest parts of the Interactivity API right now is, if you need to use an external script, or kind of library, or framework, it’s a little difficult to get that in. So I think that’s probably where the most amount of work’s going to be going.
\n\n\n\nAnd I think there’s some work going on WordPress URL, bringing that in as well. And there’s a few more directives too, to the API, that are being added like wp-show which should be interesting, that should let you dynamically hydrate elements on the page in a different way. I won’t go to like all the technical details on that, but there are some additional features that are coming to the Interactivity API, beyond just the module stuff. So there are, in the Interactivity API parlance, there are new directives coming soon.
\n\n\n\n[00:16:05] Nathan Wrigley: I think for anybody who is a developer, you’re going to be fine looking at the documentation. But if I say any acronym on this podcast, I always get some pushback from people who are not developers, WordPress end users. So let’s address that.
\n\n\n\nIs there going to be functionality within the Interactivity API, although it’s there, and it is part of the Interactivity API, will be available to just builders of websites? People who have their own blog, or their own property, they’re not interested in WordPress from a technical point of view. Is there anything that they can do with it so that they can have this sort of dynamic content? Or is it mainly going to be through the work that developers do, through plugins, and blocks, and what have you?
\n\n\n\n[00:16:44] Seth Rubenstein: Right now. It’s live, already on your site if you’re running kind of the latest version of WordPress. The light box in the image block is using the Interactivity API. So site builders are already gaining that Core query, already has interactivity built in. So does the pagination block. So your publication pages can already be kind of a single page JavaScript app. So Core is adding that stuff in and, yeah, obviously plugin developers will also hopefully add interactivity to their plugins, but it’s already there for site builders.
\n\n\n\n[00:17:11] Nathan Wrigley: It feels like we’ve gone down the road in WordPress where everybody’s done their own thing with interactivity. The page builders have done, well, not just the page builders as one block, but each page builder has done a different thing. You’ve got these multitude of plugins that do the sort of facet searching and all of that kind of thing.
\n\n\n\nThe idea that there’s just going to be this one thing, I suppose in a sense you kind of want the Interactivity API to not really be that well known about. The idea is for it to sort of fade into the background and nobody even realise that there’s a thing. Is that sort of doing down the project a little bit, or is that kind of the point? If nobody knows it exists, but it works, that’s kind of the ideal.
\n\n\n\n[00:17:45] Damon Cook: Yeah, I mean these APIs are in the background, yeah, for developers to explore, and use, and pull in, and integrate. But yeah, at the end of the day, the end user shouldn’t know about it, have to know about any of this, and just, have a great experience. So yeah, I think that’s the idea.
\n\n\n\n[00:18:00] Nathan Wrigley: Where do you learn what you should be working on? So the team of volunteers and seconded people that are working on the Interactivity API, who are you listening to? Where do you get your feedback from? And I know in the open source world, it’s hard to get that feedback. And you might be just listening to a dozen voices, interested people, or there may be, I don’t know, hundreds of people talking to you. But to drive it forward, who are you listening to? Where do you get your intuitions as to what should be on the roadmap?
\n\n\n\n[00:18:25] Damon Cook: There is a Make Slack Group, it’s Interactivity API I believe, or Core Interactivity API room. But there’s some great contributors in there, and I’m probably going to mess up all their names but there’s Jon Surrell, I believe, and Greg Ziółkowski. I apologise Greg, I tried. But they are very active contributors and I probably feel like the least contributor. But, yeah, they’ve been doing a great job.
\n\n\n\nI think what it comes down to historically, the Frontity team, I’m not sure if you’re familiar with that project, but back in the day they kind of got integrated. All these smart folks into Automattic as full-time contributors, and a lot of them have been driving this project daily and contributing towards it, and they’ve been doing an amazing job. Some other folks, I think from Google, also contribute a lot towards Interactivity API. So that’s what I follow, they’re all in that room a lot and very active.
\n\n\n\n[00:19:20] Seth Rubenstein: That’s almost everybody. I don’t know if you mentioned Luis, he’s kind of my main point of contact. I ping him with questions, or ideas or, hey, we’re going to try to do this, does this sound crazy to do with the Interactivity API? And he’s pretty receptive.
\n\n\n\n[00:19:32] Nathan Wrigley: Would it be fair to say that you could do with some more helpers though? I think in the open source world we could always use some more people flocking around any particular given project. Is that something that you’d be interested in? I don’t know, one of the intentions of a podcast like this is to make things like that happen but, yeah, is that a thing?
\n\n\n\n[00:19:47] Seth Rubenstein: I would like to see a lot more people using an API. You know, we’re trying to push the limits of the API, and I think it’s important that we all kind of try to push the limits and see where it needs additional work, or where we might need extra functionality. So I’d love to see a lot more people using it because I just don’t think it’s gotten kind of the critical mass yet.
\n\n\n\n[00:20:04] Nathan Wrigley: Can you give us some nice examples that I could link to in the show notes of situations where you’ve seen, specifically the Interactivity API. We mentioned earlier about, you know, general websites and what have you.
\n\n\n\nAre there any good examples where you’ve seen somebody using it, so that if there is a developer looking at this, they can go, oh okay, that’s the kind of thing we’re talking about.
\n\n\n\n[00:20:21] Damon Cook: I certainly can share some links. I have some repos on GitHub where I’ve built custom blocks and I’ve done, I believe there’s a YouTube, at least a recording of a presentation where I’ve gone step through building, some of these custom blocks and they’re all in my repo.
\n\n\n\nI was going to hand it off to Seth, I guess again, because I know one block that stood out to me that him and his team have created is like a, well, I think you have a poll, but also like a table filtering. I mean, I think those are pretty common experiences that we see on sites, and they’ve done a great job in creating that seamless experience of filtering.
\n\n\n\n[00:20:56] Seth Rubenstein: I can just gush for a moment. If you want a good example, www.pewresearch.org, almost everything that you’re going to see there is using the Interactivity API. Mega Menus, MailChimp newsletter signups, facets, pagination, table of contents. That updates as you scroll through the page, because the chapter blocks report using the Interactivity API to the table of contents block, which is separate, their position. Data tables, charts, quizzes, you name it, pretty much everything that we have on our website is using the Interactivity API at this point.
\n\n\n\nThere’s a few plugins that we still have to convert, it’s actually only two. But almost everything that you see there is using the API, and almost all that code is available for free open source on github.com/pewresearch.
\n\n\n\n[00:21:39] Nathan Wrigley: Did you do that yourself because you are knee deep in the weeds of this, and so you could understand easily how to do that? Or would it be true to say that the developer documents that you’ve just mentioned would steer any, air quotes, competent developer to be able to achieve that? Or is it just that you know, you’ve got the Interactivity API, you also work for this organisation, so the two met.
\n\n\n\n[00:21:58] Seth Rubenstein: I think it’s because we wanted to provide learning resources, we wanted to provide a use case of, here’s what is possible. Obviously I’m talking about a lot of blocks that are interactive, but one of the things that I could really go into is our concept around the Interactivity API.
\n\n\n\nI think a lot of examples that people can point to, it’s a very specific use case. This block is a collapsible block, you click on it and it expands. We’ve taken a different approach, something that we call Atomic Interactive Blocks. And so we’ll make a block and it will have some interactivity instructions and functionality, but the point of that is to be dropped into another block, which has its own interactivity, and instructions, and functionality, and so on and so forth.
\n\n\n\nAnd so what we’ve really done is made a library of interactive blocks that kind of act like React components, and that you can drop them in other use cases and style them however you want, but what they do is defined maybe higher up.
\n\n\n\nYeah, so I think to me that’s really the power of the Interactivity API, because what that allows us to do is, as developers, is just maintain a small library of blocks that are programmed to do a lot of things, and interact with a lot of other blocks, but then hand off styling, and content, and all that stuff to designers and other people.
\n\n\n\nFor me, that’s been the coolest part about the Interactivity API, is this abstraction out of a block of what it does. We can go into it more, but the interactive stores can communicate with one another, and so you can have block A do a very specific thing, you click on it and it opens. And maybe you put that inside of block B, and block B is aware, well, when block A is set to be open, when its state is set to be open, I need to do this. And so, you know, you can imagine, you can make a button block, and use that in infinite applications.
\n\n\n\nThe way that we approach it though, that block can dynamically target an interactive store rather than statically being set to just do this one thing in this one interactive store. So all of those GitHub repos will provide examples of how that kind of system works, and how you might approach the same thing for your organisation or website.
\n\n\n\n[00:23:48] Damon Cook: I think what Seth touched upon is interesting because I think it says a lot kind of to how the API has been built to abstract some of these ideas, and just shared state between components. So like you touched on, a button can be shared, and so many are used in so many contexts, but to be able to abstract that and share state, and the interactivity between these components is, it shows a lot of, the API has been built smartly so that it can be explored and experimented with, which is neat.
\n\n\n\n[00:24:19] Nathan Wrigley: I think one thing about this topic is that it is possible, probably, to go a bit overboard with being interactive. I’ve got the API, I know how to use it now, I’m going to make everything interactive. And I guess there’s a point where you’ve got to tell yourself, slow down, not everything needs to be interactive. So let’s just go into that. Are there any uses which you would say, yeah, you could do that interactively but we probably shouldn’t? Are there any times where you think, let’s put the brakes on?
\n\n\n\n[00:24:45] Damon Cook: I mean, I think any developer will kind of realise when they’ve maybe over-engineered something. There’s always going too far and making everything, yeah. You’ll know I think if you’re trying to make everything interactive, every paragraph or, you know, it’s just kind of pointless. But the exciting part is that you can experiment and explore, interact with these APIs and see what you can do. And find the edges of what you can do, and what you should do, or shouldn’t do, that’s the fun part.
\n\n\n\n[00:25:10] Seth Rubenstein: Yeah, I will say that, is it possible that you can do too much? For sure. Technically speaking though, is it possible that you can do too much? I don’t think so. Like I said, we have a lot of interactivity blocks on a page, and the performance has been great. So I don’t think there should be a concern of like, oh, I’m overdoing it with using the Interactivity API in terms of performance. I think the more things you make with the Interactivity API, the better performance you’re going to get.
\n\n\n\n[00:25:33] Nathan Wrigley: Let’s just speak to the performance side of things because you mentioned technically how it’s achieved a little bit, but could we just develop that a little bit? And you’ve definitely said performance isn’t affected, or performance is really great a number of times. What does that actually mean? So if I’m using this, is it a more performant website because it’s, I don’t know, it’s loading content asynchronously or what have you?
\n\n\n\nHas there been any situations where you’ve had to, I don’t know, refactor things because the performance took a dip. Performance at the moment is everybody’s big worry, isn’t it? Because, you know, Google takes those metrics and ranks you accordingly. So we kind of want to know that if we make this thing interactive, it’s not going to suddenly impact our score. And I know that Google does take note of these kind of things.
\n\n\n\n[00:26:11] Seth Rubenstein: Yeah, I think on the performance bit, I mean, to get a little technical, what makes it so performant is kind of that idea of server side hydration, right? You click on something and that element changes, and that can happen client side, but if it needs a new data, that in the past has meant refreshing the page or doing something really kind of complex and technical.
\n\n\n\nNow when the data changes and when that element needs to change, that one element re renders on the server, and then it’s returned back to the client, not the whole page. So that right there is an immediate performance savings because you’re not having to render a whole page out again, just to get this one little bit of changed information on a page.
\n\n\n\n[00:26:45] Nathan Wrigley: Let’s get into probably the final thing for today, and that is the accessibility perspective of things. It’s become the watch word I think of 2023, 2024, and probably it’ll carry on, rightly so.
\n\n\n\nHas there been any accessibility concerns? Because obviously if you’re updating content live on the page, is there anything that we need to be concerned about if we’re developing with the Interactivity API in terms of the accessibility, I don’t know, screen readers or other assistive technologies.
\n\n\n\n[00:27:12] Damon Cook: Sure, yeah. I think it’s always a challenge in building your components, and making sure they’re interactive. So I think that it’s really kind of just abstracting things, trying to figure out what your HTML is, what your CSS is, and then layering on the Interactivity API. I know that some of the extensions of pulling in like strings of information that are being updated on the page, like some of the older packages, like the accessibility, or a11y, for the acronym. Some of these packages that have been in Core for a while, they’re being ported over into the Interactivity API.
\n\n\n\nThat’s something that’s kind of on the roadmap and being explored right now, so that we can have some of these screen reader updates for components, and on the page be integrated with the Interactivity API. So that’s, yeah, definitely something that’s being explored.
\n\n\n\nBut also, yeah, a lot of it is more of just the approach because just the markup and the CSS alone, having the knowledge of how to make that accessible is always a practice, an art form, and something that is always, can be improved.
\n\n\n\n[00:28:17] Nathan Wrigley: Okay, thank you. Anything, Seth?
\n\n\n\n[00:28:19] Seth Rubenstein: I think that there’s actually probably better accessibility that you’re going to get out of the Interactivity API. You know, I know that screen readers and assistive technologies have come a long way, but if a lot of your website relied on React, and other JavaScript frameworks that render after the page has been rendered, that could pose a problem for accessibility technologies. Here, all that stuff is pre-hydrated and pre-rendered before the page even loads. So your markup’s ready to go as soon as the page loads, which is actually great.
\n\n\n\n[00:28:46] Nathan Wrigley: I think probably time has caught up with us. But before we go, we did mention the URLs and where you can find the project. Let’s just, firstly, go through where we can find you individually. So that might be an email, a Twitter handle, or whatever it might be. So let’s go to Damon first. Where can people find you if they’re interested in catching up?
\n\n\n\n[00:29:03] Damon Cook: I think probably the easiest is X, I still call it Twitter. I am dcook. I’m always open. Yeah, reach out. I think 99% of my Twitter timeline is sharing WordPress ideas, outreach links. So yeah, you’ll find me for any WordPress stuff there.
\n\n\n\n[00:29:21] Nathan Wrigley: Thank you so much. And, Seth?
\n\n\n\n[00:29:22] Seth Rubenstein: You can also find me on Twitter, which I refuse to call X. Twitter.com/sethrubenstein. And I also share a bunch of Interactivity API and WordPress stuff.
\n\n\n\n[00:29:29] Nathan Wrigley: Thank you. So this is the bit where I ask, is there anything that we missed? Is there something that you desperately wanted to get across that I failed to ask?
\n\n\n\n[00:29:36] Damon Cook: To go back just a little bit, he was touching on performance. So one thing actually I wanted to speak to was the idea of the Interactivity API is a standard means for developers to pull in these kind of libraries and do interactivity experiences. And so using this API, you’re relying on, you know, a simple small bit of source code that is going to be integrated on every page. So that performance impact of not having to pull in an entire library, so it makes it a smaller source code that’s being pulled in, so that has a huge performance impact as well.
\nOn the podcast today we have Damon Cook and Seth Rubenstein.
\n\n\n\nThis is the last of the podcasts recorded at WordCamp US 2024, and our focus today is the Interactivity API. You may not be familiar with what this is and why it matters, so Damon and Seth will break it down, and explain how it might transform your WordPress websites in the future.
\n\n\n\nDamon starts off by defining what an interactive website is, giving examples such as single-page applications and dynamic elements like tabs and accordions. Seth adds his perspective on how interactivity aids both the end-user and website editors, making for a more compelling user experience and efficient content creation.
\n\n\n\nWe get into why WordPress needed an Interactivity API, even though the platform already supports libraries like React. The Interactivity API provides a standardised way to create dynamic content, which is essential for modern web expectations.
\n\n\n\nWe also highlight real-world examples, including faceted searching and filtering, which have been successfully implemented using this API. The conversation also touches on performance improvements brought by the API, emphasising how it can offload server resources by only updating necessary content.
\n\n\n\nTowards the end, we explore how the API is already being used in Gutenberg blocks and how it supports both developers and site builders. Damon and Seth also discuss the project’s development, encouraging more contributions and feedback from the community.
\n\n\n\nIf you’re intrigued by improving your WordPress site’s interactivity and performance, this episode is for you.
\n\n\n\nAs announced at the 2024 WordPress Foundation Meeting, the Kim Parsell Memorial Scholarship has been expanded to include WordCamp Europe and WordCamp Asia. Traditionally supporting a woman WordPress contributor to attend WordCamp US, the scholarship now assists women facing financial challenges in attending these three flagship WordCamp events.
\n\n\n\nThe scholarship honors Kim Parsell, a cherished member of the WordPress community and regarded as one of the first “women of WordPress”. Known fondly as #wpmom, Kim was a dedicated volunteer who devoted countless hours to the WordPress project and was a strong advocate for women entering the tech industry.
\n\n\n\nIn 2014, Kim received a travel stipend from the WordPress Foundation, allowing her to attend the WordPress Community Summit held alongside WordCamp San Francisco—a transformative experience she cherished.The WordPress Foundation now offers this scholarship in her memory.
\n\n\n\nThe announcement post states: “ This expansion honors Kim’s legacy and her dedication to inclusivity and diversity within the WordPress community, making it possible for more community members to attend these inspiring events.”
\n\n\n\nTo qualify, applicants must:
\n\n\n\nApplications are open until November 30, 2024, for both WordCamp Asia and WordCamp Europe, with notifications sent by December 21, 2024. Applications for WordCamp US will open in the coming months. The scholarship covers travel to the host city, hotel accommodation for the event duration, and a WordCamp ticket. It does not include airport transfers, meals, or other incidental expenses.
\n\n\n\nThe scholarship’s inaugural recipient in 2015 was Anyssa Ferreira, a Brazilian designer, feminist, and WordPress community activist. Last year, it was awarded to Cynthia Norman, a WordPress developer and Web designer, with a background in training and education.
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Nov 2024 04:48:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:14:\"Matt: I Voted!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=129655\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://ma.tt/2024/11/i-voted/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:485:\"It was a huge pain in the butt, because my mail-in ballot didn’t register properly, but I found a last-minute flight to Houston and this morning walked over to Congregation Emanu El and voted. It is our most sacred duty as a citizen. I encourage every American to vote.
\n\n\n\nThe third release candidate (RC3) for WordPress 6.7 is ready for download and testing!
\n\n\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’s recommended that you evaluate RC3 on a test server and site.
\n\n\n\nReaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.7 is the best it can be.
\n\n\n\nYou can test WordPress 6.7 RC3 in four ways:
\n\n\n\nPlugin | Install and activate the WordPress Beta Tester plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream). |
---|---|
Direct Download | Download the RC3 version (zip) and install it on a WordPress website. |
Command Line | Use the following WP-CLI command:wp core update --version=6.7-RC3 |
WordPress Playground | Use the 6.7 RC3 WordPress Playground instance (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup. |
The current target for the WordPress 6.7 release is November 12, 2024. Get an overview of the 6.7 release cycle, and check the Make WordPress Core blog for 6.7-related posts in the coming weeks for further details.
\n\n\n\nGet a recap of WordPress 6.7’s highlighted features in the Beta 1 announcement. For more technical information related to issues addressed since RC2, you can browse the following links:
\n\n\n\nWordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.
\n\n\n\nTesting for issues is critical to ensuring WordPress is performant and stable. It’s also a meaningful way for anyone to contribute. This detailed guide will walk you through testing features in WordPress 6.7. For those new to testing, follow this general testing guide for more details on getting set up.
\n\n\n\nIf you encounter an issue, please report it to the Alpha/Beta area of the support forums or directly to WordPress Trac if you are comfortable writing a reproducible bug report. You can also check your issue against a list of known bugs.
\n\n\n\nCurious about testing releases in general? Follow along with the testing initiatives in Make Core and join the #core-test channel on Making WordPress Slack.
\n\n\n\nFrom now until the final release of WordPress 6.7 (scheduled for November 12, 2024), the monetary reward for reporting new, unreleased security vulnerabilities is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the HackerOne page and in the security white paper.
\n\n\n\nFor plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.
\n\n\n\nThanks for continuing to test your themes and plugins with the WordPress 6.7 beta releases. With RC3, you’ll want to conclude your testing and update the “Tested up to” version in your plugin’s readme file to 6.7.
\n\n\n\nIf you find compatibility issues, please post detailed information to the support forum.
\n\n\n\nDo you speak a language other than English? ¿Español? Français? Русский? 日本? हिन्दी? বাংলা? You can help translate WordPress into more than 100 languages.
\n\n\n\nRC3 arrives,
Final polish, last bugs fall,
Six point seven calls.
Thank you to the following contributors for collaborating on this post: @peterwilsoncc, @joedolson, @sabernhardt.
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Nov 2024 17:02: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:\"David Baumwald\";s: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:84:\"Do The Woo Community: Do the Woo WooSesh Recap, Day 2, with Robbie, Marcus and Brian\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86634\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://dothewoo.io/do-the-woo-woosesh-recap-day-2-with-robbie-marcus-and-brian/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:228:\"The episode covers insights from WooSesh on motion design, e-commerce localization, accessibility, payment security, customer success, and lifetime licenses in plugin development, emphasizing enhancing user experience and trust.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Nov 2024 10:20: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: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:100:\"WordPress Foundation: Kim Parsell Memorial Scholarship Expands to WordCamp Asia and WordCamp Europe!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpressfoundation.org/?p=1194089\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpressfoundation.org/news/2024/kim-parsell-memorial-scholarship-expands-to-wordcamp-asia-and-wordcamp-europe/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2835:\"We are thrilled to announce that following the latest WordPress Foundation Board meeting, the Kim Parsell Memorial Scholarship will now be available for WordCamp Asia and WordCamp Europe, in addition to WordCamp US. This expansion honors Kim’s legacy and her dedication to inclusivity and diversity within the WordPress community, making it possible for more community members to attend these inspiring events.
\n\n\n\nThe scholarship is designed to support those who are passionate about contributing to WordPress, especially individuals who might otherwise face financial barriers to attending. By extending the scholarship to WordCamp Asia and WordCamp Europe, we aim to further empower community members around the globe to engage with and grow the WordPress community.
\n\n\n\nThe requirements for applying and the application forms for WordCamp Asia and WordCamp Europe are available below.
\n\n\n\nEligibility Information
\n\n\n\nThere is one scholarship position available to each flagship event (WordCamp Asia, Europe and WordCamp US). To be considered, applicants must meet the following criteria:
\n\n\n\nIf you meet the above requirements and would like to be considered, please apply as soon as possible. Applications will be accepted until the closing date of 30 November 2024 for both WordCamp Asia and WordCamp Europe.
\n\n\n\nAll applicants will receive notification by December 21, 2024.
\n\n\n\nFor more information, please visit the WordPress Foundation’s page about the Kim Parsell Memorial Scholarship.
\n\n\n\n \n\n\n\n\n\n\n\nStay tuned, as applications for the Kim Parsell Memorial Scholarship for WordCamp US will open in the coming months!
\n\n\n\nWe look forward to welcoming more of you to these incredible WordPress events and celebrating Kim’s legacy together.
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Nov 2024 16:43:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Isotta Peira\";s: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:88:\"Do The Woo Community: Do the Woo WooSesh Recap, Day 1, with Courtney, Jonathan and Brian\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86621\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://dothewoo.io/do-the-woo-woosesh-recap-day-1-with-courtney-jonathan-and-brian/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"In this episode, hosts recap WooSesh day one, focusing on WooCommerce\'s rebranding, UI enhancements, community engagement, and enterprise scalability.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Nov 2024 13:40:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Do The Woo Community: WooCommerce Developers, Keep On Top of It\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=86611\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://dothewoo.io/blog/woocommerce-developers-keep-on-top-of-it/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"Keeping on top of Woo as a developer is important. Here are the resources you\'ll find over at WooCommerce and here on Do the Woo.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Nov 2024 09:45:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:54:\"WPTavern: WordCamp Europe Seeks New Host City for 2026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=178830\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wptavern.com/wordcamp-europe-seeks-new-host-city-for-2026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1858:\"WordCamp Europe is now seeking a host city for its 2026 event. Teams with experience organizing one or more WordCamps in a European city are encouraged to apply. Although hosting the world’s largest WordPress event may seem challenging, applicants will have the support of an experienced core organizing team. The organizing team will work collaboratively for around nine months before the event to ensure all preparations run smoothly.
\n\n\n\nApplications are open until Friday, 15 November 2024. The final decision on the 2026 host city is expected by Friday, 29 November 2024. Applicants should consider an appropriate venue that can accommodate 1,500 seats in a main auditorium-style layout, with additional spaces for breakout tracks and workshops, as well as around 15 rooms for support functions.
\n\n\n\nThe Host City Selection Committee is committed to fairness, providing equal assistance to all applicants. Applications will be evaluated based on survey responses, with rankings used to determine the final selection. Preference will be given to countries that have not previously hosted WordCamp Europe, as past events have taken place in the Netherlands, Bulgaria, Spain, Austria, France, Serbia, Germany, Portugal, Greece, Italy, and Switzerland.
\n\n\n\nThe team from the selected city will be invited to join the organizing team for WordCamp Europe 2025 in Basel, where they will gain valuable insights. The current organizing team will provide guidance on processes, offer ongoing support, and ensure a smooth handover for the 2026 event.
\n\n\n\nCheck out the call for host cities announcement for more information.
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Nov 2024 03:47: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: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: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:34:\"Matt: Michael Palmisano on Collier\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=129612\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2024/11/michael-palmisano-on-collier/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:698:\"I’ve been obsessed with Jacob Collier since I first saw his Don’t You Worry ‘Bout A Thing cover on YouTube, and one of my favorite genres of videos is genius musicians breaking down the incredible musical stuff Jacob is doing. (He even has his own instrument now.) This reaction and breakdown from Michael Palmisano, who is an incredible musician, go through Jacob’s amazing Little Blue video is amazing.
\n\n\n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 03 Nov 2024 20:19: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:108:\"Gutenberg Times: Inline comments, new Playground blueprints, block bindings and more — Weekend Edition 310\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=30645\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://gutenbergtimes.com/inline-comments-new-playground-blueprints-block-bindings-and-more-weekend-edition-310/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20673:\"Howdy,
\n\n\n\nThis week, I started my month-long hiatus from social media. It’s a completely arbitrary timing of my bi-annual ritual. Gutenberg Times post will be shared on LinkedIn and Mastodon, automatically posted using the built-in Jetpack feature. I’ll be back after Thanksgiving Nov 29th for a few weeks before I start my year-end vacation. You might see me posting from Core Days in Rome, Italy, though. I am excited to meet contributors there and post one or two selfies.
\n\n\n\nSpeaking of Rome: it will be my first time there, and I booked a tour of Vatican City at 7am to beat the crowds. I got a few chuckles of disbelieve from hubby and other family members as I am normally not an early riser… I’ll let you know how it turns out.
\n\n\n\n\n\nHave a splendid weekend ahead!
\n\n\n\nYours, 💕
Birgit
PS: Voting for WP Awards 2024 is now open, produced by Davinder Singh Kainth. Consider giving your vote to the “Gutenberg Times” in the blog category and to “Gutenberg Changelog” in the podcast category, please. 🤗
\n\n\n\nPPS: Reminder: November 5th at 17:00 UTC: WordPress 6.7 Highlights and Q & A with Jamie Marsland, Nick Diego and Rich Tabor Live on YouTube.
\n\n\n\nTable of Contents
\n\n\n\n\nNathan Wrigley of WP Builds invited me to start a new podcast series called “At the Core” and to discuss with him what next for WordPress. The first episode arrived on people’s podcast app this week: At The Core with Birgit Pauli-Haack – Episode 1. Wrigley is a master moderator and host. It was a great pleasure being on this show with him. We discussed a heap of information: about WordPress 6.7, WordPress Playground, Gutenberg experiments, and the 2025 default theme. And a lot more. Listen in.
\n\n\n\nPooja Bhimani, developer and project manager at Mulidots, together with other core contributors released the first and experimental version for inline commenting to the block editor. Before you can explore it, you need to enable the experiment “Block comments” on the Gutenberg plugin. It will be released with Gutenberg 19.6 next week. You can already take a peak via the Gutenberg Nightly on Playground.
\n\n\n\nOnce enabled, you see an new menu item on the 3-dot-menu from the block toolbar, that opens a box in the sidebar to add your comment. A new icon appears in the toolbar once a comment is associated with a block. Then you can open, edit, delete or reply to the comment or ‘resolve’ the issue. When you click on the canvas, you can view all the comments for this particular post. Using the star on top of the comment sidebar, you can pin the icon to the top of the screen for easy access. You can use comments on pages or posts or any other custom post types. Once the post is published, inline comments are disabled.
\n\n\n\nAs an MVP (minimally viable product) it works very well, apart from a few tiny quirks. Make sure to share your findings on GitHub or in the #outreach channel. The team also provides a list of what’s next for the inline commenting in this GitHub tracking issue
\n\n\n\n🎙️ Latest episode: Gutenberg Changelog #110 – Gutenberg 19.5, WordPress 6.7, Create Block Theme Plugin and a Thousand Block Themes at the Repository with Joni Halabi
\n\n\n\nOn YouTube, Jamie Marsland, teaches you in WordPress Layouts! A Beginner’s Guide, how to master content widths and page widths for stunning layouts. Discover the 4 essential widths: Normal width, Wide content width, Full width and Custom width via Global Styles and learn how your various container blocks adapt to the settings.
\n\n\n\nAt our friends over at WordPress.com, Tanya Thibodeau shared Five Powerful Gutenberg Blocks for Developers to Create Custom Layouts and explained how best to use the Group, Columns, Cover, Spacer and – my new favorite – the Query Loop block. Thibodeau has instructions and demos for each of them.
\n\n\n\nJustin Tadlock has updated the free X3P0: Breadcrumbs plugin with the option to remove the first breadcrumb. He also added a Markup Style option for selecting between plain HTML, Microdata, and RDFa (default) markup. Developer can also find new hooks that act as extension points.
\n\n\n\nRob O’Rourke, principal engineer at HumanMade, introduced Lottie Lite for WordPress animations It’s a lightweight alternative to the Lottie Files plugin and is designed to offer a simpler, more efficient solution for WordPress users. O’Rourke shared in his post the genesis of the project as its key features and how they work. Check out Lottie Lite over on Human Made’s GitHub.
\n\n\n\nCarolina Nymark, core contributor sponsored by Yoast, and Juanfra Aldasoro are the lead developers for this year’s WordPress default theme, Twenty-Twenty-Five. During this week’s Developer Hours they gave a behind-the-scenes insight into the making of the theme. The recording is available on WordPress TV: Developer Hours: Exploring the Twenty Twenty-Five Theme.
\n\n\n\nThey also shared links to dive in:
\n\n\n\n “Keeping up with Gutenberg – Index 2024”
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. 2024 on. Updated by yours truly. The previous years are also available: 2020 | 2021 | 2022 | 2023
In his tutorial, Building Custom Block Theme Templates: A Plugin Developer’s Guide, Ajay D’Souza, walks plugin developer through the process to providing templates to block themes. WordPress 6.7 will come with a new API for this use case, though. However what are plugin developers to do when they want to support older WordPress version, too? D’Souza has you covered. You learn about the nature of block theme templates and how to build a template handler, define your loading methods, and put it all together in an real-life examples.
\n\n\n\nICYMI: The Recap: Hallway Hangout DataViews and DataForm Components is now available with the recording, a summary, details, shared resources and a transcript. Riad Benguella, André Maneiro, and I discussed with Nick Diego the evolution and future of DataViews and DataForms in WordPress. The overall focus of the demonstration was to showcase the current capabilities of DataViews and DataForm, as well as the plans for future extensibility and integration with the broader WordPress admin experience. The recording is available on YouTube
\n\n\n \n\n\nIn Justin Tadlock‘s latest tutorial on the WordPress Developer blog, Getting and setting Block Binding values in the Editor, he walks you through making the data from your custom binding sources appear in the Editor and also letting users edit that data from the connected blocks.
\n\n\n\nWordPress Playground is an exciting new platform that is the basis of a few features and tools around WordPress. Recently, it received a new, much more intuitive interface, that looks familiar to site editor users. You can learn more about this change from the new Make Blog of the Playground team. Running Multiple Playgrounds with WordPress Playground by Brandon Payton.
\n\n\n\nJonathan Bossenger, developer educator on the WordPress training team, added a blueprint to load the Create Block Theme plugin automatically to the next Playground instance. That way you can instantly start working on a new theme. Try it out.
\n\n\n\nAlex Kirk, web developer from Vienna, added a blueprint to turn Playground into a feed reader with the Friends Plugin. Using it allows you to read feeds from the web in Playground, and even via ActivityPub. Start reading (Add the Gutenberg Times via it’s feed URL https://gutenbergtimes.com/feed)
\n\n\n\nJason Bahl, developer of WPGraphQL, didn’t wait long to add a blueprint that loads WordPress with WPGraphQL active and defaults to the WPGraphQL IDE page to allow users to test GraphQL queries and explore the GraphQL Schema.
\n\n\n\nThere are a few other blueprints for Playground are waiting to be discovered in the Blueprint Gallery. You can browse the list on GitHub or on any new Playground instance.
\n\n\n\nNeed a plugin .zip from Gutenberg’s master branch?
Gutenberg Times provides daily build for testing and review.
Now also available via WordPress Playground. There is no need for a test site locally or on a server. Have you been using it? Email me with your experience
\n\n\n\nQuestions? Suggestions? Ideas?
Don’t hesitate to send them via email or
send me a message on WordPress Slack or Twitter @bph.
For questions to be answered on the Gutenberg Changelog,
send them to changelog@gutenbergtimes.com
An interior decoration of a restaurant by wooden pieces. Malappuram, Kerala, India, by Sithara Koramparambil on WordPress Photos.
\n\n\n\nDon’t want to miss the next Weekend Edition?
\n\n\n\n\n\nAutomattic and Matt Mullenweg have filed a response asking the court to dismiss counts 1-6 and 9-11 of WP Engine’s lawsuit. WP Engine had filed a motion on October 18, 2024 for a preliminary injunction in a Northern California court, seeking restored access to WordPress.org and a reversion to conditions as of September 20, 2024.
\n\n\n\nIn response, Automattic has filed three key documents: a Motion to Dismiss WP Engine’s Complaint, a Motion to Strike, and the Opposition to WP Engine’s Preliminary Injunction.
\n\n\n\nAutomattic also tweeted, “Today, in order to protect the community from the threat posed by @WPEngine’s conduct, we have filed three documents with the court. These documents respond to WP Engine’s cherry-picked versions of events with critical context not found in their legal filings.”
\n\n\n\nLet’s take a look at the main points in the documents.
\n\n\n\nThe Motion to Dismiss begins with the introduction, “Contrary to the allegations in WP Engine’s Complaint, the perpetrator responsible for the harms against the WordPress community is not Automattic or Matt Mullenweg (“Matt”). It is WP Engine itself. Despite its own (mis)conduct, WP Engine’s Complaint now asks this Court to compel Matt to provide various resources and support to private equity-backed WP Engine for free, in the absence of any contract, agreement, or promise to do so. The Complaint also seeks to restrict Matt’s ability to express openly his perspective that WP Engine’s practices negatively impact the WordPress software platform and community—a platform and community that has been his life’s work. There is no legal or factual basis for the Court to compel such access or restrict such speech.”
\n\n\n\nThe motion argues that “WP Engine’s complaint is full of sound and fury, but WP Engine’s allegations ultimately signify nothing. Beneath the Complaint’s tone of indignation lies an utter absence of any factual allegations that do or could plausibly state a claim for relief. The Complaint strains mightily and misleadingly to conflate the WordPress software with Matt’s Website and with the WordPress trademarks, but it is devoid of any facts establishing that Matt has any obligation to provide the resources on the Website to WP Engine.”
\n\n\n\nIt states that “WP Engine’s misleadingly curated Complaint focuses solely on the events of the last two months, but this story actually begins over two decades ago, when Matt created a new way to build websites.”
\n\n\n\n“Contrary to the allegations of the Complaint, Automattic, founded by Matt in 2005, does not own the WordPress software but rather offers three managed WordPress hosting services, WordPress.com for everyday users; Pressable, for agencies and developers; and WordPress VIP, for high-end enterprise sites including WhiteHouse.gov, NASA, Salesforce, and CNN. The WordPress ecosystem is also supported by the WordPress Foundation (“Foundation”)—a 501(c)(3) public benefit corporation dedicated to educating the public about WordPress and open source software. The role of the Foundation is charitable, educational, and scientific.”
\n\n\n\nThe motion details the significant time and resources that Matt and Automattic contribute to WordPress.org. “Matt is the owner of the WordPress.org domain name. Matt created the Website to support the WordPress community and software. Over time, the content the Website provides has become more robust. It takes significant resources from Matt and others to maintain the Website. For example, Matt and other employees of Automattic contribute over 3,500 hours weekly to support and maintain the Website, including the core software and other features offered through the Website.”
\n\n\n\nThe motion accuses WP Engine of leveraging WordPress resources for profit while failing to contribute meaningfully back to the community and profiting off the goodwill of the WordPress and WooCommerce trademarks. It alleges that WP Engine’s shift in practices began in 2018 when private equity firm Silver Lake took majority control, leading to intensified trademark use and an increased profit-driven focus.
\n\n\n\nAlleging trademark violations since 2021, the motion claims that WP Engine and Silver Lake have attempted to profit from WordPress’s reputation without bearing a share of the responsibilities. Matt had requested that WP Engine either license the WordPress trademarks or dedicate eight percent of its revenue to the further development of the open source WordPress software, but WP Engine declined.
\n\n\n\nWhen it became abundantly clear to Matt that WP Engine had no interest in giving back, Matt was left with two choices: (i) continue to allow WP Engine to unfairly exploit the free resources of the Website, use the WordPress and WooCommerce trademarks without authorization, which would also threaten the very existence of those trademarks, and remain silent on the negative impact of its behavior or (ii) refuse to allow WP Engine to do that and demand publicly that WP Engine do more to support the community.
\n\n\n\nThe motion also states, “The mere fact that WP Engine made the risky decision to base its growing business on a site to which it has no rights or guarantee of access, without making backup plans, is not enough for it to conjure a claim out of legal thin air. Similarly, WP Engine’s business decision to rely on Matt’s Website does not provide any legal or factual basis for muzzling Matt and preventing him from criticizing WP Engine for acts that he believes are damaging the WordPress community.”
\n\n\n\nIt continues, “The real unlawful activity here is WP Engine’s infringement of the WordPress and WooCommerce trademarks. This infringement was so egregious that in the days prior to filing this lawsuit, WP Engine scurried to delete various unauthorized uses of the WordPress and WooCommerce trademarks from its website—a tacit acknowledgement of their infringing nature.”
\n\n\n\nIn short, WP Engine’s complaint fails to state claims concerning intentional interference with contractual relations, tortious interference with prospective economic advantage, Computer Fraud and Abuse Act violations, attempted extortion, and unfair competition under California Business and Professions Code § 17200.
\n\n\n\nAutomattic and Matt Mullenweg have moved to strike parts of WP Engine’s complaint, citing California’s anti-SLAPP law. They argue that WP Engine’s “claims fail as a matter of law and must be struck under California’s anti-SLAPP law because they improperly seek to impose liability for commentary and debate on an issue of public interest—namely, WP Engine’s commitment (or lack thereof) to the WordPress community – without any valid basis. WP Engine’s attempt to stifle public discussion of those issues via these claims violates California law and should be stopped here.”
\n\n\n\nThe motion also asserts, “Matt was speaking and writing in his individual capacity as WordPress’s co-founder, and not as CEO of Automattic. There is no basis to impute his statements to the company. For these and other reasons, WP Engine’s ninth, tenth, and eleventh causes of action should be stricken.”
\n\n\n\nWP Engine’s defamation claims are based on statements Mullenweg made on public platforms, which his attorneys argue are protected by the First Amendment and California law.
\n\n\n\nMullenweg’s comments about WP Engine’s “parasitic” behavior were part of a broader conversation on the tragedy-of-the-commons theory, explaining the critical importance of meaningful, sustained contributions to the WordPress community through the Five for the Future initiative. Besides, WP Engine does not challenge any of Matt’s statements.
\n\n\n\nWP Engine’s trade libel claim fails to plausibly allege another required element: WP Engine has not identified any specific third party who was deterred from conducting business with WP Engine as a result of Matt’s Statements.
\n\n\n\nAutomattic and Matt have requested the denial of WP Engine’s motion, arguing that “WP Engine conflates the open source WordPress software with a website located at wordpress.org (“Website”) that is provided by Matt. The Website is distinct from the WordPress open source software platform and both are distinct from Automattic and the WordPress Foundation, a nonprofit public benefit corporation that was organized exclusively for charitable, scientific and educational purposes, not commercial endeavors. WP Engine’s CEO Heather Brunner feigns ignorance and reliance on a false understanding that an educational foundation was responsible for the Website that provides resources for commercial endeavors.”
\n\n\n\nWP Engine has always had unrestricted access to the open-source WordPress software and plugins, which do not require login credentials. The only resources it cannot access are certain developer tools on WordPress.org, previously used to manage plugin versions. WP Engine quickly restored its lost functionality by hosting its plugins independently on its own website.
\n\n\n\nWP Engine also seeks to limit competition by asking the Court to prevent Matt from criticizing its actions and to restrict Automattic from offering promotional incentives to consumers. Automattic contends that WP Engine’s purported damages, such as customer losses, result from WP Engine’s service quality rather than any actions by the defendants.
\n\n\n\nAlso “Matt does not and never has had any contracts, agreements, or obligations to provide WP Engine access to the Website. Nor did WP Engine pay any operating costs towards the Website or to access the Website for this convenience.”
\n\n\n\nAfter losing access, WP Engine implemented a solution restoring its workflow by linking its plugins to its own servers. This setup has been operational for over a month, making any claimed harm from access denial either nonexistent or resolved.
\n\n\n\nSince ACF plugin has over two million active installs, so any security vulnerability within ACF would threaten a substantial portion of the WordPress community, the WordPress security team forked that plugin, and named that fork SCF. The public was also notified of the developments.
\n\n\n\n“WP Engine experienced a loss of income or capital in that intervening period, these losses are the result of its decision to freeride off the Website and Matt’s extensive efforts to support and maintain the Website, all the while knowing it had no contractual agreement entitling it to the continued receipt of those resources. WP Engine gambled, for the sake of profit, on Matt’s continued maintenance and provision of the Website for free. Having lost that bet, it cannot now come to the Court complaining of the consequences.”
\n\n\n\nIf an injunction is considered, the defendants argue that it should only cover access to WordPress software and plugins. WP Engine should also be required to post a bond compensating Matt for any services he might be compelled to provide, as well as Automattic for any lost revenue due to restricted competition. Maintaining WordPress.org involves annual administrative and operational costs estimated at $800,000. If WP Engine is granted ongoing access, a bond of at least $1.6 million should be posted to cover these services for the case’s expected two-year duration.
\n\n\n\nAutomattic has also issued the following public statement through its blog:
\n\n\n\n“After engaging in conduct that undermines the WordPress community, WP Engine and its private equity owner, Silver Lake, have resorted to making unfounded allegations against the founder and vanguard of the open source software.”
\n\n\n\n“WordPress open source software remains freely available to all. But WP Engine is not entitled, either legally or morally, to have unfettered access to WordPress.org—a website Matt Mullenweg built for the benefit of a robust community.”
\n\n\n\n“Preserving and maintaining the resources made available on WordPress.org requires considerable effort, investment, and a shared sense of mission that the plaintiff does not embrace. WP Engine and Silver Lake should not expect to profit off the back of others without carrying some of the weight, and that is all that Matt is asking.”
\n\n\n\nThe court will next hold a hearing on November 26, 2024 and WP Engine has until November 4 to respond to Automattic and Mullenweg’s filings.
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 02 Nov 2024 03:32:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:23:\"Matt: Disrupt Interview\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=129595\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://ma.tt/2024/11/disrupt-interview/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:517:\"On Wednesday I had a great chat with Connie Loizos, the editor in chief of TechCrunch, you can view the video here:
\n\n\n\n \n\n\n\nThen yesterday Automattic filed its legal responses to the spurious lawfare from WP Engine, Silver Lake, and Quinn Emanuel. It’s a bit long, but if you have time give it a read, it’s the first time we’ve been able to put out our full story.
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Nov 2024 00:12: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:23:\"Matt: GPL Clarification\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=128866\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://ma.tt/2024/11/gpl-clarification/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:915:\"A quick followup on my prior conversation with Theo.
\n\n\n\nDuring that chat, I talked briefly about a trademark infringer that was also distributing nulled plugins. I said “Not illegal. Legal under the GPL. But they weren’t changing the names. They were selling their customers Pro Plugins with the licensing stuff nulled out.”
\n\n\n\nI want to be clear that my reference to legality and GPL was solely focused on the copying and modifying of the code. That is one of the key freedoms of open source and GPL: the right to copy and modify GPL code.
\n\n\n\nI was not speaking about their right to charge money for nulled plugins. GPLv2 prohibits that because they aren’t providing physical copies or support. This is very different from reputable web hosts, who provide hosting and support for websites and e-commerce stores.
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 01 Nov 2024 17:00: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:\"Do The Woo Community: Friday Shares: This Week’s Must-Reads and Community Highlights, v2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=86475\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://dothewoo.io/blog/friday-shares-this-weeks-must-reads-and-community-highlights/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:170:\"The content highlights recent updates, events, and resources within the WordPress and WooCommerce communities, emphasizing community engagement and upcoming developments.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 01 Nov 2024 10:30:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"Gravatar: Introducing Native Integrations for Gravatar Mobile SDK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"http://blog.gravatar.com/?p=2343\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://blog.gravatar.com/2024/10/30/introducing-native-integrations-for-gravatar-mobile-sdk/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4250:\"We’re excited to announce the release of native integrations for the Gravatar Mobile SDK, now available for both iOS and Android. These SDKs make it easier than ever to integrate Gravatar’s powerful avatar and profile management features into your mobile applications.
\n\n\n\nOur platform-specific SDKs leverage native UI frameworks – Compose for Android and Swift UI for iOS – to provide seamless integration with your existing mobile applications. Each SDK is carefully crafted to follow platform-specific best practices while maintaining consistent functionality across ecosystems.
\n\n\n\nOne of the more exciting additions is our new native Avatar Change Flow – a complete, ready-to-use UI component that can be embedded directly into your app. This feature eliminates the need to build your own avatar management system, saving you valuable development time. Users can easily update their Gravatar image through a polished, platform-native interface that handles all the complexity of image selection, cropping, and uploading.
\n\n\n\nVisit our GitHub repositories to start integrating Gravatar into your mobile apps:
\n\n\n\nFor implementation guides and detailed documentation, visit our developer site.
\n\n\n\nYour users’ privacy and security are our top priority. The SDK implements secure data handling via oAuth and gives users full control over their profile visibility.
\n\n\n\nVisit our privacy pledge here.
\n\n\n\nWe’re actively working on expanding the SDK’s capabilities with full profile editing support. This upcoming feature will allow users to manage additional profile fields and user information directly within your app, making it even easier to provide a comprehensive Gravatar integration experience.
\n\n\n\nWe’re committed to improving the developer experience and would love to hear your feedback. Try out the new SDKs and let us know what you think!
\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 30 Oct 2024 15:39:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";s: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:116:\"WPTavern: #143 – Aaron Reimann and Keith Osburn on How WordPress Is Transforming Georgia’s Educational Landscape\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=178438\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/podcast/143-aaron-reimann-and-keith-osburn-on-how-wordpress-is-transforming-georgias-educational-landscape\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49613:\"Transcript[00:00:00] Nathan Wrigley: Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.
\n\n\n\nJukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how education and WordPress can work hand in hand.
\n\n\n\nIf 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/feed/podcast, and you can copy that URL into most podcast players.
\n\n\n\nIf 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/contact/jukebox, and use the form there.
\n\n\n\nSo on the podcast today, we have Aaron Reimann and Keith Osburn.
\n\n\n\nKeith is the chief information officer and Deputy Superintendent for Tech Services at the Georgia Department of Education. With a rich background in both education and technology, he’s been instrumental in driving tech innovation within the state’s education system.
\n\n\n\nAaron runs ClockworkWP, a WordPress agency, and boasts extensive experience in web development dating back to 1996.
\n\n\n\nTogether, they’ve been leveraging WordPress to tackle some of Georgia’s most pressing educational needs.
\n\n\n\nWe start off by discussing the financial advantages of using WordPress to achieve cost efficiencies compared to pricier alternatives. Keith shares his insights into how Georgia has successfully rolled out community focused sites and specialized platforms for the state’s educational staff.
\n\n\n\nThe conversation moves on to their collaboration with other states, advocating for open source solutions to solve enterprise level problems.
\n\n\n\nWe get into the infrastructure choices, including dedicated Azure servers for individual WordPress instances, ensuring better control and scalability.
\n\n\n\nWe also touch on their strategic approach to resource discoverability and user engagement. Highlighting significant traffic and potential for growth through grants and professional learning events.
\n\n\n\nAaron and Keith elaborate on the importance of accessibility, GDPR compliance, and the role of collaboration in addressing security and legal concerns.
\n\n\n\nOne standout part of this episode features the culinary sites they created, aimed at helping Georgia schools manage cafeteria recipes and nutritional information. Streamlining a previously manual task, and saving significant time for school staff.
\n\n\n\nTowards the end, we discuss the cultural shift towards open source platforms, emphasizing the flexibility, cost-effectiveness, and community driven spirit of WordPress in education.
\n\n\n\nIf you’re curious to learn about how technology can enhance educational systems and promote global collaboration, this episode is for you.
\n\n\n\nIf you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.
\n\n\n\nAnd so without further delay, I bring you Aaron Reimann and Keith Osburn.
\n\n\n\nI am joined on the podcast today by Aaron Reimann and Keith Osburn. How are you both doing?
\n\n\n\n[00:03:47] Aaron Reimann: I am doing well, thank you.
\n\n\n\n[00:03:49] Nathan Wrigley: You’re welcome.
\n\n\n\n[00:03:50] Keith Osburn: Nathan, thank you so much for having us today. Really excited to be with you today. Doing very, very well.
\n\n\n\n[00:03:55] Nathan Wrigley: Thank you so much. We’re here at WordCamp US. We’re in Portland, Oregon. We’re going to be talking today about education in the state of Georgia in particular, and how WordPress is being used to, well, hopefully make the job of teaching, the profession of teaching, a little bit more straightforward with the benefit of technology.
\n\n\n\nBefore we begin that, I wonder if you would both in turn like to give us your little bio, because I know you have very different roles in life. So maybe if we start with you, Keith, just a short bio about who you are and what you do.
\n\n\n\n[00:04:22] Keith Osburn: Absolutely. So thank you so much Nathan. So, again, my name is Keith Osburn. I serve as the Chief Information Officer and the Deputy Superintendent for Tech Services for the Georgia Department of Education. And so my team is both responsible for the technology that the department uses, but also helping ensure that educational technology has a purpose, a meaningful purpose, if you will, in the school systems throughout Georgia.
\n\n\n\n[00:04:45] Nathan Wrigley: Is your background then more in tech, or more in education, or a bit of both?
\n\n\n\n[00:04:49] Keith Osburn: It’s actually a bit of both. So I was a classroom teacher for a number of years. I taught chemistry and physics at the high school level. Again, I’ve been in education for 35 years, and so I was there long enough to see really the first introductions of technology into the classroom, and just became really fascinated with that, and began to ultimately merge into that, and became a technology specialist, and a Chief Information Technology Director, and then ultimately moved to the State Department.
\n\n\n\n[00:05:14] Nathan Wrigley: Thank you so much. So I guess we’ll hand the mic to Aaron and, yeah, tell us a little bit about yourself.
\n\n\n\n[00:05:19] Aaron Reimann: So my name’s Aaron Reimann and I run an agency called ClockworkWP, and we specialise in pretty much anything WordPress. We’ve grown a lot in the past year and a half or so, and we’re about, depending on how you count everybody, we’re about 14, 15 people or so. And I’ve been doing WordPress since 2008, and been doing web development since 96. So I have got a lot of gray hair because I’ve been doing it for a long time.
\n\n\n\n[00:05:44] Nathan Wrigley: How did you two hook up, if you don’t mind me asking? Do you both have some sort of hobby that crosses, or did you go out looking?
\n\n\n\n[00:05:51] Keith Osburn: That’s an interesting, love that question, and it’s a great story that we love to tell. So I do have an interest in both the open source community, and certainly WordPress in addition to that. But actually there’s a unique event that happened. We had an event, a WordPress meetup that happened to be virtual, and one Aaron Riemann happened to be speaking that night. And as it turns out, I had a situation that had arisen within Georgia, and it was during the time of the pandemic, where obviously as you well know, we as a society completely socially distanced.
\n\n\n\nBut training needed to happen. And specifically our bus drivers throughout the state of Georgia needed annual security training, safety training. And we were trying to think, how do we train them? But at the same time, we can’t get them together. And so obviously technology became an opportunity for us. And so my team and I, we built a small WordPress instance. We used a plugin called Learn Dash. I’m sure you’re probably familiar with that.
\n\n\n\nWhat happened was nothing less than just stellar growth that happened. You know, we had 50 people one day, we had 500 people in the next couple of days. And then it just really became quite asymptotic. As it turns out, you know, I just was in the event just because of my interest there, and as I listened to Aaron talk, and he began to talk about hosting some types of things, it just really formatted my mind that he and I needed to talk. So I said, Aaron, will you remain on the call after you’re done, please. You and I need to talk. And that formed a lasting bond, and a great public private partnership, if you will, of which all the stuff that we’ll probably talk about today has materialised from. So, great event.
\n\n\n\n[00:07:21] Nathan Wrigley: Nice. That’s really great. Is there anything you want to add?
\n\n\n\n[00:07:25] Aaron Reimann: I would just say, I lead the Atlanta WordPress meetup, and that to me is just a big plug. If you’re trying to get into a WordPress community, you can get good clients by doing that. So I love the WordPress community. So doing a little plug there.
\n\n\n\n[00:07:37] Nathan Wrigley: Well that’s great. Thank you so much. Now, in the UK, which is the only educational format, for want of a better word, the only educational locale that I can talk about, I don’t know if it in any way resembles how it is in the US, but my impression of the US is that it’s atomised by state. So the things that you do in Georgia may well be different from how they’re done here in Oregon, and Portland, and all over the place.
\n\n\n\nBut in the UK, I don’t know, probably about 20 years ago, the technological area of education was kind of flooded by proprietary, paid for services. You know, Microsoft stepped in and dominated the kind of desktop space, and a whole bunch of other things. But then there was a move much more recently to free and open source software. I think there was a thought that in the future we want to be educating our children in how to do open sourcey things, and we had this lovely thing called a Raspberry Pi which came along, which really kind of opened the technology of the hardware up to children.
\n\n\n\nBut I just wondered if we could get into the open source nature, and whether or not that’s an important part of the Georgia landscape, free, open source software? Or do you find yourself being compelled by state legislation to use proprietary, paid for software?
\n\n\n\n[00:08:46] Keith Osburn: Wow, great question. And you’re right, it could very well vary by state. Every state has something that’s probably unique about them, and in regards to education that could be driven by legislation law, or policy procedures, those types of things. In this particular case, and certainly, you know, an enterprise organisation as large as we are, Georgia’s population as a whole is about 10.8 million people. We have 2 million students. 230 plus districts. 2,500 schools. Each one of those, by the way, have some degree of local control. And so, we as a state, our job is to provide service and support.
\n\n\n\nI think what started this conversation for me as a state chief was really beginning to notice a change in the landscape, especially as it relates to technology. And you’re right, the big enterprise organisations still have a footprint, and a necessary footprint in there. However, I think the conversation gets interesting because, around the time of the pandemic, I think the mentality about the purposes of software and software solutions changed. And I say in yesteryear, oftentimes there were solutions that were built, and then people begin to look for, hey, how do we apply this? Where’s a problem? Let’s find a problem.
\n\n\n\nToday there are problems already, and so we build towards that. Which means that really what we need to do is look for opportunities to be much more agile and responsive, because we’ve identified a need. This is what’s strong within the open source community, and certainly whenever you think about the culture of WordPress, this is what makes them such a strong, and what I consider to be a viable opportunity and solution for us.
\n\n\n\nAnd so I specifically went because I appreciated that that culture was going to give me what I needed. That really agile opportunity for me to be responsive to solutions that were already needed, and thus the community could customise, highly customise, I should say, solutions for exactly what the problem happened to be.
\n\n\n\n[00:10:35] Nathan Wrigley: It’s interesting, in the UK about 15 years ago, children were being taught how to use Microsoft products. That was the curriculum. How do you create a Word document? How do you use a spreadsheet? Now it’s more, how do you program? How do you learn fundamentals of programming? How can you use Python? How can you use PHP and things like that? So there’s a real shift. And whilst it may not be pointing the finger directly at WordPress, it’s definitely moved in that kind of direction. And obviously the more open source things that you can put into the institutions, the more value for money you’re going to get out because you don’t have to pay these giant software licenses.
\n\n\n\nBut getting to the topic at hand today, and I should just point out that both Aaron and Keith have done a presentation at WordCamp US, and I’ll link to that in the show notes, that kind of will outline the conversation that we’re having. But what was the problem in Georgia that you wanted to solve, that you needed WordPress for? So I’m just going to leave it as open as that. What were you trying to fix with WordPress?
\n\n\n\n[00:11:28] Keith Osburn: Yeah, yeah, absolutely. It goes back to that first story I told that as, you know, education in and of itself is a communication based, people driven thing, right? And so as our teachers, the 300,000 teachers and staff across Georgia became socially distanced, they still had at their primary need to educate children. In order to do that, communication has to happen.
\n\n\n\nAnd you can imagine that natural communication between you and I sitting across the table is quite easy. When you put technology, or you need to put technology in there, there need to be some guardrails, there need to be some opportunities to allow for that growth that doesn’t necessarily kind of stymie what needs to happen.
\n\n\n\nWe begin to kind of conceptualise on this idea of saying, hey, we’ve got now 300,000 staff members that are dispersed, socially distanced from one another, but they still need to communicate.
\n\n\n\nAnd so we concocted this idea that now has become what we call our community project, where we found a specific WordPress solution, coupled with some plugins that we used, that enabled us to really facilitate both synchronous now, and asynchronous conversations, that were content and topic specific. So that we could link together math teachers, or we could link together science teachers regardless of their location, geography, and enable that conversation to still happen.
\n\n\n\nSo that site, literally again, we had no idea that it would grow the way that it did. We were probably anticipating that we would have literally linear year growth, but it became quite asymptotic. To this day we now have a WordPress instance of a community that has 88,000 viable ongoing conversations inside of that with about 500 people adding to that each week. 240 unique groups that exist inside of this platform. So it is truly this new technical society, if you will, that supports the communication needs of teachers across the totality of the state.
\n\n\n\n[00:13:18] Nathan Wrigley: Given that this all was promoted by the pandemic, or at least that’s the takeaway that I got, was this a case of suddenly scrambling around for a solution that had to be implemented yesterday, more or less? And I’m curious because in the UK at the moment, and this has nothing to do with education, a lot of those solutions are now beyond their sell by date, if you know what I mean. You know, things were cobbled together ever so quickly, they worked for a period of time, they were sort of hanging together, and then it’s turned out that actually, probably with hindsight, if we’d have had six months lead time on this, we probably would’ve done something different.
\n\n\n\nBut it sounds like what you have has stayed the test of time, has managed to keep going, and it wasn’t a cobbled together solution. It worked exactly as you’d expected, or has it been an iteration and an evolution?
\n\n\n\n[00:13:59] Keith Osburn: And that’s absolutely where interstates left Aaron, because the initial iterations of that were right. My team at the time didn’t necessarily have say WordPress engineers, or experts in that. I probably was the one, and I already had a day job being a CIO. And so we quickly outgrew what the initial iteration of that was, and began to recognise. That’s that serendipitous event where Aaron just happened to be doing a WordPress meetup, and I happened to be on that, and I recognised, just listening to him, I was like, I need that guy, and I need his team.
\n\n\n\nAnd so thus begin that union. And I remember our first conversations were like, listen, we’ve built something and we’ve outgrown it almost overnight. We need some real help, and we really need to begin to kind of strategise and strategically plan on this thing because, again, it’s not growing linear, it’s growing asymptotically, and so we need to plan for that.
\n\n\n\nAnd that’s I think really important point to be going back to that first question that we had about this idea of public private partnerships now, are critically important, because you see that expertise in a particular area who can listen to somebody whose expertise happens to be in this case education and saying, here’s where our problems at, here’s our soft spots. And he says, okay, this is what me and my team do, this is the way that we’re going to collaborate to build a solution that will meet the needs today, but ongoing with that in the future as well.
\n\n\n\n[00:15:15] Nathan Wrigley: So maybe this question is going now to Aaron. We know that it’s got something to do with WordPress, we know it’s got to do with Georgia, and we know it’s got to do with education, but beyond that, what are the specific things that you’ve had to build? Is this like a portal for children? Is it a portal for the teachers to get together and communicate lesson plans? What have you had to build?
\n\n\n\n[00:15:33] Aaron Reimann: There’s been I think a total of nine projects that we’ve done. The first project was the community project where they basically had a WordPress install on a server that just couldn’t handle the traffic, it grew overnight. We split that up into two different servers where MySQL’s on its own little thing, and nginx is on its own. That was just a quick little fix to split it up. We’ve moved it into the Azure framework since then.
\n\n\n\nWe’ve done some marketing sites to, I guess the PHP list is an application that we are using that we’ve internally converted, basically they have a LISTSERV. There’s an old school LISTSERV that the state was using and has nothing to do with WordPress, but I was like, well, we probably can help in that situation.
\n\n\n\nI picked this open source project, PHP list, and then realised later that it doesn’t have everything that we needed built in. So my team has built that application out. So that’s not necessarily WordPress, but I mean it’s open source and PHP. But we’ve done marketing sites to the culinary site.
\n\n\n\n[00:16:36] Nathan Wrigley: That’s interesting, culinary.
\n\n\n\n[00:16:37] Aaron Reimann: So basically we have built, there was a need for the schools, how many cafeterias are there in Georgia?
\n\n\n\n[00:16:45] Keith Osburn: Well, there’s 230 districts, there’s about 2,500 schools, so you can imagine. We’ll go with that number because every one of those schools is going to have a cafeteria. And that’s a nutrition program.
\n\n\n\n[00:16:54] Aaron Reimann: Okay. So they don’t have, up until recently, they didn’t have a way to share recipes. And now there’s an application where anybody in the school can go in and set up a five day schedule with all the recipes that has all of the nutritional information about each vegetable, and meat, and all that. And so they can basically print that out, and say that, and use that for the school. And there was nothing like that out there. It’s not super complex what was built, but I mean, we’re using WordPress with custom post types, and WordPress gives us a lot of flexibility to build those things out.
\n\n\n\n[00:17:30] Nathan Wrigley: So it sounds like it’s mainly for staff. It’s not forward facing for children to access content. It’s like a CMS for bits and pieces that educators and people, I don’t know, it sounds like people working in the kitchens and things like that might need to use. So it’s not directly forward facing to the children, but it’s all of the minutiae of how to manage a school, and how to get teachers communicating with each other, that kind of thing.
\n\n\n\n[00:17:54] Keith Osburn: Absolutely. And I think probably a value add is to say that we strongly believe, and I think all of us probably here do that the power is in the teacher. The power is in the school staff. They’re the ones that are doing the work. Our jobs are to provide services and support, certainly at a state agency as well. That’s probably a primary role for us.
\n\n\n\nAnd so specifically we were targeting solutions specifically for teachers, for the wraparound staff so that they could do the great work that they do. In this case, one of the things that was mission critical to us was trying to find out that we could use technology as a way to ultimately save them time.
\n\n\n\nThere are a lot of mundane things that happen, a lot of reiterations of things that really technology, if we’re innovative, can take that time, and do that task, and give that back to either the teacher, or the staff member, or whatnot.
\n\n\n\nAgain, here’s an opportunity where nutrition staff we’re probably laboriously sitting down spending countless hours looking at products that says, what are their nutritional values, and how do we pair that with this over here? And now what we’ve done is we’ve implemented a technological solution that literally does what normally would’ve required hours. We’re doing that in now mere minutes and seconds. That’s a win-win. That’s a huge win-win.
\n\n\n\n[00:19:03] Nathan Wrigley: So it’s reducing the amount of paperwork. It sounds like you’re moving away from a paper-based system into a more technologically, everything is data basically. And WordPress’ motto if you like is democratising publishing, but this feels like democratising information, democratising education. And I can barely think of a better use of WordPress than education. It just ticks every single box, doesn’t it? It’s perfect.
\n\n\n\n[00:19:28] Keith Osburn: We totally agree in that. And you know, again, that goes back to the very start of our conversation where it’s like, what was it about free and open source software? It was like, again, the opportunity for us to, from my world as a CIO in an education vertical, say, I see this problem, and then say, how do I with experts in this case, Aaron and team say, here’s my problem. I can pretty much verbalise that. And he says, okay, I understand that, I can wrap a solution around that, and we can do this working together in a very responsive fashion. That’s the win-win, I think from this.
\n\n\n\nAnd now for us, we’ve seen so many wins immediately, I don’t think that we’ve had any where we’re saying, oh, it was a good try, but no, that’s not going to work. It’s every one has been something that we’ve built on the previous one. And every one of those solutions has been incredibly effective.
\n\n\n\nYou heard Aaron talk about the fact that we’ve got several projects. We’re in the midst now of taking our state website, and we’re going to bifurcate that because there’s information that’s destined for public stakeholders. There’s also information that’s really pertinent to our school districts and whatnot.
\n\n\n\nAnd so we’re, one more time we’re using WordPress in this instance to build a website that is unique and able to deliver for our public stakeholders the information that they find viable, and that they need.
\n\n\n\nIt doesn’t have to be all so complex with other information that’s really destined for school leaders, or school district personnel, or teachers in this case instead. Now, through a bifurcated process, we’re able to deliver information that is necessary for the time for that specific individual. So this highly customised solution, suddenly WordPress has helped us achieve.
\n\n\n\n[00:21:00] Nathan Wrigley: Yeah, I know that there’ll be instances where WordPress will not be the best fit because there’ll be proprietary software, which is just superior. And there’ll probably be data protection concerns and things like that for, I don’t know, salaries, and payroll, and all sorts of things that I can imagine.
\n\n\n\nBut would your intention be to get WordPress’s foot in the door for many more things in Georgia, or are you happy with where you’ve got to so far? Or would the idea be to keep going back to Aaron and say, actually, here’s another area where we might be able to squeeze WordPress into the mix.
\n\n\n\n[00:21:27] Keith Osburn: I’ll answer that by saying, a few years back when we began to kind of realise that, in the world of education, I say that technology changed from a gee whiz bank state to become mission critical. We recognised that that was a pertinent question to ask ourselves.
\n\n\n\nAnd so we created a team called Knowledge and Resource Management, and that’s all that they do. Their job is to think about digital and data that’s constructed as a result of these technological processes. And think about, how does this enable us to better understand what we’re doing today, but also begin to think about what’s our innovation schedule as we kind of move forward?
\n\n\n\nAnd so that’s what they do is really sit down in advance. We as a leadership team, we sit down and we begin to kind of strategically plan. Obviously the student and the teacher, if you will, is at the center of our planning. Our job is to think about, how do we customise solutions that will help them better.
\n\n\n\nAnd at this point in time, it’s not ever that free and open source is just a, I’ve run out of tricks, let me go see if this thing can do it. It’s a vital part of the conversation during the strategic planning process. And if that’s the solution, that’s the solution. And it’s just like, we look at that on the same level and the same ground as we do, various other enterprise solutions.
\n\n\n\nThe one thing that I believe that’s really important to note that we’ve proven here is that there could have been this perception of many that say, WordPress can’t obviously meet up to this enterprise need. Actually, we’ve kind of blown that out the water. We literally have staggering numbers. 88,000 and hundreds of thousands of people that hit the website, and those types of things. And we’re showing WordPress is absolutely capable of working in the enterprise. And so it needs to be considered a viable part of strategic plan if it’s the one that fits that need.
\n\n\n\n[00:23:05] Nathan Wrigley: One of the best things about WordPress is the fact that somebody’s very often built the very thing that you need. There’s a plugin that fits the bill. And I’m just wondering if that was the case in this scenario Aaron. Were you able to take pre-built things and thereby save the state a bunch of money because actually somebody’s already built the CMS, or the plugin that would handle the recipe side of things, or was this a ton of custom code right from the ground up?
\n\n\n\n[00:23:28] Aaron Reimann: We used a lot of plugins at the beginning to get, I guess I can promote, we use Gravity Forms all the time. It gives us so much flexibility and it’s so easy to integrate. Hook into filters, and send information out.
\n\n\n\nSo we’ll use a lot of plugins at the beginning, and then we have to, not always, but most of the time we have to tweak it a little bit. We need to add, oh, we need it to do this thing so we might write a plugin to hook in and modify the way Gravity Forms works. Or it might be a totally, this doesn’t exist, and we have to build it. But I mean, we always will vet plugins, make sure that they’re going to be safe, and secure, and give us the stability we need. And if it doesn’t, we’ll write it.
\n\n\n\nI would say every site that we build, we do use basic, common plugins. I mean, Yoast and things like that. I mean, just plugins that everyone uses. And then most of the time we have to do a little customisation.
\n\n\n\n[00:24:22] Nathan Wrigley: Have you been talked to by the Georgia authorities in terms of, well, we use the term GDPR because that’s just the one that we’ve got, but it’s this overarching privacy legislation, which really gets its teeth into more or less everything that you do with websites. Is there anything like that that you’ve had to, I don’t know, you’ve had to build something custom because the plugin doesn’t seem to satisfy this privacy thing, or it doesn’t do this particular thing?
\n\n\n\nSo in the UK the GDPR and things like that really do compel you to look really hard, especially when it’s public sector stuff. You’ve got to look really hard at the code and make sure, okay, it definitely isn’t keeping data. It definitely isn’t sending data somewhere else. I can a hundred percent vouch for it. It’s not a case of, yeah, I’ve used Gravity Forms before, that’s fine.
\n\n\n\n[00:25:05] Aaron Reimann: I’ll just say GDPR. I know all of that stuff is coming, and more and more states are requiring it. I mean, one of the things I think about is accessibility. That’s becoming super important, and we always want to make sure when we build a site, specifically for the state, that we go through and we hit whatever level. There’s multiple levels of accessibility that we try to meet. And that, I would say that’s probably more important for us now than any type of GDPR stuff. But I know that’s coming probably in every state.
\n\n\n\n[00:25:34] Nathan Wrigley: Yeah, so the accessibility piece. Well, you can’t build any of these things unless there is accessibility. And I don’t know what the WCAG standard is that you have to adhere to, but I’m guessing you have to be pretty mindful of the accessibility piece.
\n\n\n\n[00:25:47] Aaron Reimann: Absolutely.
\n\n\n\n[00:25:48] Keith Osburn: Yeah, and if I go back to that, it’s so important, and you heard me mention our Knowledge and Resource Management Team. Whenever the project for rebuilding the website happened. I’ll tell you that, we planned for more than a year before we ever even began to kind of think about code, because of that.
\n\n\n\nOne of the things that’s really important for us today is, number one, again, you heard me say earlier, we’re producing digital data far more than we ever have in past. And as a result of that, you’re right, the game’s changed. We have to think about that. Think about where that’s going to reside.
\n\n\n\nWho were those data generated as a result of? If it’s a student, obviously we take great concerns because we’re considered to be the stewards of their data, right?
\n\n\n\nAll that happened during project planning. And I remember us specifically, part of Aaron’s team sitting down with my team in that respect and saying, okay, we’re going to talk about this, we’re going to talk about the fabric that we’re going to build this on top of. We’re going to talk about any kind of security concerns, accessibility, those things. That’s part of the culture now. And I think that’s really a great question that you ask because I think that is of paramount importance.
\n\n\n\nNow, to Aaron’s point. Before a project ever starts, we should know all that in advance, right? We’re all going to sit down. And while there are unique needs per state, by and far, I think we’re all moving towards the same area. And that is that accessibility should be always covered. That’s just a non question, it’s got to be done.
\n\n\n\nThe other’s really data privacy, those types of things. It’s going to be taken care of beforehand. And then at that point in time, now Aaron knows that we’ve taken care of that, so now as he begins to kinda look at the various plugins, he now has a little opportunity to begin to kinda look into the T’s and C’s of those plugins and say, hey, if there’s something unique about this, he’ll bring that question back.
\n\n\n\nI have a data privacy officer and say, hey, what’s going on with this? Is this something that’s in congruence with state law in Georgia, or is this something that we need to look at from that? So prior planning has enabled us to really be able to make sure that whenever we begin to write code, that we’re very aggressive, very responsive, and we’ve kind of already taken care of the hiccups if you will.
\n\n\n\n[00:27:41] Nathan Wrigley: Financially, does free and open source software like WordPress, does that impress the bean counters, the accountants on your side of things? Is it a fairly compelling argument to go to them and say, look, we could pay hundreds of thousands of dollars for this thing over here, but look, we’ve got this WordPress thing and the software itself is completely free, there’s a bunch of plugins that are a few hundred dollars? I’m guessing there’s some fairly compelling argument.
\n\n\n\n[00:28:03] Keith Osburn: Yeah, that’s a great question. I’d say that’s probably a growing question. I don’t know that it’s gotten to the point now where like all the accountants come to me and say specifically this versus that. But I will say that, as a state chief, I’m ethically and from an advocacy standpoint, responsible for ensuring the good stewardship of tax dollars because that’s what I’m spending.
\n\n\n\nThat is factored into every conversation that we have to say, is this a good spend, and are we going to get the solution based on the strategic initiative that we needed to address? And so that really is a part of my team. When we begin to sit down and strategically plan, we have identified that there’s a need. And then we begin to say, what’s the best way for us to get there?
\n\n\n\nIt’s just now, as I said earlier, WordPress isn’t one of those things that we consider whenever we’ve run out of options. Now, it’s really a part of the ongoing conversation to say, we’ve proven that this could be a viable solution. If this is the viable solution, this is the path that we’re going to take. And by the way, we found out that this is a very cost efficient way for us to do something and still get efficacy when we’re done with that.
\n\n\n\n[00:29:05] Nathan Wrigley: And do you speak to people who have the equivalent job to you in the other states?
\n\n\n\n[00:29:10] Keith Osburn: Absolutely.
\n\n\n\n[00:29:11] Nathan Wrigley: And they found this conversation to be of interest, and have they looked favorably on what you are doing in Georgia?
\n\n\n\n[00:29:16] Keith Osburn: Yeah, I will say that there’s a couple of states that we now have really begun to kind of work as a group to really showcase the opportunity for us to kind of expand our own vision and say, don’t think that the big box, aisle seven, row three solution is just the only way to go. But instead, maybe Chief Information Officer should also be considered to be Chief Innovation Officer now.
\n\n\n\nAnd we should just begin to kind of look and say, our job is to figure out the best way to solve that problem, or provide that solution, not look for an opportunity to buy something that maybe fits that. Maybe, or maybe not, or maybe 70%. But instead say, no, let’s figure out the way to solve that problem over there. Open source, free open source solutions could very well be a very viable, and we’ve proven that it could solve enterprise level problems.
\n\n\n\n[00:30:05] Nathan Wrigley: I’m just going to a quote something from the blurb of the presentation that you’ve both been involved in at WordCamp US, and it says the following. In the past three years, Georgia established a community focused site for statewide education staff using a strategic set of plugins and custom modifications within WordPress to produce the functionality needed. And I think we’ve covered that.
\n\n\n\nOnce that site was launched, it opened the door for multiple additional WordPress sites under the GADOE, which I’m presuming is the Georgia Department of Education umbrella. Including continuing education events for staff across the state, a better menu builder with state approved recipes for cafeteria staff, and rebuilding the main GADOE site using a headless WordPress setup with Next.js.
\n\n\n\nSo the bit that I want to focus on there is the words multiple additional WordPress sites. And this is probably squarely aimed at Aaron. How are you tying these multiple sites together? Is this like a, we’ve got a WordPress site over here, and another one over here, and another one over here. Or are we dealing with multi-site? Is it all connected in some way? Have you got single sign on so that the teachers can get in with one set of user credentials? How’s it all hanging together?
\n\n\n\n[00:31:11] Aaron Reimann: So right now we have multiple websites that are WordPress, they’re not multi-site. It’s not multi-tenancy or anything like that. We have individual WordPress instances on individual virtual servers on Azure.
\n\n\n\nThat gives us a little control to be able to scale it up and down. I’ve had environments before where we’ve had multiple WordPress sites, and the way the infrastructure is built, it is, if you only need to scale up one, it has to scale up everything. And I like the fact that we have it split up individually, allows us to scale up and down.
\n\n\n\nThere isn’t anything that is unique, except for the headless WordPress site. That infrastructure is going to be different than all of the kind of more like marketing WordPress sites.
\n\n\n\n[00:31:59] Keith Osburn: Maybe the one thing I’ll add is that, one of the things that we’re certainly, we don’t expect anybody to understand the technology behind that. What we were looking for early days, and again, what Aaron’s team have been helping us build is this idea to purposely, if you will, almost bottleneck the way that people get access to resources that we find.
\n\n\n\nWe could probably all agree on is that if you build the best resource on planet Earth, it’s still valueless if nobody can find it. And that’s been a challenge for us in the past is that we’re a large organisation, you can tell we have these siloed teams within the department, and they all produce resources. But unless you know, you didn’t necessarily know where to find those. You didn’t know how to go about that.
\n\n\n\nWe began to say, this is an opportunity again for technology to help us save time of that individual. So we begin to say, we’ve got a very successful event, the community project. We have 80,000 people that are visiting that. That’s slightly more than 50% of our teachers, but we still got some room to grow.
\n\n\n\nAnd, hey, there’s these other things like strategic grants that we provide, or maybe policy and guidance. Maybe there’s some professional learning events, and if people don’t know that we do all these things, they’re for nought.
\n\n\n\nSo we said, why don’t we figure out ways to hone that together and we begin to use, for instance, the communities, dare I say storefront, as a way to provision those, so that those are immediately visible. So now somebody that could be a public stakeholder, or a practitioner, educational practitioner comes to the site to log in, but they say, oh, I see that there are new things up here, let me click on those. And now it’s just simply the convenience of us reusing something that they’re vastly familiar with already, as a way for us to share more resources with them.
\n\n\n\nSo the technology behind the scenes, obviously we’re working to make sure that those work tandem. And you talk about SSO and those types of things, those are strategically part of what we’re doing. But ultimately, right now, the whole idea continues to be, how do we get critically important information rapidly to that stakeholder that needs that? And that’s the reason why they came to visit that site, right? And so that’s, again, what we’re driving towards.
\n\n\n\n[00:33:58] Nathan Wrigley: I know that I said this earlier, but I can barely think of a better example where technology, WordPress, meets humanity, education. It’s just this perfect, perfect relationship. And it just encapsulates everything which is wonderful about, well, open source software, but in this case, we’re at a WordPress event and we nerd out on WordPress. So it just seems like the perfect way to use that technology.
\n\n\n\nAnd think that’s all of the questions that I’ve got. I just applaud you for what you’ve been doing. And obviously the fact that you’re here talking about it at an enormous WordPress event means that you must both be pretty proud of what you’ve done as well. So congratulations.
\n\n\n\n[00:34:35] Keith Osburn: Well, thank you. Aaron and I both will tell you that I think one of the other attributes, one of the strong features of the open source community is that we recognise that we’re a culture and we need to share. And if you have successes, you’re right, there are a lot of children outside of Georgia that need to be educated. And if we found a solution and it works, we should talk about that. And here’s an opportunity to say to another state, or another organisation that’s in this business to say, here’s a great opportunity that has been very successful for us. Look and study the partnership that’s happened from private to public from that instance.
\n\n\n\nAnd we don’t mind talking about that. We’re certainly proud that we’ve done something that is a viable solution. But at the same time, I think we also have that responsibility to share what’s been working. And if there have been pitfalls that we hit along the way, or soft spots that we needed to iterate around, we should be willing to talk about that.
\n\n\n\n[00:35:24] Nathan Wrigley: Yeah, I know we’ve talked about the technology a lot in this podcast episode, but underlying the whole thing feels like there’s morals. There’s just like a real moral basis to what you’re doing. That just feels really nice.
\n\n\n\nAnd also you mentioned state boundaries, and it feels like this conversation goes beyond that even. You know, there’s no reason why what you are doing couldn’t be applicable in Canada, or the UK, or Poland, or Australia, or any other place you mentioned. So it’s a big conversation for sure.
\n\n\n\n[00:35:48] Keith Osburn: I would love to see this conversation become global because, again, I think that any educator is in the business. They trained to do that thing of educate children, not educate children in this specific spot, but just say to educate children.
\n\n\n\nWe as technologists have had a responsibility to figure out ways, in this case, for me, because of that’s my vertical, to figure out technological solutions that will support them.
\n\n\n\nWell, my technologist peers, irregardless of location, I know that they desire to do the same thing. So I want to share with them. And I know that they’ll do the same thing with me, and we do. We have a very collaborative, non-competitive partnership that exists. And you’re right, it’s not bound by state, it’s not bound by nation, but instead, it’s like all of us saying, let’s link together, let’s figure out how we solve this problem if one exists, because we all desire to do the same thing. Ensure that every kid, irregardless of location, gets an opportunity to be successful.
\n\n\n\n[00:36:42] Nathan Wrigley: Technologically important stuff that kind of gets out of the teacher’s way. Yeah, that’s perfect. Thank you Aaron, and thank you Keith for chatting to me today.
\n\n\n\n[00:36:50] Keith Osburn: Absolutely. Thank you, Nathan.
\n\n\n\n[00:36:51] Nathan Wrigley: Appreciate it.
\n\n\n\n[00:36:51] Aaron Reimann: Yeah, thank you very much.
\nOn the podcast today we have Aaron Reimann & Keith Osburn.
\n\n\n\nKeith is the Chief Information Officer and Deputy Superintendent for Tech Services at the Georgia Department of Education. With a rich background in both education and technology, he’s been instrumental in driving tech innovation within the state’s education system. Aaron runs Clockwork WP, a WordPress agency, and boasts extensive experience in web development dating back to 1996. Together, they’ve been leveraging WordPress to tackle some of Georgia’s most pressing educational needs.
\n\n\n\nWe start off by discussing the financial advantages of using WordPress to achieve cost efficiencies compared to pricier alternatives. Keith shares his insights into how Georgia has successfully rolled out community-focused sites and specialised platforms for the state’s educational staff.
\n\n\n\nThe conversation moves on to their collaboration with other states, advocating for open-source solutions to solve enterprise-level problems. We get into the infrastructure choices, including dedicated Azure servers for individual WordPress instances, ensuring better control and scalability.
\n\n\n\nWe also touch on their strategic approach to resource discoverability and user engagement, highlighting significant traffic and potential for growth through grants and professional learning events. Aaron and Keith elaborate on the importance of accessibility, GDPR compliance, and the role of collaboration in addressing security and legal concerns.
\n\n\n\nOne standout part of this episode features the culinary site they created, aimed at helping Georgia schools manage cafeteria recipes and nutritional information, streamlining a previously manual task and saving significant time for school staff.
\n\n\n\nTowards the end we discuss the cultural shift towards open-source platforms, emphasising the flexibility, cost-effectiveness, and community-driven spirit of WordPress in education.
\n\n\n\nIf you’re curious to learn more about how technology can enhance educational systems and promote global collaboration, this episode is for you.
\n\n\n\n‘Custom WordPress Solutions for Educational Initiatives‘ – WordCamp US presentation
\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Oct 2024 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:57:\"Do The Woo Community: The New Woo Logo Set for Early 2025\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=86454\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://dothewoo.io/blog/the-new-woo-logo-set-for-early-2025/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:141:\"Woo unveiled a new logo for 2025 at the State of the Woo. This is what Tamara Niesen from Woo and our hosts Jonathan and Courtney had to say.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 30 Oct 2024 10:24:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s: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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"HeroPress: WordCamp Romania is in 2 weeks!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=7602\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://heropress.com/wordcamp-romania-is-in-2-weeks/#utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-romania-is-in-2-weeks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8116:\"I wanted to go to this one, I really did, but it didn’t work out. Part of the reason I was looking forward to it is that I’d have to take the train for the last leg, check out where camp is:
\n\n\n\n\n \n\n\nBucharest is where almost all international flights end, and then we take the train north.
\n\n\n\nNot only is there the train ride, but one of the suggested places to stay is The House of Dracula Hotel.
\n\n\n\nWho doesn’t want to stay there?
\n\n\n\nAs tradition suggests, the speaker lineup is excellent. Here are just a few examples.
\n\n\nAlexandra Bădiță, a storytelling and journaling expert, encourages women entrepreneurs to leverage the art of storytelling for brand-building. With over eight years in digital marketing and a Master’s in Journalism and Advertising, she empowers women to transform their narratives into impactful brands.
\nFor as long as we can remember, developers and SEOs have been locked in a seemingly endless tug-of-war. From conflicting priorities to communication gaps, the tension between these two crucial roles has been referred to as the “WP Civil War.” But what if there was a way to turn this age-old rivalry into a powerful partnership?
\nMadalin is all about helping you find that sweet spot between work and life. In his session, he’ll dive deep into how you can maintain a work-life balance, identify your stress levels at work, and discover tools to help manage and improve your well-being. Here’s a sneak peek at what he’ll be talking about:
\n\n\n\nThe Poiana Brasov Leisure & Entertainment Center is a delightful place full of fun things, including a video arcade, pool tables, hiking and biking areas and most importantly, session rooms!
\n\n\n\nIf you go to WordCamp Romania I’d love to talk with you about it. We can do a text chat, or a video chat and we can talk all about it. You can email topher at this site’s domain, or leave a comment!
\n\n\n\n\nThe post WordCamp Romania is in 2 weeks! appeared first on 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:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Oct 2024 17:46: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:\"\";}}}}}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:53:\"WordPress.org blog: WordPress 6.7 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18043\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2024/10/wordpress-6-7-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8697:\"The second release candidate (RC2) for WordPress 6.7 is ready for download and testing!
\n\n\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’s recommended that you evaluate RC2 on a test server and site.
\n\n\n\nReaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.7 is the best it can be.
\n\n\n\nYou can test WordPress 6.7 RC2 in four ways:
\n\n\n\nPlugin | Install and activate the WordPress Beta Tester plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream). |
---|---|
Direct Download | Download the RC2 version (zip) and install it on a WordPress website. |
Command Line | Use the following WP-CLI command:wp core update --version=6.7-RC2 |
WordPress Playground | Use the 6.7 RC2 WordPress Playground instance (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup. |
The current target for the WordPress 6.7 release is November 12, 2024. Get an overview of the 6.7 release cycle, and check the Make WordPress Core blog for 6.7-related posts in the coming weeks for further details.
\n\n\n\nGet a recap of WordPress 6.7’s highlighted features in the Beta 1 announcement. For more technical information related to issues addressed since RC1, you can browse the following links:
\n\n\n\nWordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.
\n\n\n\nTesting for issues is critical to ensuring WordPress is performant and stable. It’s also a meaningful way for anyone to contribute. This detailed guide will walk you through testing features in WordPress 6.7. For those new to testing, follow this general testing guide for more details on getting set up.
\n\n\n\nIf you encounter an issue, please report it to the Alpha/Beta area of the support forums or directly to WordPress Trac if you are comfortable writing a reproducible bug report. You can also check your issue against a list of known bugs.
\n\n\n\nCurious about testing releases in general? Follow along with the testing initiatives in Make Core and join the #core-test channel on Making WordPress Slack.
\n\n\n\nFrom now until the final release of WordPress 6.7 (scheduled for November 12, 2024), the monetary reward for reporting new, unreleased security vulnerabilities is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the HackerOne page and in the security white paper.
\n\n\n\nFor plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.
\n\n\n\nThanks for continuing to test your themes and plugins with the WordPress 6.7 beta releases. With RC2, you’ll want to conclude your testing and update the “Tested up to” version in your plugin’s readme file to 6.7.
\n\n\n\nIf you find compatibility issues, please post detailed information to the support forum.
\n\n\n\nDo you speak a language other than English? ¿Español? Français? Русский? 日本? हिन्दी? বাংলা? You can help translate WordPress into more than 100 languages.
\n\n\n\nSix point seven’s dawn,
RC2 sweeps bugs away,
Sites stand firm and strong.
Thank you to the following contributors for collaborating on this post: @jorbin.
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 29 Oct 2024 17:08:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Baumwald\";s: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:46:\"Do The Woo Community: Taking a Break This Week\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86423\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/taking-a-break-this-week/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:151:\"The last few weeks have been crazy for me, but not just in the way you might be thinking. So I need a little break this week from posting any episodes.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 29 Oct 2024 13:53:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:37:\"Matt: Kindness and Techcrunch Disrupt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=129406\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://ma.tt/2024/10/kindness-techcrunch/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1290:\"Back in June I recorded an episode with Jaclyn Lindsey on the Why Kindness podcast, for their awesome non-profit kindness.org. You can listen to it through Pocket Casts here:
\n\n\n\n \n\n\n\nThis is kind of funny because I’m obviously in the midst of the big battle with Silver Lake and WP Engine. I am a huge proponent of kindness, but sometimes you have to stand up for what’s right if someone is taking advantage of you.
\n\n\n\nI’m continuing to do some select press, and will be appearing in a conversation with Techcrunch’s Editor-in-Chief, Connie Loizos, at 10:30AM on Wednesday in San Francisco at their Disrupt conference. It’s an amazing conference! Over 10k people from all over the world, just started today. I’m glad they were able to work me into the schedule, I think it will be a timely conversation. We may even have an announcement to make.
WP Engine filed a motion on October 18, 2024 for a preliminary injunction in a Northern California court, seeking restored access to WordPress.org and a reversion to conditions as of September 20, 2024. The hearing is set for November 26, 2024.
\n\n\n\nThe Injunction filed claims that Matt and Automattic have “engaged in a self-proclaimed “nuclear” war aimed at destroying WPE’s business because WPE dared to stand up and speak out against Defendants’ extortionate demand for tens of millions of dollars annually for a purported “license” WPE does not even need.”
\n\n\n\nIt went on to say that Matt and Automattic’s action included “blocking WPE’s access to business resources including those used to service its customers, blocking WPE’s customers from accessing important security updates, making a litany of false and disparaging statements, and even expropriating one of WPE’s most popular software products as its own. Facing this onslaught of retaliatory actions, WPE had no choice but to file suit to protect its business, its employees, its customers, and the entire community in which it operates.”
\n\n\n\nThe injunction also mentions that WP Engine has suffered losses as “the data show a 14% increase in cancellation requests, 333 fewer new contracts than expected from the “sales-assisted” channel, and a 29% drop in new customers from the “self-service” channel.”
\n\n\n\nIn response, Automattic and Mullenweg stated, “This case is not about Plaintiff’s access to WordPress… this case instead is about WordPress.org – a website owned and run by Defendant Matt Mullenweg individually, for the benefit of the community he loves. WordPress.org is not WordPress. WordPress.org is not Automattic or the WordPress Foundation, and is not controlled by either. To the contrary, as Plaintiff itself acknowledges, WordPress.org is Mr. Mullenweg’s responsibility.”
\n\n\n\nIt continues, “Mr. Mullenweg has no contracts, agreements, or obligation to provide WP Engine access to the network and resources of WordPress.org. WP Engine points to no terms, conditions, or permissions that entitle them to such access. Nevertheless, WP Engine, a private equity-backed company, made the unilateral decision, at its own risk, to build a multi-billion dollar business around Mr. Mullenweg’s website. In doing so, WP Engine gambled for the sake of profit that Mr.Mullenweg would continue to maintain open access to his website for free. That was their choice.”
\n\n\n\nOn his blog, Matt published this about WP Engine, “They say this is about community or some nonsense, but if you look at the core, what they’re trying to do is ask a judge to curtail my First Amendment rights.” he also said, “I will refrain from personally commenting on the WP Engine case until a judge rules on the injunction. I will continue to exercise my First Amendment rights to promote others’ speech.”
\n\n\n\nThis has drawn much concern from the WordPress community. Jeff Chandler (WP Tavern founder) tweeted, “The words in this document can not be over emphasized enough to current and future WordPress builders. These statements generate shock waves to the core of what has been built and maintained over the last 21 years. Honestly, I don’t see Matt doing these things to any other plugin or business in the future. But the fact that he has done it at all means it’s a risk that has to be accounted for.”
\n\n\n\nAspirePress published If WordPress.org is not for the community, then we will be while web developer Brian Coords tweeted, “WordPress/.org is not WordPress” is a good reminder that only the code is open source. When you build something online, you should treat all platforms and distribution channels as someone else’s sandbox and plan accordingly.”
\n\n\n\nAndrew Palmer (entrepreneur and co-founder of Bertha AI) shared another point of view in his tweet, “Do you really want someone else running WordPress? If so, be careful what you wish for. Have a look at the open source projects that are no longer Open Source and let me know. https://en.wikipedia.org/wiki/List_of_formerly_open-source_or_free_software”.
\n\n\n\nKatie Keith (CEO of BARN2 Plugins) tweeted about the injunction, “I hope it brings some stability to the WordPress ecosystem, as people won’t be constantly wondering what will happen next .”
The dispute has now attracted broader media attention, with coverage from outlets including BBC 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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Oct 2024 03:14:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:148:\"Gutenberg Times: Gutenberg Changelog #110 – Gutenberg 19.5, WordPress 6.7, Create Block Theme Plugin and a Thousand Block Themes at the Repository\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=30629\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-110-gutenberg-19-5-wordpress-6-7-create-block-theme-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:54725:\"In this episode, Birgit Pauli-Haack and Joni Halabi discuss Gutenberg 19.5, WordPress 6.7, Create Block Theme Plugin and a Thousand Block Themes at the Repository
\n\n\n\n\n\n\n\nShow Notes
\n\n\n\nSnippet: Conditionally unregister patterns
\n\n\n\nStay in Touch
\n\n\n\nTranscript
\n\n\n\nBirgit Pauli-Haack: Hello, and welcome to our 110th episode of the Gutenberg Changelog podcast. In today’s episode we will talk about Gutenberg 19.5, WordPress 6.7, Create Block Theme plugin, and thousand block themes at the repository. Yay! I’m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and full-time core contributor for the WordPress Open Source project sponsored by Automattic.
\n\n\n\nToday’s special guest has been on the show before and I’m thrilled to have her again, it’s the wonderfully smart Joni Halabi from Georgetown University in D.C. She was a guest on episodes 97 and 91. And she’s also the author of the article Static vs. Dynamic Blocks: What’s the difference? on the WordPress Developer blog. Welcome back, Joni. How are you today?
\n\n\n\nJoni Halabi: Oh, thank you so much for having me. I’m doing great.
\n\n\n\nBirgit Pauli-Haack: Awesome. Awesome. So for our new listeners, maybe you can briefly introduce yourself and your connection to WordPress. And I know you changed responsibilities at Georgetown, so what are you working on now?
\n\n\n\nJoni Halabi: Yeah, so hi everybody. My name is Joni Halabi. I have been working at Georgetown University for the past eight and a half years. I started at Georgetown as a senior web developer with our web services group. And most of my responsibility was developing custom blocks and other post editor customizations in WordPress for our now over 500 sites that we support, which is super exciting.
\n\n\n\nI recently, as of about three and a half weeks ago, just switched roles and I am now the senior web manager for the office of the president. So I’ve gone from development to content. My primary role right now is to basically update the content for our president’s website and make sure that it has all of the information people need in terms of our university initiatives and other things that are important to our office.
\n\n\n\nBirgit Pauli-Haack: Awesome.
\n\n\n\nJoni Halabi: I’m so happy to be here. Thank you for having me.
\n\n\n\nBirgit Pauli-Haack: Oh, no, absolutely. Always great to have you on the show, Joni. So 500 websites, that’s one number that I’m in awe of. Then going from custom block development to using as a content creator is probably a total different challenge because you can look back on so and so, “Oh, did we do this right?” kind of thing, yeah? And so bug reports.
\n\n\n\nJoni Halabi: Yeah, I think my old team is not going to be very happy with me because it is such a different perspective. As the developer, I never really got that 1,000 foot view of our websites in terms of how a content editor really sees these blocks. And to be on the other side of that and to be using these blocks and thinking about, “Okay, this is the story that I want to tell. How can I use these blocks,” it is such a different perspective. It’s an exciting perspective, but I already have ideas for new blocks that I want to exist.
\n\n\n\nBirgit Pauli-Haack: Ok.
\n\n\n\nJoni Halabi: Sorry, services.
\n\n\n\nBirgit Pauli-Haack: Yeah. So I’m not drilling down into that, but there’s certainly something to unpack for the next time you’re on the show. But it’s so great that you actually can change the perspective and kind of feel, “All right, now I get a 360 view on the whole WordPress content creation experience and block development.” So the next hurdle would be to tap your toes into block themes and kind of see how that works for your organization, for the web team, yeah?
\n\n\n\nJoni Halabi: I would love to. I did some experimentation with block themes while I was there, and I could speak for the next 40 minutes about this, but the high level overview was I did an experiment where I created a block theme but connected it to our external patterns for different blocks in different parts of our pages because we were using KSS node for that to create a pattern library. And I’ve actually given a couple of talks on this topic. I did one at WP Campus last year. They’re all linked to you for my website, but yeah, it was a fascinating experiment. It’s complicated and not complicated. Like I said, I could talk for 40 minutes.
\n\n\n\nBirgit Pauli-Haack: Yeah. We’ll share the links in the show notes for our listeners to have a different perspective on things, so that’s really good. So you did get a 360 view on WordPress with all the experience that you have. Excellent, yeah.
\n\n\n\nAnd for the show, we have a few announcements today for you, dear listeners. One is the developer blog or the contributors at the developer blog, we are starting something new, and that’s kind of a snippet library. We have one snippet online, that’s the first one because we need to iterate on the layout as well as on the editorial process for that. But it’s conditionally unregistered patterns. And Justin Tadlock put that up and he has a few use cases. One of them is, okay, you build your own custom blocks on the theme and use patterns for that, but if that block is not available on your site, you need to unregister the pattern too. So it’s not going to come in with, “Oh, this block is not available kind of thing.” So I think a lot of people who curate the editor experience for the clients can definitely use that as well to unregister some patterns from my block theme or so they haven’t built themselves. Yeah.
\n\n\n\nSo if you have ideas about that, you can comment on that either on the Gutenberg Times on the podcast show or on Storify, where our podcast also landed and has a few listeners. So there is a little comment button on your mobile app where you can comment what other ideas you would need for snippets. I know that Nick Diego and Justin and myself and Ryan, we will probably brainstorm the first hundred snippets for that relatively fast.
\n\n\n\nAnd then as from the intro, we have the announcement, a thousand block themes are now in the WordPress theme directory, yes. And it’s really amazing how fast. It took a little while. The first hundred took, I don’t know, a year, the second hundred another year, but then it kind of sped up until now. And we have three people who actually covered that this week. One is Ganga Kafle, he’s the co-team rep for the theme team, and he had statistics and that is that the first theme was done by Carolina Nymark early on. And then Automattic has 116 block themes in the repository. That’s about less than 10. Well, a little bit over 10%. And then there are other theme shops that have 20, 28, 30. Really the first 10 theme producers I think come up with about 400 or so. I haven’t ended up, maybe it might be 500. And then the rest is divided up by other people from the community. So yeah, bring your blog theme to the repository too.
\n\n\n\nJoni Halabi: Yeah, this is amazing to me because these only count the block themes that are in their repository. And I’m sure that there are so many authors and companies and organizations out there that have their own custom theme just for them that is probably a block theme. They’re just not in the theme repository. And it is so impressive that the adoption of block themes has happened this fast because it feels… I know it’s been a few years, but it feels like it’s only yesterday when block themes were introduced.
\n\n\n\nBirgit Pauli-Haack: Yeah. And I think they’re only kind of viable now with the theme parts and the site editor where you can edit the templates. And then have the query loop has really emerged as a power tool for theme developers.
\n\n\n\nJoni Halabi: Oh, yeah.
\n\n\n\nBirgit Pauli-Haack: And there’s a lot of designers who don’t have to touch code to build themes and they use the site editor. So it’s just really amazing.
\n\n\n\nJoni Halabi: Yeah, it’s fabulous. I mean, you can start with the Twenty Twenty Four theme. I did this recently with the site. You can start with the Twenty Twenty Four theme, use that site editor and then copy. If you want to save all of your customizations, you can do everything that you want to in the site editor and then copy the HTML for your new templates, your new template parts, and paste it into a theme. And you have that saved if you need it. And it is so powerful. You don’t need the code. Somebody like me, I need the code. But somebody who’s not familiar with HTML or CSS or is intimidated by it, you don’t need to know it anymore. And it’s game changing.
\n\n\n\nBirgit Pauli-Haack: Absolutely. And the global styles and design tools that come with it, you can really say change the default look of blocks and it’s going to be saved. So the next thing that I wanted to point out here on this show is, and we talked about it before, but it seems that we talked, Joni, that you haven’t really used the Create Block Theme plugin yet. And that really helps theme developers to use the site editor to have everything that’s stored in the database, then exported into the theme files. And that is the most powerful thing that I’ve seen, that you can create a child theme, you can create or clone an existing theme on the site, or you start with a very bare bone skeleton, but then you can use the site editor to style your blocks, your sections, create patterns, and it all kind of comes together with saving the theme, exporting the theme, and have it outside.
\n\n\n\nBecause the layer of having core styles then having theme styles, and then the user styles can only all come together in one theme if you want to reuse it. And that’s kind of the gap that the plugin really closes for that.
\n\n\n\nJoni Halabi: Yeah, that sounds amazing. I don’t know if you would know the answer to this, but has there been any talk about bringing that plugin into core because that feels like eventual core functionality?
\n\n\n\nBirgit Pauli-Haack: Yeah, there is talk about it. And that plugin is pretty much like the Gutenberg plugin, kind of the beta version of what might come into core. I think it’s more the explanation while everything in core that touches the theme and the styles and the section styles and variations, those are still in active development. So the plugin is kind of following along in core and even goes a little bit further in core with the patterns, for instance, saving the patterns. But yeah, it would definitely be something that the developers kind of looking at, maybe bringing some of the features into core that are a little bit more mature once the features are kind of set in their ways, because some of that data views and some of the global styles that’s still so active in development that I think otherwise you couldn’t test the concepts if you put it in core because then it would be released and then it would be backwards compatible, and you don’t want to kind of be tied down to backwards compatibility.
\n\n\n\nJoni Halabi: Yeah, that’s a lot of work. But I do. That’s great to hear. And I also do love this pattern of actively developing and testing something in a separate plugin with an eventual goal or a thought of bringing it to core. And it’s something that I always thought was unique to the Gutenberg plugin, but it’s nice to see that it’s also happening with other pieces, like larger pieces of functionality.
\n\n\n\nBirgit Pauli-Haack: Yeah. Yeah. That happens actually also with improvements for the media library. The performance team has actually published, or Pascal from the performance team has some media experiments on his repo that are in the plugin. They’re not officially kind of WordPress. The Create Block Theme is on the WordPress organization, separate repo. But yeah, some of the contributors have done that with their own experimentation. So it’s really good to see.
\n\n\n\nDave Smith has a plugin. He’s a core contributor, and he just released a plugin for the responsive navigation that’s not in core yet, but it’s kind of testing it out outside of the Gutenberg repo to get faster to feedback. And so I will share the links and also in the show notes, so you can explore those too dear listeners. But yeah, use the Create Block theme plugin to create your theme for the repository. You can then, I think there’s even some instructions on how to get it then into the repository, but that’s kind of with the SVN version control, it kind of is a different level of complexity, I would think. So having it rather than GitHub.
\n\n\n\nWe also had a… And that might be interesting for you too. We had a hallway hangout with the designer of the Twenty Twenty Five theme, and she also works on some of the automatic themes. They have a process that uses Playground, the Create Block plugin and GitHub, to push changes to a theme from the site editor to a pull request on GitHub. And that’s just amazing. That process really amazed me and how that’s even possible, but there are magicians behind it, but it works.
\n\n\n\nJoni Halabi: That sounds amazing. When is that hallway hangout?
\n\n\n\nBirgit Pauli-Haack: It was actually.
\n\n\n\nJoni Halabi: Oh, was?
\n\n\n\nBirgit Pauli-Haack: Yeah, yeah. I will share that in the show notes. And there’s a little video also with were Beatriz Fialho, who designed Twenty Twenty Four as well as Twenty Twenty Five, shows the process. It has one single little change, and then kind of from playground to GitHub, how that also works. Yeah, it’s really, really great to see.
\n\n\n\nJoni Halabi: Oh, I will definitely be checking out that hangout. That sounds amazing. Yeah.
\n\n\n\nBirgit Pauli-Haack: So yeah, block themes. Yeah, go.
\n\n\n\nJoni Halabi: Yes.
\n\n\n\nBirgit Pauli-Haack: So when I kept a close watch on the numbers throughout the last three years, and I always looked at some and also on the Gutenberg Times on the weekend edition, I sometimes said, “Okay, there are six new block themes. Who developed that?” So I looked at them. Some of them I really tried out. Carolina Nymark was one of the first theme developers. Who really embraced the process was Anders Noren from Norway. These a very successful theme developer, and he had a few quite interesting designs. But what I have noticed is that many, many block themes not only have some interesting style variations. And you can see them in the repository. You can see how the theme changes also has some of them have 30 patterns in there. It’s just amazing what creativity can do to the block themes now. So you don’t need to put one block at a time into your canvas. You can kind of take five patterns and your page is done. So it’s really good.
\n\n\n\nJoni Halabi: Yeah. I keep using the word game changer, but I mean, it’s-
\n\n\n\nBirgit Pauli-Haack: Yeah, it is.
\n\n\n\nJoni Halabi: … facilitates so much creativity. I love everything about it.
\n\n\n\nBirgit Pauli-Haack: Yeah. I see many, many themes that are actually focused on certain verticals. So there are restaurant themes, there are for certain shops, there are for digital pieces for recipes. It’s very focused on the use case. And those make the patterns as well as the imagery that comes with it and the look and feel so much more focused to get a person from zero to hero on their own website. It’s really a great phenomenon.
\n\n\n\nJoni Halabi: Yeah, for sure.
\n\n\n\nBirgit Pauli-Haack: You and I, we can talk more than 40 minutes about block themes.
\n\n\n\nJoni Halabi: I think we could. But this is not just the block theme show, we promise.
\n\n\n\nBirgit Pauli-Haack: So well, two more things. The Create Block Theme plugin is in a new version, 2.6 came out this week. And it fixes two bugs, important bugs, that fix the image URL localization when you make a child theme so that the images come over from the patterns into the child theme. And the URL is the right one. The other one was that if you had in your blocks, HTML, it would escape. So when you use that pattern, you had all the HTML code in there and not the rendering from the browser, and that was fixed as well. So that was kind of an interesting bug to fix.
\n\n\n\nJoni Halabi: Yeah, those are always tricky, the encoding, encoding bugs. Yeah.
\n\n\n\nBirgit Pauli-Haack: Yeah, though that’s the smallest release of this week.
\n\n\n\nWe had a bigger release that was the WordPress 6.7 Release Candidate came out. And with it, also the field guide. So if you haven’t tested 6.7 yet, now is the time you only have three weeks to test it against whatever product you have, your themes, your plugins, your maintenance processes, or just the sites that you have. And with playground, you can actually do a staging site, but there’s also InstaWP to kind of have a staging site.
\n\n\n\nAnd if you want to know the highlights from WordPress 6.7, there will be a YouTube live stream on November 5th at 18:00 UTC, and it’s with Jamie Marsland, Nick Diego and Rich Tabor kind of walk you through all the different things. We will talk a little bit later about them, the highlights that I see for 6.7 after we cover the Gutenberg 19.5 release.
\n\n\n\nJoni Halabi: Sounds good. Yeah, I’m excited for 6.7. Like you said, it’s coming November… Looks like November 12th.
\n\n\n\nBirgit Pauli-Haack: Yes.
\n\n\n\nJoni Halabi: And I know especially for my previous team, it’s so important to start that testing now, especially if you have a lot of custom code on your sites. This is something that has burned our team in the past. Sometimes custom code is not backwards compatible with changes that are happening in core, like our own custom code that we write.
\n\n\n\nBirgit Pauli-Haack: Right. It’s the future compatible.
\n\n\n\nJoni Halabi: Yeah, we’ve needed to make a few changes, and it’s just important to get all that testing in.
\n\n\n\nBirgit Pauli-Haack: Definitely the dev notes will help you. They’re in the field guide. And there are quite a few changes, not breaking changes, but additional feature in there for developers where APIs are expanded, like the block bindings API and the interactivity API, block books, some performance tweaks as well. So definitely look at the field guide. And the links will be in the show notes. And I also will link all the block editor relevant dev notes individually in the show notes. We have space on our show notes. Anyway, yeah, well, let’s go into the Gutenberg 19.5 plugin release.
\n\n\n\nJoni Halabi: Yes.
\n\n\n\nBirgit Pauli-Haack: So release-lead Hector Prieto wrote in his release post, “This release focuses on stabilizing existing features, but also brings some improvements to the general UI and the zooming, editing experience with 116 PRs from 47 contributors.”
\n\n\n\nSo yeah, let’s get going. General interface changes. One is the right design tool. Now you can persist your user preference through the preference option on the plugin, in the plugin editor. So that’s good.
\n\n\n\nJoni Halabi: Yeah. That one I have been waiting for because I often switch between the visual editor and the code editor, and I don’t always remember that I do that. So if I go into a page and I switch into the code editor and then I have to edit another page, I expect to go into the visual editor. Sometimes I’m surprised when I am somehow in the code editor because I just forget that, “Oh yeah, right. The last page I was in, I was in the code editor.” But I always found it interesting that WordPress made the assumption that because I went into the code editor last, that is something I will continue to do. So I love that this is a setting now.
\n\n\n\nBirgit Pauli-Haack: Yeah. And I’m not quite sure it is actually the setting that you’re thinking about because the editor has now on top of the toolbar, there’s also a write and design tool. There was previously the select and edit tool where you can switch, especially for those who are traveling with a keyboard instead of the mouse, there was a difference between getting into a block to work in the block or to travel from one block to the next. So that was the select was the traveling from one block to the next. And then the writing part or the editing part was actually the block part where you can use the toolbar or you added content to a particular block.
\n\n\n\nJoni Halabi: I think I interpreted the Git, the pull request wrong then. Interesting.
\n\n\n\nBirgit Pauli-Haack: Yeah. And there is also a change in how those two modes behave when you are in the zoom out mode.
\n\n\n\nJoni Halabi: Wow. Yeah.
\n\n\n\nBirgit Pauli-Haack: 6.7 brings us the zoom out mode, but not the editing of design switches to it, only for the pattern. So that is the next thing on our list, is that the zoom out mode in 6.7 is just with a toggle button. With a new Gutenberg release, if you have that, it will also automatically zoom out when you use the pattern tab in the inserter when you want to drag and drop a pattern over to your site and you need a little bit better of a bird’s eye view on your page instead of just having that one kind of block in front of you. It’s a much better way to add. So you can now kind of drag and drop patterns over and move them up and down without having to deal with all the blocks around it or in it.
\n\n\n\nJoni Halabi: Yeah, yeah, no, there’s a great animation of this in the pull request that it’s nice to be able… Because when you’re talking about a pattern, you are talking about more than one block that can stand a good chunk of your page depending on the pattern. So it is nice to be able to see that in context, to see your entire page as it stands. Now if you’re trying to add another pattern and it just helps you think about, “Okay, well where can this new pattern go?” with respect to the entire page.
\n\n\n\nBirgit Pauli-Haack: Exactly.
\n\n\n\nJoni Halabi: That is definitely one of the important ones. There are a number of changes to that zoom out functionality in this release, but that when you select the pattern tab, but that’s definitely one of the biggies.
\n\n\n\nThe next, I guess, really two sets of changes have to do with the component storybook. So there are a couple of changes to note. One, adding type tokens to storybook. And the other one is just stubbing out documentation on existing colors in a theme. And I think these are so fundamental because storybook talks about design in terms of the components in the UI. And I guess it just surprised me that it wasn’t there before, but color and photography are so basic to any design for anything that it is. I think it’s a wonderful change that these both are being added into storybook now. You can see basically the colors that exist in the base styles now, and then having the type tokens, you can see all of the register of typography. So you can see semantic tokens, like what are your different heading levels, for example. What does body text look like? And these are just fundamental design elements that I’m glad they’re there now.
\n\n\n\nBirgit Pauli-Haack: Yeah. You have been part of our live Q&A and design systems. Now the WordPress design team is actually building out their design system through that storybook because the admin design now needs also the funds. And not only just the data views, how they’re in the site editor, but when you go to the next level and have the admin move over to the new design, you need to have standardized colors and standardized funds and all that. And that’s where the storybook comes in to have a unified system and standard for all the contributors that are either back end or front end or plugin developers to kind of figure out. So none of the developers have to make all the design decisions. Again, it speeds up the plugin development or the core development quite a bit when there is a design system there, yeah.
\n\n\n\nJoni Halabi: Yeah. That’s fabulous.
\n\n\n\nBirgit Pauli-Haack: For the global styles, contributors improved the navigation logic for the revision screen. That had quite a change in a few of the plugin releases before and how do you get to the revisions of your styles. It’s a great change to see how you can see the revisions for your styles that are a little compressed and much easier to navigate in the animation. So it talks about the global styles are in the right-hand sidebar, and that’s also where you find the revisions of your changes. I’m so happy that we have those revisions because after playing around with a theme or with a site for, I don’t know, 30 minutes, I don’t know, I reversed some of my decisions because, “Oh, that looked nice 20 minutes ago, but now I don’t like it anymore.” So reversing that through the revisions panel is really cool. The team is working on, it’s really cool.
\n\n\n\nJoni Halabi: Yeah, no, no, no. I love that they’re working on that because I feel like a lot of our content editors don’t realize that revisions exist and it is such a powerful tool. So to be able to make improvements to the UI and maybe make it a little more obvious about how to use revisions, I think, will help our editors a lot.
\n\n\n\nBirgit Pauli-Haack: And it’s not only… Well, they still have to work on the content revisions for posts and pages.
\n\n\n\nJoni Halabi: That’s it.
\n\n\n\nBirgit Pauli-Haack: They still don’t know what to do with blocks, but yeah.
\n\n\n\nJoni Halabi: I mean, that does help you then.
\n\n\n\nBirgit Pauli-Haack: But that’s coming.
\n\n\n\nJoni Halabi: Yeah. I mean, revisions, being able to work on the UI for revisions at any part of the styles or the… The styles, I feel like, is step one. So this is a great updates.
\n\n\n\nBirgit Pauli-Haack: They’re already there, yeah.
\n\n\n\nJoni Halabi: Yeah. So in black bindings, we’ve now added the ability to register binding sources in the widget screen. So block bindings, for anyone who’s not familiar with, it’s when the content of a block is tied to some sort of external data source. So you could have a paragraph that is tied to some RSS feed maybe or anything.
\n\n\n\nBirgit Pauli-Haack: Yeah. Or meta fields, a custom field.
\n\n\n\nJoni Halabi: Right. Or meta field, yeah. So this particular change makes sure that a block, like a paragraph, inside a widget can also be bound to some sort of custom source, like a meta field.
\n\n\n\nBirgit Pauli-Haack: Yeah. And we haven’t heard about the widget screens for a long time, so I’m really happy that there are some people still thinking, “Okay, there’s another block editor that has been neglected for a bit.” But I think the unification efforts between post editor and site editor, they’re done now. And I think looking at the widget screen is one of the next steps. And having the binding sources there definitely helps because that’s what you want to put in additional information there.
\n\n\n\nThe cover block experience, they refactor of the settings panel. It streamlined all the different features for a cover block and has some pull out. Up until now in the plugin, you had all the settings for the cover block in one sidebar. From top to bottom, you had to scroll. But now there is a three-dot menu there where you can switch off some of the features so you don’t have to scroll to them all of the time. So it’s similar to the typography settings as well as the dimension settings. Now, it’s just adopted the same philosophy there that not all the features are shown at the first time or by default.
\n\n\n\nJoni Halabi: Yeah, this is nice to see because the cover block has gotten complex for a reason. There’s a lot going on in terms of settings with the cover block, so it’s nice to see improvements there in that UI.
\n\n\n\nBirgit Pauli-Haack: Yeah, absolutely.
\n\n\n\nSo that kind of covers all the enhancements that we had, but there are a few bug fixes we wanted to talk to you about. The code block now has a left-to-right direction for right-to-left languages. Can you explain that to me?
\n\n\n\nJoni Halabi: Yes. So it’s tricky to read, right? So right-to-left languages, so think Hebrew, think Arabic. When you write, the paragraphs and the headings that you write go from your right hand to your left hand. But when you’re writing code, if you’re a native speaker, if you’re writing prose in a right-to-left language, but you’re writing code, your code is still left-to-right. So this is making sure that, let’s say that you have a page, let’s say that you’re blogging in Arabic and you’re blogging about this really cool feature that you just wrote and you write your paragraph and it’s in Arabic and it’s from right to left, but you want to feature a code snippet. This is to make sure that the code on your page is still displayed left-to-right, because that is still how we write code regardless of what spoken language we are writing or reading or speaking.
\n\n\n\nBirgit Pauli-Haack: That makes so much more sense now. Thank you.
\n\n\n\nJoni Halabi: It is. I mean, it’s a lot of letters in that headline, so I understand why.
\n\n\n\nBirgit Pauli-Haack: Yeah. And for someone who never knows where left and right is, it’s going to, “What?”
\n\n\n\nJoni Halabi: I still have to do the hand trick where I make my index and my thumb form basically be at right angles of each other. And the one that makes the L is my left hand. And I still do this, so I understand.
\n\n\n\nBirgit Pauli-Haack: Yeah, well that’s when my husband says, “The other left” when I go wrong.
\n\n\n\nJoni Halabi: Yeah, it’s always fun.
\n\n\n\nBirgit Pauli-Haack: Yeah. And now… Go ahead.
\n\n\n\nJoni Halabi: Yeah, no, so another fix is do not… I’m just going to read this title, don’t render image when the source attribute is empty, which feels very obvious. But this was a bug fix where if you had an image, an image tag, but an empty source, that image tag was still getting rendered. And there’s no point in rendering an image tag if there’s no source. So this fixes that bug.
\n\n\n\nBirgit Pauli-Haack: It sounds like a rookie bug, but sometimes they just sneak in.
\n\n\n\nJoni Halabi: Yep.
\n\n\n\nBirgit Pauli-Haack: Yeah, I have done a lot of dumb things like that. And then one is PR is in terms of extensibility, it kind of renames the register block template from W_register_block_templatetoregister_block_template. So the WP prefix is kind of taken away because it seems to be obvious and it follows other register block kind of function. But if you have been testing things with the new register block template for the plugins, you might want to look at your code and kind of remove the prefix kind of thing. I think that was back ordered to 6.7, so it’s in the 6.7. But if you have done it up until beta 3, I think with WP you can remove it now.
\n\n\n\nJoni Halabi: Yeah. And I think you have to, because if I’m reading that PR correctly, there is no backwards compatibility for the WP prefixed version of this function, which it didn’t seem like it was supposed to be in anyone’s code anyway like in a custom developer’s code. But please double check your code.
\n\n\n\nBirgit Pauli-Haack: Yeah, well, it’s a new feature for 6.7.
\n\n\n\nJoni Halabi: Oh, okay.
\n\n\n\nBirgit Pauli-Haack: So it wasn’t backwards compatible, it just kind of wasn’t a kind of discussion now through co-op contributors. So this comes as a new function, “Can we make it uniform with the other register block kind of functions and remove the WP?” And so there is no backwards compatibility because it hasn’t been in the future, but it was in WordPress 6.7 alpha up until beta 2 or beta 3, and only for the release candidate, they take the WP out. So if somebody wrote a plugin template already to come out in 6.7, when 6.7 comes out, that’s the code to check again. Does it make sense?
\n\n\n\nJoni Halabi: That does make sense. Thank you, yeah. I didn’t realize that was that new. That’s awesome.
\n\n\n\nBirgit Pauli-Haack: Yeah, it’s part of the… So now plugins can register templates for the site editor. So when you have a plugin that does a business directory or something like that, you can now register a template that then a user can modify in the site editor, which was before not possible or was a really hacky way to get it into that. And then you can, as a plugin developer, also document that. So the theme developer can also modify that template or build pattern for the template or something, yeah.
\n\n\n\nJoni Halabi: Nice.
\n\n\n\nBirgit Pauli-Haack: Yeah, that’s nice. I like it. And I wanted to point out a couple documentation changes. There was in a previous version of the plugin and for 6.7 a method to curate the heading level through level options. And that is now documented in the block editor handbook. So you can say, “Okay, if your content editor uses the heading block, you don’t want a heading one, you don’t want a heading four or five and six. There are only two heading levels that they can use. And that’s heading two and heading three.” You can do it now and have also your patterns, follow that through a block attribute. And you can also use it for your custom blocks. It’s in the site title, post title. And for where you ever use headings, you can change that there as well. And it’s in from the toolbar, so it’s documented now.
\n\n\n\nJoni Halabi: Excellent. Yes, and I love this feature and I love that it’s now documented just from an accessibility perspective because making sure that your heading levels are in order and makes sense is part of your site accessibility. So for example, having an H1 followed by an H4 doesn’t make much sense. You want these headings to go in order. So this feature helps us enforce that. And this new addition to the documentation helps people use the feature.
\n\n\n\nBirgit Pauli-Haack: Yeah, absolutely. So on the second documentation was just to announce that the components packages now produce the readme file with the documentation through an auto generator. So they’re at least standardized. And developers can, through their code, also control the documentation, but it doesn’t have to be an afterthought anymore and it’s standardized. So that’s kind of the first step to have some standardized component readmes because there are hit-and-miss to be honest. And this is kind of a part to rectify downtown.
\n\n\n\nJoni Halabi: Nice.
\n\n\n\nBirgit Pauli-Haack: And that’s it, dear listeners. That’s Gutenberg’s 19.5 for you.
\n\n\n\nSo I promise you we’re going to talk about WordPress 6.7 a bit. So there are a few high level things. There are tons of changes in there, smaller ones and big ones. Anne McCarthy publishes for the last 10 releases, I think, a Source of Truth, which is mostly for writers who want to write about the new release to get in-depth information, to also get assets that they can use in their writing. But that is now published on the Gutenberg Times. So I will link through the show notes to that. So you can also follow up on some of the details there.
\n\n\n\nI like to point out, well, we all know Twenty Twenty Five is the new default theme, and I have had a lot of fun with it. It was really good. I prepared a talk for German WordCamp where I was almost using up all my time with the Twenty Twenty Five standard theme, which wasn’t particularly well organized, but that’s a different story. But my excitement kind of spilled over that I got on a tangent. And so I really, really like that it has about, I think, 50 patterns for all kind of different things because it wants to be a starter theme for a personal blogger or for a photo blogger or for a magazine style site and has templates for all of them, and also different ways for the different templates. So you can have a query loop template with different ways how the post comes in. I think there are about 10 or so different ways to organize that. Then there are services, price tables, testimonials, not only in one pattern, but maybe two or three patterns of that. So that’s really cool.
\n\n\n\nAnd what the crown of it is, that there are also four different… So there were color variations for the full theme. And then there are style variations for the full theme that changes the look and feel, but it also has separate color variations. So you could just leave the style like it is, but only change the color combination. Or you can say, “Okay, I want it like it is, but I just want to change the font.” So there are font variations as well.
\n\n\n\nAnd then there are section styles. So when you have a group pricing header or a pricing section or a group block with a call to action, you can actually use four or five different styles. So when you add them to your page, you actually can change the color of each of them, but still be in a full theme variation. But it makes it much livelier to scroll through a page that has several sections that also changed the colors, but it’s really well done and they have been all tested. So it’s a really good theme. Kudos to Carolina Nymark and Juan Aldazoro. Oh, I’m butchering his name. Sorry, hang on.
\n\n\n\nJoni Halabi: I was just going to say while you’re looking that up, you talked quite a bit about the colors and a bit about the fonts, I love that these font variations include font combinations. So the font variation has these combinations of a header. They’re a set of a header and body fonts. And that is one of the most challenging things I have experienced trying to design a site, just trying to find a really good combination of a header font and text font. And this gives you eight different options that I can see that are really solid options. If you’re a bit shy about design and playing with typography, you can choose one of these eight and there are no bad choices here.
\n\n\n\nBirgit Pauli-Haack: Yeah, yeah, no, the developers and designers that build out the theme, so the design comes from Beatriz Fialho, but Juan Aldazoro is his name, Juan Aldazoro and Carolina Nymark are the lead developers on the Twenty Twenty Five default theme, and they did a marvelous job also. But there are also about, I don’t know, 30 to 50 additional contributors that delivered patterns. So it’s actually a larger group of people who built this theme, and it’s really fabulous. So try it out and look at that.
\n\n\n\nThe query loop, so that was part of it that I tried out the new features for the query loop. It is now optimized and streamlined. So you have all kinds of filter settings. You can filter by author, date, or you can say, “Okay, I want to have a post loop just for a custom post type with custom fields.” And all of that is now possible for any template you can use. Or you can just use them on the post and say, “Okay, I want from the same category or the post from there, except this one.” So you can also include post and offset post. All the features are now available. Some of them were in the toolbar and now then the sidebar complete with all the new ones. That is a really great quality of life kind of change.
\n\n\n\nJoni Halabi: Oh yeah, for sure.
\n\n\n\nBirgit Pauli-Haack: We talked about the zoom out for the template handling. The page views and the site editor, that’s more the data views kind of how in the admin section how you can view the pages. There are some previews. There’s a list view where you have a three pane window. On the left-hand side, you have the block site editor navigation with the published kind of status. And then in the middle you have all the list, all the pages. And then when you click on them, the third pane is a preview of the page. So you don’t have to go back and forth when you just want to look at, “Okay, what’s in the page here? How does it look?” So you can also have it right there. So it’s a really improvement in navigating your pages.
\n\n\n\nYeah, I wish that was available for posts, but the developers are working on it. There’s an experiment. If you use 19.5 Gutenberg plugin and there’s an experiment menu item there and you enable the post data views, then you can see how that also works for posts. But it’s a little harder to make it for posts because there are so many customizations and things to look at. So right now it’s an experiment, but always welcome for feedback. Do you have any questions about things?
\n\n\n\nJoni Halabi: No, no. I was just going to say, as somebody who’s now less on the development side of things and more on the content side of things, I appreciate something that will make editing easier and being able to see those changes easier. Because like you were saying, having to flip between different screens, it’s not ideal. So seeing improvements, even if it’s not on posts yet, it’s coming to posts, that is something I’m looking forward to.
\n\n\n\nBirgit Pauli-Haack: Yeah, they’re also experimenting with a quick edit part. So yeah, in the current admin you have the quick edit section where you change categories and rename things.
\n\n\n\nJoni Halabi: Yeah, love it.
\n\n\n\nBirgit Pauli-Haack: So that also is coming to the data view section, so you can have that part as well if you missed it until now.
\n\n\n\nA lot of designers are really excited about having background images not only for blocks like the cover block, but now you can also do it for group block. And you can have it site wide. So there is in the global styles, in the first list of typography and layout and styles, and there’s now one for background image. So you can have your clouds there or your tiles or whatever you need from your site. And sometimes I feel we could go back to GeoCities sites.
\n\n\n\nJoni Halabi: I was just thinking GeoCities. And in my head I was wondering like, “Should I bring it up? This is still very retro ’90s.” Can I just make a shout-out? Please do not put in an animated background. It’ll make everybody who works in accessibility cry.
\n\n\n\nBirgit Pauli-Haack: Yeah. Yeah. I think it only… It doesn’t do animated GIFs.
\n\n\n\nJoni Halabi: Oh, good.
\n\n\n\nBirgit Pauli-Haack: I think it’s just Gs or JPEGs. Yeah, but you’re right. Yeah, that would be really cool. Hilarious, yeah. But I’m thinking that there are some designs that can be quite unique with that. I remember one of my first backgrounds was really bright red and bright blue, and then I had white fonts on it, and you couldn’t read what you were writing or what I was writing for it, so.
\n\n\n\nJoni Halabi: Oh, yeah. I remember when we were talking about Web 2.0 in the late ’90s, and I was in an electronic arts curriculum at that point, and we were making web pages with hidden links. So you had to explore the page just by moving your mouse around to see if you happen to stumble upon a link. This will literally make everybody sad now. We know better, but this was experimentation in the late ’90s.
\n\n\n\nBirgit Pauli-Haack: Yeah. Unless it’s a game or something like that, but yeah.
\n\n\n\nJoni Halabi: Yeah, yeah. Exactly.
\n\n\n\nBirgit Pauli-Haack: Yeah. So yeah, apart from the developer API changes that are there, so these are kind of my highlights for WordPress 6.7. And there are improved blocks. Most blocks now have border support that we are missing for… Only six or seven blocks at border support. And now almost every block has a border support with 6.7. So again, I will share the Source of Truth post from the Gutenberg Times, and also a link to the November 5th highlight live stream on YouTube for those who want to hear and see things beyond a podcast, which is really hard to demo things, but yeah.
\n\n\n\nWell, is there anything else that you want to talk about, about block themes, block editor, WordPress or your life?
\n\n\n\nJoni Halabi: Oh, I could go on about so many of those things, but I think we’ve covered the basics. I think we’ve covered all the important things.
\n\n\n\nBirgit Pauli-Haack: So let me ask you this. If you now do a lot of content, are you going to go back to some block writing or coding in your spare time, kind of rest your brain from the content editing and just do some coding?
\n\n\n\nJoni Halabi: I might. My challenge is finding spare time. My life is very filled with just research and writing, and then also my child and raising a six-year-old, like I will have spare time in about 12 years.
\n\n\n\nBirgit Pauli-Haack: Okay. We’ll talk about it. What is that? WordPress 15.6 or something like that?
\n\n\n\nJoni Halabi: Oh, probably. Yeah.
\n\n\n\nBirgit Pauli-Haack: Well, this was lovely. Thank you so much for taking the time to be on the show. And we will hear from you sooner than in 12 years.
\n\n\n\nJoni Halabi: Yes, I certainly hope so.
\n\n\n\nBirgit Pauli-Haack: … when you come back to show. Yeah. Well, it was great that we had you again and you walked with me through all the announcements and stuff there.
\n\n\n\nI will share some links for Joni Halabi if you want to get in contact with her. I mentioned the Static versus Dynamic Blocks article on the developer blog. Joni also wrote a book, Sweet Little You, and that’s available. And then I’ll have the LinkedIn link as well as the WordPress profile link for you if you want to get in contact with Joni.
\n\n\n\nAs always, the show notes will be published on Gutenbergtimes.com/podcast. This is show 110. And if you have questions or suggestions or news you want us to include, send them to changelog@Gutenbergtimes.com. That’s changelog@Gutenbergtimes.com. And this is it. Thank you for listening. And if you want to comment on… What is it? It’s not Storify, it’s not Shopify, it’s Spotify.
\n\n\n\nJoni Halabi: Spotify.
\n\n\n\nBirgit Pauli-Haack: Spotify. When you listen on the Comcast there, send in a comment. If you listen on Apple, do a review. If you listen on Pocket Casts also, feel free to review our show so more people can join us for the next time. Thanks for listening and goodbye.
\n\n\n\nGoodbye, Joni. Thank you.
\n\n\n\nJoni Halabi: Goodbye. Thank you so much.
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 27 Oct 2024 08:17:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:106:\"Gutenberg Times: Over 1000 Block Themes, Gutenberg 19.5, Fieldguide WordPress 6.7 — Weekend edition #309\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=30554\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"https://gutenbergtimes.com/over-1000-block-themes-gutenberg-19-5-fieldguide-wordpress-6-7-weekend-edition-309/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18532:\"Howdy,
\n\n\n\nHow are you today? It’s getting cold again in Munich. This year, I am hopefully better prepared for the Winter than last year.
\n\n\n\nAfter a few days struggling to figure out the problem, Gutenberg Nightly is now available again via Playground or from the page Need a zip from Gutenberg trunk branch? Huge Thank You to Jon Surrell for fixing the repo and the build process.
\n\n\n\nI hope you’ll have a restful weekend.
\n\n\n\nYours, 💕
Birgit
ICYMI Here are the block editor related Dev Notes from the WordPress 6.7 RC1 release and the Fieldguide for WordPress 6.7
\n\n\n\nSeizing the moment, David McCan published a tutorial on How to Use the WordPress Beta Tester Plugin. It’s a great tool that allows you to test pre-release edition of the next WordPress version. “There are a lot of reasons why people want to test a pre-release. Maybe you’re a theme or a plugin developer, and you want to make sure that your theme or plugin is going to work with the next version of WordPress. Or maybe you’ve got some critical sites, and you want to make sure there aren’t going to be any surprises with the next version of WordPress. Or maybe you’re curious about the upcoming changes and features that will be in the next version.” he wrote.
\n\n\n\nSave the date! November 5th, 2024 at 17:00 UTC with a live stream on WordPress 6.7 Highlights a Q & A with Jamie Marsland, Rich Tabor and Nick Diego
\n\n\n \n\n\nGutenberg 19.5 was released and Hector Prieto wrote in his release post What’s new in Gutenberg 19.5? (23 October), that the release mostly focused on stabilizing existing features but also brings some improvements to the general UI and the zooming editing experience.
\n\n\n\nHe highlighted:
\n\n\n\n\n\n\n\nIt was a great pleasure to have Joni Halabi, Georgetown University, on the show again and to geek out over the block editor. We discussed, Gutenberg 19.5, Create Block theme plugin and marvel at the fact there are now 1000 Block Themes available in the WordPress repo. The episode 110 arrive at your favorite podcast app over the weekend. If you listen to the podcast on Spotify, you can now leave a comment from your phone. I would love to get connected with more listeners.
\n\n\n\n🎙️ Latest episode: Gutenberg Changelog #110 – Gutenberg 19.5, WordPress 6.7, Create Block Theme Plugin and a Thousand Block Themes at the Repository with Joni Halabi
\n\n\n\nElliot Richmond demos a Mobile Fix for Complex Layouts in the WordPress Block Editor (No Theme Files Needed), You’ll learn how to write custom CSS using the browser inspector and style editor, then paste it into the block editor for a no-code-friendly mobile solution.
\n\n\n\nMd Noruzzaman just added the Geomap Block to the plugin repository that allows you to add a basic Google map to your post or pages without handline API keys.
\n\n\n\nWes Theron recorded a new video for Learn.WordPress on how to create a portfolio site with a block theme and patterns using a up-and-coming Twenty Twenty-Five WordPress default theme which has an extensive pattern library. This will show you how to leverage these patterns to save time and build your site from a solid foundation.
\n\n\n\nOver at the CSS Tricks, Geoff Graham shared Justin Tadlock’s article on the Developer blog, and ruminated in Mastering theme.json: You might not need CSS about writing CSS in style sheets vs. CSS in JS and WordPress way. “Regardless of all that, I’m linking this up because Justin does bang-up work (no surprise, really) explaining and illustrating the ways of CSS-in-WordPress.” Graham wrote.
\n\n\n\nTheme team rep, Ganga Kafle, invites you to Celebrate 1,000 Block Themes in the themes repository!
\n\n\n\nAnne McCarthy also published on WordPress News: WordPress Community Creates 1,000 Block Themes in 1,000 Days
\n\n\n\nJyolsna J E also covered this major milestone for the WPTavern: WordPress Themes Repository Now Houses 1000 Block Themes
\n\n\n\n “Keeping up with Gutenberg – Index 2024”
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. 2024 on. Updated by yours truly. The previous years are also available: 2020 | 2021 | 2022 | 2023
Have you ever run into a situation where you needed to unregister a block pattern in your theme? Justin Tadlock has the right snippet for you. Snippet: Conditionally unregister patterns. This post also starts a new section on the Developer Blog of short code snippets that any developer could use for a specific use case. For now, we still need to get some kinks out of theme and editorial process, but soon we start publishing more code snippets in CSS, PHP, JavaScript, or JSON
\n\n\n\nIn his latest video tutorial, Add custom CSS and JavaScript to any WordPress block, Brian Coords, walks you through the process of modifying any block.json with simple PHP to load your own custom CSS and JavaScript. The post also holds the full transcript of the video for those of us who want to read along.
\n\n\n\nIn this week’s live stream, Ryan Welcher showed how to turbocharge Your WordPress with Custom Blocks in WordPress 6.7, disseminating the information from the Dev Note New block type registration APIs to improve performance in WordPress 6.7
\n\n\n\nNeed a plugin .zip from Gutenberg’s master branch?
Gutenberg Times provides daily build for testing and review.
Now also available via WordPress Playground. There is no need for a test site locally or on a server. Have you been using it? Email me with your experience
\n\n\n\nQuestions? Suggestions? Ideas?
Don’t hesitate to send them via email or
send me a message on WordPress Slack or Twitter @bph.
For questions to be answered on the Gutenberg Changelog,
send them to changelog@gutenbergtimes.com
Don’t want to miss the next Weekend Edition?
\n\n\n\n\n\nHeroPress was inspired by a photo.
\n\n\n\nDave (who bootstrapped the project) gave me one mandate: “I’m very open to whatever you make, but whatever it is, in some way I want it to help this child”. And he sent the following photo.
\n\n\n\nNow that’s a stock photo, you can find it all over the web. We’ll never know who that specific kid is, but the point was that there are millions of kids like that in India, and Dave wanted to give a boost to as many of them as we could. Ever since then, HeroPress has been deeply tied to India.
\n\n\n\nRecently I was telling this story to Nathan Wrigley on the WPBuilds Podcast. I was talking about my concern for the WordPress community in these days of difficulty. Many many Indians have gotten their start in computing in their early teens, on their own computer, or a borrowed one, or even on just a phone.
\n\n\n\nWhile we were talking I realized, if this kid were about 3-5 years old when the photo was taken, approximately 10 years ago when HeroPress started, it’s entirely possible he’s 13-15 years old now, and could very well be learning about WordPress. And it’s entirely possible HeroPress has helped him.
\n\n\n\nWe’ll never know of course, but can say for a certainty that HeroPress has helped people LIKE him.
\n\n\n\nMission accomplished Dave.
\n\n\n\nIf you’d like to help HeroPress continue to help people of all ages, everywhere in the world, leave a donation.
\nThe post Building For Their Future appeared first on 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:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Oct 2024 16:39:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:66:\"Do The Woo Community: Do the Woo Friday Shares, Starting Today, v1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=86303\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://dothewoo.io/blog/do-the-woo-friday-shares-starting-today/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:204:\"Friday shares recap weekly highlights and content from Do the Woo community, featuring diverse resources, news, and events aimed at enhancing engagement and contributions within WordPress and WooCommerce.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 25 Oct 2024 09:23:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:53:\"Do The Woo Community: Around the Corner, WooSesh 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86292\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/around-the-corner-woosesh-2024/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:149:\"BobWP reminds the community to register for the free WooSesh 2024 event on October 29-30, featuring valuable sessions, live chats, and Seshie voting.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 24 Oct 2024 12:56: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: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: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:66:\"WPTavern: WordPress Themes Repository Now Houses 1000 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=176325\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wptavern.com/wordpress-themes-repository-now-houses-1000-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:3604:\"The WordPress Themes Repository has hit an exciting milestone of 1,000 block themes. As of today, the repository has over 12,000 free themes.
\n\n\n\nBlock themes were introduced in WordPress 5.9 allowing users to create and customize all aspects of their site using the block editor. This ushered in a new era of site design, and in July 2022, the Themes Repository celebrated reaching the 100-block-theme mark. It hit the 200 mark in December 2022.
\n\n\n\nThe journey of block themes was not without challenges leading to the community discussing why more theme authors were not embracing block themes. To give block themes greater visibility, a “Block Themes” menu item was added to the filter menu on the directory homepage, helping developers and site owners discover these innovative designs more easily.
\n\n\n\nGanga Kafle, a representative of the WordPress.org Themes Team, has shared more details about block themes and contributors. The very first block theme to go live was Armando, a theme crafted by Carolina Nymark. Today, Automattic leads the contributions to the block themes category with 116 themes, followed by Creta Themes with 41 themes.
\n\n\n\nGanga Kafle also shared the team’s vision, “The themes team would like to see more block themes. We expect an influx of innovative designs and functionalities. Whether you’re a developer, designer, or site owner, the potential of block themes offers exciting opportunities for creativity and customization.”
\n\n\n\nRemkus de Vries tweeted, “It started out real slow, but it seems we’ve finally got some momentum for the Block Themes. Let’s see how long it takes for the next 1000!” while Jeff Chandler tweeted, “Back in 2021, Matt’s request was for 5,000 block themes, not 1,000 lol. Still a bit shy of that number :D.”
\n\n\n\nAutomattic Product Wrangler Anne McCarthy also published WordPress Community Creates 1,000 Block Themes in 1,000 Days to mark the occassion.
\n\n\n\nFor developers interested in getting started with block themes, Carolina Nymark’s guide to creating WordPress block themes is an excellent resource. They can also explore the WordPress Theme Developer Handbook and Learn WordPress for more information and join the WordPress Community Themes repository.
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 23 Oct 2024 19:24:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:71:\"Gravatar: Upgrade Author Profiles with the Gravatar Block for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=2326\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://blog.gravatar.com/2024/10/23/upgrade-author-profiles-with-the-gravatar-block-for-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2765:\"Say goodbye to generic author boxes. The Gravatar Enhanced plugin for WordPress just got a major upgrade with a fully customizable Profile block. Now you can showcase your authors in style – and give your SEO a boost while you’re at it.
\n\n\n\nThe new Gravatar Profile block puts you in the driver’s seat. Customize:
\n\n\n\nBest part? Your authors can update their profiles directly through Gravatar.com – no WordPress access needed. Perfect for multi-author blogs and company websites.
\n\n\n\nGoogle loves knowing who’s behind your content. The new Profile block helps establish E-E-A-T signals (Experience, Expertise, Authoritativeness, and Trustworthiness) by:
\n\n\n\nThese reputation signals can help search engines better understand and rank your content.
\n\n\n\nReady to upgrade your author profiles? Get the Gravatar Enhanced plugin today and start customizing!
\n\n\n\nPro tip: This block can be used on any page or post, too!
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 23 Oct 2024 17:50: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:\"Ronnie Burt\";s: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:80:\"WordPress.org blog: WordPress Community Creates 1,000 Block Themes in 1,000 Days\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=18029\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2024/10/wordpress-community-creates-1000-block-themes-in-1000-days/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3329:\"In nearly 1,000 days, the WordPress community has created 1,000 Block themes—coming together to use the full potential of the Site Editor and unleash new creative possibilities for everyone.
\n\n\n\nFirst introduced in WordPress 5.9, Block themes have steadily evolved, improving flexibility and functionality for themers, users, and agencies alike. Now, design tools allow customizing almost every detail. With style variations, users can change the overall look of their site in a few clicks. You can even use curation options to customize the editing process itself. But we’re not done! We can’t wait to keep pushing Block themes even further. Thank you to every early adopter who, by embracing early features with passion, helped shape the Block themes we love today with feedback and testing.
\n\n\n\nIf you haven’t yet explored Block themes, check out some of the resources below to get inspired:
\n\n\n\nLet’s celebrate and share our contributions! Please comment on the Theme Team’s post dedicated to highlighting this milestone to share your favorite Block theme and thank those who have contributed along the way.
\n\n\n\nThank you to @kristastevens for editorial help, @beafialho for the featured image, and @kafleg for reviewing.
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 23 Oct 2024 17:01: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:8:\"annezazu\";s: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:107:\"WPTavern: #142 – Miriam Schwab and Oliver Sild on Security Collaboration Between Elementor and Patchstack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=176318\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"https://wptavern.com/podcast/142-miriam-schwab-and-oliver-sild-on-security-collaboration-between-elementor-and-patchstack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:50099:\"Transcript[00:00:00] Nathan Wrigley: Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.
\n\n\n\nJukebox is a podcast, which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, the recent security collaboration between Elementor, and Patchstack.
\n\n\n\nIf 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/feed/podcast. And you can copy that URL into most podcast players.
\n\n\n\nIf 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/contact/jukebox, and use the form there.
\n\n\n\nSo on the podcast today, we have Miriam Schwab and Oliver Sild.
\n\n\n\nMiriam co-founded Strattic, a platform with an aim to revolutionize WordPress security and performance on the web. After Elementor aquired Strattic, Miriam continued leading the unit before becoming a head of WordPress relations.
\n\n\n\nPrior to that, Miriam founded and managed a prominent WordPress development agency in Israel. With over 15 years of experience, she’s a respected member of the WordPress community and a frequent speaker at WordPress events.
\n\n\n\nOliver is the CEO and co-founder of Patchstack, a company dedicated to the mitigation of security vulnerabilities in WordPress and open source environments. Patchstack is now a seven year old enterprise, and they specialize in penetration testing, security process management, and protective services for developers, agencies, and major hosting companies.
\n\n\n\n[00:02:07] Nathan Wrigley: Oliver’s background also includes experience running an agency, and his work at Patchstack focuses on collaborating with plugin developers and hosting providers to ensure robust security measures for their clientele.
\n\n\n\nMiriam and Oliver joined me at WordCamp US 2024 in Portland, where they did a presentation discussing the processes needed to enhance open source plugin security, and the advantages of leveraging bug bounty partnerships.
\n\n\n\nTheir collaboration brings to light the importance of integrating security solutions within the WordPress ecosystem, especially for companies with a footprint as large as that of We talk about the global operations of
\n\n\n\nOliver’s team at Patchstack, who work across all time zones, providing round the clock threat intelligence and vulnerability monitoring.
\n\n\n\nWe also explore the Patchstack system as a whole and how it categorizes WordPress vulnerabilities based on their exploitation likelihood, and their implementation of virtual patches to protect against high and medium priority vulnerabilities automatically, without code changes.
\n\n\n\nWe also get into how Miriam’s team at Elementor collaborates with Patchstack to ensure rapid and professional handling of vulnerabilities, enhancing security for their 17 million installations.
\n\n\n\nThe partnership between Elementor and Patchstack is a great example of how different companies within the WordPress community are able to work together to provide better outcomes for their users.
\n\n\n\nIf you’re curious about the intersection of page builders and security in WordPress, or the value of collaborative partnerships in maintaining the ecosystem, this episode is for you.
\n\n\n\nIf you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.
\n\n\n\nAnd so without further delay, I bring you Miriam Schwab and Oliver Sild
\n\n\n\nI am joined on the podcast today by Miriam Schwab and Oliver Sild. Hello.
\n\n\n\n[00:04:14] Miriam Schwab: Hi.
\n\n\n\n[00:04:15] Oliver Sild: Hello.
\n\n\n\n[00:04:16] Nathan Wrigley: We’re in Portland. We’re at WordCamp US. It is 2024, and Miriam and Oliver have done a presentation, which I think happened yesterday. How did it go?
\n\n\n\n[00:04:26] Miriam Schwab: I think quite well. I’ve been getting good feedback. What about you?
\n\n\n\n[00:04:28] Oliver Sild: Yeah, I think it was great. I think, after the talk, we had a lot of people coming to us, and to ask about how they can, you know, replicate that on their plugins as well and it was very good.
\n\n\n\n[00:04:37] Miriam Schwab: I actually ran into someone who was like, that was the best talk I’ve heard since the start of the conference, just by the way.
\n\n\n\n[00:04:41] Nathan Wrigley: The title of that presentation was Enhancing Open Source Plugin Security, Establishing Robust Processes and Leveraging Bug Bounty Partnerships. And the podcast today is going to be about a partnership between, well, in Miriam’s case, Elementor, because that’s where Miriam’s working, and in Oliver’s case, Patchstack, because that’s where he’s working.
\n\n\n\nBefore we get into the nuts and the bolts of it though, can we start with Miriam? Can you just give us your little potted bio, like less than a minute, something like that?
\n\n\n\n[00:05:06] Miriam Schwab: So, hi, I’m Miriam Schwab. I’m head of WordPress relations at Elementor. I act as a type of liaison between Elementor and the broader WordPress community. I joined Elementor about two years ago when they acquired the startup that I co-founded called Strattic, which was static hosting for WordPress. And that’s where my biggest activity around security started to happen. I basically created Strattic to solve security issues around WordPress. That was my biggest motivating factor for founding it. And then after joining Elementor I became quite involved in our security around our plugin specifically, and the processes behind it, and how we communicate with the community at large. And so that’s kind of how this all happened.
\n\n\n\nOkay, great. Thank you, Miriam. And if you want to hear more from Miriam, I did a podcast episode with her from WordCamp Asia earlier this year. So you can check that out as well. I’ll put a link in the show notes. And, Oliver?
\n\n\n\n[00:05:57] Oliver Sild: Yeah. I’m Oliver, I’m the CEO and co-founder of Patchstack. Actually, this month we turned seven years old, so already quite a long time. What we do is, we have just one very clear mission, it’s providing the fastest mitigation to security vulnerabilities in WordPress, and in open source. So we work with plugin developers, we do pen testing for them, manage their security processes. We also provide protection for developers and agencies for websites, to protect them from the vulnerabilities. And we work with probably most of the biggest hosting companies, in terms of helping them identify vulnerabilities in their customer’s websites, and also protect them from that.
\n\n\n\nYeah, I mean, from my own background, I used to also run an agency, which I think literally everyone has done at one point of the time. I had like a very strong security focus early on, so I did like malware research, and then met my co-founder who did vulnerability research. Fun fact, we met in Reddit. That’s how we actually met. But yeah, also do a lot of community stuff, so organising capture the flag events in Estonia.
\n\n\n\nRight now, in WordCamp US, we also host a WordPress CTF, so everyone can go and join that. I don’t know when it’s going live, probably it’s over then. There’s a lot going on, and being very active in NGOs. I have co-founded a co-working space in Estonia, which is now a startup center and stuff. So a lot of community, open source and security stuff.
\n\n\n\n[00:07:14] Nathan Wrigley: Thank you, Oliver, that’s great.
\n\n\n\nSo over the last few years, WordPress has been sort of replete with acquisitions, and then it felt like that dropped off the news and partnerships came along. And that became a big thing, and obviously Elementor, Patchstack partnering up. It seems like a curious thing to be partnering on. One is a page builder, that’s pretty clear, one is security. How did this come about, and what possible benefit is there with a security company partnering with a page builder company?
\n\n\n\n[00:07:39] Miriam Schwab: So I’ll just start by explaining a bit about my approach to my position at Elementor, which is that, I want to find the ways that we can work together with other companies in the space, even ones that seemingly compete with us. Because there’s generally a place for us to collaborate, we have shared and common users. When we work together, things go better for everyone. I just really feel like there’s a power in two organisations, or companies coming together to achieve goals together. So I do actually quite a lot of that in general.
\n\n\n\nWith Patchstack it’s actually a really straightforward win-win here, I think, and definitely a win for Elementor. So Elementor, the plugin, the core and the free have an active install base of over 17 million websites, right? Which is a mind-boggling number. And that means that everything that Elementor does, we have to do quite carefully, right? Because it can impact the users very positively, and then something goes wrong that’s quite a negative experience.
\n\n\n\nAnd that includes security. We need to make sure that the plugin is as secure as possible for this very broad user base. And we have a lot of very robust internal processes around ensuring that the code is secure before it’s deployed and released. But anyone who works in software will know that, no matter what you do, you can do everything and be superhuman, things still might end up having a vulnerability that needs to be dealt with after deployment. It’s just the nature of the game.
\n\n\n\nSo were working with a bug bounty program called Bugcrowd to bring another very significant layer of security to our plugin post-deployment. I was fortunate to meet Oliver, I think it’s like almost two years ago, at least a year and a half ago or something. I had been looking at what Patchstack was doing, I was very impressed. Their specific focus on WordPress plugins, and open source, and also the clear passion that they have for open source, and making open source ecosystems more secure. That really, I think resonated with me and with Elementor.
\n\n\n\nAnd so we started to explore whether Patchstack could be a good solution for us to add another layer of security to our plugin, with that angle of expertise in WordPress. And so, you know, we start to explore that and work together, and it’s been successful from day one. And brings a lot of value, not just to Elementor, by bringing their like additional expertise to the table. But also obviously to our end users who can be confident that there’s a very thorough, and professional, and responsible process behind bug disclosure, and how we handle it, and release patches very, very quickly. Our turnaround time is quite fast.
\n\n\n\n[00:09:58] Nathan Wrigley: So can I just unpack that for the audience who in many cases won’t be particularly technical. So, does the workflow go a bit like this? Elementor creates a new feature, creates an update, has something that they need to push out to the plugin, and that is then created on your side. But then somehow it gets pushed over to Patchstack, and then Patchstack inspect it, check it, make sure that it passes all the tests that maybe they’re using, and then passes it back to you and says, go, no go. Is it basically something like that?
\n\n\n\n[00:10:25] Miriam Schwab: It’s something like that. I’ll explain a bit, and then I’ll let Oliver like expand on that. Basically, Patchstack receives a report from one of their security researchers that there’s an issue with Elementor. Patchstack gets more than one report, okay, in general, but the additional value that they bring to us is that they review the reports to make sure that what we’re seeing, and then dealing with, are quality reports.
\n\n\n\nThere’s a lot of researchers that just, they’re just looking to report stuff. So they’ll repeatedly report like ridiculous things that aren’t really a problem for anyone, just wasting everyone’s time. So we get high quality reports from Patchstack. We replicate it, you know, we determine the plan of action, and the team creates a patch for it, test it on our end as thoroughly as we can.
\n\n\n\nPretty early on within our work with Patchstack, we added a stage, I asked if they could do it, I think it was something like that, and they’re like, yeah, of course. And it’s possible they already did it, but we hadn’t experienced that before, that we then send it to them for review to make sure that it fully resolves the issue. That’s very value add because it’s additional pairs of eyes on it. And once they’ve confirmed, then that actually goes out to release to our users, and all that. But I’ll let Oliver just explain more about that.
\n\n\n\n[00:11:26] Nathan Wrigley: Yeah. So just to confirm, that is one of the things that’s happening. Once you’ve packaged it up, it gets handed over to Patchstack. Patchstack inspect it, like I said, go, no go, something along those lines. Okay, over to Oliver for the technical details.
\n\n\n\n[00:11:37] Oliver Sild: So it’s important to understand that our logic is that, the only way how we can provide the fastest mitigation for security vulnerabilities in the WordPress ecosystem is when we cover the entire life cycle of a security vulnerability.
\n\n\n\nThat starts from the point of someone finding it, reporting it to a vendor, patching it, to users getting notified about it, and users getting mitigated, and to the point where they eventually, you know, fix it, right?
\n\n\n\nWhich includes three different key stakeholders, right? So it’s plugin developers, website builders, or like website owners who build websites, and hosting companies who also have like a huge responsibility because they are like hosting that code and everything, right?
\n\n\n\nSo the reason why probably we are one of those only ones that are going to validate the patches is because we need to do it anyways. That’s the very simple answer.
\n\n\n\nBecause ultimately we have responsibility in front of our customers who are using Patchstack to protect their websites. And if we don’t validate the patches that we see, like plugins releasing fixes, then how do we actually know that it’s patched? Because there’s so many cases where vulnerabilities are getting patched by the vendors, but then you look into it and they patch the wrong thing, or they just kind of like messed something up. So for the hackers, it’s very easy to bypass it, and things like that.
\n\n\n\nSo before we tell our customers that, hey, now you don’t have a security vulnerability anymore, we must make sure that it’s the actual case, right? So that’s really where this comes from because yeah, as I said, we cover the entire life cycle. So our customers, developers and agencies who use Patchstack to get their websites, you know, we call it virtual patching, which is like auto mitigation of vulnerabilities in real time.
\n\n\n\nSo to get everything mitigated as soon as possible, and then plugins to fix all the vulnerabilities as soon as possible. And then hosting companies to be able to send out notifications. Everything, we need to basically combine all this into a single process. So internally we could say that we are actually doing one thing, but it just kind of like spans out in three different locations.
\n\n\n\n[00:13:35] Nathan Wrigley: Where do you get your data from? Where do the data points about what’s going on in the world, for Patchstack, how does that come into you? Have you got like a, I don’t know, like a red team or something like that, or is it just your paid employees that are constantly going out looking? I genuinely have no idea how that information comes in into your inbox if you like, for want of a better word.
\n\n\n\n[00:13:53] Oliver Sild: So there’s three sources really. We have internal security researchers that do a lot of pen testing, they do a lot of research in general.
\n\n\n\nThen what we started doing, four years ago already, was we created the first kind of like open bug bounty program for WordPress. So if you, Nathan find the security vulnerability in someone else’s like Miriam’s plugin, then we pay you if you report it.
\n\n\n\nSo we started like incentivising security researchers to start looking for vulnerabilities in the WordPress eco system, because there was so many of them to find. And if you don’t give incentives for hackers to report them properly, then they are going to do something else with it. So that was something that we started doing, yeah, about four years ago already.
\n\n\n\nAnd we have like 1,600 people in the community, of like ethical hackers all around the world. We have like a leaderboard system, and they get rewarded. Just two weeks ago, one of the researchers got like 16.4k for a single vulnerability, which we paid out from our own money.
\n\n\n\nBut we do all of that because we want to protect our customers, right? And also it helps to protect the plugins as well, because it gets the plugins, you know, fix the vulnerabilities before, potentially hackers have had time to kind of like do that.
\n\n\n\nBut there’s this third one then, which is the MVDP. So we act as a security point of contact for a lot of plugins. So Elementor is one example, but we have 400 other plugins that actually pass every single vulnerability to Patchstack. So we help them validate those issues. We help them to verify that the patches are complete and everything like that. And that’s also how we basically become like the best security solution for their users, because we are able to protect them very, very fast.
\n\n\n\n[00:15:28] Nathan Wrigley: So we could be having the same conversation with Miriam with 400 other companies. There are 400 companies with the same kind of relationship. I’m guessing not many of them with 17 million installs. But actually that’s a serious point though. The fact that you’ve got 17 million installs kind of makes this more important than almost any other plugin out there in all honesty. Because if something goes wrong, it’s going to completely break. You know, it’s not like a minor function of your website, it probably is the entire website, the front facing website.
\n\n\n\nAnd so I guess you have a pretty big target on your back. You know, if somebody can leverage, or figure out a vulnerability in Elementor, that’s going to be worth more than, I don’t know, plugin X over there that has 24 installs on the repo, or something like that. So the security posture from your side has to be really, really serious.
\n\n\n\nAnd so, is it like a bi-directional relationship? Like, if you discover something, and I’m pointing at Oliver. If Patchstack discover something, you can then send it directly to Elementor, and forewarn them about that problem. They can fix their code. But it works in the other direction as well. You don’t know you’ve got a vulnerability, so you pass it to Patchstack, they figured that you have, and it comes back. So it’s this nice circle of virtue where you’re both helping each other out.
\n\n\n\n[00:16:37] Miriam Schwab: There’s a few different directions that this security relationship works with Patchstack. So one is that they have their community of security researchers, that’s what they’re called, who are basically constantly trying to break into everyone’s stuff. That’s more or less what they’re doing.
\n\n\n\nNow that could be like, oh no, why are they doing that? That sounds so terrible. But like, they’re not the only ones doing it, right? They’re doing it in order to then report it, so that it can be fixed.
\n\n\n\nThere’s other people who are just like them out there who are doing the same thing for malicious purposes, and don’t necessarily plan on reporting it, but plan on exploiting it.
\n\n\n\nSo we want these security researchers doing what they’re doing, and then reporting it to Patchstack, and Patchstack reports it to us. And then we start this cycle of mitigating it, and releasing a patch that fully resolves it.
\n\n\n\nBecause we’re so big, and we have such a huge code base, so definitely we’re like a target of interest because let’s say the ROI for a hacker, or a vulnerability is high for Elementor, so that’s why we take it seriously in terms of this full circle type of approach to the security before deployments and after deployment, which I described.
\n\n\n\nBut another way that we work with Patchstack is when we get reports that aren’t from Patchstack, because that also happens. But we find a lot of value in making sure that Patchstack is in the loop even on those reports. Theoretically, we could get a report from someone else, and I’ll explain how briefly, but we could get a report from someone else, and then we could just do our own thing. But we want to be as responsible and as transparent as possible around vulnerabilities that exist in Elementor.
\n\n\n\nFrom our perspective, security’s not something to be embarrassed about because we know we’re doing everything we can. It’s something to just accept that it’s going to be a thing, but the question is not if, but how? So our how, is to be very, very responsible about it and transparent.
\n\n\n\nSo when we get these reports, we loop Patchstack in, and we tell them that we’ve got this report so that they can be part of the process, and make sure that the loop is closed in the most secure way possible, including that they look at these reports as well, and our patches as well, to make sure that we’re fully resolving it.
\n\n\n\n[00:18:33] Nathan Wrigley: So you’re sort of patting each other’s backs in a way. You know, something that you get gets passed to them, that’s kind of nice free intel for them. It came to you first, but it ends up at Patchstack, so they can then act on that, and send it out to your other 400 customers if it might affect them. That’s nice.
\n\n\n\n[00:18:47] Miriam Schwab: I think it helps Patchstack. I can’t speak for Patchstack, but I think it helps for Patchstack to have the full, the full vision of what’s going on with every, let’s say, all plugins that are in their MVD program, which means, by the way, MVDP is managed vulnerability disclosure program. Yes, that’s important because not everyone will know what that is.
\n\n\n\nTo have the full visibility into what’s going on, so when we share that information with Patchstack, it helps Patchstack have more information for everyone, and also for us, Elementor going forward. So there’s like more context for everyone. And then that comes back to this approach of transparency as well.
\n\n\n\nAgain, Oliver can speak to this, probably working with a plugin of our scale, while there’s a lot more at stake here, it brings a lot of learnings into Patchstack because there’s not that many plugins that are at the scale. I think there’s maybe five that are over 10 million active installs in the plugin repository. They recently updated the numbers so that it will show that, at least there’s that. And it’s a whole other ball game when you’re at that scale of size, reach, code base, age, right? Elementor is eight years old, so all that, but Oliver can talk to that.
\n\n\n\n[00:19:42] Oliver Sild: So one of the things is that, if we look at the data from the past years. In 2023, if we look at all the security vulnerabilities being known, or made public in the WordPress ecosystem, over 76% originated from Patchstack. The number and the volume is incredibly high. And even if we talk about historic data, like all the WordPress historically, Patchstack has processed the highest amount of security vulnerabilities that are biggest amount of them, or even majority I would say.
\n\n\n\nSo that also gives us like some level of experience in terms of how much we’ve had to already work with security researchers. We understand how they like to report things, what are the issues with the reportings, and things like that, but also like how to build processes internally, so you would be able to even like, cope with that kind of a load, right?
\n\n\n\nSo I think there’s this kind of experience we’ve had there, which has allowed us to actually build a solution that works for Elementor, and they have a very high standards. So I think without the hard work we’ve done over the past years, it could have not been possible.
\n\n\n\nBy the way, we provide all of this to Elementor for free, Elementor doesn’t pay anything for providing MVDP service. And we provide this for free for everyone in the WordPress ecosystem. And we built this entire MVDP program, and the platform, together with European Union because European Union is going to pass a law in Q4 that is making this actually mandatory for all commercial open source software.
\n\n\n\n[00:21:03] Nathan Wrigley: Why do you do it for free? You could see my face, my eyes open thinking, hang on, wait, why?
\n\n\n\n[00:21:08] Oliver Sild: So, one of the reasons is because European Union funded building it for free, for us as well, right? So we got 2.7 million euros to build it, and to build all the processes and everything around it. European Union understood that WordPress ecosystem is just so massive in scale, and they chose us to do it because of our track record.
\n\n\n\nAnd now we are very well connected with that, and as they are, you know, preparing to release this new regulation, which by the way, like even US companies need to comply with. So everyone who has European users, every software that has commercial element to it, like accepting donations, having paid support, having premium version, or even if they’re just not fully free, but like the company that owns the plugin has any commercial activity, they need to comply.
\n\n\n\nAnd the things that they need to comply is have a VDP program, which is literally what we built. You need to start releasing patches separately from functional releases. There is going to be a lot of those kind of changes, like you have to notify users about vulnerabilities. You have to notify users later on, also if the vulnerability is getting mass exploited. There’s these kind of rules, and our platform basically pre complies you for that entire regulation.
\n\n\n\nThe reason why we do it also for free is exactly what Miriam told, it’s like we also get visibility. Because as I mentioned, we cover the entire life cycle of vulnerabilities, so our goal is to provide the fastest mitigation to vulnerabilities. And the way to do that is to know about vulnerabilities. So for our end users and to all Elementor users, for example, who are using Patchstack, they know that the fastest way to get protected is from Patchstack, because we work together with Elementor. We work together with other plugins, and that’s how they know that they are getting protected by Patchstack as well.
\n\n\n\n[00:22:42] Miriam Schwab: So both of us have strange business models, Elementor and Patchstack, because if you think about it, Elementor’s 17 million active installs, the vast majority of them are using our free product, and that’s our business model. And Patchstack’s business model is based also on providing a lot of value for free that then ends up being an actual business model. I wonder if these types of business models, that bring a lot of people value for free, could exist outside of open source, and could exist outside of WordPress.
\n\n\n\n[00:23:08] Nathan Wrigley: Do you both advertise each other’s presence then? For example, Miriam, do you on your website somewhere say, we have this relationship with Patchstack, I don’t know, protected by Patchstack or something? And again, in the opposite direction, do you say, yeah, one of our customers, Elementor? I don’t know if there’s anything in that.
\n\n\n\n[00:23:24] Miriam Schwab: We have a page on our site that we make sure is linked to from the footer of every page on our site. It’s called our Trust Center. It’s very important for anyone who has some kind of security process, which everyone should, to have an easy way for people to find how to report issues to the company, because otherwise people might find something, not know how to report it. It ends up in some random person’s inbox, nobody pays attention, and that’s not good for anyone.
\n\n\n\nSo we have this trust page that describes all of our security process and everything, and that links to our Bug Bounty page. It’s a page fully dedicated to just explaining our Bug Bounty program. And it clearly states there that all plugin related issues should be, and need to be reported to Patchstack. And we highly request that people respect that process because it allows Patchstack to make sure that these vulnerabilities are patched quickly, and it allows Elementor to make sure that it’s patched quickly. Which is better for everyone because we have the processes in place based around our partnership with Patchstack.
\n\n\n\nSo that’s clearly visible on our site. And we talk about in different forums, for example, the talk given yesterday, and of course this interview right now. So it’s something that’s quite publicly known.
\n\n\n\n[00:24:27] Oliver Sild: So what we also have is, on Patchstack, we have a vulnerability database, which is completely free to use in public, where everyone can see what are the latest vulnerabilities. We show people like what the priorities there are and so forth. But it also has a directory of VDPs. So we actually have a directory where you see all the plugins that have VDP programs active.
\n\n\n\nSo that also gives you, as a developer or user, an understanding of like, okay, I want to use a plugin for my website for a specific function, let’s say a page builder. I want to use something that has proper security practices in place. So that’s where we have like this directory where you can go and look into which ones actually have a VDP program.
\n\n\n\nWe also have like a highlighting there for those plugins that are, you know, also contributing more into the community aspect as well. Actually, Elementor is featured there currently.
\n\n\n\nSo, I think having mature security processes is a big competitive advantage for plugins as well, because developers are going to choose stuff that they feel, security is, in general, very hot topic right now. I just talked yesterday with some quite big hosts in the space, and they said that it used to be that everyone was asking about performance, and now everyone is asking about security.
\n\n\n\nAnd that also means that this kind of interest to security has, you know, reached the developers and everywhere. And when they make those decisions of, what plugs should I use, they are going to eventually choose the ones that they can trust most.
\n\n\n\n[00:25:47] Nathan Wrigley: Does it muddy the water a bit? In other words, let’s say that I’m a customer, and I’m out there looking for a page builder. I come to Elementor, I’ve got my site up and running and I’m thinking, okay, I want some sort of security, I’ve heard that security’s a thing on my website. Does it muddy the water? Commercial rivals of Patchstack, for example, is the implication, okay, you must only use Patchstack. Patchstack is our preferred customer, nothing else will work. Do you ever get any intel like that?
\n\n\n\nAnd the other way around? You know, if people have got some sort of security posture, but they’re looking for a page builder, do you know what I mean? There could be some sort of misunderstanding, like we only work with Elementor, or we only work with Patchstack. Do you ever get any of that kind of intel where it’s, I don’t know, muddied the water, confused things?
\n\n\n\n[00:26:25] Miriam Schwab: The way that is generally accepted that companies and products work when it comes to their security processes, and particularly with regards to their bug bounty programs, is that they will define their bug bounty programs, and it is highly requested that people respect that.
\n\n\n\nThat isn’t always the case, and so we have had to put some processes in place where we are capable of accepting reports from other parties or individuals, who for one reason or another prefer to send it directly to us.
\n\n\n\nSo it doesn’t mean that you have to only work with Patchstack. We want reports to go wherever they can go that will make sure that we’ll get them so that we can take care of them. Legitimate reports, right? High quality reports.
\n\n\n\nBut then at that point we loop Patchstack in anyways. And that’s one of the great things about our relationship with Patchstack, they’re not like, oh, they didn’t send a to us so, you know, good luck to you, take care of it yourself. It comes back to this interest in having full visibility. And we want Patchstack’s input in making sure that everything is done properly. Both in terms of us patching it fully and resolving the issue.
\n\n\n\nBut some other things that come up is that sometimes these other reporters send us reports that are not clear. Patchstack sends us reports that are quite clear, replicable, which means that we can recreate them on our end, which helps us figure out how to fix them, right? If you can’t see the problem, you can’t fix it, and well documented. Sometimes we get reports from other sources that are quite unclear. So Patchstack can even help us ask the right questions, or sometimes try to figure out what’s going on there, either we’ll do it ourselves. Basically the process is either directly to Patchstack, then to us. Or to us, and then to Patchstack, and then to us. And then that loop starts from that direction.
\n\n\n\nSo we’re open to working with anyone. We want the reports to come to us. If for some reason people really refuse to work with Patchstack as our bug bouncy program, that’s okay. Patchstack is still part of our bug bouncy process, but we are capable of handling that as well.
\n\n\n\n[00:28:16] Oliver Sild: We actually work with other security companies. I don’t know if you’re not aware, but like Patchstack is powering vulnerability notification system and V Patching for Solid Security, which was previously known as iThemes Security. We do that for WPMU Defender. We do that for SecuPress. We do that for Shield Security. We do that for WP Guardian, which is a co-product with Patchstack and WebPros.
\n\n\n\nSo I think what is very common between Patchstack and Elementor is that we actually work with everyone, together. Regardless whether they are like a competitor or not. We work with everyone who is willing to work together with us as well. Everything that we do in Patchstack is about collaboration.
\n\n\n\nAs I’m saying, like we work with hosting companies, we work with plugins, we work with developers and agencies. I think that is literally the only way how to succeed in making the ecosystem secure.
\n\n\n\nIn general, I think that allows us to also just make it actually as secure as it can go. And I think, from going forward from here, with all the regulations and everything also coming in, I think it’s the only way really.
\n\n\n\n[00:29:12] Nathan Wrigley: Let’s take the scenario, Miriam, that you discover, or it is discovered by you, so not by Patchstack, out there in the wild somewhere there’s a serious problem in the Elementor’s code base. And it’s Friday night, and it gets reported to you. I’m just interested, what is the behind the scenes process that you have got set up between you to make things happen in a timely fashion?
\n\n\n\nSo I’m taking the example of, you know, Friday night being the beginning of the weekend, everybody’s going off for a couple of days, this is a bad time to discover it. I’d be interesting to know, how does that get handed off, and how does it then come back? What are the backend systems that you’ve put in place that we’ll never know about, will never be discoverable to us, but I’m presuming they now exist since you’ve partnered up with each other?
\n\n\n\n[00:29:51] Miriam Schwab: So there’s two types of reports. I mean, there’s a lot of types of reports, but I’m just going to divide them into two categories.
\n\n\n\nOne report, type of report is this issue is being actively exploited. Meaning bad people know about it and are already trying to hack sites with it. Or this issue is some level of severity and needs to be taken care of, but nobody knows about it yet.
\n\n\n\nOkay, so in the case of the first one, it’s all hands on deck, do or die, let’s fix this. I can’t think that this has happened since we started working with Patchstack, so I’m like theorising here. But, probably we’ll reach out to them in one of our direct channels. So like we have a shared Slack channel with Patchstack, they’re very responsive there.
\n\n\n\nSo it would be like, help, all the sirens. We’re like now dealing with this. If it’s actively exploited, we know we’ll be like, okay, we’re probably already working on it, right?
\n\n\n\nBut, FYI, heads up, we’re going to like be releasing this as soon as possible, please be available so we can send it to you just for review before we do. So that’s one type.
\n\n\n\nThe second type is you can breathe more. There’s different levels of severity. Meaning if between now and some point it’s discovered, if it’s a high level of severity, then oh my goodness. If it’s low level security, then it’s like it’s not going to affect all sites, only going to affect some certain types of users, like that kind of stuff. So it’s like less urgent.
\n\n\n\nBut that probably means that we can all just continue our weekend. I’m theorising again, so nobody should take me at it and be like, what? You’re going to sleep through the weekend with this? No, that’s not what I mean. Each vulnerability is looked at for vulnerability, and if it’s super urgent or highly urgent, then it gets the attention immediately, Patchstack will be pulled in. But if not, then there’s like a pretty clear process around it in terms of internal timelines, and the timelines that Patchstack gives us.
\n\n\n\nSo the reason that Patchstack gives a timeline is because, if they report something, a plugin, developer, or whatever has a certain amount of time within which they need to patch it. It’s better for everyone that that exists. There’s a lot of other things that you want to make a priority, so you could just kind of drag it on. But It will eventually be found.
\n\n\n\nIf something is not patched within the timeframe, then Patchstack has a whole process, which Oliver can explain. But it does get disclosed, let’s say, to the plugin review team, and that’s a serious matter for the plugin then to have to deal with it at that point.
\n\n\n\nAnd then we create our own internal timeline in terms of how fast we have to turn around a patch, also based on the level of severity. So if it’s highest level of severity, it’s like really fast, medium, less fast. But our turnaround time, our customers keep raving about it on like bugs, but also security issues, we’re very fast. We take it seriously in all situations. Whether it happens Friday night at midnight or, you know, Sunday morning, because our work week starts a Sunday, that’s a different story.
\n\n\n\n[00:32:14] Nathan Wrigley: Oliver, just before you begin, I have a friend who’s a medic and he is in trauma surgery. His phone is the conduit to, like the alarms are sounding. Do you have something equivalent to like that? Do you operate a sort of 24/7? I think you said you’ve got a distributed team. So you’re able to react right now, no matter what time of the day or night, 365 days of the year. Is that the kind of thing that you do? I was saying about the weekend, do you all take the weekend off? How does it work?
\n\n\n\n[00:32:38] Oliver Sild: We do cover all time zones. So we have people in Asia, we have people in Europe, we have people in the US. This is important for us to do threat intelligence and, you know, security research in general.
\n\n\n\nOne thing, also in terms of like a zero days, or like in vulnerabilities in general, one thing that we help the, I would say our developer to sleep over the weekend, is that we are actively monitoring whether this vulnerability is getting exploited or not.
\n\n\n\nSo immediately when we see any kind of like signals that there is an actual exploitation attempt against this vulnerability, they would be notified immediately.
\n\n\n\nWe also take care of this kind of like a background threat intelligence monitoring part, where we know about the vulnerability, so we have signals whether this vulnerability type is getting exploited or not.
\n\n\n\n[00:33:17] Nathan Wrigley: So you could tell whether a zero day is realistically a zero day, okay. In theory it’s possible, but nobody’s doing anything about it, so maybe we can step down a little bit.
\n\n\n\n[00:33:27] Oliver Sild: So there’s two things we do. One thing is that we have created what we call Patchstack Priority. And this is like a special scoring made for prioritising WordPress vulnerabilities based on the likelihood of them becoming exploited.
\n\n\n\nSo we have high priority vulnerabilities, which is based on historic data, vulnerability types, and there’s like a lot of data around that shows that this vulnerability, basically we predict that this vulnerability is going to become exploited.
\n\n\n\nAnd then we have medium priority, which is vulnerabilities that are potentially going to be exploited in targeted attacks. Doesn’t mean that it’s mass exploited, but it’s like, you know, if you have like a e-commerce store, for example, that holds credit card details, there’s a higher potential that this is going to be used in a targeted attack.
\n\n\n\nAnd then there’s low priority, which is like, this is not going to get exploited at all.
\n\n\n\nBased on that, we also kind of modify our timelines and everything. And also we generate virtual patches based on that, which is the auto mitigation feature that we have for all the high and medium vulnerabilities. We immediately create virtual patches, which are like essentially vulnerability specific protection rules that get automatically deploy to our customer sites without changing any code or anything. It’s very, like a precise way of making sure that this vulnerable function can’t be used in any other way than it was originally intended.
\n\n\n\nSo because of that, we have full visibility into the kind of like a network, whether we see where a specific vulnerabilities are being exploited or not. And that allows us to also basically notify back to the plugin developers later saying like, hey, we now have proof that this vulnerability has been exploited, here’s all the attacker’s information, all that kind of stuff. So we have a lot of data around that as well.
\n\n\n\n[00:35:03] Nathan Wrigley: I think it’s amazing that WordPress as a CMS is big enough to have a page builder plugin and a security plugin at the scale that they can not only function independently, but also they can create a really meaningful partnership between the two of you. And I have really found this conversation fascinating. It’s really interesting peeling back the curtain and seeing how you’re doing things behind the scenes, if you like, so that you’re protecting all of your customers. Thank you so much, Oliver. Thank you so much, Miriam. Where can we find you online?
\n\n\n\n[00:35:34] Miriam Schwab: You can find me personally on Twitter at Miriam Schwab. I’m also on Make WordPress Slack, post status Slack, LinkedIn, whatever. And Elementor of course is on all the social networks. We’re active on Instagram, Twitter, our website, elementor.com.
\n\n\n\n[00:35:48] Oliver Sild: All the same places, but just Oliver Sild.
\n\n\n\n[00:35:51] Nathan Wrigley: Perfect, and Patchstack.
\n\n\n\n[00:35:53] Oliver Sild: Yes, patchstack.com.
\nOn the podcast today we have Miriam Schwab and Oliver Sild.
\n\n\n\nMiriam co-founded Strattic, a platform with an aim to revolutionise WordPress security and performance on the web. After Elementor acquired Strattic, Miriam continued leading the unit before becoming Head of WordPress Relations. Prior to that, Miriam founded and managed a prominent WordPress development agency in Israel. With over 15 years of experience, she’s a respected member of the WordPress community and a frequent speaker at WordPress events.
\n\n\n\nOliver Sild is the CEO and co-founder of Patchstack, a company dedicated to the mitigation of security vulnerabilities in WordPress and open-source environments. Patchstack is now a seven-year-old enterprise, and they specialise in penetration testing, security process management, and protective services for developers, agencies, and major hosting companies. Oliver’s background also includes experience running an agency, and his work at Patchstack focuses on collaborating with plugin developers and hosting providers to ensure robust security measures for their clientele.
\n\n\n\nMiriam and Oliver joined me at WordCamp US 2024 in Portland, where they did a presentation discussing the processes needed to enhance open source plugin security and the advantages of leveraging bug bounty partnerships. Their collaboration brings to light the importance of integrating security solutions within the WordPress ecosystem, especially for companies with a footprint as large as that of Elementor.
\n\n\n\nWe talk about the global operations of Oliver’s team at Patchstack, who work across all time zones, providing round-the-clock threat intelligence and vulnerability monitoring. We also explore the Patchstack system as a whole and how it categorises WordPress vulnerabilities based on their exploitation likelihood, and their implementation of virtual patches to protect against high and medium-priority vulnerabilities automatically without code changes.
\n\n\n\nWe also get into how Miriam’s team at Elementor collaborates with Patchstack to ensure rapid and professional handling of vulnerabilities, enhancing security for their 17 million installations. The partnership between Elementor and Patchstack is a great example of how different companies within the WordPress community are able to work together to provide better outcomes for their users.
\n\n\n\nIf you’re curious about the intersection of page builders and security in WordPress, or the value of collaborative partnerships in maintaining the ecosystem, this episode is for you.
\n\n\n\nMiriam Schwab on Balancing WordPress Success and Family Life – previous podcast
\n\n\n\n\n\n\n\nPatchstack’s bug bounty program
\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Oct 2024 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:100:\"Do The Woo Community: From Blogs to WooCommerce Shops, Privacy Policies with Donata Stroink-Skillrud\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86264\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://dothewoo.io/from-blogs-to-ecommerce-shops-privacy-policies-with-donata-stroink-skillrud/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:194:\"Emma and Adam chat with Donata on the essential nature of website policies for WooCommerce. Highlights include compliance, consequences of neglect, and the importance of clear privacy practices.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 23 Oct 2024 12:53:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:53:\"WordPress.org blog: WordPress 6.7 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2024/10/wordpress-6-7-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10796:\"The first release candidate (RC1) for WordPress 6.7 is ready for download and testing!
\n\n\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’s recommended that you evaluate RC1 on a test server and site.
\n\n\n\nReaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.7 is the best it can be.
\n\n\n\nYou can test WordPress 6.7 RC1 in four ways:
\n\n\n\nPlugin | Install and activate the WordPress Beta Tester plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream). |
---|---|
Direct Download | Download the RC1 version (zip) and install it on a WordPress website. |
Command Line | Use the following WP-CLI command:wp core update --version=6.7-RC1 |
WordPress Playground | Use the 6.7 RC1 WordPress Playground instance (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup. |
The current target for the WordPress 6.7 release is November 12, 2024. Get an overview of the 6.7 release cycle, and check the Make WordPress Core blog for 6.7-related posts in the coming weeks for further details.
\n\n\n\nGet a recap of WordPress 6.7’s highlighted features in the Beta 1 announcement. For more technical information related to issues addressed since Beta 3, you can browse the following links:
\n\n\n\nWant to look deeper into the details and technical notes for this release? These recent posts cover some of the latest updates:
\n\n\n\nWordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.
\n\n\n\nTesting for issues is critical to ensuring WordPress is performant and stable. It’s also a meaningful way for anyone to contribute. This detailed guide will walk you through testing features in WordPress 6.7. For those new to testing, follow this general testing guide for more details on getting set up.
\n\n\n\nIf you encounter an issue, please report it to the Alpha/Beta area of the support forums or directly to WordPress Trac if you are comfortable writing a reproducible bug report. You can also check your issue against a list of known bugs.
\n\n\n\nCurious about testing releases in general? Follow along with the testing initiatives in Make Core and join the #core-test channel on Making WordPress Slack.
\n\n\n\nFrom now until the final release of WordPress 6.7 (scheduled for November 12, 2024), the monetary reward for reporting new, unreleased security vulnerabilities is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the HackerOne page and in the security white paper.
\n\n\n\nFor plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.
\n\n\n\nThanks for continuing to test your themes and plugins with the WordPress 6.7 beta releases. With RC1, you’ll want to conclude your testing and update the “Tested up to” version in your plugin’s readme file to 6.7.
\n\n\n\nIf you find compatibility issues, please post detailed information to the support forum.
\n\n\n\nDo you speak a language other than English? ¿Español? Français? Русский? 日本? हिन्दी? বাংলা? You can help translate WordPress into more than 100 languages. This release milestone (RC1) also marks the hard string freeze point of the 6.7 release cycle.
\n\n\n\nI See An R.C.
You See A Chance For Testing
Six Seven For The Win!
Thank you to the following contributors for collaborating on this post: @atachibana, @jorbin.
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 22 Oct 2024 16:42: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:14:\"David Baumwald\";s: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:59:\"Do The Woo Community: Vote in This Year’s WooSesh Seshies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=86238\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://dothewoo.io/blog/vote-in-this-years-woosesh-seshies/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"Make sure and get your vote in for the Seshies, which will be announced on day 2 of WooSesh, end of day at the Do the Woo recap.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 22 Oct 2024 10:29:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:107:\"Do The Woo Community: Showcase Day WCUS and the Future of Open Source Contribution with Tammie and Jonathan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86209\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://dothewoo.io/showcase-day-wcus-and-the-future-of-open-source-contribution-with-tammie-and-jonathan/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:200:\"Jonathan and Tammie discuss their experiences at WordCamp US, focusing on Showcase Day\'s impact, the value of diverse contributions, and how companies can align their goals with community involvement.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 22 Oct 2024 09:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 13 Nov 2024 08:57:24 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Wed, 13 Nov 2024 08:45:29 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";i:1727736619;s:21:\"cache_expiration_time\";i:1731531444;s:23:\"__cache_expiration_time\";i:1731531444;}','off'),(145,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1731531444','off'),(146,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1731488244','off'),(147,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1731531445','off'),(148,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b',' ','off'),(149,'_site_transient_timeout_available_translations','1731499049','off'),(150,'_site_transient_available_translations','a:131:{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.9\";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.9/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:8:\"6.2-beta\";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:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/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.4.5\";s:7:\"updated\";s:19:\"2024-02-13 12:49:38\";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.4.5/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.25\";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.25/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-01 09:05:28\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.7/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2024-01-19 08:58: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/6.4.5/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.26\";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.26/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:3:\"6.7\";s:7:\"updated\";s:19:\"2024-10-28 18:43:11\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/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:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-11 11:12:13\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}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.2.6\";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.2.6/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-10 13:01:02\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.7/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-07-23 09:49:04\";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.6.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-02 10:05:37\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.7/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-09-27 09:32:19\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-12 18:51:03\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.7/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-12 18:53:19\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-05 18:08:14\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.7/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-07 15:43:21\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-05 18:11:40\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.6\";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.2.6/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-12 17:21:48\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.7/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-08 19:43:34\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-10-09 13:40:50\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-09 02:33:22\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-04 22:51:08\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-12 00:03:39\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-10 16:44:57\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.7/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-12 19:39:57\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-02 02:35:36\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-01 14:24:19\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-12 21:41:42\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2023-10-16 16:00:04\";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.4.5/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";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.2.6/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:6:\"5.8.10\";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:65:\"https://downloads.wordpress.org/translation/core/5.8.10/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_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.16\";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.16/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.21\";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.21/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_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-06 02:58:31\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-10-16 21:04:12\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/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_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-01 13:40: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:62:\"https://downloads.wordpress.org/translation/core/6.7/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-06-06 09:50:37\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.5/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-10-10 00:15:35\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.7/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-04 10:30:57\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-06-20 17:15:28\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-07 17:33:31\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.7/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-09-30 11:36:50\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-12 23:29:39\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-02-01 23:56:53\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.5/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.25\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";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.25/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.2.6\";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.2.6/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:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-01 14:43:10\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-12 11:31:44\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.7/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:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.33\";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.33/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.2.6\";s:7:\"updated\";s:19:\"2024-05-04 18:39:24\";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.2.6/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:5:\"6.4.5\";s:7:\"updated\";s:19:\"2024-02-25 08:05:38\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.5/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-11 08:43:38\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.7/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";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.2.6/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-10-26 11:19:16\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-11 11:45:09\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.26\";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.26/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-04 19:31:34\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-01 13:18:01\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.7/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.26\";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.26/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-08 06:38:31\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";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.2.6/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:3:\"6.7\";s:7:\"updated\";s:19:\"2024-07-18 02:49:24\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.7/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.21\";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.21/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:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-12 23:54:38\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.7/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-12 22:53:43\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-13 01:38:58\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/6.7/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"بهردهوام به\";}}s:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-03 07:07:47\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/6.7/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}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.5.5\";s:7:\"updated\";s:19:\"2024-06-13 13:11:03\";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.5.5/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-05 21:35:49\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.7/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.9\";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.9/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:\"6.6.2\";s:7:\"updated\";s:19:\"2024-10-05 15:57:37\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.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.5.5\";s:7:\"updated\";s:19:\"2024-06-20 17:22:06\";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.5.5/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:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-01 08:11:24\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.7/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.15\";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.15/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.38\";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.38/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-12 22:03:40\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-08-30 11:32:23\";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.6.2/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-11 10:06:55\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-01 18:40:10\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-12 22:58:23\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.7/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s: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.25\";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.25/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-08 08:15:08\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.34\";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.34/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-11 20:56:40\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-08 08:50:31\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-04 09:20:12\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/6.7/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2023-08-21 12:15:00\";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.4.5/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:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-10 11:00:42\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-01 12:40:53\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.16\";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.16/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-07 04:22:30\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-09-21 09:44:08\";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.6.2/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:3:\"6.7\";s:7:\"updated\";s:19:\"2024-08-30 07:14:35\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-03 08:29:01\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.7/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-09-20 22:15:56\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-01 08:40:03\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-06 16:56:18\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.7/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.38\";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.38/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:6:\"5.8.10\";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:62:\"https://downloads.wordpress.org/translation/core/5.8.10/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.25\";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.25/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-08-14 17:49:29\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-05 04:17:56\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/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.4.5\";s:7:\"updated\";s:19:\"2024-03-06 18:52:07\";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.4.5/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.16\";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.16/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:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-13 03:54:56\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.7/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-09 03:13:21\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:3:\"6.7\";s:7:\"updated\";s:19:\"2024-11-09 02:10:31\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.6\";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.2.6/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:\"繼續\";}}}','off'),(151,'WPLANG','','auto'),(152,'new_admin_email','example@cloudclusters.io','auto'),(155,'_site_transient_timeout_wp_remote_block_patterns_b212598f2d50e2b0472a186208f3411d','1731492102','off'); INSERT INTO `wp_options` VALUES (156,'_site_transient_wp_remote_block_patterns_b212598f2d50e2b0472a186208f3411d','a:44:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:514958;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Intro area with heading and image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1685:\"\nExploring life’s complex tapestry, options reveal routes to the exceptional, requiring innovation, inquisitiveness, and bravery for a deeply satisfying voyage.
\n\n\n\n \nExploring life\'s complex tapestry, options reveal routes to the exceptional, requiring innovation, inquisitiveness, and bravery for a deeply satisfying voyage.
\n\n\n\n \nbud!
\nbud!
\nDJANGO
\n\n\n\nDJANGO
\n\n\n\nDJANGO
\n\n\n\nDJANGO
\nDJANGO
\n\n\n\nDJANGO
\n\n\n\nDJANGO
\n\n\n\nDJANGO
\nLet ’em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.
\n\n\n\n \nLet
‘EM
Roll
Big
John
Patton
Let \'em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.
\n\n\n\n \nLet
\'EM
Roll
Big
John
Patton
MONK.
\nA new collection
\n\n\n\nLearn More →
\nMONK.
\nA new collection
\n\n\n\nLearn More →
\nExplore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home.
\n\n\n\n\n\n\n\n \nExplore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home.
\n\n\n\n\n\n\n\n \nEnjoy
\n\n\n\n20% Off
\n\n\n\n\n\n\n\n \nEnjoy
\n\n\n\n20% Off
\n\n\n\n\n\n\n\n \nEmbark
\n\n\n\nON A HIKING
\n\n\n\nadventure and explore the beauty of nature’s best…
\n\n\n\nIn the
\n\n\n\nWOODS.
\nEmbark
\n\n\n\nON A HIKING
\n\n\n\nadventure and explore the beauty of nature\'s best…
\n\n\n\nIn the
\n\n\n\nWOODS.
\n✴︎ Walk
\n\n\n\nIn the
\n\n\n\nPark
\n\n\n\n—01.03
\n✴︎ Walk
\n\n\n\nIn the
\n\n\n\nPark
\n\n\n\n—01.03
\nExplore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home.
\n\n\n\n\n\n\n\n \nExplore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home.
\n\n\n\n\n\n\n\n \n✴︎
\n\n\nBeautifully designed patterns ready to go with a simple copy/paste
Beautifully designed patterns ready to go with a simple copy/paste
Proudly powered by WordPress
\n\n\n\n \nProudly powered by WordPress
\n\n\n\n \nProudly powered by WordPress
\nProudly powered by WordPress
\nProudly powered by WordPress
\nProudly powered by WordPress
\nLocation
\n\n\n\n2020 Lomita Blvd,
Torrance, CA 90101
United States
Pages
\n\n\n\n\n\n\nProudly powered by WordPress
\nLocation
\n\n\n\n2020 Lomita Blvd,
Torrance, CA 90101
United States
Pages
\n\n\n\n\n\n\nProudly powered by WordPress
\nProudly powered by WordPress
\n\n\n\n \nProudly powered by WordPress
\n\n\n\n \nProudly powered by WordPress
\n2020 Lomita Blvd,
Torrance, CA 90101
United States
Proudly powered by WordPress
\n\n\n\n\nPositive growth.
\nNature, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf. Art is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture.
\n\n\n\nBut his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.
\nUndoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man’s condition is a solution in hieroglyphic to those inquiries he would put.
\nPositive growth.
\nNature, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf. Art is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture.
\n\n\n\nBut his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.
\nUndoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.
\nOceanic Inspiration
\nWinding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.
\nNo darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.
\nOceanic Inspiration
\nWinding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.
\nNo darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.
\nTrees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.
\n\n\n\n \nTrees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.
\n\n\n\n \nEleanor Harris (American, 1901-1942)
\nEleanor Harris (American, 1901-1942)
\nAn exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in Floor 2.
\n\n\n\n \nAn exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in Floor 2.
\n\n\n\n \nEven a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.
\nEven a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.
\nThey followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.
\nThe ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband’s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.
\nThey followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.
\nThe ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband\'s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.
\nBeautifully designed patterns ready to go with a simple copy/paste
\n\n\n\n\n\n\n \n\n\n\n \nGET IN TOUCH
\n\n\n\nGET IN TOUCH
\n\n\n\nEnrich our growing community.
\n\n\n\nSupport special exhibitions.
\n\n\n\nTake support to the next level.
\n\n\n\nEnrich our growing community.
\n\n\n\nSupport special exhibitions.
\n\n\n\nTake support to the next level.
\n\n\n\nEven the bitterest fruit has sugar in it.
\n\n\n\n– Terry a O’Neal
\nThe trees that are slow to grow bear the best fruit.
\n\n\n\n– Molière
\nEven the bitterest fruit has sugar in it.
\n\n\n\n– Terry a O\'Neal
\nThe trees that are slow to grow bear the best fruit.
\n\n\n\n– Molière
\nAirplane
\n\n\n\nCopper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.
\nAirplane
\n\n\n\nCopper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.
\nWhite Irises
\n\n\n\nOgawa Kazumasa
\nCherry Blossom
\n\n\n\nOgawa Kazumasa
\nWhite Irises
\n\n\n\nOgawa Kazumasa
\nCherry Blossom
\n\n\n\nOgawa Kazumasa
\nCupid in Flight
48” x 48” Giclee print on archival paper.
Cupid in Flight
48” x 48” Giclee print on archival paper.
Location:
82 Main St. Brooklyn, NY
Date:
October 24, 2021
Location:
82 Main St. Brooklyn, NY
Date:
October 24, 2021
Positive growth.
\nNature, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf. Art is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture.
\n\n\n\nBut his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.
\nUndoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man’s condition is a solution in hieroglyphic to those inquiries he would put.
\nPositive growth.
\nNature, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf. Art is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture.
\n\n\n\nBut his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.
\nUndoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.
\nEven a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.
\nEven a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.
\nWelcome to WordPress. This is your first post. Edit or delete it, then start writing!
\n','Hello world!','','publish','open','open','','hello-world','','','2024-11-13 08:57:08','2024-11-13 08:57:08','',0,'https://wordpress-56409-0.cloudclusters.net/?p=1',0,'post','',1),(2,1,'2024-11-13 08:57:08','2024-11-13 08:57:08','\nThis 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:
\n\n\n\n\n\n\n\nHi 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.)
...or something like this:
\n\n\n\n\n\n\n\nThe 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.
As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!
\n','Sample Page','','publish','closed','open','','sample-page','','','2024-11-13 08:57:08','2024-11-13 08:57:08','',0,'https://wordpress-56409-0.cloudclusters.net/?page_id=2',0,'page','',0),(3,1,'2024-11-13 08:57:08','2024-11-13 08:57:08','\nSuggested text: Our website address is: https://wordpress-56409-0.cloudclusters.net.
\n\n\nSuggested text: 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.
\n\n\nAn 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.
\n\n\nSuggested text: 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.
\n\n\nSuggested text: 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.
\n\n\nIf 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.
\n\n\nWhen 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.
\n\n\nIf 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.
\n\n\nSuggested text: 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.
\n\n\nThese 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.
\n\n\nSuggested text: If you request a password reset, your IP address will be included in the reset email.
\n\n\nSuggested text: 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.
\n\n\nFor 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.
\n\n\nSuggested text: 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.
\n\n\nSuggested text: Visitor comments may be checked through an automated spam detection service.
\n\n','Privacy Policy','','draft','closed','open','','privacy-policy','','','2024-11-13 08:57:08','2024-11-13 08:57:08','',0,'https://wordpress-56409-0.cloudclusters.net/?page_id=3',0,'page','',0),(4,0,'2024-11-13 08:57:10','2024-11-13 08:57:10','','Navigation','','publish','closed','closed','','navigation','','','2024-11-13 08:57:10','2024-11-13 08:57:10','',0,'https://wordpress-56409-0.cloudclusters.net/?p=4',0,'wp_navigation','',0),(5,1,'2024-11-13 08:57:22','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2024-11-13 08:57:22','0000-00-00 00:00:00','',0,'https://wordpress-56409-0.cloudclusters.net/?p=5',0,'post','',0),(6,1,'2024-11-13 09:01:29','2024-11-13 09:01:29','{\"version\": 3, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentyfive','','','2024-11-13 09:01:29','2024-11-13 09:01:29','',0,'https://wordpress-56409-0.cloudclusters.net/?p=6',0,'wp_global_styles','',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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_term_relationships` ( `object_id` bigint unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint unsigned NOT NULL DEFAULT '0', `term_order` int 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),(6,2,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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint 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 unsigned NOT NULL DEFAULT '0', `count` bigint NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) 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_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),(2,2,'wp_theme','',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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_termmeta` ( `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_terms` ( `term_id` bigint 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 NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(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_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'twentytwentyfive','twentytwentyfive',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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_usermeta` -- LOCK TABLES `wp_usermeta` WRITE; /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"00220be6367046065cbb35ca11139d20dc6a039682e49b2ad481943100593a1b\";a:4:{s:10:\"expiration\";i:1731661037;s:2:\"ip\";s:14:\"108.181.94.242\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36\";s:5:\"login\";i:1731488237;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','5'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"108.181.94.0\";}'),(19,1,'wp_persisted_preferences','a:3:{s:4:\"core\";a:1:{s:26:\"isComplementaryAreaVisible\";b:1;}s:14:\"core/edit-site\";a:1:{s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2024-11-13T09:01:44.948Z\";}'); /*!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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_users` ( `ID` bigint 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 NOT NULL DEFAULT '0', `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`), KEY `user_email` (`user_email`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_users` -- LOCK TABLES `wp_users` WRITE; /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; INSERT INTO `wp_users` VALUES (1,'admin','$P$BAC/A95R6BAvwOcLIWNc0mjv45G3f4.','admin','example@cloudclusters.io','https://wordpress-56409-0.cloudclusters.net','2024-11-13 08:57:08','',0,'admin'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; /*!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 2024-11-13 9:13:40