File: /mnt/data/dreamstour-wp/db/dreamstour-wp-dev.sql
-- phpMyAdmin SQL Dump
-- version 5.2.0
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Sep 18, 2025 at 11:33 AM
-- Server version: 10.4.24-MariaDB
-- PHP Version: 8.1.6
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `dreamstour-wp`
--
-- --------------------------------------------------------
--
-- Table structure for table `wp_commentmeta`
--
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_commentmeta`
--
INSERT INTO `wp_commentmeta` (`meta_id`, `comment_id`, `meta_key`, `meta_value`) VALUES
(1, 2, 'rating', '4'),
(2, 3, 'rating', '3'),
(3, 4, 'rating', '4');
-- --------------------------------------------------------
--
-- Table structure for table `wp_comments`
--
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) UNSIGNED NOT NULL,
`comment_post_ID` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT 0,
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
`comment_parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_comments`
--
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'A WordPress Commenter', '[email protected]', 'https://wordpress.org/', '', '2025-09-11 04:31:47', '2025-09-11 04:31:47', 'Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com/\">Gravatar</a>.', 0, '1', '', 'comment', 0, 0),
(2, 35, 'Jessie Alves', '[email protected]', '', '', '2025-09-16 10:15:34', '2025-09-16 10:15:34', 'The location was perfect for exploring the city, and the views from our room were breathtaking. It made our trip so much more enjoyable to stay somewhere central and scenic\n\n', 0, '1', '', 'comment', 0, 0),
(3, 35, 'Jeffrey Jones', '[email protected]', '', '', '2025-09-16 11:12:06', '2025-09-16 11:12:06', 'From the moment we arrived, the staff made us feel welcome. The rooms were immaculate, and every detail was thoughtfully arranged. It was the perfect blend of comfort and luxury!\n\n', 0, '1', '', 'comment', 0, 0),
(4, 35, 'Joseph Massey', '[email protected]', '', '', '2025-09-16 11:17:59', '2025-09-16 11:17:59', 'From the moment we arrived, the staff made us feel welcome. The rooms were immaculate, and every detail was thoughtfully arranged. It was the perfect blend of comfort and luxury!\n\n', 0, '1', '', 'comment', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_dreamstour_enquiries`
--
CREATE TABLE `wp_dreamstour_enquiries` (
`id` bigint(20) UNSIGNED NOT NULL,
`tour_id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`email` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`phone` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`message` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_dreamstour_wishlists`
--
CREATE TABLE `wp_dreamstour_wishlists` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`tour_id` bigint(20) UNSIGNED NOT NULL,
`created_at` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_dreamstour_wishlists`
--
INSERT INTO `wp_dreamstour_wishlists` (`id`, `user_id`, `tour_id`, `created_at`) VALUES
(3, 1, 35, '2025-09-17 16:09:18');
-- --------------------------------------------------------
--
-- Table structure for table `wp_links`
--
CREATE TABLE `wp_links` (
`link_id` bigint(20) UNSIGNED NOT NULL,
`link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) UNSIGNED NOT NULL DEFAULT 1,
`link_rating` int(11) NOT NULL DEFAULT 0,
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_options`
--
CREATE TABLE `wp_options` (
`option_id` bigint(20) UNSIGNED NOT NULL,
`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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'cron', 'a:10:{i:1758191508;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1758216707;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:1758218507;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:1758220307;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:1758221121;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1758256308;a:2:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1758264321;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1758264326;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:1758784415;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;}}}s:7:\"version\";i:2;}', 'on'),
(2, 'siteurl', 'http://dev-dreamstour-wp.dreamstechnologies.com', 'on'),
(3, 'home', 'http://dev-dreamstour-wp.dreamstechnologies.com', 'on'),
(4, 'blogname', 'Dreams Tour', 'on'),
(5, 'blogdescription', '', 'on'),
(6, 'users_can_register', '1', 'on'),
(7, 'admin_email', '[email protected]', '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', '[email protected]', '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', '/%postname%/', 'on'),
(30, 'rewrite_rules', 'a:150:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:7:\"tour/?$\";s:24:\"index.php?post_type=tour\";s:37:\"tour/feed/(feed|rdf|rss|rss2|atom)/?$\";s:41:\"index.php?post_type=tour&feed=$matches[1]\";s:32:\"tour/(feed|rdf|rss|rss2|atom)/?$\";s:41:\"index.php?post_type=tour&feed=$matches[1]\";s:24:\"tour/page/([0-9]{1,})/?$\";s:42:\"index.php?post_type=tour&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:32:\"tour/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"tour/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"tour/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"tour/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"tour/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"tour/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"tour/([^/]+)/embed/?$\";s:37:\"index.php?tour=$matches[1]&embed=true\";s:25:\"tour/([^/]+)/trackback/?$\";s:31:\"index.php?tour=$matches[1]&tb=1\";s:45:\"tour/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?tour=$matches[1]&feed=$matches[2]\";s:40:\"tour/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?tour=$matches[1]&feed=$matches[2]\";s:33:\"tour/([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?tour=$matches[1]&paged=$matches[2]\";s:40:\"tour/([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?tour=$matches[1]&cpage=$matches[2]\";s:29:\"tour/([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?tour=$matches[1]&page=$matches[2]\";s:21:\"tour/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:31:\"tour/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:51:\"tour/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"tour/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"tour/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:27:\"tour/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:54:\"tour_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?tour_category=$matches[1]&feed=$matches[2]\";s:49:\"tour_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?tour_category=$matches[1]&feed=$matches[2]\";s:30:\"tour_category/([^/]+)/embed/?$\";s:46:\"index.php?tour_category=$matches[1]&embed=true\";s:42:\"tour_category/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?tour_category=$matches[1]&paged=$matches[2]\";s:24:\"tour_category/([^/]+)/?$\";s:35:\"index.php?tour_category=$matches[1]\";s:59:\"tour_duration_days/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?tour_duration_days=$matches[1]&feed=$matches[2]\";s:54:\"tour_duration_days/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?tour_duration_days=$matches[1]&feed=$matches[2]\";s:35:\"tour_duration_days/([^/]+)/embed/?$\";s:51:\"index.php?tour_duration_days=$matches[1]&embed=true\";s:47:\"tour_duration_days/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?tour_duration_days=$matches[1]&paged=$matches[2]\";s:29:\"tour_duration_days/([^/]+)/?$\";s:40:\"index.php?tour_duration_days=$matches[1]\";s:61:\"tour_duration_nights/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?tour_duration_nights=$matches[1]&feed=$matches[2]\";s:56:\"tour_duration_nights/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?tour_duration_nights=$matches[1]&feed=$matches[2]\";s:37:\"tour_duration_nights/([^/]+)/embed/?$\";s:53:\"index.php?tour_duration_nights=$matches[1]&embed=true\";s:49:\"tour_duration_nights/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?tour_duration_nights=$matches[1]&paged=$matches[2]\";s:31:\"tour_duration_nights/([^/]+)/?$\";s:42:\"index.php?tour_duration_nights=$matches[1]\";s:53:\"tour_country/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?tour_country=$matches[1]&feed=$matches[2]\";s:48:\"tour_country/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?tour_country=$matches[1]&feed=$matches[2]\";s:29:\"tour_country/([^/]+)/embed/?$\";s:45:\"index.php?tour_country=$matches[1]&embed=true\";s:41:\"tour_country/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?tour_country=$matches[1]&paged=$matches[2]\";s:23:\"tour_country/([^/]+)/?$\";s:34:\"index.php?tour_country=$matches[1]\";s:56:\"tour_activities/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?tour_activities=$matches[1]&feed=$matches[2]\";s:51:\"tour_activities/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?tour_activities=$matches[1]&feed=$matches[2]\";s:32:\"tour_activities/([^/]+)/embed/?$\";s:48:\"index.php?tour_activities=$matches[1]&embed=true\";s:44:\"tour_activities/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?tour_activities=$matches[1]&paged=$matches[2]\";s:26:\"tour_activities/([^/]+)/?$\";s:37:\"index.php?tour_activities=$matches[1]\";s:54:\"tour_includes/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?tour_includes=$matches[1]&feed=$matches[2]\";s:49:\"tour_includes/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?tour_includes=$matches[1]&feed=$matches[2]\";s:30:\"tour_includes/([^/]+)/embed/?$\";s:46:\"index.php?tour_includes=$matches[1]&embed=true\";s:42:\"tour_includes/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?tour_includes=$matches[1]&paged=$matches[2]\";s:24:\"tour_includes/([^/]+)/?$\";s:35:\"index.php?tour_includes=$matches[1]\";s:54:\"tour_excludes/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?tour_excludes=$matches[1]&feed=$matches[2]\";s:49:\"tour_excludes/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?tour_excludes=$matches[1]&feed=$matches[2]\";s:30:\"tour_excludes/([^/]+)/embed/?$\";s:46:\"index.php?tour_excludes=$matches[1]&embed=true\";s:42:\"tour_excludes/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?tour_excludes=$matches[1]&paged=$matches[2]\";s:24:\"tour_excludes/([^/]+)/?$\";s:35:\"index.php?tour_excludes=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=76&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}', 'on'),
(31, 'hack_file', '0', 'on'),
(32, 'blog_charset', 'UTF-8', 'on'),
(33, 'moderation_keys', '', 'off'),
(34, 'active_plugins', 'a:3:{i:0;s:35:\"redux-framework/redux-framework.php\";i:1;s:33:\"classic-editor/classic-editor.php\";i:2;s:27:\"dreams-tour/dreams-tour.php\";}', 'on'),
(35, 'category_base', '', 'on'),
(36, 'ping_sites', 'https://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', 'dreamstour', 'on'),
(42, 'stylesheet', 'dreamstour', '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', '60421', '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', 'page', '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:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(78, 'widget_text', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(79, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(80, 'uninstall_plugins', 'a:0:{}', 'off'),
(81, 'timezone_string', '', 'on'),
(82, 'page_for_posts', '2', 'on'),
(83, 'page_on_front', '76', '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', '1773117107', '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:7:{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;}}s:5:\"agent\";a:2:{s:4:\"name\";s:5:\"Agent\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"regular_user\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}}', 'on'),
(103, 'fresh_site', '0', 'off'),
(104, 'user_count', '11', 'off'),
(105, 'widget_block', 'a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}', 'auto'),
(106, 'sidebars_widgets', 'a:3:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:12:\"blog-sidebar\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:13:\"array_version\";i:3;}', 'auto'),
(107, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(108, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(109, 'widget_archives', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(110, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(111, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(112, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(113, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(114, 'widget_meta', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(115, 'widget_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(116, 'widget_recent-posts', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(117, 'widget_recent-comments', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(118, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(119, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(120, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(121, '_transient_wp_core_block_css_files', 'a:2:{s:7:\"version\";s:5:\"6.8.2\";s:5:\"files\";a:536:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:21:\"button/editor-rtl.css\";i:29;s:25:\"button/editor-rtl.min.css\";i:30;s:17:\"button/editor.css\";i:31;s:21:\"button/editor.min.css\";i:32;s:20:\"button/style-rtl.css\";i:33;s:24:\"button/style-rtl.min.css\";i:34;s:16:\"button/style.css\";i:35;s:20:\"button/style.min.css\";i:36;s:22:\"buttons/editor-rtl.css\";i:37;s:26:\"buttons/editor-rtl.min.css\";i:38;s:18:\"buttons/editor.css\";i:39;s:22:\"buttons/editor.min.css\";i:40;s:21:\"buttons/style-rtl.css\";i:41;s:25:\"buttons/style-rtl.min.css\";i:42;s:17:\"buttons/style.css\";i:43;s:21:\"buttons/style.min.css\";i:44;s:22:\"calendar/style-rtl.css\";i:45;s:26:\"calendar/style-rtl.min.css\";i:46;s:18:\"calendar/style.css\";i:47;s:22:\"calendar/style.min.css\";i:48;s:25:\"categories/editor-rtl.css\";i:49;s:29:\"categories/editor-rtl.min.css\";i:50;s:21:\"categories/editor.css\";i:51;s:25:\"categories/editor.min.css\";i:52;s:24:\"categories/style-rtl.css\";i:53;s:28:\"categories/style-rtl.min.css\";i:54;s:20:\"categories/style.css\";i:55;s:24:\"categories/style.min.css\";i:56;s:19:\"code/editor-rtl.css\";i:57;s:23:\"code/editor-rtl.min.css\";i:58;s:15:\"code/editor.css\";i:59;s:19:\"code/editor.min.css\";i:60;s:18:\"code/style-rtl.css\";i:61;s:22:\"code/style-rtl.min.css\";i:62;s:14:\"code/style.css\";i:63;s:18:\"code/style.min.css\";i:64;s:18:\"code/theme-rtl.css\";i:65;s:22:\"code/theme-rtl.min.css\";i:66;s:14:\"code/theme.css\";i:67;s:18:\"code/theme.min.css\";i:68;s:22:\"columns/editor-rtl.css\";i:69;s:26:\"columns/editor-rtl.min.css\";i:70;s:18:\"columns/editor.css\";i:71;s:22:\"columns/editor.min.css\";i:72;s:21:\"columns/style-rtl.css\";i:73;s:25:\"columns/style-rtl.min.css\";i:74;s:17:\"columns/style.css\";i:75;s:21:\"columns/style.min.css\";i:76;s:33:\"comment-author-name/style-rtl.css\";i:77;s:37:\"comment-author-name/style-rtl.min.css\";i:78;s:29:\"comment-author-name/style.css\";i:79;s:33:\"comment-author-name/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:26:\"comment-date/style-rtl.css\";i:85;s:30:\"comment-date/style-rtl.min.css\";i:86;s:22:\"comment-date/style.css\";i:87;s:26:\"comment-date/style.min.css\";i:88;s:31:\"comment-edit-link/style-rtl.css\";i:89;s:35:\"comment-edit-link/style-rtl.min.css\";i:90;s:27:\"comment-edit-link/style.css\";i:91;s:31:\"comment-edit-link/style.min.css\";i:92;s:32:\"comment-reply-link/style-rtl.css\";i:93;s:36:\"comment-reply-link/style-rtl.min.css\";i:94;s:28:\"comment-reply-link/style.css\";i:95;s:32:\"comment-reply-link/style.min.css\";i:96;s:30:\"comment-template/style-rtl.css\";i:97;s:34:\"comment-template/style-rtl.min.css\";i:98;s:26:\"comment-template/style.css\";i:99;s:30:\"comment-template/style.min.css\";i:100;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:101;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:102;s:38:\"comments-pagination-numbers/editor.css\";i:103;s:42:\"comments-pagination-numbers/editor.min.css\";i:104;s:34:\"comments-pagination/editor-rtl.css\";i:105;s:38:\"comments-pagination/editor-rtl.min.css\";i:106;s:30:\"comments-pagination/editor.css\";i:107;s:34:\"comments-pagination/editor.min.css\";i:108;s:33:\"comments-pagination/style-rtl.css\";i:109;s:37:\"comments-pagination/style-rtl.min.css\";i:110;s:29:\"comments-pagination/style.css\";i:111;s:33:\"comments-pagination/style.min.css\";i:112;s:29:\"comments-title/editor-rtl.css\";i:113;s:33:\"comments-title/editor-rtl.min.css\";i:114;s:25:\"comments-title/editor.css\";i:115;s:29:\"comments-title/editor.min.css\";i:116;s:23:\"comments/editor-rtl.css\";i:117;s:27:\"comments/editor-rtl.min.css\";i:118;s:19:\"comments/editor.css\";i:119;s:23:\"comments/editor.min.css\";i:120;s:22:\"comments/style-rtl.css\";i:121;s:26:\"comments/style-rtl.min.css\";i:122;s:18:\"comments/style.css\";i:123;s:22:\"comments/style.min.css\";i:124;s:20:\"cover/editor-rtl.css\";i:125;s:24:\"cover/editor-rtl.min.css\";i:126;s:16:\"cover/editor.css\";i:127;s:20:\"cover/editor.min.css\";i:128;s:19:\"cover/style-rtl.css\";i:129;s:23:\"cover/style-rtl.min.css\";i:130;s:15:\"cover/style.css\";i:131;s:19:\"cover/style.min.css\";i:132;s:22:\"details/editor-rtl.css\";i:133;s:26:\"details/editor-rtl.min.css\";i:134;s:18:\"details/editor.css\";i:135;s:22:\"details/editor.min.css\";i:136;s:21:\"details/style-rtl.css\";i:137;s:25:\"details/style-rtl.min.css\";i:138;s:17:\"details/style.css\";i:139;s:21:\"details/style.min.css\";i:140;s:20:\"embed/editor-rtl.css\";i:141;s:24:\"embed/editor-rtl.min.css\";i:142;s:16:\"embed/editor.css\";i:143;s:20:\"embed/editor.min.css\";i:144;s:19:\"embed/style-rtl.css\";i:145;s:23:\"embed/style-rtl.min.css\";i:146;s:15:\"embed/style.css\";i:147;s:19:\"embed/style.min.css\";i:148;s:19:\"embed/theme-rtl.css\";i:149;s:23:\"embed/theme-rtl.min.css\";i:150;s:15:\"embed/theme.css\";i:151;s:19:\"embed/theme.min.css\";i:152;s:19:\"file/editor-rtl.css\";i:153;s:23:\"file/editor-rtl.min.css\";i:154;s:15:\"file/editor.css\";i:155;s:19:\"file/editor.min.css\";i:156;s:18:\"file/style-rtl.css\";i:157;s:22:\"file/style-rtl.min.css\";i:158;s:14:\"file/style.css\";i:159;s:18:\"file/style.min.css\";i:160;s:23:\"footnotes/style-rtl.css\";i:161;s:27:\"footnotes/style-rtl.min.css\";i:162;s:19:\"footnotes/style.css\";i:163;s:23:\"footnotes/style.min.css\";i:164;s:23:\"freeform/editor-rtl.css\";i:165;s:27:\"freeform/editor-rtl.min.css\";i:166;s:19:\"freeform/editor.css\";i:167;s:23:\"freeform/editor.min.css\";i:168;s:22:\"gallery/editor-rtl.css\";i:169;s:26:\"gallery/editor-rtl.min.css\";i:170;s:18:\"gallery/editor.css\";i:171;s:22:\"gallery/editor.min.css\";i:172;s:21:\"gallery/style-rtl.css\";i:173;s:25:\"gallery/style-rtl.min.css\";i:174;s:17:\"gallery/style.css\";i:175;s:21:\"gallery/style.min.css\";i:176;s:21:\"gallery/theme-rtl.css\";i:177;s:25:\"gallery/theme-rtl.min.css\";i:178;s:17:\"gallery/theme.css\";i:179;s:21:\"gallery/theme.min.css\";i:180;s:20:\"group/editor-rtl.css\";i:181;s:24:\"group/editor-rtl.min.css\";i:182;s:16:\"group/editor.css\";i:183;s:20:\"group/editor.min.css\";i:184;s:19:\"group/style-rtl.css\";i:185;s:23:\"group/style-rtl.min.css\";i:186;s:15:\"group/style.css\";i:187;s:19:\"group/style.min.css\";i:188;s:19:\"group/theme-rtl.css\";i:189;s:23:\"group/theme-rtl.min.css\";i:190;s:15:\"group/theme.css\";i:191;s:19:\"group/theme.min.css\";i:192;s:21:\"heading/style-rtl.css\";i:193;s:25:\"heading/style-rtl.min.css\";i:194;s:17:\"heading/style.css\";i:195;s:21:\"heading/style.min.css\";i:196;s:19:\"html/editor-rtl.css\";i:197;s:23:\"html/editor-rtl.min.css\";i:198;s:15:\"html/editor.css\";i:199;s:19:\"html/editor.min.css\";i:200;s:20:\"image/editor-rtl.css\";i:201;s:24:\"image/editor-rtl.min.css\";i:202;s:16:\"image/editor.css\";i:203;s:20:\"image/editor.min.css\";i:204;s:19:\"image/style-rtl.css\";i:205;s:23:\"image/style-rtl.min.css\";i:206;s:15:\"image/style.css\";i:207;s:19:\"image/style.min.css\";i:208;s:19:\"image/theme-rtl.css\";i:209;s:23:\"image/theme-rtl.min.css\";i:210;s:15:\"image/theme.css\";i:211;s:19:\"image/theme.min.css\";i:212;s:29:\"latest-comments/style-rtl.css\";i:213;s:33:\"latest-comments/style-rtl.min.css\";i:214;s:25:\"latest-comments/style.css\";i:215;s:29:\"latest-comments/style.min.css\";i:216;s:27:\"latest-posts/editor-rtl.css\";i:217;s:31:\"latest-posts/editor-rtl.min.css\";i:218;s:23:\"latest-posts/editor.css\";i:219;s:27:\"latest-posts/editor.min.css\";i:220;s:26:\"latest-posts/style-rtl.css\";i:221;s:30:\"latest-posts/style-rtl.min.css\";i:222;s:22:\"latest-posts/style.css\";i:223;s:26:\"latest-posts/style.min.css\";i:224;s:18:\"list/style-rtl.css\";i:225;s:22:\"list/style-rtl.min.css\";i:226;s:14:\"list/style.css\";i:227;s:18:\"list/style.min.css\";i:228;s:22:\"loginout/style-rtl.css\";i:229;s:26:\"loginout/style-rtl.min.css\";i:230;s:18:\"loginout/style.css\";i:231;s:22:\"loginout/style.min.css\";i:232;s:25:\"media-text/editor-rtl.css\";i:233;s:29:\"media-text/editor-rtl.min.css\";i:234;s:21:\"media-text/editor.css\";i:235;s:25:\"media-text/editor.min.css\";i:236;s:24:\"media-text/style-rtl.css\";i:237;s:28:\"media-text/style-rtl.min.css\";i:238;s:20:\"media-text/style.css\";i:239;s:24:\"media-text/style.min.css\";i:240;s:19:\"more/editor-rtl.css\";i:241;s:23:\"more/editor-rtl.min.css\";i:242;s:15:\"more/editor.css\";i:243;s:19:\"more/editor.min.css\";i:244;s:30:\"navigation-link/editor-rtl.css\";i:245;s:34:\"navigation-link/editor-rtl.min.css\";i:246;s:26:\"navigation-link/editor.css\";i:247;s:30:\"navigation-link/editor.min.css\";i:248;s:29:\"navigation-link/style-rtl.css\";i:249;s:33:\"navigation-link/style-rtl.min.css\";i:250;s:25:\"navigation-link/style.css\";i:251;s:29:\"navigation-link/style.min.css\";i:252;s:33:\"navigation-submenu/editor-rtl.css\";i:253;s:37:\"navigation-submenu/editor-rtl.min.css\";i:254;s:29:\"navigation-submenu/editor.css\";i:255;s:33:\"navigation-submenu/editor.min.css\";i:256;s:25:\"navigation/editor-rtl.css\";i:257;s:29:\"navigation/editor-rtl.min.css\";i:258;s:21:\"navigation/editor.css\";i:259;s:25:\"navigation/editor.min.css\";i:260;s:24:\"navigation/style-rtl.css\";i:261;s:28:\"navigation/style-rtl.min.css\";i:262;s:20:\"navigation/style.css\";i:263;s:24:\"navigation/style.min.css\";i:264;s:23:\"nextpage/editor-rtl.css\";i:265;s:27:\"nextpage/editor-rtl.min.css\";i:266;s:19:\"nextpage/editor.css\";i:267;s:23:\"nextpage/editor.min.css\";i:268;s:24:\"page-list/editor-rtl.css\";i:269;s:28:\"page-list/editor-rtl.min.css\";i:270;s:20:\"page-list/editor.css\";i:271;s:24:\"page-list/editor.min.css\";i:272;s:23:\"page-list/style-rtl.css\";i:273;s:27:\"page-list/style-rtl.min.css\";i:274;s:19:\"page-list/style.css\";i:275;s:23:\"page-list/style.min.css\";i:276;s:24:\"paragraph/editor-rtl.css\";i:277;s:28:\"paragraph/editor-rtl.min.css\";i:278;s:20:\"paragraph/editor.css\";i:279;s:24:\"paragraph/editor.min.css\";i:280;s:23:\"paragraph/style-rtl.css\";i:281;s:27:\"paragraph/style-rtl.min.css\";i:282;s:19:\"paragraph/style.css\";i:283;s:23:\"paragraph/style.min.css\";i:284;s:35:\"post-author-biography/style-rtl.css\";i:285;s:39:\"post-author-biography/style-rtl.min.css\";i:286;s:31:\"post-author-biography/style.css\";i:287;s:35:\"post-author-biography/style.min.css\";i:288;s:30:\"post-author-name/style-rtl.css\";i:289;s:34:\"post-author-name/style-rtl.min.css\";i:290;s:26:\"post-author-name/style.css\";i:291;s:30:\"post-author-name/style.min.css\";i:292;s:26:\"post-author/editor-rtl.css\";i:293;s:30:\"post-author/editor-rtl.min.css\";i:294;s:22:\"post-author/editor.css\";i:295;s:26:\"post-author/editor.min.css\";i:296;s:25:\"post-author/style-rtl.css\";i:297;s:29:\"post-author/style-rtl.min.css\";i:298;s:21:\"post-author/style.css\";i:299;s:25:\"post-author/style.min.css\";i:300;s:33:\"post-comments-form/editor-rtl.css\";i:301;s:37:\"post-comments-form/editor-rtl.min.css\";i:302;s:29:\"post-comments-form/editor.css\";i:303;s:33:\"post-comments-form/editor.min.css\";i:304;s:32:\"post-comments-form/style-rtl.css\";i:305;s:36:\"post-comments-form/style-rtl.min.css\";i:306;s:28:\"post-comments-form/style.css\";i:307;s:32:\"post-comments-form/style.min.css\";i:308;s:26:\"post-content/style-rtl.css\";i:309;s:30:\"post-content/style-rtl.min.css\";i:310;s:22:\"post-content/style.css\";i:311;s:26:\"post-content/style.min.css\";i:312;s:23:\"post-date/style-rtl.css\";i:313;s:27:\"post-date/style-rtl.min.css\";i:314;s:19:\"post-date/style.css\";i:315;s:23:\"post-date/style.min.css\";i:316;s:27:\"post-excerpt/editor-rtl.css\";i:317;s:31:\"post-excerpt/editor-rtl.min.css\";i:318;s:23:\"post-excerpt/editor.css\";i:319;s:27:\"post-excerpt/editor.min.css\";i:320;s:26:\"post-excerpt/style-rtl.css\";i:321;s:30:\"post-excerpt/style-rtl.min.css\";i:322;s:22:\"post-excerpt/style.css\";i:323;s:26:\"post-excerpt/style.min.css\";i:324;s:34:\"post-featured-image/editor-rtl.css\";i:325;s:38:\"post-featured-image/editor-rtl.min.css\";i:326;s:30:\"post-featured-image/editor.css\";i:327;s:34:\"post-featured-image/editor.min.css\";i:328;s:33:\"post-featured-image/style-rtl.css\";i:329;s:37:\"post-featured-image/style-rtl.min.css\";i:330;s:29:\"post-featured-image/style.css\";i:331;s:33:\"post-featured-image/style.min.css\";i:332;s:34:\"post-navigation-link/style-rtl.css\";i:333;s:38:\"post-navigation-link/style-rtl.min.css\";i:334;s:30:\"post-navigation-link/style.css\";i:335;s:34:\"post-navigation-link/style.min.css\";i:336;s:27:\"post-template/style-rtl.css\";i:337;s:31:\"post-template/style-rtl.min.css\";i:338;s:23:\"post-template/style.css\";i:339;s:27:\"post-template/style.min.css\";i:340;s:24:\"post-terms/style-rtl.css\";i:341;s:28:\"post-terms/style-rtl.min.css\";i:342;s:20:\"post-terms/style.css\";i:343;s:24:\"post-terms/style.min.css\";i:344;s:24:\"post-title/style-rtl.css\";i:345;s:28:\"post-title/style-rtl.min.css\";i:346;s:20:\"post-title/style.css\";i:347;s:24:\"post-title/style.min.css\";i:348;s:26:\"preformatted/style-rtl.css\";i:349;s:30:\"preformatted/style-rtl.min.css\";i:350;s:22:\"preformatted/style.css\";i:351;s:26:\"preformatted/style.min.css\";i:352;s:24:\"pullquote/editor-rtl.css\";i:353;s:28:\"pullquote/editor-rtl.min.css\";i:354;s:20:\"pullquote/editor.css\";i:355;s:24:\"pullquote/editor.min.css\";i:356;s:23:\"pullquote/style-rtl.css\";i:357;s:27:\"pullquote/style-rtl.min.css\";i:358;s:19:\"pullquote/style.css\";i:359;s:23:\"pullquote/style.min.css\";i:360;s:23:\"pullquote/theme-rtl.css\";i:361;s:27:\"pullquote/theme-rtl.min.css\";i:362;s:19:\"pullquote/theme.css\";i:363;s:23:\"pullquote/theme.min.css\";i:364;s:39:\"query-pagination-numbers/editor-rtl.css\";i:365;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:366;s:35:\"query-pagination-numbers/editor.css\";i:367;s:39:\"query-pagination-numbers/editor.min.css\";i:368;s:31:\"query-pagination/editor-rtl.css\";i:369;s:35:\"query-pagination/editor-rtl.min.css\";i:370;s:27:\"query-pagination/editor.css\";i:371;s:31:\"query-pagination/editor.min.css\";i:372;s:30:\"query-pagination/style-rtl.css\";i:373;s:34:\"query-pagination/style-rtl.min.css\";i:374;s:26:\"query-pagination/style.css\";i:375;s:30:\"query-pagination/style.min.css\";i:376;s:25:\"query-title/style-rtl.css\";i:377;s:29:\"query-title/style-rtl.min.css\";i:378;s:21:\"query-title/style.css\";i:379;s:25:\"query-title/style.min.css\";i:380;s:25:\"query-total/style-rtl.css\";i:381;s:29:\"query-total/style-rtl.min.css\";i:382;s:21:\"query-total/style.css\";i:383;s:25:\"query-total/style.min.css\";i:384;s:20:\"query/editor-rtl.css\";i:385;s:24:\"query/editor-rtl.min.css\";i:386;s:16:\"query/editor.css\";i:387;s:20:\"query/editor.min.css\";i:388;s:19:\"quote/style-rtl.css\";i:389;s:23:\"quote/style-rtl.min.css\";i:390;s:15:\"quote/style.css\";i:391;s:19:\"quote/style.min.css\";i:392;s:19:\"quote/theme-rtl.css\";i:393;s:23:\"quote/theme-rtl.min.css\";i:394;s:15:\"quote/theme.css\";i:395;s:19:\"quote/theme.min.css\";i:396;s:23:\"read-more/style-rtl.css\";i:397;s:27:\"read-more/style-rtl.min.css\";i:398;s:19:\"read-more/style.css\";i:399;s:23:\"read-more/style.min.css\";i:400;s:18:\"rss/editor-rtl.css\";i:401;s:22:\"rss/editor-rtl.min.css\";i:402;s:14:\"rss/editor.css\";i:403;s:18:\"rss/editor.min.css\";i:404;s:17:\"rss/style-rtl.css\";i:405;s:21:\"rss/style-rtl.min.css\";i:406;s:13:\"rss/style.css\";i:407;s:17:\"rss/style.min.css\";i:408;s:21:\"search/editor-rtl.css\";i:409;s:25:\"search/editor-rtl.min.css\";i:410;s:17:\"search/editor.css\";i:411;s:21:\"search/editor.min.css\";i:412;s:20:\"search/style-rtl.css\";i:413;s:24:\"search/style-rtl.min.css\";i:414;s:16:\"search/style.css\";i:415;s:20:\"search/style.min.css\";i:416;s:20:\"search/theme-rtl.css\";i:417;s:24:\"search/theme-rtl.min.css\";i:418;s:16:\"search/theme.css\";i:419;s:20:\"search/theme.min.css\";i:420;s:24:\"separator/editor-rtl.css\";i:421;s:28:\"separator/editor-rtl.min.css\";i:422;s:20:\"separator/editor.css\";i:423;s:24:\"separator/editor.min.css\";i:424;s:23:\"separator/style-rtl.css\";i:425;s:27:\"separator/style-rtl.min.css\";i:426;s:19:\"separator/style.css\";i:427;s:23:\"separator/style.min.css\";i:428;s:23:\"separator/theme-rtl.css\";i:429;s:27:\"separator/theme-rtl.min.css\";i:430;s:19:\"separator/theme.css\";i:431;s:23:\"separator/theme.min.css\";i:432;s:24:\"shortcode/editor-rtl.css\";i:433;s:28:\"shortcode/editor-rtl.min.css\";i:434;s:20:\"shortcode/editor.css\";i:435;s:24:\"shortcode/editor.min.css\";i:436;s:24:\"site-logo/editor-rtl.css\";i:437;s:28:\"site-logo/editor-rtl.min.css\";i:438;s:20:\"site-logo/editor.css\";i:439;s:24:\"site-logo/editor.min.css\";i:440;s:23:\"site-logo/style-rtl.css\";i:441;s:27:\"site-logo/style-rtl.min.css\";i:442;s:19:\"site-logo/style.css\";i:443;s:23:\"site-logo/style.min.css\";i:444;s:27:\"site-tagline/editor-rtl.css\";i:445;s:31:\"site-tagline/editor-rtl.min.css\";i:446;s:23:\"site-tagline/editor.css\";i:447;s:27:\"site-tagline/editor.min.css\";i:448;s:26:\"site-tagline/style-rtl.css\";i:449;s:30:\"site-tagline/style-rtl.min.css\";i:450;s:22:\"site-tagline/style.css\";i:451;s:26:\"site-tagline/style.min.css\";i:452;s:25:\"site-title/editor-rtl.css\";i:453;s:29:\"site-title/editor-rtl.min.css\";i:454;s:21:\"site-title/editor.css\";i:455;s:25:\"site-title/editor.min.css\";i:456;s:24:\"site-title/style-rtl.css\";i:457;s:28:\"site-title/style-rtl.min.css\";i:458;s:20:\"site-title/style.css\";i:459;s:24:\"site-title/style.min.css\";i:460;s:26:\"social-link/editor-rtl.css\";i:461;s:30:\"social-link/editor-rtl.min.css\";i:462;s:22:\"social-link/editor.css\";i:463;s:26:\"social-link/editor.min.css\";i:464;s:27:\"social-links/editor-rtl.css\";i:465;s:31:\"social-links/editor-rtl.min.css\";i:466;s:23:\"social-links/editor.css\";i:467;s:27:\"social-links/editor.min.css\";i:468;s:26:\"social-links/style-rtl.css\";i:469;s:30:\"social-links/style-rtl.min.css\";i:470;s:22:\"social-links/style.css\";i:471;s:26:\"social-links/style.min.css\";i:472;s:21:\"spacer/editor-rtl.css\";i:473;s:25:\"spacer/editor-rtl.min.css\";i:474;s:17:\"spacer/editor.css\";i:475;s:21:\"spacer/editor.min.css\";i:476;s:20:\"spacer/style-rtl.css\";i:477;s:24:\"spacer/style-rtl.min.css\";i:478;s:16:\"spacer/style.css\";i:479;s:20:\"spacer/style.min.css\";i:480;s:20:\"table/editor-rtl.css\";i:481;s:24:\"table/editor-rtl.min.css\";i:482;s:16:\"table/editor.css\";i:483;s:20:\"table/editor.min.css\";i:484;s:19:\"table/style-rtl.css\";i:485;s:23:\"table/style-rtl.min.css\";i:486;s:15:\"table/style.css\";i:487;s:19:\"table/style.min.css\";i:488;s:19:\"table/theme-rtl.css\";i:489;s:23:\"table/theme-rtl.min.css\";i:490;s:15:\"table/theme.css\";i:491;s:19:\"table/theme.min.css\";i:492;s:24:\"tag-cloud/editor-rtl.css\";i:493;s:28:\"tag-cloud/editor-rtl.min.css\";i:494;s:20:\"tag-cloud/editor.css\";i:495;s:24:\"tag-cloud/editor.min.css\";i:496;s:23:\"tag-cloud/style-rtl.css\";i:497;s:27:\"tag-cloud/style-rtl.min.css\";i:498;s:19:\"tag-cloud/style.css\";i:499;s:23:\"tag-cloud/style.min.css\";i:500;s:28:\"template-part/editor-rtl.css\";i:501;s:32:\"template-part/editor-rtl.min.css\";i:502;s:24:\"template-part/editor.css\";i:503;s:28:\"template-part/editor.min.css\";i:504;s:27:\"template-part/theme-rtl.css\";i:505;s:31:\"template-part/theme-rtl.min.css\";i:506;s:23:\"template-part/theme.css\";i:507;s:27:\"template-part/theme.min.css\";i:508;s:30:\"term-description/style-rtl.css\";i:509;s:34:\"term-description/style-rtl.min.css\";i:510;s:26:\"term-description/style.css\";i:511;s:30:\"term-description/style.min.css\";i:512;s:27:\"text-columns/editor-rtl.css\";i:513;s:31:\"text-columns/editor-rtl.min.css\";i:514;s:23:\"text-columns/editor.css\";i:515;s:27:\"text-columns/editor.min.css\";i:516;s:26:\"text-columns/style-rtl.css\";i:517;s:30:\"text-columns/style-rtl.min.css\";i:518;s:22:\"text-columns/style.css\";i:519;s:26:\"text-columns/style.min.css\";i:520;s:19:\"verse/style-rtl.css\";i:521;s:23:\"verse/style-rtl.min.css\";i:522;s:15:\"verse/style.css\";i:523;s:19:\"verse/style.min.css\";i:524;s:20:\"video/editor-rtl.css\";i:525;s:24:\"video/editor-rtl.min.css\";i:526;s:16:\"video/editor.css\";i:527;s:20:\"video/editor.min.css\";i:528;s:19:\"video/style-rtl.css\";i:529;s:23:\"video/style-rtl.min.css\";i:530;s:15:\"video/style.css\";i:531;s:19:\"video/style.min.css\";i:532;s:19:\"video/theme-rtl.css\";i:533;s:23:\"video/theme-rtl.min.css\";i:534;s:15:\"video/theme.css\";i:535;s:19:\"video/theme.min.css\";}}', 'on'),
(127, 'recovery_keys', 'a:1:{s:22:\"afEY54PkLeBX8g9hDCCyeN\";a:2:{s:10:\"hashed_key\";s:49:\"$generic$oKSRQoPJH99uARcDFBCi2V-MZYA7SVwb24LEGRn1\";s:10:\"created_at\";i:1758173923;}}', 'off'),
(128, 'theme_mods_twentytwentyfive', 'a:4:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1757585376;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:12:\"blog-sidebar\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}}}s:19:\"wp_classic_sidebars\";a:1:{s:12:\"blog-sidebar\";a:11:{s:4:\"name\";s:12:\"Blog Sidebar\";s:2:\"id\";s:12:\"blog-sidebar\";s:11:\"description\";s:12:\"Main Sidebar\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:40:\"<div id=\"%1$s\" class=\"widget card %2$s\">\";s:12:\"after_widget\";s:6:\"</div>\";s:12:\"before_title\";s:13:\"<h4 class=\"\">\";s:11:\"after_title\";s:5:\"</h4>\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}}s:18:\"nav_menu_locations\";a:0:{}}', 'off');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(130, '_transient_wp_styles_for_blocks', 'a:2:{s:4:\"hash\";s:32:\"8c7d46a72d7d4591fc1dd9485bedb304\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}', 'on'),
(169, 'finished_updating_comment_type', '1', 'auto'),
(171, 'db_upgraded', '', 'on'),
(173, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.8.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.8.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.8.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.8.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.2\";s:7:\"version\";s:5:\"6.8.2\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1758173555;s:15:\"version_checked\";s:5:\"6.8.2\";s:12:\"translations\";a:0:{}}', 'off'),
(179, 'can_compress_scripts', '1', 'on'),
(180, 'current_theme', 'Dreamstour', 'auto'),
(181, 'theme_mods_dreamstour', 'a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:16;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1757578658;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:12:\"blog-sidebar\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}}}}', 'on'),
(182, 'theme_switched', '', 'auto'),
(183, 'recovery_mode_email_last_sent', '1758173923', 'auto'),
(192, '_site_transient_wp_plugin_dependencies_plugin_data', 'a:0:{}', 'off'),
(193, 'recently_activated', 'a:0:{}', 'off'),
(200, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1758177145;s:7:\"checked\";a:2:{s:10:\"dreamstour\";s:3:\"1.0\";s:16:\"twentytwentyfive\";s:3:\"1.3\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.3.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}}s:12:\"translations\";a:0:{}}', 'off'),
(201, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'off'),
(204, 'category_children', 'a:0:{}', 'auto'),
(205, 'site_logo', '16', 'auto'),
(247, '_transient_health-check-site-status-result', '{\"good\":14,\"recommended\":8,\"critical\":0}', 'on'),
(326, 'tour_country_children', 'a:0:{}', 'auto'),
(329, 'tour_duration_days_children', 'a:0:{}', 'auto'),
(332, 'tour_duration_nights_children', 'a:0:{}', 'auto'),
(338, 'tour_activities_children', 'a:0:{}', 'auto'),
(344, 'tour_includes_children', 'a:0:{}', 'auto'),
(350, 'tour_excludes_children', 'a:0:{}', 'auto'),
(454, 'tour_category_children', 'a:0:{}', 'auto'),
(499, 'dreamstour_theme_options', 'a:42:{s:8:\"last_tab\";s:0:\"\";s:13:\"frontend_logo\";a:5:{s:3:\"url\";s:82:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/themes/dreamstour/assets/images/logo.svg\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:9:\"logo_dark\";a:5:{s:3:\"url\";s:87:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/themes/dreamstour/assets/images/logo-dark.svg\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:16:\"breadcrumb_image\";a:5:{s:3:\"url\";s:91:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/themes/dreamstour/assets/images/breadcrumb-02.jpg\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"contact_phone\";s:14:\"+1 56565 56594\";s:13:\"contact_email\";s:16:\"[email protected]\";s:21:\"header_add_tours_page\";s:2:\"24\";s:17:\"header_login_link\";s:2:\"80\";s:20:\"header_register_link\";s:2:\"85\";s:18:\"header_forget_link\";s:2:\"87\";s:15:\"body_typography\";a:8:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:13:\"h1_typography\";a:8:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:13:\"h2_typography\";a:8:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:13:\"h3_typography\";a:8:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:13:\"h4_typography\";a:8:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:13:\"h5_typography\";a:8:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:13:\"h6_typography\";a:8:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:17:\"footer_image_back\";a:5:{s:3:\"url\";s:84:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/themes/dreamstour/assets/images/footer.svg\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:20:\"footer_column1_title\";s:5:\"Pages\";s:20:\"footer_column1_menus\";a:1:{i:0;s:2:\"36\";}s:20:\"footer_column2_title\";s:7:\"Company\";s:20:\"footer_column2_menus\";a:1:{i:0;s:2:\"37\";}s:20:\"footer_column3_title\";s:12:\"Destinations\";s:20:\"footer_column3_menus\";a:1:{i:0;s:2:\"38\";}s:20:\"footer_column4_title\";s:7:\"Support\";s:20:\"footer_column4_menus\";a:1:{i:0;s:2:\"39\";}s:20:\"footer_column5_title\";s:8:\"Services\";s:20:\"footer_column5_menus\";a:1:{i:0;s:2:\"40\";}s:11:\"footer_logo\";a:5:{s:3:\"url\";s:87:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/themes/dreamstour/assets/images/logo-dark.svg\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:17:\"footer_googleplay\";a:5:{s:3:\"url\";s:88:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/themes/dreamstour/assets/images/googleplay.svg\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:15:\"footer_appstore\";a:5:{s:3:\"url\";s:86:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/themes/dreamstour/assets/images/appstore.svg\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:23:\"footer_customer_support\";s:16:\"Customer Support\";s:30:\"footer_customer_support_number\";s:14:\"+1 56589 54598\";s:23:\"footer_drop_email_label\";s:16:\"Drop Us an Email\";s:17:\"footer_drop_email\";s:16:\"[email protected]\";s:21:\"footer_copyright_text\";s:136:\"<p class=\"fs-14\">Copyright © 2025. All Rights Reserved, <a href=\"javascript:void(0);\" class=\"text-primary fw-medium\">DreamsTour</a></p>\";s:21:\"footers_facebook_link\";s:1:\"#\";s:20:\"footers_twitter_link\";s:1:\"#\";s:22:\"footers_instagram_link\";s:1:\"#\";s:21:\"footers_linkedin_link\";s:1:\"#\";s:22:\"footers_pinterest_link\";s:1:\"#\";s:13:\"payment_cards\";a:6:{i:0;a:8:{s:5:\"title\";s:4:\"Visa\";s:3:\"url\";s:1:\"#\";s:4:\"sort\";s:0:\"\";s:13:\"attachment_id\";s:2:\"96\";s:5:\"image\";s:69:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/card-01.svg\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:5:\"thumb\";s:69:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/card-01.svg\";}i:1;a:8:{s:5:\"title\";s:4:\"Amex\";s:3:\"url\";s:1:\"#\";s:4:\"sort\";s:1:\"1\";s:13:\"attachment_id\";s:2:\"97\";s:5:\"image\";s:69:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/card-02.svg\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:5:\"thumb\";s:69:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/card-02.svg\";}i:2;a:8:{s:5:\"title\";s:8:\"Discover\";s:3:\"url\";s:1:\"#\";s:4:\"sort\";s:1:\"2\";s:13:\"attachment_id\";s:2:\"98\";s:5:\"image\";s:69:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/card-03.svg\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:5:\"thumb\";s:69:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/card-03.svg\";}i:3;a:8:{s:5:\"title\";s:6:\"Master\";s:3:\"url\";s:1:\"#\";s:4:\"sort\";s:1:\"3\";s:13:\"attachment_id\";s:2:\"99\";s:5:\"image\";s:69:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/card-04.svg\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:5:\"thumb\";s:69:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/card-04.svg\";}i:4;a:8:{s:5:\"title\";s:6:\"Stripe\";s:3:\"url\";s:1:\"#\";s:4:\"sort\";s:1:\"4\";s:13:\"attachment_id\";s:3:\"100\";s:5:\"image\";s:69:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/card-05.svg\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:5:\"thumb\";s:69:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/card-05.svg\";}i:5;a:8:{s:5:\"title\";s:6:\"Paypal\";s:3:\"url\";s:1:\"#\";s:4:\"sort\";s:1:\"5\";s:13:\"attachment_id\";s:3:\"101\";s:5:\"image\";s:69:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/card-06.svg\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:5:\"thumb\";s:69:\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/card-06.svg\";}}}', 'auto'),
(500, 'dreamstour_theme_options-transients', 'a:4:{s:14:\"changed_values\";a:1:{s:21:\"header_add_tours_page\";s:0:\"\";}s:9:\"last_save\";i:1758125745;s:13:\"last_compiler\";i:1758125745;s:11:\"last_import\";i:1758125745;}', 'auto'),
(594, 'tour_why_book_children', 'a:0:{}', 'auto'),
(610, '_site_transient_timeout_browser_a3f57bbe21c4e30379228ad7788f224d', '1758774869', 'off'),
(611, '_site_transient_browser_a3f57bbe21c4e30379228ad7788f224d', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"140.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'off'),
(612, '_site_transient_timeout_community-events-d41d8cd98f00b204e9800998ecf8427e', '1758222439', 'off'),
(613, '_site_transient_community-events-d41d8cd98f00b204e9800998ecf8427e', 'a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";b:0;}s:6:\"events\";a:0:{}}', 'off'),
(614, '_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3', '1758213273', 'off');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(615, '_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3', 'a:6:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Sep 2025 18:47: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:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.9-alpha-60779\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:63:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Portland Welcomes WordCamp US 2025: A Community Gathering\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2025/08/portland-welcomes-wcus-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 30 Aug 2025 03:03:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=19074\";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:405:\"A full house of attendees gathered in Portland, Oregon, for WordCamp US 2025, with thousands more tuning in online. Over four days, the flagship WordPress event brought together contributors, innovators, and community members for collaboration, inspiration, and discovery. WordPress is so unique because we’re not just a product; we’re a movement. Matt Mullenweg, WordPress Cofounder […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:66040:\"\n\n\n<p>A full house of attendees gathered in Portland, Oregon, for WordCamp US 2025, with thousands more tuning in online. Over four days, the flagship WordPress event brought together contributors, innovators, and community members for collaboration, inspiration, and discovery.</p>\n\n\n\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-6c531013 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-pullquote\"><blockquote><p>WordPress is so unique because we’re not just a product; we’re a movement.</p><cite>Matt Mullenweg, WordPress Cofounder</cite></blockquote></figure>\n</div>\n\n\n\n<p>The WordPress event began with a dedicated Contributor Day and continued with a Showcase Day and two days of sessions filled with talks, panels, workshops, and community celebrations. WordPress Cofounder Matt Mullenweg joined a diverse lineup of speakers, panelists, and workshop leaders who brought fresh perspectives to the open web from across the globe.</p>\n\n\n\n<p>Set against the vibrant backdrop of Portland — with its iconic bridges, coffee culture, and creative energy — the Sponsor Hall buzzed as companies across the WordPress ecosystem demoed new products, shared insights, and connected with attendees. Each day offered opportunities to refuel with local flavors and international favorites, turning mealtimes into lively hubs of networking and idea-sharing.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Global Gathering in Portland</h2>\n\n\n\n<p>WordCamp US is the annual gathering point for the WordPress community — where collaboration, creativity, and innovation intersect. This year in Portland, the event delivered an expansive program that reached every corner of the ecosystem.</p>\n\n\n\n<p>Here’s what attendees experienced:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Engaging Sessions Across Tracks</strong> – Keynotes, presentations, and discussions explored the evolving web and the role of open source in shaping it.</li>\n\n\n\n<li><strong>A Global Speaker Lineup</strong> – Voices from across continents brought local stories and global visions to the stage.</li>\n\n\n\n<li><strong>Wide-Ranging Topics</strong> – From AI in WordPress development to accessibility, design systems, content strategy, education, and case studies of WordPress at scale.</li>\n\n\n\n<li><strong>Hands-On Learning Opportunities</strong> – Workshops provided practical takeaways, empowering attendees to apply new skills immediately.</li>\n\n\n\n<li><strong>A Community Built on Collaboration</strong> – Whether contributing code, exploring business strategies, or sharing creative projects, attendees found space to learn, grow, and celebrate open source together.</li>\n</ul>\n\n\n\n<p>New contributors took their first steps into open source, seasoned developers explored cutting-edge AI integrations, and agencies and product teams shared strategies for scaling WordPress to meet modern needs. Beyond the technical, conversations around inclusivity, sustainability, and education underscored WordPress’s role as a tool for empowerment and positive change.</p>\n\n\n\n<p>In hallways, coffee lines, and evening meetups, attendees found the “hallway track” alive and well, spontaneous moments of connection that often became the most memorable part of the experience. Whether reconnecting with longtime collaborators or meeting someone new, these small interactions reinforced the heart of WordCamp US: a community that thrives on openness, generosity, and shared purpose.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributor Day: Collaboration at the Core</h2>\n\n\n\n<p>The conference opened on Tuesday, August 26, with a vibrant Contributor Day. Nearly 300 contributors filled the space, including more than 120 first-time participants who were onboarded across 19 teams. Developers, designers, translators, marketers, and community organizers worked side by side, representing WordPress expertise.</p>\n\n\n\n<p>Throughout the day, contributors tackled everything from improving accessibility and performance to refining documentation to enhancing translation tools. Beyond technical contributions, teams like Marketing and Community focused on outreach, mentoring, and shaping future-facing initiatives. Remote participants joined via dedicated channels, reinforcing the inclusive nature of WordPress’s global community. By day’s end, the collective energy was clear: WordPress continues to be built by and for everyone.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped has-black-background-color has-background wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{"imageId":"68cb887023834"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887023834\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19080\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19080\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887023b29"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887023b29\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19081\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19081\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887023e15"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887023e15\" class=\"wp-block-image size-large wp-lightbox-container\"><img decoding=\"async\" width=\"1707\" height=\"2560\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19087\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?fit=683%2C1024&ssl=1\" alt=\"\" class=\"wp-image-19087\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?w=1707&ssl=1 1707w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?resize=200%2C300&ssl=1 200w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?resize=683%2C1024&ssl=1 683w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?resize=768%2C1152&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?resize=1024%2C1536&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?resize=1365%2C2048&ssl=1 1365w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb8870240e3"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb8870240e3\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19084\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19084\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb88702438d"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb88702438d\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19082\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19082\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887024641"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887024641\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19085\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19085\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887024921"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887024921\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19086\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19086\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887024bbb"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887024bbb\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19090\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19090\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887024e9b"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887024e9b\" class=\"wp-block-image size-large wp-lightbox-container\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1707\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19089\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?fit=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19089\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?w=2560&ssl=1 2560w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887025170"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887025170\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19092\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19092\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb88702541f"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb88702541f\" class=\"wp-block-image size-large wp-lightbox-container\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1707\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19088\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?fit=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19088\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?w=2560&ssl=1 2560w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887025700"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887025700\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19091\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19091\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb8870259d1"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb8870259d1\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19083\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19083\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n</figure>\n\n\n\n<p>The mix of experience in the room made this year especially notable. First-time contributors were paired with seasoned table leads who guided them through their first steps into open source contribution. Longtime contributors reconnected with their teams and advanced ongoing initiatives, while new voices added fresh perspectives and momentum. The spirit of mentorship was woven throughout, ensuring that Contributor Day was productive and welcoming.</p>\n\n\n\n<p>The results spoke for themselves:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Polyglots</strong> translated more than 12,000 strings, expanding WordPress’s accessibility worldwide.</li>\n\n\n\n<li>The <strong>Community team</strong> celebrated the approval of two brand-new local meetups.</li>\n\n\n\n<li>The <strong>Training team</strong> achieved its objective of updating outdated course thumbnails.</li>\n\n\n\n<li>The <strong>Core team</strong> worked through a live bug scrub, with 9 committers and 16 contributors collaborating on improvements.</li>\n\n\n\n<li>The <strong>Documentation team</strong> completed numerous content updates to keep resources fresh and reliable.</li>\n</ul>\n\n\n\n<p>Momentum carried through every table, with participants reporting measurable progress and a renewed sense of shared purpose. Contributor Day once again highlighted the unique power of collaboration in shaping the open web, proving that every contribution matters through code, translations, training, or community building.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Showcase Day: WordPress in Action</h2>\n\n\n\n<p>Wednesday, August 27, was the popular Showcase Day, spotlighting real-world innovation in WordPress. Initially expected to draw about 250 participants, Showcase Day welcomed more than 800 attendees — a powerful sign of how much energy and curiosity the community brought to Portland. The sessions demonstrated how WordPress powers meaningful work across industries from nonprofits to newsrooms, agencies to global enterprises, while staying true to open source values.</p>\n\n\n\n<p>The day opened with a keynote by Amy Sample Ward: <em>The Tech That Comes Next</em>. Drawing from their co-authored book with Afua Bruce, Amy highlighted the inequities embedded in today’s technologies — from dataset bias to accessibility gaps — and challenged attendees to rethink how tools are funded, built, and deployed. Their talk invited technologists, funders, and community leaders to imagine a more equitable digital future, rooted in collaboration and shared responsibility.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"WordCamp US 2025 - Amy Sample Ward "The Tech That Comes Next"\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/RKnM75GFZxw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p>From there, <a href=\"https://youtu.be/PGvh7fCOUk0\">Joeleen Kennedy</a> of Human Made shared how Full Site Editing (FSE) shapes the refresh of Wikimedia’s ongoing user experience. Her session <em>Modernizing at Scale</em> detailed how FSE is simplifying workflows, improving accessibility, and making the multilingual platform more sustainable for the long term. Attendees gained a behind-the-scenes look at how one of the world’s largest open knowledge platforms is leveraging WordPress innovation.</p>\n\n\n\n<p><a href=\"https://youtu.be/F4NEPcwGRCI\">Josh Bryant</a> took the stage to explore what happens when Gutenberg leaves the WP-Admin dashboard. His talk, <em>Reimagining WordPress Editing</em>, walked through embedding the block editor into a standalone React application to support Dow Jones’s newsroom workflows. From decoupling Gutenberg to managing custom data stores, the session showcased advanced techniques for scaling editorial tools while maintaining the flexibility of the WordPress ecosystem.</p>\n\n\n\n<p>Hands-on learning was a hallmark of Showcase Day, with Jamie Marsland’s workshop leading participants through building and launching their own professional portfolio sites — no coding required. Attendees left with a fully functioning site, demonstrating WordPress’s continued ability to empower anyone, anywhere, to publish online.</p>\n\n\n\n<p>In the afternoon, Jeffrey Paul’s session <em>Scalable, Ethical AI</em> addressed one of the most pressing topics in today’s digital world: how to integrate AI without sacrificing ownership, privacy, or open standards. Walking participants through practical use cases with ClassifAI and local LLMs, Paul emphasized how WordPress can help content creators harness AI while maintaining autonomy over their data.</p>\n\n\n\n<p>The day closed with a forward-looking community highlight: <a href=\"https://events.wordpress.org/campusconnect/\">WordPress Campus Connect</a>. Panelists <a href=\"https://youtu.be/ARqM9U0ESvo\">Destiny Kanno, Andrés Parra, Javier Montes de Blas, Mauricio Barrantes, and Elineth Morera Campos</a> shared how this initiative brings WordPress into classrooms and universities worldwide. Student Andrés Parra received a scholarship to attend WordCamp. During the panel, Elineth also announced that Fidélitas University will begin offering its students a <a href=\"https://wordpress.org/news/2025/07/introducing-wordpress-credits-a-new-contribution-internship-program-for-university-students/\">WordPress Credits</a> program starting in October 2025, making it a mandatory addition sometime in 2026, enabling them to contribute directly to WordPress as part of their studies.</p>\n\n\n\n<p>By connecting students and educators with the open web, Campus Connect is building the next generation of contributors and innovators, ensuring that WordPress remains both a learning tool and a pathway to opportunity.</p>\n\n\n\n<p>Taken together, Showcase Day affirmed that WordPress is more than just a CMS — it is a platform for equitable technology, global collaboration, cutting-edge enterprise solutions, and the future of digital education. WordPress has the power to be both a platform and a community tool for education, equity, and innovation.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Presentation Days: Learning, Inspiration, and Connection</h2>\n\n\n\n<p>The first full day of sessions at WordCamp US 2025 opened with warm remarks from the organizing team, who reminded attendees: <em>“The most important thanks goes to all of you. The mix of new energy and veteran experience is what makes WordCamp so special, so thank you for being here.”</em> That spirit of gratitude and community carried throughout the event.</p>\n\n\n\n<p>The Sponsor Hall became a hub of activity, complete with raffles, the return of Career Corner, and even a Voodoo Donut Truck parked outside. Attendees lined up to test their luck at a claw machine stuffed with plush Wapuus, while others sought guidance at the Happiness Bar — a hands-on help desk for WordPress questions big and small. Between these activities, the steady buzz of conversations made it clear: the “hallway track” remained one of WordCamp’s most valuable experiences.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"WordCamp US - Danny Sullivan "How (and why!) Google Search Keeps Evolving"\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/ZF_sxLdfTbY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p>The program itself set a high bar. Danny Sullivan’s keynote shed light on how search has evolved to meet the needs of new generations, from 24/7 demand and mobile expectations to short-form video and AI. His session gave attendees a deeper understanding of how search intersects with publishing today and sparked conversations about how WordPress can continue adapting in an era where AI shapes discovery and content.</p>\n\n\n\n<p>From there, the schedule unfolded across multiple tracks. The Core AI panel — featuring <a href=\"https://youtu.be/v_0O6dQ4Q4E\">James LePage, Felix Arntz, and Jeffrey Paul</a> — offered a look into how AI tools are woven into WordPress core. Emphasizing ethics, transparency, and user empowerment, the panel painted a roadmap for how WordPress can adopt new technologies without compromising its open-source values.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?resize=1024%2C576&ssl=1\" alt=\"\" class=\"wp-image-19103\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?resize=1536%2C864&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?w=1600&ssl=1 1600w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>Hands-on learning played a significant role throughout the conference. Ryan Welcher’s interactive <em>Block Developer Cookbook</em> drew a packed room as participants worked through community-selected code recipes built on the latest WordPress APIs. By the end, attendees left with working examples and practical strategies they could bring back to their projects.</p>\n\n\n\n<p>The program also highlighted diverse technical perspectives. <a href=\"https://youtu.be/vBjNqdacbh4\">Jemima Abu’s</a> session, <em>A PHP Developer’s Guide to ReactJS</em>, bridged the gap between classic and modern web development. At the same time, Adam Gazzaley’s keynote, <em>A New Era of Experiential Medicine – AI and the Brain</em>, invited attendees to consider the human side of technology, exploring how digital tools can advance health and well-being.</p>\n\n\n\n<p>The second day of presentations, Friday, August 29, opened with creativity and imagination. <a href=\"https://youtu.be/O7FPiFpRI3o\">John Maeda’s</a> keynote, <em>Cozy AI Cooking: WordCamp Edition</em>, used the metaphor of a kitchen to demystify AI, blending storytelling with technical insight to show how curiosity and care can guide builders in integrating AI into their work.</p>\n\n\n\n<p>Later in the day, <a href=\"https://youtu.be/ORnJTpjA-4w\">Tammie Lister’s</a> <em>The System is the Strategy</em> illustrated how design systems provide structure and scalability for growing WordPress projects. At the same time, Adam Silverstein’s Unlock Developer Superpowers with AI showcased new ways developers can use emerging tools to speed up workflows and problem-solving.</p>\n\n\n\n<p>Community stories also took center stage. In Creators around a Campfire, Anne McCarthy, Jamie Marsland, Christian Taylor, Mark Szymanski, and Michael Cunningham reflected on how YouTubers and content creators shape the WordPress ecosystem. Their session highlighted the role of storytelling and education in expanding WordPress’s reach to new audiences worldwide.</p>\n\n\n\n<p>The Sponsor Hall remained lively between sessions — with attendees meeting companies, testing demos, and swapping ideas that extended far beyond the conference halls. They also shared moments together at the arcade built for the event and added smiles, hugs, and laughter, which underscored the atmosphere: WordCamp US was as much about connection as code.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Together Into the Future</h2>\n\n\n\n<p>As the event drew to a close, WordPress Cofounder Matt Mullenweg took the stage to share the current state of WordPress and a vision for its future. He highlighted the growth in social media for WordPress with 124,726 new followers since last WCUS — and the WordPress.org website growing over 10% in users along with almost 20% in new users. </p>\n\n\n\n<p>Matt also spotlighted community initiatives shaping the future of open source education and diversity: WordPress Campus Connect, which has already reached 570 students across 11 events. Combined with the growth in overall events (77) which is a 32.76% increase over 2024. Each effort reinforced the message that WordPress is more than software; it is a global movement driven by people.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"WordCamp US 2025 - Ma.tt Mullenweg "Keynote Address & Q&A"\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/45HRzzc0waU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p>He concluded with a live Q&A, fielding questions from the audience on the direction of WordPress, its role in an AI-driven web, and the importance of keeping the project open, inclusive, and adaptable. The final notes of the keynote carried into a closing party in downtown Portland, where attendees capped off the week with music, conversation, and the unmistakable joy of a community coming together.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Closing</h2>\n\n\n\n<p>WordCamp US 2025 once again demonstrated what makes the WordPress ecosystem extraordinary: a community committed to building tools, resources, and opportunities that empower people everywhere.</p>\n\n\n\n<p>This year also marked the debut of the <a href=\"https://airtable.com/appWF6hdXuEOFQMvV/shrV5RZIv0aJjjU00\">Open Horizons Scholarship</a>, which funded six recipients — two organizers, three volunteers, and one speaker — from five countries. A total of $14,670 supported their journeys to WCUS. The scholarship, which also supports participation at WordCamp Asia and WordCamp Europe, is designed to make flagship events more accessible to contributors worldwide.</p>\n\n\n\n<p>A heartfelt thank you goes to the organizers, volunteers, sponsors, and speakers who brought the Portland edition to life — and to every attendee who joined us in person or followed along online. We hope you leave with fresh ideas, meaningful connections, and renewed energy to help shape the future of the open web.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped has-black-background-color has-background wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width:20px\">\n<figure data-wp-context=\"{"imageId":"68cb887026478"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887026478\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"577\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19112\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948.jpg?resize=1024%2C577&ssl=1\" alt=\"\" class=\"wp-image-19112\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=1024%2C577&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=1536%2C865&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=2048%2C1153&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Gale Wallace</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887026745"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887026745\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19124\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997.jpeg?resize=1024%2C576&ssl=1\" alt=\"\" class=\"wp-image-19124\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997-scaled.jpeg?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997-scaled.jpeg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997-scaled.jpeg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997-scaled.jpeg?resize=1536%2C864&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997-scaled.jpeg?resize=2048%2C1152&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Topher DeRosia</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887026a1f"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887026a1f\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19122\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014.jpeg?resize=1024%2C576&ssl=1\" alt=\"\" class=\"wp-image-19122\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014-scaled.jpeg?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014-scaled.jpeg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014-scaled.jpeg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014-scaled.jpeg?resize=1536%2C864&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014-scaled.jpeg?resize=2048%2C1152&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Topher DeRosia</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887026ce7"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887026ce7\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"577\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19107\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752.jpg?resize=1024%2C577&ssl=1\" alt=\"\" class=\"wp-image-19107\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752-scaled.jpg?resize=1024%2C577&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752-scaled.jpg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752-scaled.jpg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752-scaled.jpg?resize=1536%2C865&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752-scaled.jpg?resize=2048%2C1153&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Gale Wallace</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887026fa3"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887026fa3\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"675\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19108\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?resize=1024%2C675&ssl=1\" alt=\"\" class=\"wp-image-19108\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?resize=1024%2C675&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?resize=300%2C198&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?resize=768%2C506&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?resize=1536%2C1012&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?w=1764&ssl=1 1764w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Gale Wallace</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887027240"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887027240\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19113\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076.jpeg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19113\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076-scaled.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076-scaled.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076-scaled.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076-scaled.jpeg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076-scaled.jpeg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb88702750e"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb88702750e\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"433\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19106\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809.jpeg?resize=1024%2C433&ssl=1\" alt=\"\" class=\"wp-image-19106\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809-scaled.jpeg?resize=1024%2C433&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809-scaled.jpeg?resize=300%2C127&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809-scaled.jpeg?resize=768%2C325&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809-scaled.jpeg?resize=1536%2C650&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809-scaled.jpeg?resize=2048%2C866&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Topher DeRosia</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb88702782d"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb88702782d\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19110\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19110\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887027b5d"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887027b5d\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19119\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827.jpeg?resize=1024%2C576&ssl=1\" alt=\"\" class=\"wp-image-19119\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827-scaled.jpeg?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827-scaled.jpeg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827-scaled.jpeg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827-scaled.jpeg?resize=1536%2C864&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827-scaled.jpeg?resize=2048%2C1152&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Topher DeRosia</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887027e10"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887027e10\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"19133\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?resize=1024%2C576&ssl=1\" alt=\"\" class=\"wp-image-19133\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?resize=1536%2C864&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n</figure>\n\n\n\n<p>Be sure to mark your calendars for the next global gatherings: <a href=\"https://asia.wordcamp.org/2026/\">WordCamp Asia 2026</a> in Mumbai, India, <a href=\"https://europe.wordcamp.org/2026/\">WordCamp Europe 2026</a> in Kraków, Poland, and WordCamp US 2026 in Phoenix, Arizona. We can’t wait to see you at the next chapter of the WordPress story.</p>\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"19074\";s: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:60:\"Portland, Are You Ready? The WCUS 2025 Schedule Has Arrived!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2025/08/portland-are-you-ready-the-wcus-2025-schedule-has-arrived/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Aug 2025 20:03: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:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:4:\"WCUS\";s: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:\"WordCamps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19004\";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:402:\"We’re excited to announce that the full schedule for WordCamp US 2025 has been published! From August 26–29 in Portland, Oregon, join web creators, innovators, and community leaders for four days of learning, collaboration, and inspiration. This year’s lineup brings together sessions on everything from cutting-edge AI to hands-on workshops, performance, accessibility, design, and the […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5698:\"\n<p>We’re excited to announce that the full schedule for WordCamp US 2025 has been published! From August 26–29 in Portland, Oregon, join web creators, innovators, and community leaders for four days of learning, collaboration, and inspiration. This year’s lineup brings together sessions on everything from cutting-edge AI to hands-on workshops, performance, accessibility, design, and the future of WordPress.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/ScheduleHeader.png?resize=1024%2C576&ssl=1\" alt=\"\" class=\"wp-image-19026\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/ScheduleHeader-scaled.png?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/ScheduleHeader-scaled.png?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/ScheduleHeader-scaled.png?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/ScheduleHeader-scaled.png?resize=1536%2C864&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/ScheduleHeader-scaled.png?resize=2048%2C1152&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"has-text-align-center\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><strong>Check out the full schedule and start planning your WordCamp experience.</strong></p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link has-blue-1-background-color has-background wp-element-button\" href=\"https://us.wordcamp.org/2025/schedule/\">View The Schedule</a></div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">Contributor Day — Connect, Collaborate, and Give Back</h2>\n\n\n\n<p>Kicking off the week on Tuesday, August 26 is Contributor Day, it is your chance to roll up your sleeves and make a direct impact on WordPress. Whether you’re a seasoned developer, creative designer, translator, marketer, or simply passionate about open source, there’s a place for you to get involved. Join WordPress teams working on real projects, share your skills, and connect with people across the global community. Contributor Day is also a fantastic place for hiring managers or business owners to meet emerging talent and see contributors in action. Lunch is provided, and both in-person and select remote participation options are available. If you’ve ever wanted to help shape the future of WordPress, this is your moment!<br></p>\n\n\n\n<p>Read more: <a href=\"https://us.wordcamp.org/2025/schedule/#contributor-day\">Start planning your Contributor Day activities >></a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Showcase Day — See WordPress in Action</h2>\n\n\n\n<p>Showcase Day on Wednesday, August 27, shines a spotlight on what’s possible with WordPress. Get inspired by live demos, case studies, and actionable presentations from experts and innovators using WordPress in creative and impactful ways. You’ll see how changemakers, nonprofits, publishers, and agencies use WordPress to solve real-world problems, build new products, and drive the web forward. Highlights include hands-on workshops, technical talks, and practical sessions covering everything from design systems to modern AI. It’s a full day dedicated to celebrating the talent, creativity, and innovation of the WordPress community.</p>\n\n\n\n<p>Read more: <a href=\"https://us.wordcamp.org/2025/schedule/#showcase-day\">See where these inspirational showcases take you >></a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Conference Days — Learn, Connect, and Level Up</h2>\n\n\n\n<p>The main event days for Thursday and Friday, August 28-29, feature a robust mix of technical deep-dives, product masterclasses, and sessions designed for all experience levels. Whether you’re a developer, designer, business owner, or just starting out, you’ll find plenty to explore—from future-focused discussions on AI and performance to hands-on workshops and networking events that bring the community together.</p>\n\n\n\n<p><strong>Keynote Highlights:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Amy Sample Ward, CEO of NTEN:</strong> The Tech That Comes Next: How Changemakers, Philanthropists, and Technologists Can Build an Equitable World. Featured Wednesday, August 27.</li>\n\n\n\n<li><strong>Danny Sullivan, from Google Search</strong>: Industry leader, featured Thursday, August 28.</li>\n\n\n\n<li><strong>Matt Mullenweg, Co-founder of WordPress:</strong> Featured Friday, August 29.</li>\n\n\n\n<li>More keynotes announcing soon!</li>\n</ul>\n\n\n\n<p>With dozens of sessions across multiple tracks, plus workshops and networking opportunities, WordCamp US is set to be an unforgettable experience. Don’t miss your chance to connect, share ideas, and help shape the future of the web.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center\"><strong>Check out the full schedule and start planning your WordCamp experience.</strong></p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link has-blue-1-background-color has-background wp-element-button\" href=\"https://us.wordcamp.org/2025/schedule/\">View The Schedule</a></div>\n</div>\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"19004\";s: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:63:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Maintenance Releases for WordPress branches 4.7 to 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:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wordpress.org/news/2025/08/maintenance-releases-for-wordpress-branches-4-7-to-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:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Aug 2025 19:11:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:14:\"minor-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: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=18997\";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:374:\"Following on from the WordPress 6.8.2 maintenance release last month, the included update to the root security certificate bundle has been backported to all branches back to 4.7. This ensures that when your site performs server-side HTTP requests, the most up-to-date information about trusted security certificates is used. Further information can be found on the […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"John Blackbourn\";s: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:2119:\"\n<p>Following on from <a href=\"https://wordpress.org/news/2025/07/wordpress-6-8-2-maintenance-release/\">the WordPress 6.8.2 maintenance release last month</a>, the included update to the root security certificate bundle has been backported to all branches back to 4.7. This ensures that when your site performs server-side HTTP requests, the most up-to-date information about trusted security certificates is used. Further information can be found on <a href=\"https://core.trac.wordpress.org/ticket/62811\">the Core Trac ticket</a>.</p>\n\n\n\n<p>A new maintenance release for each branch from 4.7 to 6.7 is now available. If you have sites on these branches and they support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>The latest and only supported version of WordPress remains as 6.8.2. This is being done as a courtesy for sites still running older versions of WordPress. You can <a href=\"https://wordpress.org/wordpress-6.8.2.zip\">download WordPress 6.8.2 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>Special thanks to <a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a>, <a href=\'https://profiles.wordpress.org/ocean90/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ocean90</a>, <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a>, <a href=\'https://profiles.wordpress.org/peterwilsoncc/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>peterwilsoncc</a>, <a href=\'https://profiles.wordpress.org/jorbin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jorbin</a>, <a href=\'https://profiles.wordpress.org/estelaris/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>estelaris</a>, and <a href=\'https://profiles.wordpress.org/johnbillion/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>johnbillion</a> for backporting and releasing this update.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18997\";s: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:63:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 6.8.2 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2025/07/wordpress-6-8-2-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Jul 2025 15:41: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:14:\"minor-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: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=18903\";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:357:\"WordPress 6.8.2 is now available! This minor release includes fixes for 20 Core tickets and 15 Block Editor issues. For a full list of bug fixes, please refer to the release candidate announcement. WordPress 6.8.2 is a short-cycle maintenance release. More maintenance releases may be made available throughout 2025. If you have sites that support […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10720:\"\n<h2 class=\"wp-block-heading\">WordPress 6.8.2 is now available!</h2>\n\n\n\n<p>This minor release includes fixes for <a href=\"https://core.trac.wordpress.org/query?resolution=fixed&milestone=6.8.2&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">20 Core tickets</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/70557\">15 Block Editor issues</a>. For a full list of bug fixes, please refer to the <a href=\"https://make.wordpress.org/core/2025/07/08/wordpress-6-8-2-rc1-is-now-available/\">release candidate announcement.</a></p>\n\n\n\n<p>WordPress 6.8.2 is a short-cycle maintenance release. More maintenance releases may be made available throughout 2025.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.8.2.zip\">download WordPress 6.8.2 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-8-2\">visit the HelpHub version page</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Dropping security updates for WordPress versions 4.1 through 4.6</h2>\n\n\n\n<p>This is not directly related to the 6.8.2 maintenance release, but <a href=\"https://wordpress.org/news/2025/06/dropping-security-updates-for-wordpress-versions-4-1-through-4-6/\">branches 4.1 to 4.6 had their final release today</a>. These branches won’t receive any security update anymore.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>WordPress 6.8.2 was led by <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a> and <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a>.</p>\n\n\n\n<p>Special thanks to <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a>, <a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a>, <a href=\'https://profiles.wordpress.org/mamaduka/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mamaduka</a>, <a href=\'https://profiles.wordpress.org/wildworks/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>wildworks</a> and <a href=\'https://profiles.wordpress.org/jorbin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jorbin</a> for their help on specific release tasks.</p>\n\n\n\n<p>WordPress 6.8.2 would not have been possible without the contributions of the following 96 people. Their asynchronous coordination to deliver maintenance fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-medium has-white-color has-midnight-gradient-background has-text-color has-background has-link-color has-normal-font-size wp-elements-2ad7deb15a87fd29427f001e4c18a1ac\"><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/zieladam\">Adam Zieliński</a>, <a href=\"https://profiles.wordpress.org/wildworks\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/alexstine\">Alex Stine</a>, <a href=\"https://profiles.wordpress.org/anatolbroder\">Anatol Broder</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/ankitkumarshah\">Ankit Kumar Shah</a>, <a href=\"https://profiles.wordpress.org/annezazu\">annezazu</a>, <a href=\"https://profiles.wordpress.org/azharderaiya\">Azhar Deraiya</a>, <a href=\"https://profiles.wordpress.org/benjamingosset\">Benjamin Gosset</a>, <a href=\"https://profiles.wordpress.org/bhubbard\">Brandon Hubbard</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brhodes\">brhodes</a>, <a href=\"https://profiles.wordpress.org/poena\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/czarate\">Chris Zarate</a>, <a href=\"https://profiles.wordpress.org/courane01\">Courtney Robertson</a>, <a href=\"https://profiles.wordpress.org/talldanwp\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/darshitrajyaguru97\">Darshit Rajyaguru</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/dhruvang21\">Dhruvang21</a>, <a href=\"https://profiles.wordpress.org/dilipbheda\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/divinenephron\">divinenephron</a>, <a href=\"https://profiles.wordpress.org/dustintechsmith\">dustintechsmith</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/im3dabasia1\">Eshaan Dabasiya</a>, <a href=\"https://profiles.wordpress.org/estelaris\">Estela Rueda</a>, <a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy\">Fabian Kägy</a>, <a href=\"https://profiles.wordpress.org/faisalahammad\">Faisal Ahammad</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/guddu1315\">Gaurang Dabhi</a>, <a href=\"https://profiles.wordpress.org/mamaduka\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/gernberg\">gernberg</a>, <a href=\"https://profiles.wordpress.org/gziolo\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/harshgajipara\">Harsh Gajipara</a>, <a href=\"https://profiles.wordpress.org/helgatheviking\">HelgaTheViking</a>, <a href=\"https://profiles.wordpress.org/abcd95\">Himanshu Pathak</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/JeffPaul\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jdy68\">Jenny Dupuy</a>, <a href=\"https://profiles.wordpress.org/luminuu\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/jigarpanchal\">Jigar Panchal</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/mindctrl\">John Parris</a>, <a href=\"https://profiles.wordpress.org/jonsurrell\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/kausaralm\">Kausar Alam</a>, <a href=\"https://profiles.wordpress.org/kishanjasani\">Kishan Jasani</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/pfefferle\">Matthias Pfefferle</a>, <a href=\"https://profiles.wordpress.org/megane9988\">megane9988</a>, <a href=\"https://profiles.wordpress.org/mosescursor\">Moses Cursor Ssebunya</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/mwillman1991\">mwillman1991</a>, <a href=\"https://profiles.wordpress.org/bugnumber9\">Nazar Hotsa</a>, <a href=\"https://profiles.wordpress.org/nidhidhandhukiya\">nidhidhandhukiya</a>, <a href=\"https://profiles.wordpress.org/nikunj8866\">Nikunj Hatkar</a>, <a href=\"https://profiles.wordpress.org/oferlaor\">oferlaor</a>, <a href=\"https://profiles.wordpress.org/oglekler\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/paulstanos\">paulstanos</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/puggan\">puggan</a>, <a href=\"https://profiles.wordpress.org/ravigadhiyawp\">Ravi Gadhiya</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rollybueno\">Rolly Bueno</a>, <a href=\"https://profiles.wordpress.org/room34\">room34</a>, <a href=\"https://profiles.wordpress.org/sainathpoojary\">Sainath Poojary</a>, <a href=\"https://profiles.wordpress.org/sajjad67\">Sajjad Hossain Sagor</a>, <a href=\"https://profiles.wordpress.org/Sam_a\">sam_a</a>, <a href=\"https://profiles.wordpress.org/sandeepdahiya\">Sandeep Dahiya</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shanemuir\">Shane Muirhead</a>, <a href=\"https://profiles.wordpress.org/siliconforks\">siliconforks</a>, <a href=\"https://profiles.wordpress.org/sirlouen\">SirLouen</a>, <a href=\"https://profiles.wordpress.org/sabernhardt\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/sukhendu2002\">Sukhendu Sekhar Guria</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/TobiasBg\">Tobias Bäthge</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/ugyensupport\">Ugyen Dorji</a>, <a href=\"https://profiles.wordpress.org/uxl\">uxl</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/whaze\">whaze</a>, <a href=\"https://profiles.wordpress.org/getsyash\">Yash B</a>, <a href=\"https://profiles.wordpress.org/yogeshbhutkar\">Yogesh Bhutkar</a>, and <a href=\"https://profiles.wordpress.org/zunaid321\">Zunaid Amin</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation on Slack, in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C080HLPP2Q6\">#6-8-release-leads</a> channels. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p class=\"has-text-align-right\"><em>Thanks to <a href=\'https://profiles.wordpress.org/estelaris/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>estelaris</a> and <a href=\'https://profiles.wordpress.org/zunaid321/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>zunaid321</a> for proofreading.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18903\";s: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: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:71:\"Celebrating Kim Parsell: 2025 WordCamp US Scholarship Applications Open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wordpress.org/news/2025/07/kim-parsell-2025-wcus-scholarship-applications-open/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Jul 2025 18:57: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: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:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=18911\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:364:\"The WordPress Foundation is pleased to announce the return of the Kim Parsell Memorial Scholarship for WordCamp US 2025. Applications are being accepted until July 25, 2025. Remembering Kim Parsell Kim Parsell was a dedicated contributor and a beloved member of the WordPress community. Her passion for open source and her welcoming spirit inspired many, […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6224:\"\n<p>The WordPress Foundation is pleased to announce the return of the <strong>Kim Parsell Memorial Scholarship</strong> for WordCamp US 2025. Applications are being accepted until <strong>July 25, 2025</strong>.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"604\" height=\"370\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/07/wpdocs-team-1.webp?resize=604%2C370&ssl=1\" alt=\"\" class=\"wp-image-18912\" style=\"border-width:25px;border-radius:40px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/07/wpdocs-team-1.webp?w=604&ssl=1 604w, https://i0.wp.com/wordpress.org/news/files/2025/07/wpdocs-team-1.webp?resize=300%2C184&ssl=1 300w\" sizes=\"auto, (max-width: 604px) 100vw, 604px\" /></figure>\n\n\n\n<div class=\"wp-block-group has-off-white-2-background-color has-background is-layout-constrained wp-container-core-group-is-layout-6cbf45de wp-block-group-is-layout-constrained\" style=\"margin-top:48px;margin-bottom:48px;padding-top:24px;padding-bottom:24px\">\n<div class=\"wp-block-columns is-not-stacked-on-mobile is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:2%\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:96%\">\n<h2 class=\"wp-block-heading\">Remembering Kim Parsell</h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:40%\">\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"400\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/07/Kim-parsell-twitter-image-2.jpeg?resize=400%2C400&ssl=1\" alt=\"\" class=\"wp-image-18956\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/07/Kim-parsell-twitter-image-2.jpeg?w=400&ssl=1 400w, https://i0.wp.com/wordpress.org/news/files/2025/07/Kim-parsell-twitter-image-2.jpeg?resize=300%2C300&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/07/Kim-parsell-twitter-image-2.jpeg?resize=150%2C150&ssl=1 150w\" sizes=\"auto, (max-width: 400px) 100vw, 400px\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:60%\">\n<p>Kim Parsell was a dedicated contributor and a beloved member of the WordPress community. Her passion for open source and her welcoming spirit inspired many, both online and in person. Each year at WordCamp US, the WordPress Foundation celebrates Kim’s legacy by supporting contributors who share her commitment and enthusiasm. The Kim Parsell Memorial Scholarship aims to make it easier for deserving community members to attend WordCamp US, reflecting Kim’s belief in making WordPress accessible and inclusive for all.</p>\n</div>\n</div>\n\n\n\n<p style=\"padding-top:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10)\">If you’re unfamiliar with Kim’s story or her invaluable role in the community, we encourage you to <a href=\"https://us.wordcamp.org/2019/memories-of-kim-parsell/\">read these heartfelt tributes</a> collected from friends and colleagues.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:2%\"></div>\n</div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Scholarship Eligibility</h2>\n\n\n\n<p>This year, a single scholarship will be awarded. To qualify, applicants must:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Identify as a woman</li>\n\n\n\n<li>Be actively involved as a contributor to WordPress</li>\n\n\n\n<li>Have never attended WordCamp US before</li>\n\n\n\n<li>Demonstrate a need for financial support to attend the event</li>\n</ul>\n\n\n\n<p>If you meet these qualifications, we invite you to apply before the July 25 deadline. All applicants will be notified of the decision by August 7, 2025.</p>\n\n\n\n<p>For additional information, visit the <a href=\"https://wordpressfoundation.org/projects/kim-parsell-memorial-scholarship/\">Kim Parsell Memorial Scholarship page</a> hosted by the WordPress Foundation.</p>\n\n\n\n<div class=\"wp-block-group has-off-white-2-background-color has-background is-layout-constrained wp-container-core-group-is-layout-8503c47b wp-block-group-is-layout-constrained\">\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-large-font-size\"><strong>Ready to Apply?</strong></p>\n\n\n\n<div style=\"height:25px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://wordcampcentral.survey.fm/wcus-2025-kim-parsell-scholarship-application\">Submit Your Application Today</a></div>\n</div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"500\" height=\"333\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/07/kim-jose.jpeg?resize=500%2C333&ssl=1\" alt=\"\" class=\"wp-image-18917\" style=\"border-width:25px;border-radius:40px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/07/kim-jose.jpeg?w=500&ssl=1 500w, https://i0.wp.com/wordpress.org/news/files/2025/07/kim-jose.jpeg?resize=300%2C200&ssl=1 300w\" sizes=\"auto, (max-width: 500px) 100vw, 500px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Join the Celebration</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Tickets for WordCamp US 2025 are now available—secure yours soon!</li>\n\n\n\n<li>Volunteer applications are open until July 11, 2025</li>\n\n\n\n<li>Interested in supporting the event? Explore our <a>sponsorship opportunities</a></li>\n</ul>\n\n\n\n<p>Help us spread the word about this opportunity and make WordCamp US 2025 even more special.</p>\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18911\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:63:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"Introducing WordPress Credits: A New Contribution Internship Program for University Students\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2025/07/introducing-wordpress-credits-a-new-contribution-internship-program-for-university-students/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 10 Jul 2025 16:56:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{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: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:2;a:5:{s:4:\"data\";s:17:\"WordPress Credits\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=18913\";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:393:\"The WordPress Foundation is proud to launch WordPress Credits, a contribution-focused internship program that brings university students into the heart of the WordPress open source project. While WordPress thrives on contributions from a global volunteer community, many students and newcomers face barriers to entry, such as a lack of structured guidance or real-world experience in […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"\";}}}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:4712:\"\n<p>The WordPress Foundation is proud to launch WordPress Credits, a contribution-focused internship program that brings university students into the heart of the WordPress open source project. While WordPress thrives on contributions from a global volunteer community, many students and newcomers face barriers to entry, such as a lack of structured guidance or real-world experience in open source projects. This new program is designed to bridge that gap, nurturing future contributors and ensuring WordPress remains innovative, inclusive, and sustainable for years to come.</p>\n\n\n\n<p>The <a href=\"https://gamma.app/docs/EN-WordPress-Credits-vz0k2vr1ulg91qq?mode=doc\">pilot program</a>, developed in partnership with the University of Pisa, was announced on stage at WordCamp Europe 2025 by Matt Mullenweg and Mary Hubbard. Since then, it has attracted interest from students across various fields of study, including humanities, computer science, and communication. Companies in the WordPress ecosystem have also expressed support and interest in contributing to the project. In response to the growing interest from both community members and academic institutions, we are now inviting more universities to join the initiative.</p>\n\n\n\n<p>Open to students from all fields of study, the program blends structured onboarding with a personalized contribution project. Activities are adapted to each student’s degree program and familiarity with WordPress, aiming to develop transferable skills, academic-related competencies, and active participation in the WordPress community. Internship durations may vary depending on the university or educational institution. Some may align with academic semesters (typically 3–4 months), while others, like the University of Pisa, allow students to sign up year-round with a requirement to complete a set number of contribution hours (e.g. 150 hours). Flexible arrangements can be discussed to meet the specific requirements of each institution.</p>\n\n\n\n<p>Foundational Training includes:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>An introduction to open source principles and the WordPress Foundation</li>\n\n\n\n<li>Getting familiar with community tools (Slack, Make blogs, Learn platform, GitHub)</li>\n\n\n\n<li>Setting up a personal WordPress site and publishing content</li>\n</ul>\n\n\n\n<p>Each student will choose a contribution area and design their own personal project within that area. Examples of possible projects include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Translating interfaces or documentation</li>\n\n\n\n<li>Creating multilingual subtitles for educational videos</li>\n\n\n\n<li>Contributing code or performing testing</li>\n\n\n\n<li>Supporting product development or design</li>\n\n\n\n<li>Writing or editing content</li>\n\n\n\n<li>Assisting with community event organization</li>\n\n\n\n<li>Developing training materials for Learn WordPress</li>\n\n\n\n<li>Creating open source tools</li>\n\n\n\n<li>And much more…<br></li>\n</ul>\n\n\n\n<p>Interns are guided by an experienced mentor specific to their chosen area and supported by a dedicated WordPress Foundation contact person throughout the program. All student contributions, whether code, translations, documentation, or educational materials, will be publicly visible and integrated into official WordPress projects and resources, directly benefiting the wider community.</p>\n\n\n\n<p><strong>Interested universities and educational institutions</strong> interested in participating can reach out by filling <a href=\"https://airtable.com/appIzQKfwTn5dyPVp/shrYvY0CDNIkILIre\">the interest form</a>.</p>\n\n\n\n<p>We also invite companies in the WordPress ecosystem to support this initiative by sponsoring mentors who will guide and empower the next generation of contributors, or by providing tools and resources that help students succeed in their contribution journey. </p>\n\n\n\n<p><strong>If your company is interested in getting involved</strong>, please visit the <a href=\"https://make.wordpress.org/handbook/wordpress-credits-contribution-internship-program/get-involved-company-guide/\">Company Guide</a> to learn more and <a href=\"https://airtable.com/appIzQKfwTn5dyPVp/shrKDkjeUdw8Fof34\">fill out the form</a> to join the program.</p>\n\n\n\n<p><em>By welcoming students, mentors, sponsors, and volunteers into this initiative, we are building a stronger and more connected WordPress community. Each person who takes part, whether they guide a student, share their experiences, provide sponsorship, or simply help spread the word, helps ensure that open source remains vibrant and accessible for all. Together, we are not just supporting individual contributors; we are shaping the future of WordPress and open source itself.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18913\";s: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:63:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WordCamp US 2025: See You in Portland, Oregon!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/news/2025/06/wordcamp-us-2025-see-you-in-portland-oregon/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Jun 2025 18:14: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:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"WCUS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=18884\";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:383:\"WordCamp US 2025 is heading to vibrant Portland, Oregon, from August 26–29, 2025! Join fellow open source enthusiasts, developers, designers, and WordPress professionals from across the United States and around the world for four days of learning, networking, and collaboration at the Oregon Convention Center. Nestled in the Pacific Northwest, Portland is famous for its […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8274:\"\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/wordcamp-us-2025-portland.png?resize=1024%2C576&ssl=1\" alt=\"\" class=\"wp-image-18885\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/wordcamp-us-2025-portland.png?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/wordcamp-us-2025-portland.png?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/wordcamp-us-2025-portland.png?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/wordcamp-us-2025-portland.png?w=1200&ssl=1 1200w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>WordCamp US 2025 is heading to vibrant Portland, Oregon, from August 26–29, 2025! Join fellow open source enthusiasts, developers, designers, and WordPress professionals from across the United States and around the world for four days of learning, networking, and collaboration at the Oregon Convention Center.</p>\n\n\n\n<p>Nestled in the Pacific Northwest, Portland is famous for its creative spirit, lush green spaces, and riverside trails, making it an inspiring backdrop for this year’s WordCamp. Whether building your first site or leading a digital agency, WordCamp US offers something for everyone, all set against the city’s stunning natural scenery.</p>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-layout-constrained wp-container-core-group-is-layout-8503c47b wp-block-group-is-layout-constrained\">\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-large-font-size\"><img src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f39f.png\" alt=\"🎟\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <strong>Tickets are limited—secure yours today!</strong></p>\n\n\n\n<div style=\"height:25px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://us.wordcamp.org/2025/tickets/\">Get your ticket now</a></div>\n</div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">What to Expect</h2>\n\n\n\n<h3 class=\"wp-block-heading\">Contributor Day: August 26</h3>\n\n\n\n<p>Kick off your WordCamp US experience by giving back. Contributor Day welcomes all skill levels to collaborate on teams that help make WordPress better, from code to community to documentation. You can make a difference to the project, and build new friendships or rekindle old ones, perhaps even while enjoying views of Portland’s skyline and tree-lined streets.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Main Conference: August 27–29</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Showcase Day – August 27</h4>\n\n\n\n<p>As part of the main conference, day one will give us a look at project showcases, discover innovative uses of WordPress, see how people push the platform’s boundaries, and get inspired to try something new.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Session Days + Expo Hall – August 28-29</h4>\n\n\n\n<p>Experience another two days filled with inspiring keynotes, practical sessions, and deep dives into the latest trends in web development, design, content, accessibility, and more. Hear from some of the brightest minds in the WordPress ecosystem and explore topics that get to the heart of what makes WordPress unique. Also, take some time to explore the main floors of WCUS, like the Sponsors Hall.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Networking and Community</h3>\n\n\n\n<p>Meet WordPress friends new and old, exchange ideas with community leaders, and collaborate with people who share your passion for open source. Enjoy daily lunches and a memorable social event, all included with your ticket. Stroll along the Willamette River or explore nearby parks in between sessions.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Venue & Accommodations</h3>\n\n\n\n<p>This year, we’re gathering at the Oregon Convention Center in the heart of Portland—a city known for its vibrant neighborhoods and abundant green spaces. We’ve secured a special hotel block right across the street at the Hyatt Regency Portland for convenient, comfortable lodging during your stay.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><img src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f3e2.png\" alt=\"🏢\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></strong> <strong>Oregon Convention Center<br></strong>777 NE Martin Luther King Jr Blvd<br>Portland, OR 97232<br></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f6cf.png\" alt=\"🛏\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <strong>Hyatt Regency Portland</strong><br>375 NE Holladay Street<br>Portland, OR 97232<br><a href=\"https://www.hyatt.com/en-US/group-booking/PDXRP/G-CAMP\">Book your room!</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Registration and Tickets</h2>\n\n\n\n<p>Registration officially kicked off last month. Secure your spot early; tickets are selling quickly.</p>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-layout-constrained wp-container-core-group-is-layout-8503c47b wp-block-group-is-layout-constrained\">\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-large-font-size\"><img src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f39f.png\" alt=\"🎟\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <strong>Tickets are limited—secure yours today!</strong></p>\n\n\n\n<div style=\"height:25px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://us.wordcamp.org/2025/tickets/\">Get your ticket now</a></div>\n</div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Ready to Plan Your WordCamp US Experience?</h2>\n\n\n\n<p>Keep checking the <a href=\"https://us.wordcamp.org/2025/\">WordCamp US site</a> for travel tips, to book accommodations, and to watch for the whole event schedule—coming soon! While here, why not plan to take in some of Portland’s scenic hiking trails, bike-friendly streets, or local food scene?</p>\n\n\n\n<p>Stay tuned for updates and announcements on <a href=\"https://make.wordpress.org/marketing/handbook/social-media/\">WordPress social media channels</a>, and join the conversation.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help Us Spread the Word!</h3>\n\n\n\n<p>Whether attending in person or following along online, share your experience and help welcome others to the WordPress community. Use the #WCUS and #WordPress hashtags and tell your story on social!</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/wordcamp-us.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18898\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/wordcamp-us.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/wordcamp-us.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/wordcamp-us.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/wordcamp-us.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/wordcamp-us.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>Portland is calling—see you at WordCamp US 2025! <img src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f332.png\" alt=\"🌲\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18884\";s: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: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:64:\"Dropping security updates for WordPress versions 4.1 through 4.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wordpress.org/news/2025/06/dropping-security-updates-for-wordpress-versions-4-1-through-4-6/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Jun 2025 15:26: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:8:\"category\";a:2:{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:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18872\";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:331:\"As of July 2025, the WordPress Security Team will no longer provide security updates for WordPress versions 4.1 through 4.6. These versions were first released nine or more years ago and over 99% of WordPress installations run a more recent version. The chances this will affect your site, or sites, is very small. If 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"John Blackbourn\";s: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:3132:\"\n<p>As of July 2025, the WordPress Security Team will no longer provide security updates for WordPress versions 4.1 through 4.6.</p>\n\n\n\n<p>These versions were first released nine or more years ago and over 99% of WordPress installations run a more recent version. The chances this will affect your site, or sites, is very small.</p>\n\n\n\n<p>If you are unsure if you are running an up-to-date version of WordPress, please log in to your site’s dashboard. Out of date versions will display a notice that looks like this:</p>\n\n\n\n<figure class=\"wp-block-image size-full has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1048\" height=\"122\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/09/WordPress-681-update-notice.png?resize=1048%2C122&ssl=1\" alt=\"Dashboard notice: "WordPress 6.8.1 is available! Please update now."\" class=\"has-border-color has-luminous-vivid-amber-border-color wp-image-18873\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/WordPress-681-update-notice.png?w=1048&ssl=1 1048w, https://i0.wp.com/wordpress.org/news/files/2022/09/WordPress-681-update-notice.png?resize=300%2C35&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/09/WordPress-681-update-notice.png?resize=1024%2C119&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/09/WordPress-681-update-notice.png?resize=768%2C89&ssl=1 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>The version you are running is displayed in the bottom of the “At a Glance” section of the dashboard.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"281\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/09/at-a-glance-wp-4141.png?resize=1024%2C281&ssl=1\" alt=\"At a glance widget showing a site running WordPress 4.1.41\" class=\"has-border-color has-cyan-bluish-gray-border-color wp-image-18875\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/at-a-glance-wp-4141.png?resize=1024%2C281&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/09/at-a-glance-wp-4141.png?resize=300%2C82&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/09/at-a-glance-wp-4141.png?resize=768%2C211&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/09/at-a-glance-wp-4141.png?resize=1536%2C421&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2022/09/at-a-glance-wp-4141.png?w=1798&ssl=1 1798w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>As a reminder, the only <em>actively</em> supported version of WordPress is the most recent one. Security updates are only backported to older branches as a courtesy.</p>\n\n\n\n<p>The Make WordPress Security blog has further details about <a href=\"https://make.wordpress.org/security/2025/06/18/security-updates-will-cease-for-wordpress-versions-4-1-through-4-6/\" data-type=\"link\" data-id=\"https://make.wordpress.org/security/2025/06/18/security-updates-will-cease-for-wordpress-versions-4-1-through-4-6/\">the process to end support</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18872\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:63:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WCEU 2025: A Community Celebration in the Swiss Sun\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2025/06/wceu-2025-a-community-celebration-in-the-swiss-sun/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 07 Jun 2025 19:19: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:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"WCEU\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=18776\";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:362:\"Over 1,723 attendees from 84 countries gathered at the Messe and Congress Center Basel in Switzerland, and 20,353 more joined online for WordCamp Europe 2025. I’m personally very excited… There’s so much I want to do. I think there’s a clear pathway to 7.0 and beyond. Matt Mullenweg, WordPress Cofounder The flagship WordPress event kicked […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:61400:\"\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/IMG-20250607-WA0151.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18837\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/IMG-20250607-WA0151-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/IMG-20250607-WA0151-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/IMG-20250607-WA0151-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/IMG-20250607-WA0151-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/IMG-20250607-WA0151-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><figcaption class=\"wp-element-caption\"><em>Photo by Nilo Velez</em></figcaption></figure>\n\n\n\n<p>Over 1,723 attendees from 84 countries gathered at the Messe and Congress Center Basel in Switzerland, and 20,353 more joined online for WordCamp Europe 2025.</p>\n\n\n\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-6c531013 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-pullquote\"><blockquote><p>I’m personally very excited… There’s so much I want to do. I think there’s a clear pathway to 7.0 and beyond.</p><cite>Matt Mullenweg, WordPress Cofounder</cite></blockquote></figure>\n</div>\n\n\n\n<p>The flagship WordPress event kicked off in Basel, Switzerland, with a dedicated Contributor Day. It was followed by two days of engaging talks, panels, hands-on workshops, and vibrant community connections. WordPress Cofounder Matt Mullenweg and Executive Director Mary Hubbard joined a diverse lineup of speakers and panelists, sharing insights in the heart of one of Europe’s most charming cities.</p>\n\n\n\n<p>Set against the backdrop of Basel’s historic streets and Rhine-side views, the sponsor hall buzzed with activity as companies from across the WordPress ecosystem showcased their latest innovations, offered live demos, and connected with attendees. Each day, participants refueled with a range of local and international cuisine — from Swiss specialties to global favorites — making mealtime a lively space for networking, collaboration, and sparking new ideas.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Global Gathering in Basel</h2>\n\n\n\n<p>WordCamp Europe has long been one of the most anticipated WordPress events of the year — a space where community, creativity, and collaboration thrive. This year in Basel, the conference delivered an exciting and diverse program that reached every corner of the WordPress ecosystem.</p>\n\n\n\n<p>Here’s what attendees experienced:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Engaging Sessions Across Tracks</strong> – Across two full days, the conference featured informative talks, captivating keynotes, and dynamic discussions exploring WordPress and the broader web.</li>\n\n\n\n<li><strong>A Global Speaker Lineup</strong> – The stage welcomed 52 speakers from 23 countries across five continents, each bringing unique insights and global perspectives.</li>\n\n\n\n<li><strong>Wide-Ranging Topics</strong> – The schedule included 45 sessions and four hands-on workshops across three tracks, covering:\n<ul class=\"wp-block-list\">\n<li>Accessibility and key policy updates like the European Accessibility Act and the Cyber Resilience Act</li>\n\n\n\n<li>The evolving role of Artificial Intelligence in the open web</li>\n\n\n\n<li>Cutting-edge web design, development best practices, SEO, and content strategy</li>\n\n\n\n<li>Real-world case studies and showcases from across the community</li>\n</ul>\n</li>\n\n\n\n<li><strong>Hands-On Learning Opportunities</strong> – Interactive workshops allowed attendees to roll up their sleeves and develop practical skills in a collaborative setting.</li>\n\n\n\n<li><strong>A Community Built on Collaboration</strong> – Whether developer, designer, content creator, or entrepreneur, every attendee found space to connect, learn, and grow within a vibrant and welcoming community.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Contributor Day</h2>\n\n\n\n<p>WordCamp Europe began with a vibrant Contributor Day that brought together 640 contributors—including many first-timers—to collaborate, share knowledge, and support the WordPress project. Guided by 33 dedicated table leads, with 21 teams, attendees of all experience levels came together to exchange ideas, solve real challenges, and make meaningful contributions to open source. From accessibility improvements to theme development and translation efforts, every table played a part in moving WordPress forward.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped has-black-background-color has-background wp-block-gallery-3 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{"imageId":"68cb88704404f"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb88704404f\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18798\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54568125707_c7f1d5c4a2_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18798\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54568125707_c7f1d5c4a2_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568125707_c7f1d5c4a2_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568125707_c7f1d5c4a2_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568125707_c7f1d5c4a2_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568125707_c7f1d5c4a2_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Thanh Nguyen</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887044338"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887044338\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18799\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54568126032_465e58f52e_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18799\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54568126032_465e58f52e_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568126032_465e58f52e_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568126032_465e58f52e_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568126032_465e58f52e_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568126032_465e58f52e_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Jeroen Rotty</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb8870445f4"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb8870445f4\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18800\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54568127677_4608e6c2e5_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18800\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54568127677_4608e6c2e5_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568127677_4608e6c2e5_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568127677_4608e6c2e5_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568127677_4608e6c2e5_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568127677_4608e6c2e5_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Thanh Nguyen</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb88704486e"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb88704486e\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18801\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54568995131_a2b3103540_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18801\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54568995131_a2b3103540_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568995131_a2b3103540_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568995131_a2b3103540_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568995131_a2b3103540_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568995131_a2b3103540_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Roan de Vries</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887044b1d"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887044b1d\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18802\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54568997316_388cdfd4e5_k-1.jpg?resize=1024%2C576&ssl=1\" alt=\"\" class=\"wp-image-18802\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54568997316_388cdfd4e5_k-1.jpg?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568997316_388cdfd4e5_k-1.jpg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568997316_388cdfd4e5_k-1.jpg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568997316_388cdfd4e5_k-1.jpg?resize=1536%2C864&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54568997316_388cdfd4e5_k-1.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Thanh Nguyen</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887044dba"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887044dba\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18803\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54569219743_6bc7238ce1_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18803\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54569219743_6bc7238ce1_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569219743_6bc7238ce1_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569219743_6bc7238ce1_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569219743_6bc7238ce1_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569219743_6bc7238ce1_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Nilo Velez</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb88704505f"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb88704505f\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18804\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54569219883_c2df21a0cb_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18804\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54569219883_c2df21a0cb_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569219883_c2df21a0cb_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569219883_c2df21a0cb_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569219883_c2df21a0cb_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569219883_c2df21a0cb_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Thanh Nguyen</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb8870452eb"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb8870452eb\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18805\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54569220458_b2cc7018a6_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18805\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54569220458_b2cc7018a6_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569220458_b2cc7018a6_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569220458_b2cc7018a6_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569220458_b2cc7018a6_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569220458_b2cc7018a6_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Levente András Tóth</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887045571"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887045571\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18806\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54569220633_32194e94d5_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18806\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54569220633_32194e94d5_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569220633_32194e94d5_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569220633_32194e94d5_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569220633_32194e94d5_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569220633_32194e94d5_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Jeroen Rotty</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887045839"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887045839\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18807\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54569320070_03f700e2a1_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18807\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54569320070_03f700e2a1_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569320070_03f700e2a1_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569320070_03f700e2a1_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569320070_03f700e2a1_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569320070_03f700e2a1_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Levente András Tóth</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887045afc"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887045afc\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18808\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54569320480_cc49061ebc_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18808\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54569320480_cc49061ebc_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569320480_cc49061ebc_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569320480_cc49061ebc_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569320480_cc49061ebc_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569320480_cc49061ebc_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Sebastián Echeverri Jaramillo</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887045df1"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887045df1\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18809\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54569323570_dfb78eb42f_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18809\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54569323570_dfb78eb42f_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569323570_dfb78eb42f_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569323570_dfb78eb42f_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569323570_dfb78eb42f_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569323570_dfb78eb42f_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Thanh Nguyen</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb8870460a9"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb8870460a9\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18810\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/IMG-20250605-WA0137-1.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18810\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/IMG-20250605-WA0137-1-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/IMG-20250605-WA0137-1-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/IMG-20250605-WA0137-1-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/IMG-20250605-WA0137-1-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/IMG-20250605-WA0137-1-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Nilo Velez</figcaption></figure>\n</figure>\n\n\n\n<p>Contributor Day at WordCamp Europe 2025 brought together a mix of first-time and returning contributors across a wide range of teams, from Core and Accessibility to Polyglots, Training, and Community. Attendees tackled everything from onboarding and ticket triage to translating strings, improving documentation, and enhancing tools and workflows. Development-focused teams explored performance and testing improvements and worked through live coding exercises. Meanwhile, accessibility testers, support volunteers, and photo moderators contributed to efforts that directly impact users around the world.</p>\n\n\n\n<p>In parallel, teams like Marketing, Meta, Hosting, and Sustainability focused on future-facing initiatives—from promoting WordPress through the Showcase and social media campaigns to refining infrastructure, increasing accessibility, and preparing for long-term project growth. Whether contributing to plugins, themes, documentation, or new contributor experiences, participants reinforced the values that power the WordPress project: collaboration, inclusivity, and openness. The day served as a reminder that WordPress is not just software—it’s a community built by and for everyone.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Tomorrow Starts with WordPress</h2>\n\n\n\n<p>The first full day of WordCamp Europe 2025 brought the community together to celebrate the power of open source collaboration and innovation. Opening remarks from both global and local event leads reflected on the journey of WordCamp Europe—from its beginnings in 2013 in Leiden, Netherlands, to the vibrant event in Basel today. This full-circle moment underscored the growth of the WordPress community, united by a shared commitment to an open web.</p>\n\n\n\n<p>The day launched into an inspiring program with the keynote session, <em>WordPress Without Borders – The Fight for Digital Freedom</em>, delivered by Noel Tock. Drawing from his experiences—including time on the frontlines in Ukraine—Tock illustrated how open source supports global resilience and serves as a digital human right. His message called on contributors to see their work as part of something greater, offering a compelling and forward-looking vision to energize and unify the WordPress community.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"WordPress without Borders — The Fight for Digital Freedom | Noel Tock\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/tb_A-ABehnY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p>From there, the program unfolded across multiple tracks—each one sparking new conversations and insights. One standout session highlighted social entrepreneurship in Bulgaria, where WordPress is helping grassroots organizations drive change in education, journalism, and social justice. Petya Raykovska shared how nonprofits like Teenovator and the Bulgarian Fund for Women are using WordPress to amplify their work and strengthen their communities.</p>\n\n\n\n<p>Designers and developers explored ways to improve workflows and collaboration. In <em>Bridging Design and Development</em>, attendees learned how Figma Design Systems can connect design and development through shared structures mapped to block themes. Real-world examples, like the Novus Media Newspaper Design System, demonstrated how scalable, consistent design can power multi-brand platforms.</p>\n\n\n\n<p>Workshops played a key role throughout the day, including the interactive <em>Block Developer Cookbook: WCEU 2025 Edition</em>, where attendees worked through community-voted code recipes featuring the latest WordPress APIs. Sessions also dove into emerging technologies, such as <em>Automating WordPress Setup with Modern AI Tools</em>, which showcased how WP-CLI, scripting, and AI can accelerate project setup and reduce repetitive tasks.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18817\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><figcaption class=\"wp-element-caption\"><em>Photo by Marc Wieland</em></figcaption></figure>\n\n\n\n<p>Day Two of WordCamp Europe 2025 opened with a focus on the evolving role of the WordPress community in a rapidly changing digital world. Sessions explored how contributors—from local meetup organizers to global advocates—play a vital part in shaping WordPress’s future. Talks on inclusivity, such as <em>Over the Rainbow</em>, encouraged attendees to consider how individual actions can help build a more welcoming, representative open source ecosystem. Throughout the morning, the spirit of collaboration and shared purpose remained front and center.</p>\n\n\n\n<p>As the day progressed, attention turned to the tools and technologies pushing WordPress forward. From sessions on scaling multilingual sites and managing observability to hands-on workshops, developers explored new ways to streamline workflows and enhance performance. Highlights included <em>WordPress Gems for Devs</em>, which introduced the Interactivity API through live coding, and <em>Client-side Web AI Agents</em>, a look at cutting-edge browser-based AI that unlocks new possibilities for web experiences. These talks reflected the platform’s growing capacity to adapt to emerging trends while staying true to its open foundations.</p>\n\n\n\n<p>The afternoon brought a blend of practical guidance and inspiring stories across tracks. A case study on accessibility from Switzerland showed how thoughtful design can benefit all users, while a session on brand-building for women entrepreneurs highlighted the creative and economic opportunities WordPress enables. With topics spanning content strategy, business growth, regulatory readiness, and more, the second day of WCEU 2025 affirmed the strength of the WordPress ecosystem—not only as a technology platform, but as a global movement fueled by people, purpose, and possibility.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Fireside Chat</h2>\n\n\n\n<p>As the final day drew to a close, Matt and Mary shared some thoughts on EU regulation (Open Web Alliance), AI, and the introduction of the WordPress AI team, and then answered questions from the audience.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"Fireside chat with Q&A | Mary Hubbard and Matt Mullenweg\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/mzJwYejWUbY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Closing</h2>\n\n\n\n<p>A heartfelt thank you to the dedicated organizers who brought WordCamp Europe 2025 to life in Basel, the speakers who shared their insights, the attendees who joined us in person, and those who followed along from afar. We hope you leave with fresh ideas, meaningful connections, and renewed energy to help shape the future of the open web.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-4 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width:20px\">\n<figure data-wp-context=\"{"imageId":"68cb8870467a0"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb8870467a0\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18827\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54571099103_b61e92651c_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18827\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54571099103_b61e92651c_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571099103_b61e92651c_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571099103_b61e92651c_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571099103_b61e92651c_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571099103_b61e92651c_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Jeroen Rotty</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887046a58"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887046a58\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18825\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54570002952_63c3ced847_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18825\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54570002952_63c3ced847_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54570002952_63c3ced847_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54570002952_63c3ced847_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54570002952_63c3ced847_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54570002952_63c3ced847_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Chris Clarke</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887046d5e"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887046d5e\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18824\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54569999382_839ad34def_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18824\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54569999382_839ad34def_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569999382_839ad34def_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569999382_839ad34def_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569999382_839ad34def_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54569999382_839ad34def_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Thanh Nguyen</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887046ff6"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887046ff6\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18823\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54571194430_99b40d9280_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18823\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54571194430_99b40d9280_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571194430_99b40d9280_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571194430_99b40d9280_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571194430_99b40d9280_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571194430_99b40d9280_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Thanh Nguyen</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb88704728c"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb88704728c\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"684\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18822\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54571195715_0e2dbb778c_k.jpg?resize=1024%2C684&ssl=1\" alt=\"\" class=\"wp-image-18822\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54571195715_0e2dbb778c_k.jpg?resize=1024%2C684&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571195715_0e2dbb778c_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571195715_0e2dbb778c_k.jpg?resize=768%2C513&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571195715_0e2dbb778c_k.jpg?resize=1536%2C1025&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571195715_0e2dbb778c_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Maksym Kaharlytskyi</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb8870474f1"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb8870474f1\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"799\" height=\"533\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18821\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54571048019_d36c78cc86_c.jpg?resize=799%2C533&ssl=1\" alt=\"\" class=\"wp-image-18821\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54571048019_d36c78cc86_c.jpg?w=799&ssl=1 799w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571048019_d36c78cc86_c.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571048019_d36c78cc86_c.jpg?resize=768%2C512&ssl=1 768w\" sizes=\"auto, (max-width: 799px) 100vw, 799px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Chris Clarke</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb8870477db"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb8870477db\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18820\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54570870476_a8bef84c32_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18820\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54570870476_a8bef84c32_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54570870476_a8bef84c32_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54570870476_a8bef84c32_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54570870476_a8bef84c32_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54570870476_a8bef84c32_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Atsushi Ando</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887047c51"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887047c51\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18819\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54570001717_fa54bba4e1_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18819\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54570001717_fa54bba4e1_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54570001717_fa54bba4e1_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54570001717_fa54bba4e1_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54570001717_fa54bba4e1_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54570001717_fa54bba4e1_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Nilo Velez</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb887047f3e"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb887047f3e\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18829\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54570869816_7de53cc2f1_k-1.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18829\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54570869816_7de53cc2f1_k-1.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54570869816_7de53cc2f1_k-1.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54570869816_7de53cc2f1_k-1.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54570869816_7de53cc2f1_k-1.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54570869816_7de53cc2f1_k-1.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Jeroen Rotty</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"68cb8870481f7"}\" data-wp-interactive=\"core/image\" data-wp-key=\"68cb8870481f7\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"682\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18859\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/IMG-20250607-WA0337.jpg?resize=1024%2C682&ssl=1\" alt=\"\" class=\"wp-image-18859\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/IMG-20250607-WA0337.jpg?resize=1024%2C682&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/IMG-20250607-WA0337.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/IMG-20250607-WA0337.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/IMG-20250607-WA0337.jpg?resize=1536%2C1023&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/IMG-20250607-WA0337.jpg?w=1600&ssl=1 1600w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n aria-label=\"Enlarge\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on-async--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.imageButtonRight\"\n data-wp-style--top=\"state.imageButtonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button><figcaption class=\"wp-element-caption\">Nilo Velez</figcaption></figure>\n</figure>\n\n\n\n<p>Be sure to mark your calendars for the final major WordPress events in 2025: <a href=\"https://us.wordcamp.org/2025/\">WordCamp US</a> (Portland, Oregon, USA). Then join us in <a href=\"https://europe.wordcamp.org/2026/\">Kraków, Poland for WordCamp Europe 2026</a>! Also, if you want to get involved with WCEU, the call for organisers is already open for 2026. </p>\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18776\";s: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:49:\"Announcing the Formation of the WordPress AI Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wordpress.org/news/2025/05/announcing-the-formation-of-the-wordpress-ai-team/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 27 May 2025 16:28:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"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=18769\";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:397:\"Today, I’m pleased to announce the formation of a new WordPress AI Team, a dedicated group focused on accelerating and coordinating artificial intelligence projects across the WordPress ecosystem. AI is already transforming how people create and manage content online. As this technology evolves, it’s essential that WordPress remains at the forefront, ensuring innovation happens in […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Mary Hubbard\";s: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:2961:\"\n<p>Today, I’m pleased to announce the formation of a new <strong>WordPress AI Team,</strong> a dedicated group focused on accelerating and coordinating artificial intelligence projects across the WordPress ecosystem.</p>\n\n\n\n<p>AI is already transforming how people create and manage content online. As this technology evolves, it’s essential that WordPress remains at the forefront, ensuring innovation happens in the open, guided by community values, and built to core standards.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Why This Matters</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Strategic focus</strong>: A unified team stewards AI development thoughtfully, avoids fragmentation, and ensures alignment with the long-term goals of WordPress. </li>\n\n\n\n<li><strong>Shared innovation</strong>: Contributors and companies are actively exploring AI across the ecosystem. This team provides a central place to collaborate, share ideas, and build together.</li>\n\n\n\n<li><strong>Rapid iteration</strong>: Like the Performance Team, we’ll take a plugin-first approach. <a href=\"https://make.wordpress.org/core/2022/09/11/canonical-plugins-revisited/\">Canonical Plugins</a> will allow us to move quickly, gather feedback, and deliver real value without waiting on the Core release cycle.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">What to Expect</h2>\n\n\n\n<p>The AI Team will:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Coordinate cross-team efforts to explore AI-powered features responsibly and inclusively.</li>\n\n\n\n<li>Publish and maintain a public roadmap of AI initiatives and Canonical Plugins.</li>\n\n\n\n<li>Collaborate closely with Core, Design, Accessibility, and other teams to ensure strong integration and shared standards.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Meet the Team</h2>\n\n\n\n<p>The WordPress AI Team brings deep experience in open-source, performance, and product development and a strong commitment to building AI features the WordPress way. The team will launch with the following team contributors:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>James LePage</strong> – Automattic</li>\n\n\n\n<li><strong>Felix Arntz</strong> – Google</li>\n\n\n\n<li><strong>Pascal Birchler</strong> – Google</li>\n\n\n\n<li><strong>Jeff Paul</strong> – 10up</li>\n</ul>\n\n\n\n<p>To help get things started, James and Felix will serve as the initial <a href=\"https://make.wordpress.org/updates/team-reps/\">Team Reps</a> in supporting team organization, communication, and coordination with other Make WordPress teams.</p>\n\n\n\n<p>This is an exciting and important step in WordPress’s evolution. I look forward to seeing what we’ll create together and in the open.</p>\n\n\n\n<p>If you’re interested in contributing or following along, please join the conversations in <a href=\"https://wordpress.slack.com/archives/C08TJ8BPULS\">#core-ai</a> and watch for upcoming meeting announcements on <a href=\"https://make.wordpress.org/ai/\">https://make.wordpress.org/ai/</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18769\";s: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:\"Thu, 18 Sep 2025 04:34:32 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:\"Wed, 17 Sep 2025 18:47:21 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";i:1727716820;s:21:\"cache_expiration_time\";i:1758213273;s:23:\"__cache_expiration_time\";i:1758213273;}', 'off');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(616, '_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1758213273', 'off'),
(617, '_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1758170073', 'off'),
(618, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1758213275', 'off');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(619, '_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9', 'a:6:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:112:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WPTavern: #185 – Mary Ann Aschenbrenner on Switching Clients From Classic to 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:48:\"https://wptavern.com/?post_type=podcast&p=199566\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://wptavern.com/podcast/185-mary-ann-aschenbrenner-on-switching-clients-from-classic-to-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:45586:\"<details>Transcript<div>\n<p>[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, switching clients from classic to block themes.</p>\n\n\n\n<p>If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast, player of choice. Or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Mary Ann Aschenbrenner. Mary Ann has been the president of Waterlink Web, a digital agency specializing in WordPress web design, since 2014. Her experience includes e-commerce and membership websites, websites for local nonprofit organizations, and starter websites for small businesses As a lifelong learner, Mary Ann likes to keep pace with the latest innovations in WordPress. She is a fan of block themes, and particularly the WordPress default themes.</p>\n\n\n\n<p>We start by discussing the differences between classic and block themes, with Mary Ann offering practical step-by-step advice for anyone considering a move from a classic theme to a modern block-based theme. She talks about why you might want to make the switch, potential challenges to look out for, and stories from her own experience converting client sites.</p>\n\n\n\n<p>We also chat about the evolution of WordPress, the diminishing need for third party page builders, the importance of client education, and the ongoing improvements in the block editor. Plus Mary Ann shares insights from her WordCamp presentation, and her experiences collaborating with the WordPress community.</p>\n\n\n\n<p>Whether you’re a seasoned WordPresser or just starting out and keen to know how block themes are making site building more accessible for everyone, this episode is for you.</p>\n\n\n\n<p>If you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Mary Ann Aschenbrenner.</p>\n\n\n\n<p>I am joined on the podcast by Mary Ann Aschenbrenner. Hello.</p>\n\n\n\n<p>[00:02:54] <strong>Mary Ann Aschenbrenner:</strong> Hello. Nice to be here.</p>\n\n\n\n<p>[00:02:56] <strong>Nathan Wrigley:</strong> Very nice to have you with us. Thank you so much. You are the first interview that I’m carrying out at WordCamp US in Portland in the year 2025.</p>\n\n\n\n<p>The endeavour here is to talk about classic themes and block themes. You are doing a presentation. I don’t suppose you’ve done it yet, because we’re right at the beginning of the main conference.</p>\n\n\n\n<p>[00:03:12] <strong>Mary Ann Aschenbrenner:</strong> I do it this afternoon at 2:15pm, yes.</p>\n\n\n\n<p>[00:03:15] <strong>Nathan Wrigley:</strong> Okay. Good luck with that. Let’s just first of all find out a little bit about you. So if you don’t mind, would you just give us your biography, your potted biography, if you like. Who you are, what you do.</p>\n\n\n\n<p>[00:03:24] <strong>Mary Ann Aschenbrenner:</strong> I’m from Portland, born and raised here. And the reason I got into website design is kind of a fluke and kind of really related to my whole ethos as a citizen of this great city.</p>\n\n\n\n<p>Well, Pier Park is a North Portland park and it’s where my kids learned to swim. It’s where a lot of kids learned to swim. It was in a fairly low income neighborhood. And in 2005, the City of Portland decided to close the outdoor pool that was open in the summers. Just funding issues. And I worked with some other North Portland people and we gathered 700 signatures, which I don’t know if you know this, it’s a lot of work to get 700 signatures. And we took them down to City Hall, and we presented them and we talked about why Pier Pool needed to stay open.</p>\n\n\n\n<p>And Sam Adams at the time said, we can find money for these folks. He was on the city council. And lo and behold, they decided to keep Pier Pool open.</p>\n\n\n\n<p>Well, about a month later, I’m at a City Bureau meeting and was told that the reason they decided to close Pier Pool at the time, instead of Buckman Pool was because Buckman had a website. This was 2000 and five. I was like, oh, it can’t be that hard to get a website. I’ve collected 700 signatures, websites have to be easier. So Friends of Pier Park has had a website ever since and we, of course, keep our pool open with it. And that’s the long story short of how I got into it.</p>\n\n\n\n<p>[00:04:58] <strong>Nathan Wrigley:</strong> That’s nice. That’s a real sort of philanthropic community endeavour that got you started on the road to WordPress. I’m guessing you built that site with WordPress.</p>\n\n\n\n<p>[00:05:05] <strong>Mary Ann Aschenbrenner:</strong> I got someone else to do it because I knew nothing about building websites. In 2012, I had the opportunity to go back to school, and I actually went to PCC and studied web design. And I’ve been building websites, I started my own company shortly after that, and I’ve been doing it ever since with Water Link Web.</p>\n\n\n\n<p>[00:05:21] <strong>Nathan Wrigley:</strong> Yeah, you’ve been in the weeds for a fairly long time.</p>\n\n\n\n<p>[00:05:24] <strong>Mary Ann Aschenbrenner:</strong> Yeah, well over a decade. 14 years or something like that.</p>\n\n\n\n<p>[00:05:27] <strong>Nathan Wrigley:</strong> You’re obviously keeping up to date with all the different bits and pieces in the WordPress space, because the content of your presentation later today is, well, the title is Moving a Website from Classic to Block themes. Some examples, some live and learns. And so I’m guessing you’re going to be instructing people on, if they wish to make the move, how to go from what we call a classic theme.</p>\n\n\n\n<p>[00:05:45] <strong>Mary Ann Aschenbrenner:</strong> It will be like the real step by step. This is what you do this first, you do this second, this is what it’s going to look like, these are the problems you may come into, and this is how to fix them. And voila, it’s going to be great.</p>\n\n\n\n<p>[00:05:58] <strong>Nathan Wrigley:</strong> And so from your perspective, what’s the sort of, the single, well, maybe not single, maybe there’s a few things that you can mention, what are the most compelling reasons that you would ever want to move away from a classic theme?</p>\n\n\n\n<p>Let’s say that I’ve got a website, it’s working perfectly fine. There’s nothing wrong with it, but I’m kind of curious. I want to explore the option. What are the big ticket items why you would wish to move?</p>\n\n\n\n<p>[00:06:19] <strong>Mary Ann Aschenbrenner:</strong> Well, a couple of reasons. Often the plugins that might be associated with your old theme may no longer being maintained. So there’s one situation where I mentioned in the presentation, they’re not being maintained, you won’t be able to update the PHP on your server and you could have a site that’s open to hacking and be slower therefore, because it’s running on a lower grade PHP.</p>\n\n\n\n<p>So that’s one reason to do it. Another is once you start using the block theme editor, you don’t want to go back. And so, you know, I’ve always maintained my skills with WordPress. I’ve been active in the WordPress community. I’ve continued to learn. And, yes, I’ll admit when the block editor first came out, I was a little trepidatious. I didn’t use it that first year. But the second year I did, and the third year I did. And I have been using the latest theme every year, ever since when I build my client’s websites.</p>\n\n\n\n<p>So I just don’t like going back to the classic and then like, okay, how do we do this? It just isn’t as intuitive. And as well, it’s easy to maintain, you don’t have as much opportunity to make changes as you do in the new block editor. So I’m just gradually updating my clients.</p>\n\n\n\n<p>[00:07:33] <strong>Nathan Wrigley:</strong> Do you have a background in code or are you more of a kind of mouse driven builder?</p>\n\n\n\n<p>[00:07:38] <strong>Mary Ann Aschenbrenner:</strong> Do I have a background in code? I did a little HTML. I understand CSS and I certainly use that a lot with the classic theme, CSS especially. But that isn’t really where I trained in.</p>\n\n\n\n<p>Really where my skill lies is working with my clients and creating a website that is unique to them. Every website I do is original. And I look at what colours they want, what values they want to display. And we design based on that.</p>\n\n\n\n<p>And my clients love me. I mean, I’ve had clients over a decade. Still same clients, still working with me. And they trust me and I know it’s like, it’s time to upgrade your website and then we do that.</p>\n\n\n\n<p>[00:08:20] <strong>Nathan Wrigley:</strong> I think one of the things about the classic themes was that having a deep knowledge of the code and the templating hierarchy in WordPress and those kind of things meant that it was available to some, but not necessarily to everybody.</p>\n\n\n\n<p>Whereas the block based themes, the more modern WordPress, if you like, there is much more opportunity to get into the weeds. To do your templates and template parts and things like that with a visual editor.</p>\n\n\n\n<p>So long as you can understand the UI, and where to find the menus, and where to construct the different parts of your website. And that promise of democratising publishing seems to be something that is being delivered, despite the fact that, you know, it’s a bit of a jump to go from classic to full site.</p>\n\n\n\n<p>[00:08:58] <strong>Mary Ann Aschenbrenner:</strong> It is, absolutely. My daughter’s wedding photographer contacted me. She’d had a website on Squarespace, and she found out after 10 years of working as a wedding photographer in southern Oregon, she was only on page five of search results. And that’s ridiculous, but it’s because of where she had her website.</p>\n\n\n\n<p>So she switched it over to WordPress and was confused, what do I do next? She had bought a photographer theme, and so it was going to work perfect for her. And I said, you know what? You see those three lines at the top of the page when you go to edit the page, hit them. And she did.</p>\n\n\n\n<p>And then it was like, oh, the light went on. So she’s going to contact me again when she’s got that built out. But now she understands what to do. All she needed to learn was those three lines because then she knows she can edit every single block in there, and knows what to do.</p>\n\n\n\n<p>[00:09:49] <strong>Nathan Wrigley:</strong> If you were to look at the growth of WordPress over the last, I’m going to say sort of 10 years, something like that, the uptick in WordPress usage up to kind of 40 plus percent, whatever it is now, I think there’s been a lot of page builders responsible for that uptick. So for example, the likes of Elementor or what have you.</p>\n\n\n\n<p>And it was curious that in the blurb that went with your presentation, you particularly pointed out, I think the quote was, no page builder is needed, or something that. Is that a big part of it for you, that you don’t need to rely on any third party tool, often which have a fee attached to them for an annual or a recurring license or something like that? Is like that a big part of it?</p>\n\n\n\n<p>[00:10:22] <strong>Mary Ann Aschenbrenner:</strong> I’ve never used page builders. And I have friends in the industry who love page builders, rely on page builders, and I have happy clients and I’ve never used a page builder. And the site is unique to them. I don’t feel like adding on another layer.</p>\n\n\n\n<p>I’ve had to change over websites where a page builder was used, and it was very heavy, and slow because there was so much code. And back in the day, an individual who was vision impaired couldn’t use it because the web reader that they were using couldn’t read through all this extra code. I just never used it for that reason.</p>\n\n\n\n<p>But I’m sure they’re better now. I do believe that, but you don’t need them. When you have the block editor, you don’t need a page builder.</p>\n\n\n\n<p>[00:11:06] <strong>Nathan Wrigley:</strong> Are there any situations in which you wouldn’t ascribe the necessity to move over to a more modern, block based theme? In other words, is there any scenario where you look at somebody that’s on a classic theme and you say, you know what, just stay where you are, everything’s fine? Or are you always keen to promote people to move in this direction?</p>\n\n\n\n<p>[00:11:25] <strong>Mary Ann Aschenbrenner:</strong> I’m not always keen to promote people. So I have a client who, oh gosh, she was part of the second wave feminist movement, and has a really great website people love. I built it for her in like 2015 and it’s still working fine. She can stay on it. She’s comfortable with it. You know, there’s no reason really, if it starts being an issue with the PHP levels and so forth, then I’ll talk to her about it.</p>\n\n\n\n<p>[00:11:51] <strong>Nathan Wrigley:</strong> Yeah, I suppose there’s also, given the trends in graphic design and the way websites look, there’s always a moment in time where your website just begins to look stale on the front end.</p>\n\n\n\n<p>[00:11:59] <strong>Mary Ann Aschenbrenner:</strong> Or it looks retro, or it looks cool. And the others all look the same. So there’s always that.</p>\n\n\n\n<p>[00:12:05] <strong>Nathan Wrigley:</strong> So that, if you like, was more about the why of you may wish to move over to a, away from a classic theme.</p>\n\n\n\n<p>So let’s move into the sort of the how then because that I think is the crux of your presentation really, how to do it and you need to demonstrate on the screen and what have you. So let’s go through that process. What is the first thing that you do when you are looking to transfer somebody over?</p>\n\n\n\n<p>[00:12:25] <strong>Mary Ann Aschenbrenner:</strong> Well, the first thing you do is you set up a staging site. I’m not saying doing this live. Bring up a staging site on your server. It’s your same website and all it is is the new URL that says staging, dot, blah, blah, whatever.</p>\n\n\n\n<p>Then after your staging site is up, you activate your 2025 theme. You may want to use 2024. 2024 is a really good theme as well. I think the patterns in 2024 are maybe a little more geared toward business, and the patterns in 2025 may be a little more geared towards personal blogs and artists. But pick one.</p>\n\n\n\n<p>So you have now have the 2025 theme, and it’s going to look very plain because it’s just plain until you fix it. And the next thing I usually do is I go through and start editing the pages. So a lot of my old themes, I put in the classic editor plugin. Remember the classic editor plugin?</p>\n\n\n\n<p>[00:13:18] <strong>Nathan Wrigley:</strong> I do, yeah.</p>\n\n\n\n<p>[00:13:19] <strong>Mary Ann Aschenbrenner:</strong> Yeah, we were afraid of block editor so we all put classic editor on. And so it kind of keeps it looking classic. And, well, you deactivate that. And then when you go to a page or a blog post, you’ll see a little greyed block on the top of that content that says classic editor. You click it, and then it’ll say, convert to blocks. And this is where you just do it. You say, yes, I’m going to convert to blocks. You click it, and you got blocks.</p>\n\n\n\n<p>Now, where you are going to find problems? But first of all, most of it deploys really well. Paragraphs deploy, they’re still paragraphs. Headers deploy, they’re still headers, et cetera, et cetera. But where you have columns, your original theme may have used some sort of a short code for columns that’s different than a block editor. So that may not convert.</p>\n\n\n\n<p>Where you have embedded YouTube videos or something, you may decide to do them differently using the YouTube embed plugin instead of whatever code comes up. And you’ll get a little, if a paragraph doesn’t convert well or a block doesn’t convert well, it’ll say, you’ll know that.</p>\n\n\n\n<p>But you still have your live site. So you can go there and find the content and put it back in. You know, it would would be cut and paste if you may have to chase down a YouTube link to embed a YouTube video. But it is all very doable and it’s pretty fast. It doesn’t take that long. I had a website with 200, over 200 blog posts that I had to do that on. That took a little while. But it was 200 blog posts, more than that actually. But for just a standard website with a dozen or so pages, it’s not hugely time consuming.</p>\n\n\n\n<p>[00:14:54] <strong>Nathan Wrigley:</strong> I guess the only problems that may occur is if some part of the, well, let’s say theme, but it may be a plugin, but it may be part of the theme was injecting something somewhere. And in the classic editor you don’t see it, but it somehow surfaces on the front end. I don’t know, it may be the insertion of an ad or something like that. And then you may run into problems because you can’t see where that content’s coming from.</p>\n\n\n\n<p>But I suppose in your scenario, you’re just flicking backwards and forwards between the current live site, which is the classic one, and then you’ve got your staging site, which is the block based one. I guess it’s just a jigsaw puzzle really. You’re trying to figure out, okay, why is that missing? Where does that come from? How can I deploy it in blocks and go through that process? And hopefully on each iteration you get more and more back to what the original content was.</p>\n\n\n\n<p>[00:15:38] <strong>Mary Ann Aschenbrenner:</strong> Right, exactly. That’s how you do it.</p>\n\n\n\n<p>[00:15:40] <strong>Nathan Wrigley:</strong> Yeah. And so it’s a process of going through it kind of one at a time.</p>\n\n\n\n<p>Have you ever encountered something which you couldn’t solve in that scenario? Have you ever come across something where you just throw your hands in the air and think, what, where’s that?</p>\n\n\n\n<p>[00:15:50] <strong>Mary Ann Aschenbrenner:</strong> One time. So I had a website on a Studio Press theme, and I did the conversion. It all looked good to me. And then I realised when you were not logged into the site, the navigation didn’t show up properly. And I tried to figure that out and I redid the navigation. It looked good when you’re logged in, but when you’re just looking at the site not logged in, it wasn’t. So I ended up actually rebuilding that site entirely.</p>\n\n\n\n<p>[00:16:16] <strong>Nathan Wrigley:</strong> Oh, interesting.</p>\n\n\n\n<p>[00:16:17] <strong>Mary Ann Aschenbrenner:</strong> I just went ahead and brought up a whole new 2025 theme and copied and pasted content and brought it over.</p>\n\n\n\n<p>[00:16:23] <strong>Nathan Wrigley:</strong> Okay, so rather than having a staging site, well, you presumably did have a staging site, but it wasn’t a case of going into the posts or the pages and clicking the convert button. This more of a, okay, something’s broken here, I need to start from scratch.</p>\n\n\n\n<p>[00:16:34] <strong>Mary Ann Aschenbrenner:</strong> Something’s broken, I couldn’t figure it, I mean, I’m sure if I were a coder, I would’ve dug into the code. But it’s like, it’s going to take me hours, it’s going to be easier in this case. It didn’t have a ton of content. There was like six or eight pages and maybe four or five blog posts. So it wasn’t that hard to do. It was easier to just bring up the new 2025 theme and start fresh.</p>\n\n\n\n<p>[00:16:54] <strong>Nathan Wrigley:</strong> Yeah, in the scenario where you’ve only got a handful of pages, it probably is literally quicker to do it that way and copy and paste.</p>\n\n\n\n<p>[00:16:58] <strong>Mary Ann Aschenbrenner:</strong> Especially if you see an issue pop up immediately. It’s something, the navigation, I couldn’t figure out why that wasn’t working. But it was a Studio Press theme, so something was coming through from the old theme.</p>\n\n\n\n<p>[00:17:09] <strong>Nathan Wrigley:</strong> Okay. And you mentioned that this whole process where you, you go to your staging site and you go into a post or a page, and there’s this bar at the top. The content is missing essentially. And there’s this bar, it’s a grey bar and it looks.</p>\n\n\n\n<p>[00:17:23] <strong>Mary Ann Aschenbrenner:</strong> Well, the content is usually there.</p>\n\n\n\n<p>[00:17:24] <strong>Nathan Wrigley:</strong> Yeah, but it’s all in the wrong, it’s as it was essentially. So it’s not yet as blocks. And you click the button, wait a heartbeat, a moment, and the WordPress sort of process of migrating one to the other just sort of takes over. Paragraphs become paragraphs blocks, and on you go. I’ve yet to have that fail on me in a catastrophic way. It’s never done anything unexpected.</p>\n\n\n\n<p>[00:17:45] <strong>Mary Ann Aschenbrenner:</strong> It’s never failed catastrophically, not on me. And I’ve converted, even on that one website I just mentioned, the content converted great. It was just the navigation that was the issue. But I’ve used Canvas theme, which used to be produced by WooCommerce before it became a part of WordPress. And I’ve used, of course another theme on, that another website. So that content comes through actually, really easily.</p>\n\n\n\n<p>[00:18:09] <strong>Nathan Wrigley:</strong> You mentioned also that you are using the default theme in most cases. So you mentioned 2025, but also you said, I think perhaps try 2024 or something like that. Is that your kind of go-to? Do you explore the ecosystem of other themes that are out there in the environment, either the repo or possibly commercial themes, or you just heavily leaning into default themes?</p>\n\n\n\n<p>[00:18:28] <strong>Mary Ann Aschenbrenner:</strong> I just lean into the default theme.</p>\n\n\n\n<p>[00:18:29] <strong>Nathan Wrigley:</strong> Is there any particular reason for that? Because obviously, you know it’s going to be updated, which is really nice. You know that it’s a, well, it’s deployed on every WordPress website, a standard if you download a vanilla version of WordPress.</p>\n\n\n\n<p>[00:18:39] <strong>Mary Ann Aschenbrenner:</strong> It’ll be maintained for a long, long time. I know somebody who’s still in the 2015 theme and their site still works great.</p>\n\n\n\n<p>[00:18:47] <strong>Nathan Wrigley:</strong> Yeah, the backwards compatibility promise of WordPress is pretty remarkable.</p>\n\n\n\n<p>[00:18:51] <strong>Mary Ann Aschenbrenner:</strong> It’s pretty remarkable.</p>\n\n\n\n<p>[00:18:52] <strong>Nathan Wrigley:</strong> Yeah. Have you found limitations in those themes though? So one of the things that I think people wish were better would be, for example, things like navigation. You know, the options that you have in default blocks for navigation. Currently, there’s quite a lot of work going on to improve that as it happens. But are there any limitations that you’ve encountered where you thought, I wish it could do more?</p>\n\n\n\n<p>[00:19:12] <strong>Mary Ann Aschenbrenner:</strong> I haven’t with the 2025, not recently anyway. But with 2024, I used a little bit of CSS in the navigation block. So add a little CSS.</p>\n\n\n\n<p>[00:19:21] <strong>Nathan Wrigley:</strong> Yeah, just tweak it a little bit. There’s a lot of requirements for maybe, I don’t know, mega menus, things like that, adaptations to the mobile menu that are not available in the blocks. And as we’re leaning more into kind of like a no code environment with block based themes.</p>\n\n\n\n<p>[00:19:35] <strong>Mary Ann Aschenbrenner:</strong> I have used a plugin for mega menus on one of my clients.</p>\n\n\n\n<p>[00:19:37] <strong>Nathan Wrigley:</strong> Okay. So you take care of that in a different way by using plugins? Yeah, okay. That kind of makes sense.</p>\n\n\n\n<p>Okay, so that’s the bits and pieces perhaps about the sort of how you do it.</p>\n\n\n\n<p>[00:19:46] <strong>Mary Ann Aschenbrenner:</strong> And the reason I used the mega menu plugin for that client was he had very specific ideas of how he wanted his navigation to look on cell phone.</p>\n\n\n\n<p>[00:19:54] <strong>Nathan Wrigley:</strong> Yeah, because it is fairly limited what you get out of the box. There’s not too many options and think the community is possibly moving towards having something a little bit better in the, yeah, a bit more full featured, let’s put it that way.</p>\n\n\n\n<p>It’s a curious question, do you see any need for more than a single theme in the WordPress space anymore? So in other words, now that we’re leaning into an era where all of the bits and pieces that would’ve been handled by the theme is now handled by the interface of the block-based theme. So, for example, all of your templates is within the UI of full site editing and what have you. Do we even need a whole bunch of themes?</p>\n\n\n\n<p>Could we just have a single theme which did the bare bones, maybe headers, footers, menus, that kind of thing. And then all of it is done by patterns or templates, which can be pointed on and clicked in, in the interface?</p>\n\n\n\n<p>[00:20:44] <strong>Mary Ann Aschenbrenner:</strong> Well, I think that it’s good to have themes, and I’ll tell you why. My daughter’s wedding photographer. She is not a website designer. You know, she was used to using Squarespace, realised that the SEO on it sucked and decided to go to WordPress and found a great photography theme from a good maker of themes. I had no problem with it. I looked at it. And all she needed was a little tip on how to see where her blocks were and what the block is. She’s just going to be able to go with that.</p>\n\n\n\n<p>Now if she was starting from scratch with no theme to work with, and just trying to figure it out, I think it’d be a lot harder for her. But having a template that’s like, here’s your photography template, she can put her own pictures in there. She understands the concept, and she’ll be able to build her own website with it.</p>\n\n\n\n<p>[00:21:36] <strong>Nathan Wrigley:</strong> Do you find it’s easier for your clients then to work with the block based themes than it was with the classic themes?</p>\n\n\n\n<p>[00:21:43] <strong>Mary Ann Aschenbrenner:</strong> Yes.</p>\n\n\n\n<p>[00:21:44] <strong>Nathan Wrigley:</strong> I find sometimes it’s difficult to kind of work out where you are in the UI. You know, you’ve clicked on a bunch of things and you can’t figure out how to get back to where you were, things like that. But then if I weigh that up against how difficult it was with classic themes, where you had to basically have a code editor open at some point and be editing template, PHP files, and things like this. Although it’s a bit confusing navigating around the UI, I think even the people developing WordPress would say, yes, there’s a bit of work to be done on the UI. I think on the whole, it’s much easier, but I don’t know what your clients think.</p>\n\n\n\n<p>[00:22:13] <strong>Mary Ann Aschenbrenner:</strong> You know how I explained to my clients, I said, if you use Mac, can you put together a Pages document and maybe add some images, can you do that? And they say, yes. I said, well, if they’re using Microsoft, can you do the same thing? Yes, I can. Well, then you can use the block theme.</p>\n\n\n\n<p>Because once it’s set up, I mean, I think that there’s certain areas that are a little more tricky and for our clients, I’ll say, look, don’t get into the editor. Do not do full site editing. Let me do that. If you want to add something to the navigation, just tell me, I’ll edit it. It’s not a big deal. It takes me five minutes. They’re going to have to figure it out, because it’s only something they’re going to do once in a while when they change their navigation.</p>\n\n\n\n<p>But for any of their pages, you know, they know how to hit the three lines, see what block they’re in, click it, it lights up the block on the right hand side, and then they can do the editing to the right of that. They can do it.</p>\n\n\n\n<p>[00:23:03] <strong>Nathan Wrigley:</strong> Do you lean into the feature of locking blocks? Because it sounds like you’ve got a fairly close relationship with your clients. You’re probably able to get on the phone with them and things like that, have that communication. So you can just say, don’t touch that, leave that alone, and that’s fine.</p>\n\n\n\n<p>But obviously in different scenarios where, I don’t know, it might be more corporate, that kind of thing, the capacity within native WordPress to exclude the client from being able to edit that.</p>\n\n\n\n<p>So as an example, yeah, you can change the text on that block, but it’s a cover block, but we’re not going to allow you to change the background image. Or conversely, you can change the background image, but you can’t change the text, those kind of things. So these are sort of new features which have crept in over time, and I’m not sure how many people use those, whether or not that would be of interest to you and your clients.</p>\n\n\n\n<p>[00:23:45] <strong>Mary Ann Aschenbrenner:</strong> You know, it’s their website. They may be on my servers that I’m hosting, but it’s their website and if they really want to mess it up, they can. And I can fix it. But really, it’s not a problem.</p>\n\n\n\n<p>There’s been a few times, I have one client who adds content and he happened to add it all in tables. I don’t know why or how. I had to fix it on one of his pages. But, you know, I fixed it and the content is there down and it’s not in a table.</p>\n\n\n\n<p>[00:24:10] <strong>Nathan Wrigley:</strong> Do you build into your process, when you have converted something from classic to block base, do you have like an education piece in the middle there somewhere?</p>\n\n\n\n<p>[00:24:18] <strong>Mary Ann Aschenbrenner:</strong> Oh, yes.</p>\n\n\n\n<p>[00:24:19] <strong>Nathan Wrigley:</strong> So time to show the client how to use it. Because obviously they may be very familiar with classic editing, or it may be something that they’re not really dabbling in that much. Either way, it’s not at all like the new thing. And how do you do that? Do you allocate time? Do you have videos prepared or just sit next to them in their offices?</p>\n\n\n\n<p>[00:24:35] <strong>Mary Ann Aschenbrenner:</strong> You know, we usually do it as like a Zoom call. They share their screen. Well, actually, during the process, there’ll be times when I’m on the phone in a Zoom call with the client or a Google Meet call with the client, and I’m showing them what I’m doing on my end. So that’s part of the education process.</p>\n\n\n\n<p>And we talk about, okay, do you like this font? No, I don’t like this one. Okay, well, how about this one? They see me change things back and forth. I put up content and they say, oh, we want to edit that. We want to rephrase it like this.</p>\n\n\n\n<p>So if we’re doing it on a Zoom call, it’s going back and forth, they see how I’m working. And I make a point, oh, see how I hit these three lines, and we can edit this paragraph block, let’s put a background on this paragraph block. Here’s how you do it. So they learn how to do that, just kind of as we’re building it.</p>\n\n\n\n<p>And then when it’s done, I will definitely show them how, anything they want to change. And I’ll walk through them how to add a blog post, for example. Usually the pages are pretty dialed in by the time we go live, it’s exactly where they want. So they might need to learn how to add blog posts. And I’ll introduce them to the blocks I think they’re going to use. They don’t need to know how to do every single block because there’s so many blocks.</p>\n\n\n\n<p>[00:25:46] <strong>Nathan Wrigley:</strong> Yeah. Do you switch some of them off, make them unavailable? I don’t know, there’s things like the Animoto Block, which goodness knows whoever was using that, I don’t know. But it’s there. I think most clients don’t need them. And having the capacity to switch some blocks off, quite a nice idea.</p>\n\n\n\n<p>[00:26:00] <strong>Mary Ann Aschenbrenner:</strong> You can. I haven’t done that.</p>\n\n\n\n<p>[00:26:01] <strong>Nathan Wrigley:</strong> No, okay. And are there any common gotchas? When you’ve gone through this process multiple times, is there anything which comes out the other end which is reliably strange to the client? You know, okay every client’s reporting back either, nothing, this is brilliant, it’s a hundred percent, I’m all on board. Or do you have common things which you have to explain over and over again to the different clients because it’s just quirky?</p>\n\n\n\n<p>[00:26:21] <strong>Mary Ann Aschenbrenner:</strong> There’s a couple clients that are boards, nonprofit boards, and so then I have to explain it over and over again.</p>\n\n\n\n<p>[00:26:29] <strong>Nathan Wrigley:</strong> And is that because of the nature of.</p>\n\n\n\n<p>[00:26:31] <strong>Mary Ann Aschenbrenner:</strong> Because the person I’m talking to changes.</p>\n\n\n\n<p>[00:26:33] <strong>Nathan Wrigley:</strong> Oh, okay.</p>\n\n\n\n<p>[00:26:34] <strong>Mary Ann Aschenbrenner:</strong> Sometimes clients will want something I don’t really feel like I can deliver. So I have a client who wants full with image, with content on top of it, and wants it to be a slider. So there’ll be a full width image with content and a button, and then another full width image with content and a button. It’s a slider. So I created this.</p>\n\n\n\n<p>And then when it was done, they were like, well, I want the whole image to show on a cell phone. I had to explain, if that entire image gets so narrow that it shows on a cell phone and it’s not very tall, your content won’t fit in it. And it was really hard to accept. So that kind of thing can occur.</p>\n\n\n\n<p>[00:27:12] <strong>Nathan Wrigley:</strong> Yeah, I mean, it’s not for everybody, but I feel at this point, this is the future of WordPress. This is the way it’s going to go. This is what most people are talking about and what have you. Just getting into your presentation later, firstly, good luck with it. I hope it goes well.</p>\n\n\n\n<p>[00:27:26] <strong>Mary Ann Aschenbrenner:</strong> Thank you.</p>\n\n\n\n<p>[00:27:27] <strong>Nathan Wrigley:</strong> How are you tackling this subject? Are you going to be doing slides? Because it’ll be curious, the audience, presumably in front of you are, well, we’re at WordCamp. Presumably they are a bunch of WordPressers. I’m curious to know at what level you are pitching it.</p>\n\n\n\n<p>[00:27:39] <strong>Mary Ann Aschenbrenner:</strong> You know, I think somebody who’s fairly new to WordPress will be able to get a lot out of this. I think it’s geared towards somebody with a little bit of experience, not a lot.</p>\n\n\n\n<p>I’m going to talk about three different websites. One of them was actually built in 2006 on Blogger. I wasn’t the one that built it. And two other websites. And I’m going to talk a little bit about the City of Portland, so people who come to this, even if they know everything I’m talking about will learn a little bit about the City of Portland.</p>\n\n\n\n<p>[00:28:05] <strong>Nathan Wrigley:</strong> And this is all filmed as well, which is kind of nice. And these days those videos tend to get turned around pretty quickly. Long gone is the day that you would attend a WordCamp and then six months, a year later, the video would still be stuck in somebody’s hard disk.</p>\n\n\n\n<p>Hopefully by the time this podcast episode drops, that will be out and we’ll be able to watch your presentation. I think I’ve asked everything that I wish to ask. Is there anything that you think that we didn’t touch during our conversation?</p>\n\n\n\n<p>[00:28:31] <strong>Mary Ann Aschenbrenner:</strong> There is.</p>\n\n\n\n<p>[00:28:31] <strong>Nathan Wrigley:</strong> Go for it.</p>\n\n\n\n<p>[00:28:32] <strong>Mary Ann Aschenbrenner:</strong> While I was building the site with 200 blog posts, I discovered a little, what I thought was a glitch. And it turns out it’s a feature. But if you were a developer, you think it’s a feature. So in the 2025 theme, when you go to templates, you go to your website editor and you go to patterns, and then you have the header, the footer, and the page templates.</p>\n\n\n\n<p>For the blog page, I pick a page template for the blog page, just that one. And then I can go in and I can select the style of my query loop. So if I want a query loop that’s just a picture on the left and content on the right for that blog page, and then people can scroll through and see all the different blog posts.</p>\n\n\n\n<p>I picked one that was different than that. So I picked it, and then I deployed it, and then I went to the blog page and looked at it and it looked great. Except when I hit next page, it returned to the same page. It never was advancing to all these other 200 blog posts. And I was like, what happened here?</p>\n\n\n\n<p>So I went back to the template, page, templates, blog page, picked a different query loop. Same thing. Picked a third query loop. Ah, this one worked. I could advance to the next pages. So then I was curious, why is this?</p>\n\n\n\n<p>So I went back to that template, hit the three line dropdown arrow, looked at every single block in there and saw a pagination block that had not been in the others at the bottom of the group. So then I copied that and I put it in. And voila, my original one worked, I was very happy with it.</p>\n\n\n\n<p>So I went yesterday to the Contributor Day and I sat at the Core Performance table, and normally not where I would belong, and said, this is your issue, it’s got to be fixed. And they looked at it, and a couple more people looked at it, and then they explained to me that not all query loops are used on the blog page. Some might be used on a landing page. And you may not want a next pages on every one of your query loops, so it’s not there on everyone.</p>\n\n\n\n<p>[00:30:53] <strong>Nathan Wrigley:</strong> It’s kind of interesting that it got there on one of them. And I think this is something that can be quite confusing, things like that, which in the old world, you would’ve dropped in as a short code. And in order to get that short code, you would’ve gone into some other UI and configured it all, and then the short code would’ve been spat out with the correct parameters to do what you wanted. So there might have been a toggle for show pagination, take pagination off, and what have you. And then the short code would ultimately do that.</p>\n\n\n\n<p>In the block editor, this kind of thing happens fairly frequently in that there are nested blocks. And if you don’t deploy the nested blocks, so for example, if you didn’t know that pagination was a separate block, which usually sits outside of the query loop, usually below it in the same group or something like that, it’s easy to think, well, it ought to be there. Why isn’t it there? And sometimes you have to go find that pagination block, insert it in the right place and what have you.</p>\n\n\n\n<p>Yeah, so things like that, if you don’t see it, you don’t see it. It’s not intuitive to think that it ought to be there. And I can think of probably dozens of examples of that kind of thing where blocks that you may rely on are in fact nested blocks of other blocks, and they may not come in automatically.</p>\n\n\n\n<p>So, yeah, it’s a process of figuring that out, and maybe a toggle inside the query loop block saying, just enable pagination, turn it off, or something like that.</p>\n\n\n\n<p>[00:32:11] <strong>Mary Ann Aschenbrenner:</strong> That might be helpful. But I was able to fix it, and I realise now that it actually is a feature because they can, you can go to those query loops and look at all sorts of query loops that you might use elsewhere on your website. So I thought it was great to go to Contributor Day. I contributed and I learned.</p>\n\n\n\n<p>[00:32:28] <strong>Nathan Wrigley:</strong> Yeah, that’s really nice. And people were able to explain it to you. Yeah, definitely a thing if you come to a WordCamp, certainly of this magnitude, attend the Contributor Day. And it’s not just a process of contributing, it can be a process of sitting next to people who are working and asking them questions and thereby upping your own knowledge.</p>\n\n\n\n<p>[00:32:44] <strong>Mary Ann Aschenbrenner:</strong> And I don’t think that they were aware of it until I pointed it out.</p>\n\n\n\n<p>[00:32:47] <strong>Nathan Wrigley:</strong> Yeah, they’re in the weeds of deploying it, and they may not consider all the use cases. And in this case, you had one in which it didn’t work as expected. I guess from their point of view, everything that they said is probably true. You know, it may be deployed in this way, it may not, and so we built it in such a way that you can have the pagination or not, but nevertheless, you kind of needed it right away.</p>\n\n\n\n<p>Well, that’s brilliant. Thank you so much Mary. Appreciate you chatting to me today.</p>\n\n\n\n<p>Where can we find you if people would like to reach out about anything you’ve talked about? Where’s the best places?</p>\n\n\n\n<p>[00:33:14] <strong>Mary Ann Aschenbrenner:</strong> On my website is waterlinkweb.com. You can find me there. I’m on Instagram at Water Link Web. I have a LinkedIn, Mary Ann Aschenbrenner at LinkedIn. And I think that does it.</p>\n\n\n\n<p>[00:33:28] <strong>Nathan Wrigley:</strong> Well, thank you very much. I’ll make sure all those bits and pieces get into the show notes. So head to wptavern.com, search for the episode with Mary Ann Aschenbrenner. I will hopefully speak to you another time. Thank you very much for chatting to me.</p>\n\n\n\n<p>[00:33:40] <strong>Mary Ann Aschenbrenner:</strong> Thank you very much, Nathan.</p>\n</div></details>\n\n\n\n<p>On the podcast today we have <a href=\"https://www.linkedin.com/in/maryannaschenbrenner/\">Mary Ann Aschenbrenner</a>.</p>\n\n\n\n<p>Mary Ann has been the President of Waterlink Web, a digital agency specialising in WordPress web design since 2014. Her experience includes e-Commerce and membership websites, websites for local nonprofit organisations, and starter websites for small businesses. As a life-long learner, Mary Ann likes to keep pace with the latest innovations in WordPress. She is a fan of block themes and particularly the WordPress default themes.</p>\n\n\n\n<p>We start by discussing the differences between classic and block themes, with Mary Ann offering practical, step-by-step advice for anyone considering a move from a classic theme to a modern block-based theme. She talks about why you might want to make the switch, potential challenges to look out for, and stories from her own experience converting client sites.</p>\n\n\n\n<p>We also chat about the evolution of WordPress, the diminishing need for third-party page builders, the importance of client education, and the ongoing improvements in the block editor. Plus, Mary Ann shares insights from her WordCamp presentation, and her experiences collaborating with the WordPress community.</p>\n\n\n\n<p>Whether you’re a seasoned WordPresser, or are just starting out, and keen to know how block themes are making site building more accessible for everyone, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://www.linkedin.com/in/maryannaschenbrenner/overlay/about-this-profile/\">Mary Ann Aschenbrenner</a> on LinkedIn</p>\n\n\n\n<p><a href=\"https://waterlinkweb.com/\">Waterlink Web</a></p>\n\n\n\n<p><a href=\"https://friendsofpierpark.org/\">Friends of Pier Park website</a></p>\n\n\n\n<p><a href=\"https://us.wordcamp.org/2025/session/moving-a-website-from-classic-to-a-block-theme/\">Moving a Website from Classic to a Block Theme</a></p>\n\n\n\n<p><a href=\"https://www.studiopress.com/\"> StudioPress</a></p>\n\n\n\n<p><a href=\"https://www.blogger.com/\">Blogger</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Sep 2025 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:1;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"Open Channels FM: How to Make Your Open Web Content Last Forever: Effortless, Permanent Backups and Media Storage\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=108637\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://openchannels.fm/how-to-make-your-open-web-content-last-forever-effortless-permanent-backups-and-media-storage/\";s: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:360:\"The open web is a patchwork of ideas, creativity, and discovery that thrives on its openness and diversity. But what happens when websites go offline, hosting bills lapse, or platforms disappear? The reality is that content is lost every day to link rot, expired services, and vanished archives while silently erasing important stories and knowledge. […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Sep 2025 13:29:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"Open Channels FM: GoDaddy’s New AI Site Designer: From Idea to WordPress Site in Minutes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=109724\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://openchannels.fm/godaddys-new-ai-site-designer-from-idea-to-wordpress-site-in-minutes/\";s: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:157:\"Our sponsor GoDaddy\'s Airo Site Designer is an AI tool that quickly creates WordPress sites from simple prompts, making it easy for anyone to go online fast.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Sep 2025 09:36:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:3;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Matt: United Starlink\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2025/09/united-starlink/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2025/09/united-starlink/\";s: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:321:\"<p>I’m on my first United flight with Starlink, and wow! I ran a <a href=\"https://fast.com/\">fast.com</a> test and got 110 mbps down and 38 mbps up, which is insane. 28ms ping times. While flying! When you think of all of the engineering and technology coming together to let me blog this it’s really incredible.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Sep 2025 00:05:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:4;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"Open Channels FM: How WordPress Playground Is Opening Doors to Inclusive Learning Everywhere\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=108627\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://openchannels.fm/how-wordpress-playground-is-opening-doors-to-inclusive-learning-everywhere/\";s: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:\"WordPress Playground revolutionizes web development by providing a browser-based platform for learning and experimentation, making it accessible globally, particularly for users in resource-limited areas.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Sep 2025 12:55:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:5;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Open Channels FM: From Print Design to Podcasting, the Scenic Route to Creativity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=109666\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://openchannels.fm/from-print-design-to-podcasting-the-scenic-route-to-creativity/\";s: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:156:\"In this episode, BobWP shares the launching his blog and podcast, Bob\'s Wild Pathways, filled with honest stories and insights from his creative adventures.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Sep 2025 10:11:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Matt: Retention\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149819\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ma.tt/2025/09/retention/\";s: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:120:\"<p>Andrew Chen <a href=\"https://x.com/andrewchen/status/1965419750525431873?s=46\">has a great post on retention</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Sep 2025 04:40: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: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:7;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Matt: Weekend YouTubes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149801\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2025/09/weekend-youtubes/\";s: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:3290:\"<p>One of my favorite YouTubers is <a href=\"https://charlescornellstudios.com/\">Charles Cornell</a> (WordPress-powered!), who <span style=\"margin: 0px; padding: 0px;\">creates great videos </span>that break down the music theory of various things you’ve heard, such as this adorable one featuring <a href=\"https://www.youtube.com/watch?v=U-fv_oyYhqc\">SNES soundtracks</a> or <a href=\"https://www.youtube.com/watch?v=rRRSWmZrJGs\">The Legend of Zelda: Breath of the Wild</a>. I first came across him <a href=\"https://www.youtube.com/watch?v=1Popdt3NYgU\">reacting to Jacob Collier in 2020</a>. Once I got super-into Severance, <a href=\"https://www.youtube.com/watch?v=LQg1TMEEPnQ\">his breakdown of the spooky music is great</a>. It’s also interesting to see that the YouTube community is going through its own version of fair use and copyright, trademark, etc., enforcement, which he discusses <a href=\"https://www.youtube.com/watch?v=4GrLFQ26jFs\">here</a>.</p>\n\n\n\n<p><a href=\"https://blog.samaltman.com/\">Sam Altman</a> is always interesting to follow, and it’s interesting to contrast this <a href=\"https://www.youtube.com/watch?v=6pxmdmlJCG0\">great interview he did with David Perell on writing</a> with this <a href=\"https://www.youtube.com/watch?v=5KmpT-BoVf4\">very direct and awkward one with Tucker Carlson</a>. I have immense respect for anyone who enters the arena and engages directly with journalists or critics, rather than hiding behind PR agents or lawyers. Given the current blood feud, it’s fun to go back eight years and <a href=\"https://www.youtube.com/watch?v=tnBQmEqBCY0\">see Sam Altman interview Elon Musk</a>, long before any of the AI stuff blew up they were both terribly prescient.</p>\n\n\n\n<p>Ray Dalio is always a gem and <a href=\"https://www.youtube.com/watch?v=49RT6SQ8n0Y\">he went on Diary of a CEO</a>. Theo Browne <a href=\"https://www.youtube.com/watch?v=6TMPWvPG5GA\">has a good take on what it means to vibe code</a>. Kishan Bagaria <a href=\"https://www.youtube.com/watch?v=vwsfdRY-K2s\">discusses how Beeper is going to reach 100 million users</a>. The story of how Atlassian took a <a href=\"https://www.youtube.com/watch?v=7SKUw3w2FEg\">non-traditional enterprise path with Jay Simons is great</a>. Not a YouTube, but don’t miss <a href=\"https://www.theverge.com/decoder-podcast-with-nilay-patel/773904/sierra-ceo-bret-taylor-ai-agents-openai-bubble-interview\">Bret Taylor on The Verge</a>. Check out <a href=\"https://www.youtube.com/watch?v=6N7XvGaQ72E\">Adam D’Angelo at South Park Commons</a>.</p>\n\n\n\n<p>And finally, I’ll say that <a href=\"https://www.youtube.com/premium\">YouTube Premium</a>, which turns off all the ads, is probably one of the highest value subscriptions you can have. <span style=\"margin: 0px; padding: 0px;\">Many of these are essentially like podcasts, and from a product perspective, I think we need to figure out how to sync and allow seamless movement between watching, listening, or reading transcripts</span> in <a href=\"https://pocketcasts.com/\">Pocket Casts</a> (Automattic’s open-source podcasting app). We support video podcasts, but there’s no good way yet to have a <a href=\"https://www.audible.com/ep/wfs\">Whispersync-like</a> experience between video, audio, and a transcript.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 14 Sep 2025 23:23:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:8;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: Old Business Cards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149786\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://ma.tt/2025/09/old-business-cards/\";s: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:2624:\"<p><br />I recently came across a few old business cards I designed back in 1999. The first ones were for my services as a saxophone player:</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-149788\" height=\"336\" src=\"https://i0.wp.com/ma.tt/files/2025/09/business-card-blue-1024x569.jpg?resize=604%2C336&quality=89&ssl=1\" width=\"604\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-149787\" height=\"345\" src=\"https://i0.wp.com/ma.tt/files/2025/09/business-card-yellow-1024x585.jpg?resize=604%2C345&quality=89&ssl=1\" width=\"604\" /></figure>\n</figure>\n\n\n\n<p>A few notes:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>I went mostly by “Matthew” then.</li>\n\n\n\n<li>At some point I decided to remove the home address and say that I was available to play not just alto saxophone but baritone, tenor, and soprano as well.</li>\n\n\n\n<li>The number was the home shared house number, not a cell phone.</li>\n\n\n\n<li>The email was an email address the entire family shared, under my dad’s name.</li>\n\n\n\n<li><a href=\"https://www.hal-pc.org/\">HAL-PC</a> was an amazing non-profit local to Houston that stood for the “Houston Area League of PC users.” There was a pretty reasonable annual membership fee, and they hosted a monthly general meeting which had hundreds of attendees, always with a presentation or two and a raffle giveaway at the end. They were a dial-up ISP and BBS/newsgroup host. I volunteered for them by going in on Saturdays where they had a room people could bring their broken computers to and get free tech support, and by hosting a SIG, or special-interest group, around PalmOS called <a href=\"https://hpug.org/\">HPUG</a>, the Houston Palm Users Group. This was a big part of the inspiration for WordCamps.</li>\n</ul>\n\n\n\n<p>This was for my “design” business:</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-149789\" height=\"345\" src=\"https://i0.wp.com/ma.tt/files/2025/09/business-card-design-1024x585.jpg?resize=604%2C345&quality=89&ssl=1\" width=\"604\" /></figure>\n\n\n\n<p><br />I would also design business cards for friends, here’s one for my friend who was a percussionist and vibraphonist, Chase Jordan: </p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-149790\" height=\"362\" src=\"https://i0.wp.com/ma.tt/files/2025/09/business-card-chase-jordan.jpg?resize=604%2C362&quality=89&ssl=1\" width=\"604\" /></figure>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 14 Sep 2025 02:50: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: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:9;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"Gutenberg Times: Licensing for AI, Patterns, Gutenberg 21.6, and future of WordPress—Weekend Edition #340\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=41777\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://gutenbergtimes.com/licensing-for-ai-patterns-gutenberg-21-6-and-future-of-wordpress-weekend-edition-340/\";s: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:26136:\"<p>Hi there,</p>\n\n\n\n\n\n<p>Welcome to the WCUS Part 2. The workshop recordings are online, and my chat with other dev advocates has also been published. You can read about it in this article, which includes the video: <a href=\"https://gutenbergtimes.com/wordpress-ai-and-the-generational-shift-insights-from-wcus-creators-studio/\">WordPress, AI, and the generational shift: insights from #WCUS Creators Studio</a>. </p>\n\n\n<div class=\"ng-block-9b69ce3ee9ab777d wp-block-newsletterglue-image ng-block size-large is-resized\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;\"><a href=\"https://gutenbergtimes.com/wordpress-ai-and-the-generational-shift-insights-from-wcus-creators-studio/\"><img alt=\"In the WCUS Creators Studio: Brian Coords, Jonathan Bossenger, Birgit Pauli-Haack, Ryan Welcher\" class=\"wp-image-41835 ng-image\" height=\"337\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/09/Screenshot-2025-09-10-at-15.46.21.jpg?resize=600%2C337&ssl=1\" style=\"border-style: none; border-color: transparent;\" width=\"600\" /></a></div></div></div></div>\n\n\n<div class=\"wp-block-spacer\" style=\"height: 20px;\"></div>\n\n\n\n<p>A few publishers assembled to come up with a <a href=\"https://rslstandard.org/\">license standard for machines</a>, aka AI. As site builders, or owners, you’ll be interested that there has been some work on the way. More below.</p>\n\n\n\n<p>Have a splendid weekend ahead! </p>\n\n\n\n<p>Yours, <img alt=\"💕\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f495.png\" style=\"height: 1em;\" /><br /><em>Birgit</em></p>\n\n\n<section class=\"wp-block-newsletterglue-group\" style=\"padding-top: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; margin-top: 0px; margin-bottom: 0px;\">\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<nav class=\"wp-block-table-of-contents\"><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/licensing-for-ai-patterns-gutenberg-21-6-and-future-of-wordpress-weekend-edition-340/#wordcamp-us\">WordCamp US </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/licensing-for-ai-patterns-gutenberg-21-6-and-future-of-wordpress-weekend-edition-340/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/licensing-for-ai-patterns-gutenberg-21-6-and-future-of-wordpress-weekend-edition-340/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/licensing-for-ai-patterns-gutenberg-21-6-and-future-of-wordpress-weekend-edition-340/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/licensing-for-ai-patterns-gutenberg-21-6-and-future-of-wordpress-weekend-edition-340/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor.</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/licensing-for-ai-patterns-gutenberg-21-6-and-future-of-wordpress-weekend-edition-340/#new-in-the-playground-world\">New in the Playground world</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/licensing-for-ai-patterns-gutenberg-21-6-and-future-of-wordpress-weekend-edition-340/#ai-news\">AI News</a></li></ol></nav>\n</div></div>\n</section>\n\n\n<h2 class=\"wp-block-heading\" id=\"wordcamp-us\">WordCamp US </h2>\n\n\n\n<p>As mentioned, the recordings of the Workshop are now online. The block and site editor related ones are: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.tv/2025/09/05/the-block-developer-cookbook/\">The Block Developer Cookbook</a> with Ryan Welcher</li>\n\n\n\n<li><a href=\"https://wordpress.tv/2025/09/05/launch-your-personal-portfolio-a-hands-on-wordpress-workshop/\">Launch Your Personal Portfolio — A Hands-On WordPress Workshop</a> w/ Jamie Marsland. </li>\n</ul>\n\n\n\n<p>If you are more interested in AI and development, these might be for you: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.tv/2025/09/05/turn-your-local-wordpress-install-into-your-ai-coding-assistant/\">Turn Your Local WordPress Install Into Your AI Coding Assistant</a> with Jonathan Bossenger</li>\n\n\n\n<li><a href=\"https://wordpress.tv/2025/09/05/scalable-ethical-ai-how-to-own-your-content-and-your-ai-with-wordpress/\">Scalable, Ethical AI: How to Own Your Content and Your AI with WordPress</a> with Jeff Paul </li>\n\n\n\n<li><a href=\"https://wordpress.tv/2025/09/03/unlock-developer-superpowers-with-ai/\">Unlock Developer Superpowers with AI</a> with Adam Silverstein</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p>It was <strong>Ryan Welcher</strong>‘s turn to publish this month’s <a href=\"https://developer.wordpress.org/news/2025/09/whats-new-for-developers-september-2025/\"><strong>What’s new for developers? (September 2025</strong>)</a>. The updates include: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Composer package for the Abilities API now available for early testing ahead of WordPress 6.9</li>\n\n\n\n<li>Four experimental Accordion blocks (Accordion, Accordion Item, Accordion Header, Accordion Panel) powered by the Interactivity API. </li>\n\n\n\n<li>Theme.json now supports styling form elements, including text inputs and select dropdowns. </li>\n\n\n\n<li>Data Views received multiple enhancements, including infinite scroll and card layouts. </li>\n\n\n\n<li>The Date block now supports custom dates and block bindings </li>\n\n\n\n<li>A new Query Loop Title block variation displays post type labels. </li>\n\n\n\n<li>WordPress Playground added support for multiple theme installations and new CLI flags, plus PHP debugging improvements through XDebug Bridge. </li>\n\n\n\n<li>The AI team released stable versions of core libraries and introduced new development tools. </li>\n</ul>\n\n\n\n<p>For details and more, you need to <a href=\"https://developer.wordpress.org/news/2025/09/whats-new-for-developers-september-2025/\">read the post</a>. <img alt=\"🤗\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f917.png\" style=\"height: 1em;\" /> </p>\n\n\n\n<p class=\"has-accent-color has-text-color has-link-color wp-elements-d65ff08da66da2d111d02250490fde35\">Don’t miss a new article on the WordPress developer blog again. <a href=\"https://developer.wordpress.org/news/subscribe/\">Subscribe! </a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://x.com/cbravobernal\"><strong>Carlos Bravo</strong></a> managed the release of Gutenberg 21.6 and highlights in his post <a href=\"https://make.wordpress.org/core/2025/09/10/whats-new-in-gutenberg-21-6-10-september/\"><strong>What’s new in Gutenberg 21.6? (10 September)</strong></a>: </p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2025/09/10/whats-new-in-gutenberg-21-6-10-september/#new-accordion-button\">New add accordion button</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/09/10/whats-new-in-gutenberg-21-6-10-september/#improved-dataviews-grid\">Improved DataViews grid interface.</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/09/10/whats-new-in-gutenberg-21-6-10-september/#inputs\">Form elements now support global styles</a></li>\n</ol>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-41891\" height=\"291\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/09/Screenshot-2025-09-13-at-14.03.46.png?resize=652%2C291&ssl=1\" width=\"652\" /></figure>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p><img alt=\"🎙\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f399.png\" style=\"height: 1em;\" /> The latest episode is <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-120-wordcamp-us-telex-gutenberg-21-4-and-21-5/\">Gutenberg Changelog 120—WordCamp US, Automattic Telex, Gutenberg 21.4 and 21.5, and the need for more blocks</a> with special guest <strong>Sarah Norris. </strong></p>\n\n\n\n<figure class=\"wp-block-image size-full is-style-no-vertical-margin\"><img alt=\"\" class=\"wp-image-41771\" height=\"207\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/09/Screenshot-2025-09-05-at-14.12.23-edited.png?resize=652%2C207&ssl=1\" width=\"652\" /></figure>\n\n\n\n<p class=\"has-small-font-size\"><em>If you are listening via Spotify, please leave a comment. If you listen via other podcast apps, please leave a review. It’ll help with the distribution.</em></p>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p>In her latest post, <a href=\"https://wordpress.com/blog/2025/09/10/pattern-system-wordpress-publishing-workflow/\"><strong>The Pattern System: Publish Faster with Reusable WordPress Layouts</strong></a>, <strong>Anam Hassan</strong> breaks down how WordPress Patterns can save you tons of time by letting you reuse the same layouts over and over instead of rebuilding them from scratch. She explains three types: synced patterns that automatically update everywhere when you change them once, unsynced patterns that give you the same starting template but let you customize each one differently, and locked patterns that keep your design safe when other people are writing content. </p>\n\n\n\n<p><a href=\"https://developer.wordpress.org/news/2024/06/an-introduction-to-overrides-in-synced-patterns/\">Synced pattern overrides</a> are however missing from the post. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Tune in to the latest episode of the <em>WP Behind the Builds</em> podcast on Open Channels. <a href=\"https://openchannels.fm/the-founders-of-podcaster-plus-share-product-development-experiences-and-community-insights/\"><strong>The Founders of Podcaster Plus Share Product Development Experiences and Community Insights</strong></a>. Host <strong>Mark Westguard</strong> speaks with <strong>Dan Maby</strong> and <strong>Nathan Wrigley</strong>, founders of Podcaster Plus, about their new WordPress plugin designed to simplify podcast publishing and customize audio players. The plugin uses the Interactivity API for modular blocks like play buttons and volume controls, enabling users to create personalized audio players. Podcaster Plus automates publishing by generating posts for new episodes in RSS feeds and offers add-ons for custom post types, SEO, and automation. </p>\n\n\n\n<p><em>You can sign up for the beta of the new plugin at the website <a href=\"https://www.podcasterplus.com/\">PodcasterPlus.</a></em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>At WordCamp Sofia last year, <strong>Jordan Hlebarov</strong> explored in his talk <a href=\"https://wordpress.tv/2025/08/15/gutenberg-in-action-how-the-block-editor-simplifies-client-workflows-and-boosts-agency-efficiency/\"><strong>how the Gutenberg block editor simplifies the workflow for both agencies and clients</strong></a>, by making content management more intuitive and efficient, as well as how it benefits both clients and streamlines agency operations. The <a href=\"https://wordpress.tv/2025/08/15/gutenberg-in-action-how-the-block-editor-simplifies-client-workflows-and-boosts-agency-efficiency/\">video</a> is now available on WordPressTV and also offers <a href=\"https://sofia.wordcamp.org/2024/files/2025/05/hlebarov-WordCamp-Sofia-2024-1.pdf\">a link to the slides</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>On the <em>WordPress Developer Blog</em>, Justin Tadlock published an in-depth tutorial on <a href=\"https://developer.wordpress.org/news/2025/09/building-a-light-dark-toggle-with-the-interactivity-api/\"><strong>Building a light/dark toggle with the Interactivity API</strong></a>. He demonstrates creating a toggle that works without custom blocks using modern CSS techniques and WordPress APIs. The tutorial covers theme setup, color scheme storage using user meta and cookies, implementing the toggle button with interactivity directives, adding JavaScript functionality, styling with icons, and registering a block variation for easy editor insertion, resulting in a complete light/dark mode toggle for block themes. <em>You can <a href=\"https://blockdevelopercookbook.com/recipes/block-transforms/\">follow along on the Block Developer Cook Book website. </a></em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://x.com/RinodeBoer\"><strong>Rino de Boer</strong></a> normally uses Elementor to build sites. Recently he explored Block themes and the 2025 default theme. You can follow along via his YouTube video <strong><a href=\"https://www.youtube.com/watch?v=fl-YZtMZsTc\">Exploring WordPress Block Themes (Spectra, Raft, Ollie, TT5 & more) — Live Test</a></strong></p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jason Crist</strong> published a new plugin: <a href=\"https://wordpress.org/plugins/synced-patterns-for-themes/\"><strong>Synced Patterns for Themes.</strong></a> He writes in the description, “This plugin enables theme developers to ship patterns that behave as synced patterns (reusable blocks) while maintaining the benefits of theme-bundled patterns. When a theme pattern is marked as synced, it automatically becomes available as a reusable block that updates across all instances when modified.” The plugin description also elaborates on the features and how to use it. </p>\n\n\n\n<p>Crist also authored the <strong><a href=\"https://wordpress.org/plugins/pattern-builder/\">Pattern Builder</a></strong> plugin, you can also find in the repository. “Pattern Builder transforms how you work with WordPress block patterns, providing a comprehensive solution for creating, managing, and organizing patterns right from your WordPress admin.” </p>\n\n\n\n<p><em>I have not tested these plugins. Use at your own risk!</em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Bud Kraus </strong>again has a great tutorial to unregister all kinds of core block features, i.e., block styles, blocks, or theme style variations. He shows you example code and also what happens when things are unregistered that were already in use. Check out his blog post on Kinsta: <a href=\"https://kinsta.com/blog/unregister-style-variations/\"><strong>Unregistering style variations in a WordPress block theme.</strong></a></p>\n\n\n<section class=\"wp-block-newsletterglue-callout undefined not-color-set\" style=\"border-color: #f9f9e5; border-radius: 22px; border-style: solid; border-width: 0; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; text-align: left; margin-left: 0; margin-right: 0; margin-top: 0px; margin-bottom: 0px; background-color: #f9f9e5;\">\n<p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" rel=\"noreferrer noopener\" target=\"_blank\">“Keeping up with Gutenberg – Index 2025”</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. The previous years are also available: <strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/\"><strong>2024</strong></a></p>\n</section>\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor.</h2>\n\n\n\n<p><strong>Ryan Welcher</strong> chips away at his Block Development Cookbook series on YouTube. In the video <a href=\"https://www.youtube.com/watch?v=kBORsxDzwu0\"><strong>How To Convert WordPress Blocks Into (Almost) Anything!</strong></a>, you learn how to enable transforms for your blocks, a way to migrate a current block into a different block. The block editor has a few transforms out of the box, like changing the content of a paragraph block into a list block. Or a into a Quote block without losing the content. Ryan helps you solve this using the transform API for your custom blocks.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"new-in-the-playground-world\">New in the Playground world</h2>\n\n\n\n<p>In his post, <a href=\"https://www.pootlepress.com/2025/08/no-servers-no-installs-just-a-link-and-a-complete-wordpress-site-appears/\"><strong>The future of WordPress? A complete website from nothing but a link, </strong></a> <strong>Jamie Marsland</strong> explores how WordPress Playground runs entirely in your browser without servers or setup, and Blueprints transform it from a demo into a powerful tool. Blueprints are recipes that create complete professional websites with one click, benefiting agencies, educators, freelancers, and developers. Marsland built <a href=\"https://pootleplayground.com/\">PootlePlayground.com</a> and <a href=\"https://PootleSites.com\">PootleSites.com</a> to expand Blueprint creation capabilities. The future roadmap aims to push these temporary browser sites into permanent hosting.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"ai-news\">AI News</h2>\n\n\n\n<p>In his post, <a href=\"https://sethrubenstein.info/2025/09/12/boosting-wordpress-development-with-github-copilot/\"><strong>Boosting WordPress Development with GitHub Copilot</strong></a>, <strong>Seth Rubenstein</strong> explains how GitHub Copilot, an AI coding assistant, helped his team quickly build four WordPress features that would have taken months to complete manually. The AI handled tasks like creating admin panels and fixing SEO titles with minimal human oversight. However, the AI couldn’t test its own work, so Rubenstein integrated WordPress Playground, a browser-based testing environment, allowing the AI to actually browse and check the websites it builds, making the development process more reliable and efficient. Rubenstein shared all the details of how he accomplished it. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Matt Mullenweg</strong> <a href=\"https://ma.tt/2025/09/really-simple-licensing/\">shared</a> on his blog, “one of the more interesting things to launch.” this week: </p>\n\n\n\n<p><a href=\"https://rslstandard.org/\"><strong>RSL (Really Simple Licensing)</strong></a> is an open standard that helps content publishers protect their rights in the AI era by embedding machine-readable licensing terms directly into web pages using XML markup. </p>\n\n\n\n<p>The system supports various compensation models, including attribution-based licensing, pay-per-crawl, and pay-per-inference arrangements. Publishers can specify different terms for different usage types, particularly for AI training applications. </p>\n\n\n\n<p>The standard addresses challenges content creators face with AI systems using their work without clear compensation or attribution by providing a structured format that automated tools can understand and respect, giving creators standardized control over their content usage. </p>\n\n\n\n<p>The founders are <strong>Eckart Walther</strong>, who is also the co-creator of the RSS (Really Simple Syndication) standard, and <strong>Doug Leeds</strong>, former CEO of Ask.com and former CEO of IAC Publishing. </p>\n\n\n\n<p>The RSL team has established a collective licensing organization, the <a href=\"https://rslcollective.org/\">RSL Collective,</a> that can negotiate terms and collect royalties, similar to ASCAP for musicians or MPLC for films. </p>\n\n\n\n<p><strong>Russell Brandom</strong> at TechCrunch has the whole story. <a href=\"https://techcrunch.com/2025/09/10/rss-co-creator-launches-new-protocol-for-ai-data-licensing/\"><strong>RSS co-creator launches new protocol for AI data licensing. </strong></a></p>\n\n\n\n<p><strong>James Le Page</strong>, team rep on the WordPress AI team, built a first version of a plugin for publishers using WordPress: <a href=\"https://github.com/Jameswlepage/rsl-wp\"><strong>RSL Licensing for WordPress</strong></a>. </p>\n\n\n\n<p>And I am left to wonder how public LLMs adhere to this standard and more interestingly, if they will pay licensing fees. Brandom wrote, “Without some kind of licensing system, AI companies could face an avalanche of copyright lawsuits that <a href=\"https://www.lawfaremedia.org/article/anthropic-s-settlement-shows-the-u.s.-can-t-afford-ai-copyright-lawsuits\" rel=\"noreferrer noopener\" target=\"_blank\">some worry</a> will set the industry back permanently.” </p>\n\n\n<section class=\"wp-block-newsletterglue-callout undefined not-color-set\" style=\"border-color: #eeeeee; border-radius: 26px; border-style: solid; border-width: 0; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; text-align: left; margin-left: 0; margin-right: 0; margin-top: 0px; margin-bottom: 0px; background-color: #f3efe9;\">\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg’s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. </p>\n\n\n\n<p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:[email protected]\">Email me </a>with your experience</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n</section>\n\n\n<p class=\"has-text-align-center has-small-font-size\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don’t hesitate to send <a href=\"mailto:[email protected]\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:[email protected]\">[email protected]</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n<section class=\"wp-block-newsletterglue-group\" style=\"padding-top: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; margin-top: 0px; margin-bottom: 0px;\">\n<p>Featured Image: Photo by Cristina Gottardi on Unsplash</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don’t want to miss the next Weekend Edition? </strong></p>\n\n\n<form action=\"https://gutenbergtimes.com/feed/\" autocomplete=\"on\" class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\" style=\"margin-bottom: 25px;\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input autocomplete=\"email\" class=\"ngl-form-input-text\" id=\"ngl_email\" name=\"ngl_email\" required=\"required\" style=\"border-radius: 21px;\" type=\"email\" /></div></div><button class=\"ngl-form-button\" style=\"background-color: #005075; border-color: #005075; border-width: 1px; border-style: solid; color: #ffffff; border-radius: 21px;\" type=\"submit\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won’t give your email address to anyone <br />except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"><svg fill=\"none\" height=\"24\" stroke=\"#fff\" stroke-width=\"2\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><polyline points=\"20 6 9 17 4 12\"></polyline></svg></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input id=\"ngl_list_id\" name=\"ngl_list_id\" type=\"hidden\" value=\"26f81bd8ae\" /><input id=\"ngl_double_optin\" name=\"ngl_double_optin\" type=\"hidden\" value=\"yes\" /></form>\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n</section>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 13 Sep 2025 12:07: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:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Matt: Legal Win\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149776\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ma.tt/2025/09/legal-win/\";s: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:1032:\"<p>Just got word that the<a href=\"https://www.courtlistener.com/docket/69221176/169/wpengine-inc-v-automattic-inc/\"> court dismissed several of WP Engine and Silver Lake’s most serious claims</a> — antitrust, monopolization, and extortion have been knocked out! These were by far the most significant and far-reaching allegations in the case and with today’s decision the case is narrowed significantly. This is a win not just for us but for all open source maintainers and contributors. Huge thanks to the folks at <a href=\"https://www.gibsondunn.com/\">Gibson</a> and <a href=\"https://automattic.com/\">Automattic</a> who have been working on this.</p>\n\n\n\n<p>With respect to any remaining claims, we’re confident the facts will demonstrate that our actions were lawful and in the best interests of the WordPress community.</p>\n\n\n\n<p>This ruling is a significant milestone, but our focus remains the same: building a free, open, and thriving WordPress ecosystem and supporting the millions of people who use it every day.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 13 Sep 2025 01:27: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: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:11;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Matt: Really Simple Licensing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149763\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://ma.tt/2025/09/really-simple-licensing/\";s: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:675:\"<p>It’s been a busy (and tragic) week but one of the more interesting things to launch was the <a href=\"https://rslstandard.org/\">Really Simple Licensing standard</a>. I have a lot of scars from the web standards wars, so I’m hesitant to dive back in, but this is from a lot of the early Web 2.0 people, <a href=\"https://techcrunch.com/2025/09/10/rss-co-creator-launches-new-protocol-for-ai-data-licensing/\">as TechCrunch writes about</a>.</p>\n\n\n\n<p>As it happens, <a href=\"https://github.com/Jameswlepage/rsl-wp\">James LePage of Automattic has spun up a WordPress plugin for it</a>, so that was fast. Now the thing to figure out is distribution and adoption.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Sep 2025 05:18:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:12;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Matt: Account for Externalities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149759\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ma.tt/2025/09/externalities/\";s: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:2454:\"<p>When I studied economics, one of the concepts that struck me the most was the concept of externalities. <a href=\"https://www.imf.org/en/Publications/fandd/issues/Series/Back-to-Basics/Externalities\">This International Monetary Fund post explains it well</a>. In short, externalities are costs or benefits of an economic activity that affect third parties who did not choose to incur them, leading to a divergence between private and social costs or benefits. They’re spillover effects—positive or negative—that the market price fails to reflect. A classic example is air pollution from a factory, where nearby residents bear health and environmental costs not included in the price of the factory’s products.</p>\n\n\n\n<p>Open source is full of externalities. On the positive side, adoption creates ecosystems of developers and provides many paths of distribution. On the negative side, there’s often underinvestment in the very projects that sustain the ecosystem. I have a lot of empathy for why, when open source meets finance and private equity, things can go sideways. You can look at a business built on open source and see seemingly amazing margins—efficient R&D that compounds in a <a href=\"https://en.wikipedia.org/wiki/Discounted_cash_flow\">DCF model</a>. A percent here or there over many years really adds up.</p>\n\n\n\n<p>My plea to investors in open-source businesses is this: when a business is built on top of open source, incorporate a restorative investment percentage back into the projects critical to the end-user experience of what you’re offering customers. In WordPress, we call this <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a>, but it doesn’t have to be five percent; it could be 0.1%. Plan for it when modeling your expected <a href=\"https://en.wikipedia.org/wiki/Internal_rate_of_return\">IRR</a> hurdle from an investment. Then, a few years down the line, when the small percentages start to add up, you won’t face a big catch-up or gap.</p>\n\n\n\n<p>This underinvestment is itself an externality. It doesn’t appear on the balance sheet, but it can manifest in black swan events, such as security breaches or remote code exploits. Technical debt is one of the largest unaccounted-for externalities in the world today. Engineering, in the long run, is primarily a craft of maintenance rather than creation. The bulk of the cost of something comes from its upkeep over time.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Sep 2025 00:58: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: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:13;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Matt: PostHog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2025/09/posthog/\";s: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:1235:\"<p>It’s always fun to see someone pushing the limits of the web experience, <a href=\"https://x.com/photomatt/status/1966026258837549485\">as I reminisced about Flash and Dreamweaver the other day.</a> The new website for <a href=\"https://posthog.com/\">Posthog</a> is a delightful rabbit hole to explore, akin to a <a href=\"https://meowwolf.com/\">Meow Wolf</a>, with meticulous care and craft applied to every corner of the product in a way that is both fun and playful. They even have their own version of pineapple on pizza.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-149755\" height=\"322\" src=\"https://i0.wp.com/ma.tt/files/2025/09/Screenshot-2025-09-11-at-10.50.28-1024x546.png?resize=604%2C322&quality=80&ssl=1\" width=\"604\" /></figure>\n\n\n\n<p>What I want to enable with <a href=\"https://wordpress.org/\">WordPress</a> is the ability with thousands of plugins and themes for people to have unique, funky experiences like this on their website, while still providing a content structure that’s legible for interoperability and hacking. Major kudos to <a href=\"https://watilo.com/\">Cory Watilo</a> and <a href=\"https://x.com/james406\">James Hawkins</a> for coming up with this.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Sep 2025 00:09:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:14;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"Gutenberg Times: WordPress, AI, and the generational shift: insights from #WCUS Creators Studio\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=41824\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://gutenbergtimes.com/wordpress-ai-and-the-generational-shift-insights-from-wcus-creators-studio/\";s: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:10736:\"<p>Automattic’s Developer Advocates didn’t hold back at WordCamp US. <strong>Jonathan Bossenger,</strong> <strong>Brian Coords</strong>, <strong>Birgit Pauli-Haack</strong>, and <strong>Ryan Welcher</strong> sat down for a no-BS roundtable about WordPress’s future, AI’s actual role in the CMS world, and the big question: Is WordPress still cool enough for the next generation of developers?</p>\n\n\n\n<p>This wasn’t your typical conference panel with rehearsed talking points. The conversation dug into how WordPress is evolving right now—messy bits, growing pains, and all.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Is WordPress headed for “Legacy” status?</h2>\n\n\n\n<p>The episode opened with a gut-punch question from a ChatGPT impersonation of a 25-year-old YouTuber: Is WordPress becoming a “legacy CMS,” or does it still belong at the cutting edge of web development?</p>\n\n\n\n<p>The panelists weren’t having it. Birgit jumped straight into the modernization happening right now—Gutenberg’s evolution, sophisticated admin interfaces, and the shift toward block-based design systems. This isn’t your grandfather’s WordPress dashboard.</p>\n\n\n\n<p>Brian kept things grounded: Sure, newer technologies like React and Vite deliver flashy front-end experiences, but guess what? Most projects eventually need a solid content management foundation. WordPress still delivers out-of-the-box content modeling, user authentication, and integrations that would take months to build from scratch elsewhere.</p>\n\n\n\n<h2 class=\"wp-block-heading\">No-Code dreams or developer nightmares?</h2>\n\n\n\n<p>The conversation shifted to whether Full Site Editing and block themes actually simplify web building or just create new headaches for developers.</p>\n\n\n\n<p>Jonathan pushed back on the “things are getting messier” narrative. His take? Structured, scalable paradigms always require an adjustment period. It’s not messier—it’s different, and that learning curve is normal.</p>\n\n\n\n<p>Birgit shared a telling example: features like custom block styles that once required developer intervention are now accessible to content creators. It’s empowering non-developers while maintaining professional guardrails—exactly what good tooling should do.</p>\n\n\n\n<p>Brian’s perspective? The block paradigm creates consistency. More people can build and customize using standardized approaches instead of fighting with fragmented solutions.</p>\n\n\n\n<p>The subtext here: WordPress isn’t dumbing down. It’s getting smarter about who can participate in the building process.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Winning over the next generation</h2>\n\n\n\n<p>A big conversation centered on how WordPress stays relevant for younger developers swimming in a sea of shiny new options. Does WordPress still feel fresh? The team didn’t dodge the question.</p>\n\n\n\n<p>It’s true: WordPress needs to meet new developers where they actually hang out—YouTube tutorials, TikTok quick hits, and mobile-first learning. Gone are the days when developers solely learned from documentation and forums.</p>\n\n\n\n<p>Jonathan hit a key point: WordPress must keep demonstrating its power and possibilities, not just its legacy. Brian backed this up with market reality—there’s still solid demand for both PHP and React skills within the WordPress ecosystem. The work is there if developers want it.</p>\n\n\n\n<p>But here’s the proof point that really landed: Birgit shared CERN’s story—yes, the global research powerhouse—migrating thousands of websites to WordPress. The kicker? Younger developers on their team were leading the charge.</p>\n\n\n\n<p>That’s not a platform declining. That’s a platform adapting and attracting fresh talent where it matters most. The question isn’t whether WordPress can compete for the next generation—it’s whether we’re telling that story loud enough.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress and Headless: the reality check</h2>\n\n\n\n<p>Panelists were clear: WordPress has the headless chops with REST API and GraphQL support, but that doesn’t mean everyone should jump on the bandwagon. Despite the industry buzz, most sites simply don’t need headless architecture.</p>\n\n\n\n<p>The sweet spot? Clients with significant budgets or organizations treating WordPress as a content hub that feeds multiple touchpoints—other applications, mobile experiences, or external APIs. For everyone else, traditional WordPress delivers faster launch times and simpler maintenance.</p>\n\n\n\n<p>What’s interesting is the innovation happening on both fronts. Developers are not only exposing WordPress data through REST and GraphQL but also pulling external data sources like Airtable directly into the block editor. That’s where the real magic happens for most teams.</p>\n\n\n\n<p>In reality, headless setups are complex beasts with multiple failure points and hefty price tags. Traditional WordPress wins the speed-to-market race and keeps maintenance headaches to a minimum.</p>\n\n\n\n<p>The infrastructure is solid, and real projects are shipping, but headless remains the exception rather than the rule. The ecosystem continues doubling down on improving core WordPress while keeping headless as a powerful option when the benefits justify the investment.</p>\n\n\n\n<p>The short version: headless WordPress is a tool, not a mandate. Choose wisely based on your actual needs, not the hype.</p>\n\n\n\n<h2 class=\"wp-block-heading\">AI integration—beyond the buzzword</h2>\n\n\n\n<p>You knew AI would come up—it’s practically mandatory at every tech event these days. But the panel cut through the noise with some practical reality.</p>\n\n\n\n<p>Here’s the thing: AI-powered plugins have been around for a while now. The real challenge isn’t adding more AI features—it’s creating unified standards and APIs at the Core level. Think image generation, content creation, and debugging tools that actually work together instead of operating in silos.</p>\n\n\n\n<p>Brian nailed the infrastructure angle: WordPress needs to pick standards that balance extensibility with privacy. Not everyone wants their content shipped off to massive cloud-based LLMs, and rightfully so.</p>\n\n\n\n<p>The smart play isn’t chasing every AI trend that pops up on Product Hunt. It’s building the foundation that lets developers integrate AI thoughtfully—whether that’s keeping processing local, giving users control over their data, or ensuring different AI tools can actually talk to each other.</p>\n\n\n\n<p>AI in WordPress isn’t about being flashy. It’s about being useful secure and giving users real choice in how they want to leverage these tools. That’s the kind of AI integration that actually moves the needle.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Will AI replace developers?</h2>\n\n\n\n<p>The panel didn’t dance around this one: AI makes developers more productive, not obsolete.</p>\n\n\n\n<p>Jonathan kept it real about AI coding assistants like Copilot—they’re helpful, but they’re not magic. You still need actual developer expertise to review, modify, and debug what these tools spit out. Anyone who’s wrestled with AI-generated code knows it’s not exactly plug-and-play.</p>\n\n\n\n<p>The bottom line? These tools change how we work, not whether we’re needed. Skilled, creative builders aren’t going anywhere.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The future: openness, community, and better storytelling</h2>\n\n\n\n<p>As the conversation wound down, the focus shifted to what really drives WordPress forward—community and storytelling.</p>\n\n\n\n<p>Ryan made a solid point: WordPress professionals need to share more of their “hidden” case studies and innovations. We’re not just talking about what’s happening in plugin repositories, but the real work happening in agencies and institutions worldwide. Those stories matter.</p>\n\n\n\n<p>Both Birgit and Jonathan pushed for more global showcases, bar camps, and informal spaces where grassroots innovation can surface. Because that’s where the real magic happens—not in conference keynotes, but in the trenches where people are solving actual problems.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The Conclusion</h2>\n\n\n\n<p>The panel’s take? WordPress is agile, dynamic, and very much alive. With ongoing improvements, strong community engagement, and thoughtful AI integration, the platform looks ready to keep powering the web for the next generation—and beyond.</p>\n\n\n\n<p>Not bad for a 22-year-old platform that some people keep writing off.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">Resources: </h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://www.youtube.com/watch?v=e4BGaP5aNuA\">Video on YouTube</a></li>\n\n\n\n<li><a href=\"https://react.dev/\">React</a></li>\n\n\n\n<li><a href=\"https://vite.dev/\">Vite</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/\">Developer Handbook > Themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/block-editor/\">Developer Handbook > Block Editor</a></li>\n\n\n\n<li><a href=\"https://wordpress.com/blog/2025/05/07/custom-block-styles/\">Mastering Custom Block Styles in WordPress: 6 Methods for Theme and Plugin Developers</a></li>\n\n\n\n<li><a href=\"https://home.cern/news/announcement/computing/wordpress-now-available-cern-websites\">WordPress now available for CERN websites</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/rest-api/\">Developer Handbook > REST API</a></li>\n\n\n\n<li><a href=\"https://www.wpgraphql.com/\">GraphQL API for WordPress</a></li>\n\n\n\n<li><a href=\"https://remotedatablocks.com/\">Remote Data Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/ai/2025/07/17/ai-building-blocks/\">AI Building Blocks for WordPress</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/showcase/\">WordPress Showcase </a></li>\n</ul>\n\n\n\n<figure class=\"wp-block-image alignfull size-large\"><a href=\"https://wordpress.org/showcase/\" rel=\" noreferrer noopener\" target=\"_blank\"><img alt=\"\" class=\"wp-image-41854\" height=\"357\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/09/Screenshot-2025-09-11-at-14.56.48.png?resize=652%2C357&ssl=1\" width=\"652\" /></a><figcaption class=\"wp-element-caption\">Browse the <strong><a href=\"https://wordpress.org/showcase/\">WordPress Showcase</a></strong></figcaption></figure>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Sep 2025 12:41: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:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"Open Channels FM: The Changing Face of the WordPress Media Landscape and Its Impact on Brands\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=109490\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://openchannels.fm/the-changing-face-of-the-wordpress-media-landscape-and-its-impact-on-brands/\";s: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:210:\"In this episode, Rae Morey and Adam Weeks dissect the intricate WordPress media landscape, discussing content types, monetization strategies, and effective marketing approaches for creators and companies alike.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Sep 2025 08:22:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:16;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: On WP Product Talk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149743\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ma.tt/2025/09/product-talk/\";s: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:476:\"<p>I had a great chat with <a href=\"https://www.mattcromwell.com/\">Matt Cromwell</a> and <a href=\"https://www.gravitykit.com/\">Zack Katz</a> on <a href=\"https://wpproducttalk.com/\">WP Product Talk</a> today, mostly about the intersection of AI and WordPress, give it a watch!</p>\n\n\n\n<figure class=\"wp-block-embed alignwide is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Sep 2025 20:59: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: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:17;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"WPTavern: #184 – Rachel Cherry and Alex Aspinall on the State of WordPress in Higher 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=199424\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/podcast/184-rachel-cherry-and-alex-aspinall-on-the-state-of-wordpress-in-higher-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:58321:\"<details>Transcript<div>\n<p>[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, the state of WordPress in higher education.</p>\n\n\n\n<p>If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Rachel Cherry and Alex Aspinall.</p>\n\n\n\n<p>Rachel is the founder of WP Campus, a nonprofit organization she launched a decade ago to support professionals using WordPress in higher education. Under her leadership, WP Campus has become a community hub, hosting conferences, and leading research projects tailored to the unique needs of its members. Currently, Rachel serves as the organization’s Director of Technology, and sits on its board of directors where she continues to drive innovative projects.</p>\n\n\n\n<p>Alex is part of the globally distributed team at Human Made, an established WordPress Enterprise Agency founded in 2011. At Human Made, Alex helps deliver large scale web platforms for major organizations, including names like Harvard, Standard Chartered and PlayStation. In recent years, Alex has developed a strong interest in how WordPress can uniquely serve the higher education sector, and he’s become especially passionate about exploring and supporting this use case.</p>\n\n\n\n<p>During the podcast, we get into the story behind WP Campus, which has for the past decade been empowering people who use WordPress in colleges and universities. We explore Human Made’s growing interest in the complexities of higher education projects, from large multi-site networks to the strict accessibility and governance requirements such projects increasingly require.</p>\n\n\n\n<p>The heart of the conversation is the just released State of WordPress in Higher Education 2025 report. We dig into the reports key findings, such as the slow adoption of the block editor and full site editing, the challenges of managing hundreds of university websites with small teams, and why enterprise level tools are in such high demand.</p>\n\n\n\n<p>Whether you’re a WordPress professional, agency, educator, or are just curious about the unique needs and opportunities the higher education space offers, this episode is for you.</p>\n\n\n\n<p>If you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Rachel Cherry and Alex Aspinall.</p>\n\n\n\n<p>I am joined on the podcast today by two fabulous guests. I have Rachel Cherry and Alex Aspinall. Hello both. How are you doing?</p>\n\n\n\n<p>[00:03:36] <strong>Rachel Cherry:</strong> I’m lovely, Nathan. How are you?</p>\n\n\n\n<p>[00:03:38] <strong>Nathan Wrigley:</strong> Good, thank you. And Alex, you all right?</p>\n\n\n\n<p>[00:03:40] <strong>Alex Aspinall:</strong> How are you doing? I’m great.</p>\n\n\n\n<p>[00:03:41] <strong>Nathan Wrigley:</strong> Thank you so much. So we’re going to be talking today about the higher ed space, the higher education space, and WordPress. Specifically about WP Campus. In order to establish both of your credentials in this space, I wonder if we could get a little biography from you both, maybe 30 seconds, something like that, just explaining who you are, where you work, what your connection is to WordPress and specifically WP Campus.</p>\n\n\n\n<p>So let’s go with Rachel first, if you don’t mind.</p>\n\n\n\n<p>[00:04:05] <strong>Rachel Cherry:</strong> Hi, yes. So I am the founder of WP Campus, which has been around 10 years as of last month, which is kind of wild. And so we are a nonprofit organisation that supports people that use WordPress in higher education. And we host conferences, we host research projects like the one we’re going to discuss today.</p>\n\n\n\n<p>So currently I am just one of a board of directors and I’m the director of technology specifically, but I was the lead for this project.</p>\n\n\n\n<p>And then by day I am the accessibility developer at the University of Rochester. And so I’ve worked in higher ed and other enterprise organisations for the last 18 years.</p>\n\n\n\n<p>[00:04:43] <strong>Nathan Wrigley:</strong> Thank you so much. That’s great. And Alex.</p>\n\n\n\n<p>[00:04:46] <strong>Alex Aspinall:</strong> I mean, I have way less credentials in terms of my WP Campus presence. I work for Human Made, which is an enterprise WordPress agency. We’ve been around since 2011, I think.</p>\n\n\n\n<p>We’re a globally distributed team, people across all continents. And we specialise in building larger scale web platforms for organisations such as Harvard, Standard Chartered, PlayStation, few other names I could throw in there.</p>\n\n\n\n<p>We also have an enterprise hosting solution too. We, probably about a year, two years ago started, well, I personally started becoming really interested in the higher education use case for WordPress. I think it’s really interesting. I think it’s quite unique. And that’s really why Rachel and I started speaking, I don’t know, maybe 18 months or so ago, and that led us to I guess this podcast.</p>\n\n\n\n<p>[00:05:32] <strong>Nathan Wrigley:</strong> Okay, thank you. So the podcast is going to be framed around a freely available resource, and it’s called The State of WordPress in Higher Education. I will link in the show notes rather than try to butcher a URL in an audio podcast. I’ll link in the show notes over at WP Tavern to that and you can freely download it.</p>\n\n\n\n<p>It’s billed as a research report in the year 2025. I confess, I don’t know if you did a 2024 version and beyond, but we’re going to concentrate on the 2025 version.</p>\n\n\n\n<p>But I guess some more preamble, I’m afraid, but I guess we probably should establish what WP Campus is. And I just want to be clear, we recently released an episode about WP Campus Connect, and so I just want to draw a distinction there. These two things are not the same thing.</p>\n\n\n\n<p>So I’m going to toss that one to Rachel. Will you just tell us what the endeavor is at WP Campus, why it was set up? What need is it trying to satisfy?</p>\n\n\n\n<p>[00:06:22] <strong>Rachel Cherry:</strong> Yeah, so about 10 years ago I was working in higher education, building WordPress websites, and I wanted my own community. And I was going to a lot of WordCamps and no one was talking about the work that I was doing, the kind of work that I was doing. There wasn’t a space for my kind of work at camps at the time and so I started this organisation.</p>\n\n\n\n<p>And so for the last 10 years we have worked to build a community of people, of like-minded people, that are using WordPress to support the mission of higher education. And we support each other with professional development, with resources, with connection, and every now and then some advocacy. Years ago we raised funds to do the audit of Gutenberg, accessibility audit to be more specific.</p>\n\n\n\n<p>And so because accessibility is very important in our space, and here was this editor coming round going to cause a lot of change, as it has, and there was this huge unknown of whether or not it was accessible. And that was a very big deal to our group. A lot of our group has policies and such. And so every now and then we do work like that.</p>\n\n\n\n<p>This type of research is very important to our mission as well, to provide data, to provide insight to our community members and our institutions.</p>\n\n\n\n<p>And I think one of our kind of ideals that we stand on is that we want to give people data to inform their own decisions, kind of like with the editor audit. Like, we didn’t tell people it was inaccessible or accessible, we gave them data so that they can decide for themselves. And so this research, you know, is a big part of that as well.</p>\n\n\n\n<p>There’s a lot going on in our community right now. And we wanted to pull out this data, and one of our objectives was to better understand the needs and challenges of people using WordPress in higher education.</p>\n\n\n\n<p>[00:08:06] <strong>Nathan Wrigley:</strong> Okay. Thank you for that, Rachel. I’m going to advise that everybody goes over to the following URL. In fact, pause the podcast right now. If you’re sitting at a computer or you’re on your phone, go to wpcampus.org and over there you’re going to be able to see more about the mission.</p>\n\n\n\n<p>At the moment, the membership numbers are displayed on the website. Whether or not that’s true when you visit, I don’t know, but 1,763 members, 688 institutions. That is an impressive number, by the way. I mean, the membership is great, but the institutional count is utterly fabulous. That’s really impressive.</p>\n\n\n\n<p>But the idea is to juxtapose WordPress and higher ed. We don’t really use that word in the UK too much. We just kind of generically call things, I think university, so I just want to clear that up. Does higher ed basically service the needs of anybody that’s left traditional school? So I don’t know, 18 plus who’s going through some degree program or something like that?</p>\n\n\n\n<p>[00:08:58] <strong>Rachel Cherry:</strong> Yes. Our mission is really to support kind of that, and I apologise, I can’t think of the general term. There’s a kind of a general term that we do use across, that’s more of a global, because higher ed is very specific to the United States in a lot of ways.</p>\n\n\n\n<p>So we do support kind of that further education. We do have a lot of UK institutions and universities that participate in the work that we do. I would say that our group is largely United States, a lot of UK, a lot of Canadians as well. But we do have folks from all around the world. So it’s really just that spirit of wanting to support that mission of education.</p>\n\n\n\n<p>Over the years have had a lot of people, even in the kind of K through 12 or early education people, wanting to be involved. And a lot of the things that early education and higher, or later, education have in common, but they’re also very different. So we haven’t quite merged with the early education group in that way. But yes, we do support largely this kind of university, higher education context.</p>\n\n\n\n<p>[00:09:59] <strong>Nathan Wrigley:</strong> Okay, thank you. Yeah, that clears that up. I mean, you’re really busy over there. You’ve got loads of, I mean, an awful lot going on. There’s a whole thing about governance. You’ve got a newsletter, you put on real world events as well as online based events, and a Slack community. And there’s just a lot going on. It seems like, I don’t know if this has taken over your life, but it seems like it could well have done.</p>\n\n\n\n<p>[00:10:17] <strong>Rachel Cherry:</strong> It did for a long time, and these days I have a lot more help. For a long time I was really the only director and then a few years back we did the work to implement more of a fleshed out kind of board of directors. And so I’m just a member of that board now. I am not the director in charge.</p>\n\n\n\n<p>[00:10:34] <strong>Nathan Wrigley:</strong> Yeah, all of that, again, is freely available on the website. You can see who the current custodians of the project are.</p>\n\n\n\n<p>So where does Human Made, Alex, where does Human Made fit into this piece of the puzzle? How, have you become involved?</p>\n\n\n\n<p>[00:10:45] <strong>Alex Aspinall:</strong> Yeah, I guess it goes back to what I was saying a little bit before about, I was just personally really interested in the higher ed use case of WordPress, and started digging around into learning a bit more about what kind of projects people had on the go, and what kind of platforms were being built in the space. They’re diverse, they’re complicated, they’re multi-site, you know, interesting, I guess is why I started getting involved.</p>\n\n\n\n<p>Human Made is one of the agencies that builds complex, larger projects, so there’s a fit there as well. So we started looking around the space, seeing who it might be interesting to talk to, just in terms of learning a bit more. Obviously Rachel and WP Campus. We started talking informally about just the experience of being in WordPress in higher education.</p>\n\n\n\n<p>I think the first thing we collaborated on over a year ago now was we did an online conference in the run up to WP Campus’ IRL conference a couple of weeks later. And then after that we enjoyed working together, we thought there was a lot more material we could work on, and this research project, I suppose was the biggest idea that came out of those discussions following that.</p>\n\n\n\n<p>[00:11:52] <strong>Nathan Wrigley:</strong> Okay. So I’ve downloaded the report and I’ve had a thorough look through it. There’s an awful lot in here actually. It is available, like I said, I’ll link to it in the show notes. However, I have to say, it’s a very graphical thing that we’re going to be talking about. There’s loads of charts kind of explaining the percentages in many cases of one thing versus another. So you will probably get more out of this podcast if you have downloaded it, and had a little peruse.</p>\n\n\n\n<p>It doesn’t really matter who wants to take this, but I’m going to ask one of you to sort of explain what are some of the curious findings that you’ve got? Maybe the one, two, or three top level items that you think might be of great interest, and then we can maybe dig into the weeds of those particular things. So anything that your intuition suggests as something our audience might be interested in.</p>\n\n\n\n<p>[00:12:32] <strong>Rachel Cherry:</strong> I’ll start with like my key takeaways, which are very broad, and then dive into a few of the data points. But my two key takeaways that I reported on was that our higher ed teams need more resources, and a way to share more resources, and that higher education needs more enterprise features in the WordPress product. Those were kind of my two, like looking at the data, my two takeaways. And at our report presentation that we had recently, we talked about that with folks in the community.</p>\n\n\n\n<p>But some of the really interesting questions that we asked were around usage of the block editor and full site editing. And so nothing super surprising. But let me pull up that particular chart really quick.</p>\n\n\n\n<p>So we asked folks, how fully have you adopted the block editor and full site editing? And only 40% of the respondents are using it on all of their sites. And there was a range there. Like we asked, are you using it on all of them? Are you using it on like most of them? Alex touched on this earlier, higher ed is a very interesting space, and the thing that I, people used to hear me say frequently was that WordPress and higher ed is WordPress in the enterprise on a budget. And what that usually means is a lot of under-resourced teams having to use WordPress to solve these large scale enterprise, high user environments.</p>\n\n\n\n<p>What comes out of that is very creative, very custom, very interesting, complex solutions. This is kind of tying back to my takeaway of people need more resources and they need ways to share them. Because something that is also interesting in our space is how much custom work there is. How much people are solving the same problems, but they’re solving them on their own, and they don’t have a way to really share them. It takes a lot of energy to like maintain a public plugin that gets used around. And so because these plugins are usually so custom that creates this whole challenge.</p>\n\n\n\n<p>So anyway, back to the block editor. So when you’re trying to introduce new functionality in these complex enterprise environments, it can take a while. Higher ed is usually, it’s usually a pretty slow train of adoption, and there are reasons. And a big reason for that is resources. And you’re not just going to turn around and add the block editor on because you’re probably managing like 300 websites, and you can’t just change the editing experience without changing all of your training materials, and without changing your governance.</p>\n\n\n\n<p>So yeah, so there’s context to why, and there’s lots of reasons. There’s other reasons that we don’t really dive into in these numbers, but there’s context that goes into why only 40% are actually using it on all their sites, even though Gutenberg came out in 2019.</p>\n\n\n\n<p>[00:15:28] <strong>Nathan Wrigley:</strong> Can I just ask you a quick question? You said something which took my breath away there. You said these people are managing probably 300 websites. I didn’t see that in the report anyway, and that seems like a really surprising number. How does that map to an institution? Is it because there’s a website for, I don’t know, the geography department, and then there’s another one for the sociology department? Is that what’s going on there? Because 300 seems like, well, I mean you could run your entire agency and not have 300 websites under your custodianship. So what’s going on there? You dropped that number and I was really surprised by it.</p>\n\n\n\n<p>[00:16:01] <strong>Rachel Cherry:</strong> Yes, in higher ed, there is a website for everything. And there is the notion of, if you’re familiar with domain of one’s own, which is a concept actually introduced in, or invented in, higher education in the States. And what it really means in our context is that people will set up WordPress multi-sites and then let people create their own sites on it.</p>\n\n\n\n<p>And they’re largely blogs, like a faculty member’s blog or a research lab’s blog. But it’s a way to allow the sharing and the spreading of information and research in higher ed with kind of a low service effort.</p>\n\n\n\n<p>So like you can log on and you have like two template choices or two theme choices, and then you’re responsible for kind of managing a site on there. And then they try to, you know, build this domain in a way that’s kind of reusable code and plugins, like you do in WordPress. So yeah, you can get a lot of sites going.</p>\n\n\n\n<p>[00:16:54] <strong>Nathan Wrigley:</strong> Yeah, that’s absolutely fascinating. I hadn’t really thought about it as, well, for example, if I go to a university website here and I end up at the Department of Geography, I’m kind of thinking it’s the same website, but I imagine, you’re right, it’s a whole different team of staff that are logging in and doing the geography stuff than they would be elsewhere.</p>\n\n\n\n<p>Okay, so that’s curious. Right, back to the points that you mentioned, the resources. When you say that universities, I’m just going to use the word university, when you say that these institutions have limited resources, it kind of feels like the funding model in the US is very different to one that we have in the UK, and possibly different parts of the world.</p>\n\n\n\n<p>And it always feels as if the US institutions probably have more money, but I’m probably thinking of things like the Ivy League universities where the fees are very high, but that probably doesn’t map all over the place.</p>\n\n\n\n<p>So when you say resources, are you talking about cash, them being strapped for cash, or are you talking about human beings? You know, there’s not enough boots on the ground, if you like, or maybe it’s a confection of both.</p>\n\n\n\n<p>[00:17:50] <strong>Rachel Cherry:</strong> Probably both, but largely headcount. I mean every university or institution’s different and some might actually be more cash strapped than others. But it’s largely a headcount. It’s largely the fact that in a lot of these institutions, you’ll have a web team of like three people managing 300 websites. And what that means, how they have to kind of manage how they spend their time and what they do with it.</p>\n\n\n\n<p>[00:18:12] <strong>Nathan Wrigley:</strong> Okay, so it’s a bit of both. There’s less human beings than there might be in the corporate space, but also they’re probably fairly strapped for cash.</p>\n\n\n\n<p>And then moving onto the block editor, I’ll come to you in a second, Alex, if that’s all right. But staying with Rachel for a moment. I’m looking at the chart now, 40% adoption of the block editor entirely, using them on all the websites, so point four, 40%. Then we drop down to 23% using it on some of them. 19% using on most, and then the last one really of interest here is 16% who are not using the block editor at all.</p>\n\n\n\n<p>Has that adoption just sort of slowly ramped up, because 40% in higher ed feels like, to me, it doesn’t seem like a bad number in all honesty. I know that in the real world probably it is higher adoption than that, but I’m guessing that there are many more constraints on universities just switching out to the block editor. So is that number slowly but inexorably rising? It feels like it’s going in the right direction, but with the caveats that it has to happen slowly.</p>\n\n\n\n<p>[00:19:11] <strong>Rachel Cherry:</strong> We don’t have data from the last, you know, four or five years to truly answer that question. But the vibe, or the sentiment, in our space is that, yes, it’s been slowly increasing. And part of that is just people, you know, there’s lots of factors, right? There’s people waiting for maturity. They’re waiting for it to grow more before they adopt. Or because of said resource discussion, people are waiting for the next redesign, for example.</p>\n\n\n\n<p>In our space, I think we even asked, how often do you redesign? Is one of the questions that we asked in our survey. I think it’s on average like every three years or so, three to five years, something like that. And so people in our space tend to wait for that to really implement large scale changes because it’s just easier to do it then than it is, you’re already doing a bunch of work, you might as well do it then. And so that’s another factor involved.</p>\n\n\n\n<p>[00:20:04] <strong>Nathan Wrigley:</strong> Yeah, there’s a little corollary to the chart that I’ve just described, underneath it, where the question was asked, how long did you wait before implementing the block editor? And basically the data skews towards, we’re trying to wait as long as possible. You know, more than two years is 35%. So it feels like, because of the nature of the audience, and I guess accessibility is a really crucial part of this, you’ve got to put the brakes on. You can’t be all that agile in the same way that maybe a corporate would, because you’ve got lots of stakeholders, lots of editorial teams that need updating and so on and so forth. So that’s kind of interesting.</p>\n\n\n\n<p>And then I know that you didn’t mention this, Rachel, but it’s tantalizingly underneath the question that has just been mentioned. We move on to full site editing and it feels like, whoa, the brakes are really on for that. 62% of respondents said that they’re not using full site editing at all, and the numbers are kind of into low single figures where they’re describing whether or not they’re using it on all their sites.</p>\n\n\n\n<p>So the block editor, in terms of content creation is on the rise, but it would appear that full site editing, the ability to, you know, modify themes and customise that kind of thing inside of WordPress, not so much. It feels like the breaks are really on there, probably as a result of the resources that you mentioned earlier.</p>\n\n\n\n<p>[00:21:15] <strong>Rachel Cherry:</strong> It’s probably following the same trajectory. Full site editing is newer and it will grow with time. But I think with full site editing, it’s very similar concerns to the block editor, but it’s more about governance and control. When you do set up these WordPress websites where you do have a lot of governance over accessibility or over branding, it’s really scary.</p>\n\n\n\n<p>The full site editing without fully understanding what it does, and how you can control it and set boundaries, there’s that concern about governance of, we don’t actually want people using our websites to be able to customise the site. We want a lot of control over that, most of the time, not everyone, but most people. Because in our space, a lot of the users that are coming in and kind of admining their site, or editing their site, are not trained web professionals. They are biology professor who’s kind of doing job as needed.</p>\n\n\n\n<p>And so we want them to have flexibility to go in and publish content. We want them to be able to share their research, share their information, but we don’t want them to be able to have free reign to kind of break our governance rules, and potentially create risk to our brand or to our accessibility and things like that. And so the full site editing, there’s a lot of people that are kind of hesitant and being patient for the full site editing implementation.</p>\n\n\n\n<p>[00:22:43] <strong>Nathan Wrigley:</strong> Thank you for that. So we’ve got a picture then of how WordPress is deployed. It seems like it’s the CMS of choice over in the education, higher ed landscape anyway.</p>\n\n\n\n<p>So moving over to Alex, I’m talking more about the implementation of this now. Presumably agencies such as yourself, Human Made, you are getting requests from these institutions to build these websites.</p>\n\n\n\n<p>How does that process work? Do you generally tend to work with like the web team over there and you, you know, backwards and forwards with them? And then the bit that I’m most curious about, talking about what Rachel just said, how on earth do you get these people so that they can use the website that you’ve built? Because, in many institutions it may be one or two people have got their hands on this, but it sounds like there may be several hundred people who need to access the WordPress website. So training.</p>\n\n\n\n<p>So there’s two parts to that question really. How are you interfacing in terms of building the things when you are approached by these institutions? And then how do you get to hand it off and provide a good level of support and training to them?</p>\n\n\n\n<p>[00:23:37] <strong>Alex Aspinall:</strong> Yeah, it’s a good question. I think the main back and forth we have would be with, typically the web team of course, as you guessed there. I think each institution is set up differently. I think Rachel probably could testify to the fact that, you know, the challenges and benefits of being set up one way is not mirrored and how it’s done elsewhere. So I do think agencies generally have to be flexible, and work within the parameters that they’re asked to, you know, that’s kind of our job.</p>\n\n\n\n<p>I think there are also, particularly with the biggest implementations in higher ed, there’s often other agencies involved or other specialists involved as well. You might be working with someone, you know, we might be bringing design and platform expertise and you might be working with someone that’s looking after the marketing and the wider brand of the university as well.</p>\n\n\n\n<p>So I think there’s quite a lot of collaboration indeed, like the amount of time I’ve spent within higher ed, I think collaboration is a really big theme, and I think that the successful projects that we see getting delivered are very collaborative in nature.</p>\n\n\n\n<p>And then yeah, in terms of training and handover, I imagine on the ground in the universities in question, they have a bigger challenge than perhaps we do, because we’ll be handing it over to a smaller percentage ultimately of the wider institution. We don’t run 300 separate training sessions or anything like that. We provide detailed documentation, videos, follow up sessions, and we make sure that the team that are receiving the product are fully versed in it.</p>\n\n\n\n<p>I think a lot of the time those people are. I think it’s handing it over to the editors that then the work will have to be done on a one-to-one basis in terms of what they’re allowed to do, going back to the FSE point. Not everyone can edit everything.</p>\n\n\n\n<p>[00:25:08] <strong>Nathan Wrigley:</strong> It’s kind of curious because when I see a website for, again, I’m going to use the word university. When I see the website for university, I’m just seeing this kind of brochure site, really. In other words, here’s the university, look at all the magical things that we do. But my daughter has just been at university, and there’s so much more to it than that. So there’s like this portal where my daughter goes, logs in, and now the expectation is that much of the work will be carried out in that format. You know, you’ll submit content, there will be lesson plans and all of that kind of thing.</p>\n\n\n\n<p>So essentially the question is leading me up to, what kind of things are being built into this website apart from the public facing bit, which we might call a prospectus, really? You’ve got this online prospectus, the world can see it, we can marvel at how great the university is, but it seems like there’s a heck of a lot more. Each department has its own stuff. Presumably the students, increasingly being expected to log in, especially post COVID, I imagine as well. So again, that one probably to Alex. What kind of curious things are built inside these WordPress websites, LMSs, brochure sites, and so on?</p>\n\n\n\n<p>[00:26:10] <strong>Alex Aspinall:</strong> Yeah, I mean, no, you listed off a lot of the options there really. I mean, the main three or four pages you might think of as being the university site are very much that, just the brochure. But there’s all kinds of different requirements for different departments. We’ll have different kinds of products that they want to build in there. You’ve got archives of hundreds and thousands of different reports and pieces of information from the past that will be needed to be upheld.</p>\n\n\n\n<p>We rebuilt Harvard Gazette, which is, you know, obviously part of the wider infrastructure at Harvard. So that’s a massive publishing site. That’s essentially the same as any magazine or newspaper would have. It’s what it is. As you say, the student logins, all the complexities of multi-site. Rachel, I’m sure you’ve probably got a list longer than that.</p>\n\n\n\n<p>[00:26:53] <strong>Rachel Cherry:</strong> It’s a lot, right? In my role as an accessibility professional, do a lot of governance work and it’s trying to tie together all these different types because there’s WordPress at my university, but there’s tons of other stuff. There’s front end brochure websites, and there’s research lab sites, and there’s marketing websites, and then there’s all the academic focused, as Alex mentioned a few. There’s a lot of web applications. There’s a lot of people doing a lot of different types of content in different ways. And how does that all tie together?</p>\n\n\n\n<p>We talk a lot about things like data sharing and a lot of the work that we do is also just trying to keep all this content in sync and trying to not have duplicates or not have outdated content, things like that. So when we talk about governance is like a big word that means a lot of things to different people. But a lot of it is really just kind of managing quality and the expectations of how websites are managed and how our mission as an institution is kind of presented to the world.</p>\n\n\n\n<p>So it’s interesting, Nathan, that you say, like to you, it’s like you just see this brochure site, and that’s a common conversation about kind of the challenges of enterprise. We have all this internal knowledge and we also have, you know, there’s a funny common conversation in universities about acronyms. We have all this internal terminology that we use, but does that come across to the end user? Does the work that we do translate? And it’s a complicated question to solve.</p>\n\n\n\n<p>[00:28:22] <strong>Nathan Wrigley:</strong> I’m kind of curious as to whether or not WordPress can service the needs of the entire IT department, if you like, within a higher ed institution. So I’m imagining that the legacy is that there’s many, many pieces of software that are being used throughout the university. You know, there may be some sort of portal where people log in and check in that they’re actually at work. There may be other things where people log their essays that they supply to their tutors and things like that. Plus then there’s the brochure on the front end.</p>\n\n\n\n<p>I’m curious as to whether or not WordPress in the future can handle most of those, and whether there’s an appetite from the higher ed institutions to have everything in one platform. They may see that as, you know, maybe that presents an Achilles heel to them. If there’s one systemic failure, then the whole thing goes down. But I’m curious as to whether or not WP Campus is trying to pitch WordPress as the answer to all the things, or is it a much more limited subset of things? You know, it’s the website, and it’s the LMS and that kind of thing. So that’s more of a kind of roadmap question, whether you’re trying to push WordPress as being the answer to everything.</p>\n\n\n\n<p>[00:29:20] <strong>Rachel Cherry:</strong> As an organisation, we don’t really push for WordPress to be used. It’s not really our mission. That’s not how we think or how we work. It’s really more just to support people that have, that are using it, and to help each other in our roles.</p>\n\n\n\n<p>To answer your broader question, I mean I kind of, it depends. Can WordPress be used for all these things? Sure. I’m sure you could finagle it to do a lot of things. Should it do all those things? Probably not. Not in its current state, no. It, in and of itself, is a database with programming and you can get it to do all kinds of things.</p>\n\n\n\n<p>[00:29:54] <strong>Nathan Wrigley:</strong> Yeah, there was one of the questions which I’ve just refound and it was, what challenges do you face with the WordPress plugin ecosystem? And bloat was one of the things that was mentioned. So yeah, this is specifically to do with WordPress plugins. It’s not WordPress Core. I thought that was kind of curious.</p>\n\n\n\n<p>And then in second place, just by a whisker, was accessibility requirements as well. And you’ve touched on accessibility a lot, Rachel. You’ve mentioned the word tangentially, and obviously that’s your kind of area of expertise.</p>\n\n\n\n<p>I’m guessing, but I’m not sure for certain, does the US compel certain things to be done in certain ways? You know, if you’re a university and you launch a website, does it have to comply with things? And do those things map across the globe? I know that we’ve got the European Accessibility Act, which just dropped earlier this year. So the question is pretty broad, but just tell us about the accessibility requirements and how stringent they are in higher ed as compared to just, I don’t know, if I’ve got a brochure site online selling widgets into the community.</p>\n\n\n\n<p>[00:30:51] <strong>Rachel Cherry:</strong> So unfortunately the US does not have as strong accessibility laws as Europe does, or many countries in Europe, like the UK and others. We do have some though, and we do have something called section 508, which basically means that if you receive federal funding or federal service, you do have to meet certain accessibility requirements.</p>\n\n\n\n<p>And so universities in the US largely fall under that. Not always. Universities are probably the only real kind of ecosystem in the US that does have more accessibility rules than other industries like general business. And so that’s why we did that accessibility audit of Gutenberg to help support our community in that time.</p>\n\n\n\n<p>And so it is very important, accessibility is very important. And it kind of touches on something that I said earlier about, a lot of universities in the US especially build custom plugins because they have to meet accessibility guidelines and it’s really challenging sometimes to find general use plugins available in the ecosystem that meet those guidelines. And so a lot of teams just kind of build their own stuff.</p>\n\n\n\n<p>And so I would say that those top two challenges, when it comes to bloat and accessibility are really, like that was not surprising in any way. That is the common struggle. It’s finding plugins that meet our accessibility requirements, especially with the front end. And then having plugins that do a lot of functionality that people don’t need. And so I think a lot of these times will lend people to kind of build their own plugins.</p>\n\n\n\n<p>They won’t rebuild like complicated plugins, any kind of administrative plugins or like form builders and things like that. Like, people largely will use plugins from the ecosystem. But there’s a lot of custom functionality in the work that we do.</p>\n\n\n\n<p>So once again, I think the common theme is it’s complex, and because of that complexity, there’s all kinds of interesting challenges. And so plugins are hard to kind of maintain. It feels like, I hear a lot of people expressing to me, you know, how often they have to kind of update them and keep them up to date, and manage and do all that. And so it’s not enough to stop people from using WordPress, like they’re using it, but having better solutions for some of these challenges would be an example of kind of supporting these higher ed institutions using WordPress.</p>\n\n\n\n<p>[00:33:12] <strong>Nathan Wrigley:</strong> Thank you. Alex, back to you. A question around just higher ed in general, is this like an area which Human Made is drilling down on? Is this an endeavor that you are trying to grow the pie, if you like? There’s thousands, I would imagine, maybe tens of thousands of institutions which come under the banner of higher ed. And at the moment, I don’t know what percentage of them are using WordPress. If we were to ask every single one of them, I would imagine it’s a significant percentage.</p>\n\n\n\n<p>But the idea of WP Campus, I guess, is to have a central place where people can go and learn about it. And Human Made being involved, presumably there’s some advantage to you as an enterprise agency. The question basically boils down to, is this an area that you are going to be working on, pitching towards, trying to grow in the near future?</p>\n\n\n\n<p>[00:33:55] <strong>Alex Aspinall:</strong> Yeah, for sure. I think like I said at the start, we’re generally the kind of agency who works on larger platforms, maybe more complicated platforms. And I think we’re interested in, you know, a broad range of industries. Probably higher ed is one of four or five, probably publishing, finance, enterprise generally, entertainment, higher ed. I think those industries tend to provide very interesting use cases for WordPress. We’re interested in all of them.</p>\n\n\n\n<p>I think we’ve seen, in the last couple of years, a lot of interesting higher ed projects being worked on by us and obviously by lots and lots of other people. And yeah, like we’re definitely part of that world, and really interested in it and, you know, yeah, definitely keen to continue being part of it, a hundred percent.</p>\n\n\n\n<p>[00:34:45] <strong>Nathan Wrigley:</strong> It’s kind of interesting, towards the bottom of the survey, so right near the bottom, probably nine tenths of the way through, there’s a whole series of kind of roadmap questions, if you like, things about the future of WordPress. And the fairly, I don’t know, blunt question, let’s put it that way, because it could have gone in the other direction it turns out, it’s hopefully gone in the right direction, but the question was asked, would you move to another CMS if you had time and resources?</p>\n\n\n\n<p>And gosh, that could go the wrong way. The answer was a strong 49% no. Which, when you say it like that you think, hang on, only half of the people wouldn’t move. But then you ask, then the other bit was only 23% are looking to move at all, and 28% are unknown. So really you’re up into the sort of seventies really, who either are not sure or want to stick around.</p>\n\n\n\n<p>That seems like an amazing statistic to me. And obviously, Human Made have kind of put their flag in the ground in higher ed, WP Campus, the same. It feels like you’ve got quite a lot of runway with these institutions in the future. Unless things go horribly wrong within WordPress, it looks like you’ve got an audience long into the future.</p>\n\n\n\n<p>[00:35:43] <strong>Alex Aspinall:</strong> I think the report offers a really positive view of WordPress. As a technology choice, I think on the whole, most people are saying it was delivering what they needed it to. I can’t remember if it’s 70, 75%, something like that, it was said that it was either meeting or exceeding their expectations, which I think is a large number. Again, it’s not like 90, but if you think about the amount of ways you can complain about software, particularly people that know a lot about the software, I think 75% is pretty good.</p>\n\n\n\n<p>And yeah, you’re right, whilst people are perhaps saying, oh, they’re looking around or they’re always considering alternatives, I think we’ve seen repeatedly that the platform, its security credentials, its extensibility, some of the core features, are all spoken about really, really favorably from the people that responded to the survey.</p>\n\n\n\n<p>And I think really we saw a passionate group of people responding to a technology they know a lot about. There are a lot of ways it could improve, we all know that, and the people that completed the survey know that as well, and they’ve, you know, they weren’t shy about listing them out. But I think you’re right, overall, the level of satisfaction is good, and I think with further adoption and the adoption of newer features, I think that that satisfaction should continue to grow.</p>\n\n\n\n<p>In fact, one of the things I was actually kind of wanting to ask Rachel actually was back to the point about FSE earlier on. I actually think WordPress needs to do a much better job of marketing itself, particularly around newer features, and particularly perhaps at the enterprise level, or where there’s complex use cases, or where a lot of the users aren’t developers. The benefits of FSE, for example, are numerous. And we’ve seen clients and indeed we’ve used it ourselves, and the people using it really like it, and I think that’s reflected in the report as well.</p>\n\n\n\n<p>So I was going to ask Rachel, as well as the other examples of why adoption might have been slow in higher ed, do you think that there’s actually a case for people in, maybe agencies, maybe WordPress Core doing a better job of the selling and the pitching? Because I actually believe that there are worse solutions that do a better job of convincing people that they should work in a certain way.</p>\n\n\n\n<p>[00:37:51] <strong>Rachel Cherry:</strong> I think there’s always room for more marketing and kind of communication about what’s going on, and there’s always improvement for that. And I do feel like Core could do more towards the enterprise ecosystem as well. That, you know, I don’t know what their primary use case that they’re focusing on is. But I would be surprised to find out that enterprise is higher up on that list. And so paying attention to our community and having open conversations with them, and there has been some efforts at that. There’s not like a non amount of effort on that.</p>\n\n\n\n<p>But yeah there’s, I think a good way to kind of describe how a lot of our community works is just kind of, it’s cautiously optimistic, but cautious. And having to manage risk and having to manage their time and energy, and so they’re not going to jump into anything. They’re going to do a lot of research. They’re going to try to find out who else is doing it, and is it working well for them?</p>\n\n\n\n<p>So there’s a lot of, we do a lot of case studies and try to encourage our community to share about the work they’re doing. Because really that goes a long way too. If a university sees another university using full site editing and that it’s successful, then that goes a long way.</p>\n\n\n\n<p>And when you have an absence of that, when you have an absence of examples, then it’s a struggle, right? Because our environment is so complex that an article about full site editing and what it can do doesn’t really go super far. We need to understand, not just what it does, but the long-term implications. Because once we implement it, that’s it. It’s very hard to back up, especially in our, these 300 website multi-site instances where we’ve got to train people and do all these things. We can’t rush into it.</p>\n\n\n\n<p>So there’s a lot of cautious waiting and seeing. So the more that universities can share about how they’re using the tools and how it’s working for them, and what’s not working for them. Being genuine in the reality of what we’re doing goes a long way. So there’s pros and cons, like, here’s how it worked, here’s the roadblocks we hit, here’s how it could be better. Having those kinds of conversations can really go a long way towards adoption.</p>\n\n\n\n<p>[00:39:59] <strong>Nathan Wrigley:</strong> I have a few things to add to this, and the first one would be that my expectation when a survey is put out is, broadly speaking, the expectation is that negativity is going to be the thing driving them to the survey. And that’s not what you find here. People who’ve got an axe to grind are frequently more likely to open up a survey and grind the axe, and that isn’t the case here.</p>\n\n\n\n<p>You know, it’s remarkably sanguine. Everybody seems entirely optimistic. And even the data which may be not quite as favorable, is not unfavorable. It’s just maybe not as shiny as it could have been.</p>\n\n\n\n<p>But then I’m looking at the second question here about what the favorite things are and it’s all the stuff that we lean into all the time. The extensibility, the fact that it’s free, otherwise known as cost, the fact that it’s multi-site capable, the fact that there’s plugins and what have you that you can extend it with.</p>\n\n\n\n<p>And the editing experience, so we’re talking about full site editing, I guess there as well as the editor, is low on the list of priorities, which is quite interesting. Only 36% of respondents thought that that was their priority.</p>\n\n\n\n<p>And then talking to the broader, I don’t know, the marketing piece, I think WordPress as a whole, it is really difficult to market something to the entire world. And that’s what WordPress is. So for the, like the Core community and things like that, to try and figure out where to put their best efforts, you know, how to convince people that WordPress is the solution for them, is really difficult, because it’s everybody. It’s literally anybody who might want a website.</p>\n\n\n\n<p>And so I think that’s where endeavors like WP Campus really pull out all the stops. You know, you are out there shouting loudly that this is the credible solution, if you’ve got a need for a website in the higher ed space. You are making it so that, I guess if we were to Google higher ed CMS, WordPress is going to come up fairly high. So you are growing that pie.</p>\n\n\n\n<p>But I guess the audience is fairly small, isn’t it? You know, at each institution, how many people are going to be making those searches? It’s not going to be the 300 people that you mentioned. It’s probably going to be the web team.</p>\n\n\n\n<p>So I think you’re doing great work. You know, you’re definitely finding those people and the important decision makers are probably the people. that you need to find.</p>\n\n\n\n<p>I keep coming back to the phrase, growing the pie. That’s what I think WP Campus is basically about. You know, of the 10,000 institutions out there that might use WordPress, it’s about making sure that a growing proportion of them know that it’s a credible alternative to whatever they’re using now. And from the numbers in the survey, it looks like once you’ve onboarded them, it’s easy to keep hold of them, which is pretty cool.</p>\n\n\n\n<p>[00:42:21] <strong>Rachel Cherry:</strong> For WP Campus as an organisation, we wanted to use the survey to really surface the needs. And so there’s questions in this survey that talk about what plugin needs exist.</p>\n\n\n\n<p>You know, one of my takeaways from this survey is how WordPress does need more enterprise functionality. And that’s covered a lot in the questions about plugin functionality. There is a big need and a gap for a lot of enterprise functionality in the WordPress ecosystem and higher ed needs it. So if there are people out there wanting to build it, we are ready for it.</p>\n\n\n\n<p>And so, you know, I want to surface those needs to kind of help bring more resources to our community and to what they’re doing. And so anyone out there looking to help fill that gap, please check out the survey and I’m open to have a conversation at any time, and we’d love for you to join our Slack and ask us questions and get us involved.</p>\n\n\n\n<p>[00:43:12] <strong>Nathan Wrigley:</strong> Okay, that’s an interesting call to action because you know, if you’ve got space in your calendar to build a new thing, you now have a brand new audience potentially, if you’ve not considered the higher education space, there’s a ton of data in this report which you can download. So maybe this is a whole new audience that you didn’t realise that you could tap into. Alex, was there anything, it sounded like you had something.</p>\n\n\n\n<p>[00:43:33] <strong>Alex Aspinall:</strong> Yeah, no, I was just going to echo really to what Rachel was saying there. I think the idea with this report was to, as Rachel said earlier on, provide data that has been missing. There’s no cynical play, it’s a collaborative report that’s designed to help other people understand how their peers are working, what their challenges are, how they’re trying to solve them, what kind of environment they’re doing it all in.</p>\n\n\n\n<p>It’s a really fascinating area, as I said earlier on, and we are really excited to see it develop and help it develop. And, yeah, we will be certainly collaborating with WP Campus and Rachel going forward.</p>\n\n\n\n<p>[00:44:06] <strong>Nathan Wrigley:</strong> Yeah, so whether or not, it really doesn’t matter which bit of WordPress you are attached to, whether you’re a hosting company or a plugin or a theme developer or an agency, just building out websites, there really is a bit of this which will map to whatever it is that you are doing.</p>\n\n\n\n<p>The website URL I mentioned earlier, wpcampus.org is where you’re going to find this out. I presume that they’re somewhere, if I was to explore, I would probably find a contact form. But beyond that, let’s go to Rachel first, how could people reach out to you if they’re curious about what you’ve said to today? Where would they best find you?</p>\n\n\n\n<p>[00:44:36] <strong>Rachel Cherry:</strong> Yeah, so you can join our Slack, which is accessible from wpcampus.org. There is a Slack page and you fill out a form and you get an invite, and feel free to join and start some conversations. There is a contact form on wpcampus.org, and I do receive those emails along with other people in our organisation. So that’s another great way to get in touch with me as well.</p>\n\n\n\n<p>[00:44:59] <strong>Nathan Wrigley:</strong> Thank you. And Alex, same question.</p>\n\n\n\n<p>[00:45:01] <strong>Alex Aspinall:</strong> Yeah, for us, obviously website, humanmade.com. There’s a contact form on there. But also Twitter and LinkedIn tend to be our main sort of points of contact for people getting in touch with us.</p>\n\n\n\n<p>Might also be worth flagging out, we’ve got a Word on the Future newsletter, which goes out once a month. You can sign up for that on the website. That generally has this kind of content, not always about higher education, but about the enterprise WordPress space in general. So that’s quite a nice touch point too.</p>\n\n\n\n<p>[00:45:24] <strong>Nathan Wrigley:</strong> I’ll just mention before we finish off that the WP Campus site not only links to, you know, the bits and pieces that are going on right now, but there’s the blog and there’s also links to the events as well as the Slack channel and things like that, oh, and a newsletter. There’s a whole load of opportunities to keep in touch with what’s going on over there.</p>\n\n\n\n<p>So, yeah, what I would also say is it’s very hard in an audio podcast to do justice to a report, which is primarily graphics. So please, if you’ve any curiosity around what we’ve been talking about, go and download that and you’ll be able to get the full detail of what we’ve been talking about. You’re going to find that on the Human Made website, and I will link to it in the show notes.</p>\n\n\n\n<p>Okay, Rachel Cherry, Alex Aspinall, thank you so much for chatting to me today. Really appreciate it.</p>\n\n\n\n<p>[00:46:05] <strong>Alex Aspinall:</strong> Thanks for having us.</p>\n\n\n\n<p>[00:46:06] <strong>Rachel Cherry:</strong> Yes, thank you.</p>\n</div></details>\n\n\n\n<p>On the podcast today we have <a href=\"https://www.linkedin.com/in/rachelmcherry/\">Rachel Cherry</a> and <a href=\"https://humanmade.com/who-we-are/alexaspinall/\">Alex Aspinall</a>.</p>\n\n\n\n<p>Rachel is the founder of <a href=\"https://wpcampus.org/\">WP Campus</a>, a nonprofit organization she launched a decade ago to support professionals using WordPress in higher education. Under her leadership, WP Campus has become a community hub, hosting conferences and leading research projects tailored to the unique needs of its members. Currently, Rachel serves as the organization’s Director of Technology and sits on its board of directors, where she continues to drive innovative projects.</p>\n\n\n\n<p>Alex Aspinall is part of the globally distributed team at Human Made, an established enterprise WordPress agency founded in 2011. At Human Made, Alex helps deliver large-scale web platforms for major organizations, including names like Harvard, Standard Chartered, and PlayStation. In recent years, Alex has developed a strong interest in how WordPress can uniquely serve the higher education sector, and he’s become especially passionate about exploring and supporting this use case.</p>\n\n\n\n<p>During the podcast we get into the story behind WP Campus, which has, for the past decade, been empowering people who use WordPress in colleges and universities. We explore Human Made’s growing interest in the complexities of higher education projects, from large multisite networks to the strict accessibility and governance requirements such projects increasingly require.</p>\n\n\n\n<p>The heart of the conversation is the just released ‘State of WordPress in Higher Education 2025’ report. We dig into the reports key findings such as the slow adoption of the block editor and full site editing, the challenges of managing hundreds of university websites with small web teams, and why enterprise-level tools are in such high demand.</p>\n\n\n\n<p>Whether you’re a WordPress professional, agency, educator, or are just curious about the unique needs and opportunities the higher education space offers, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://wpcampus.org/\">WP Campus</a></p>\n\n\n\n<p> <a href=\"https://humanmade.com/resources/the-state-of-wordpress-in-higher-education-research-report/\">The State of WordPress in Higher Education</a> report</p>\n\n\n\n<p><a href=\"https://humanmade.com/\">Human Made</a></p>\n\n\n\n<p><a href=\"https://news.harvard.edu/gazette/\">Harvard Gazette</a></p>\n\n\n\n<p><a href=\"https://wpcampus.org/community-3/slack/\">WP Campus Slack</a></p>\n\n\n\n<p><a href=\"https://humanmade.com/word-on-the-future-a-wordpress-newsletter-by-human-made/\"> Word on the Future newsletter</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Sep 2025 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:18;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Open Channels FM: Sustainability, Authenticity, and Building Habits with Daily Videos\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=109487\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://openchannels.fm/sustainability-authenticity-and-building-habits-with-daily-videos/\";s: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:208:\"In this \"Publishing Flow\" episode, Mark Szymanski shares insights on his daily video journey, discussing inspiration, consistency, audience engagement, and the balance between authenticity and value creation.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Sep 2025 11:04:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Matt: Techmeme 20\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149734\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://ma.tt/2025/09/techmeme-20/\";s: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:616:\"<p>It’s New Apple Stuff day, so the headlines are being dominated by that, but it’s worth taking a step back and paying homage to the site that has been the front page of tech news for two decades now, <a href=\"https://techmeme.com/\">Techmeme</a>. I’ve been a daily visitor since it started, and I appreciate how they pair the algorithm with a light human touch to provide a wide overview. (WordPress-powered!) <a href=\"https://crazystupidtech.com/2025/09/08/at-20-techmeme-has-never-been-hotter/\">Fred Vogelstein at Crazy Stupid Tech has a great review of how Techmeme started and evolved</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Sep 2025 20:24: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: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:20;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Open Channels FM: Lessons From Building and Managing Multiple WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=108988\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://openchannels.fm/lessons-from-building-and-managing-multiple-wordpress-plugins/\";s: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:188:\"Here are some lessons learned in building a WordPress plugin business, emphasizing experimentation, market understanding, customer support, and community engagement for sustainable growth.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Sep 2025 09:53:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"Open Channels FM: The Founders of Podcaster Plus Share Product Development Experiences and Community Insights\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=108599\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://openchannels.fm/the-founders-of-podcaster-plus-share-product-development-experiences-and-community-insights/\";s: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:215:\"In this WP Behind the Builds episode, Mark Westguard discusses the upcoming Podcaster Plus plugin with founders Nathan and Dan, emphasizing its features like customizable audio players and automation for podcasters.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Sep 2025 08:16:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Matt: Assorted Links\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149725\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://ma.tt/2025/09/links/\";s: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:1682:\"<p>A few interesting reads or listens:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://www.wired.com/story/multiple-chemical-sensitivity-tilt-claudia-miller/\">The Next Thing You Smell Could Ruin Your Life</a>, a deep dive into chemical sensitivity and toxicant-induced loss of tolerance, or TILT, by <a href=\"https://lexipandell.com/\">Lexi Pandell</a> (WordPress!) at Wired.</li>\n\n\n\n<li><a href=\"https://www.newyorker.com/culture/infinite-scroll/irl-brain-rot-and-the-lure-of-the-labubu\">IRL Brain Rot and the Lure of the Labubu</a>, by <a href=\"https://www.kylechayka.com/\">Kyle Chayka</a> at New Yorker.</li>\n\n\n\n<li><a href=\"https://simonwillison.net/2025/Aug/9/bay-area-ai/\">Simon Willison’s Lethal Trifecta talk</a>, on the myriad security issues that arise when combining LLMs, prompt injection, MCPs, and more.</li>\n\n\n\n<li><span style=\"margin: 0px; padding: 0px;\">Daniel Stenberg, a lead developer of the open source utility Curl, <a href=\"https://www.youtube.com/watch?v=6n2eDcRjSsk\" target=\"_blank\">talks at FrOSCon about how AI reports are gumming up their security workflows</a>.</span> (YouTube, 53 minutes.) </li>\n\n\n\n<li><a href=\"https://daniel.haxx.se/blog/2025/08/15/car-brands-running-curl/\">Daniel again (on his WordPress-powered blog) discusses a version of their maker/taker problem</a>, specifically the 47 car brands that use Curl but none that sponsor it.</li>\n\n\n\n<li>Fernando Borretti’s <a href=\"https://borretti.me/article/notes-on-managing-adhd\">Notes on Managing ADHD</a>.</li>\n\n\n\n<li>Good Taste Is More Important Than Ever, by <a href=\"https://www.theatlantic.com/author/nitin-nohria/\">Nitin Nohria</a> in The Atlantic.<br /></li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Sep 2025 23:20:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:23;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Matt: Maker Taker\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149704\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://ma.tt/2025/09/maker-taker/\";s: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:2543:\"<p>My sister <a href=\"https://charleen.blog/\">Charleen</a> sent me this meme with the note “Someone needs to draw you in there with your arm up <img alt=\"🤣\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f923.png\" style=\"height: 1em;\" /><img alt=\"🤣\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f923.png\" style=\"height: 1em;\" /><img alt=\"🤣\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f923.png\" style=\"height: 1em;\" />” It’s a nice ode to the <a href=\"https://dri.es/solving-the-maker-taker-problem\">Dries essay on Maker/Taker problems</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-149705\" height=\"509\" src=\"https://i0.wp.com/ma.tt/files/2025/09/IMG_3812.jpeg?resize=604%2C509&quality=89&ssl=1\" width=\"604\" /></figure>\n\n\n\n<p>Well, thanks to the magic of AI, I asked the <a href=\"https://aistudio.google.com/\">Nano Banana AI Studio</a> to “make it so on the bottom one person raises their hand,” and it didn’t work at first. So, I tried a few other variations, and then, voilà!</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-149706\" height=\"500\" src=\"https://i0.wp.com/ma.tt/files/2025/09/Generated-Image-September-06-2025-7_32PM-1024x848.jpeg?resize=604%2C500&quality=89&ssl=1\" width=\"604\" /></figure>\n\n\n\n<p>Technology is amazing. And now we have a counter to the meme. Be that one hand that raises.</p>\n\n\n\n<p>Although this is a joke, I’m going to give humanity a high-five because, compared to when I started in technology, <a href=\"https://en.wikipedia.org/wiki/Halloween_documents\">which was more the Microsoft Halloween memo era, to where we are today</a>, I’m <strong>so impressed</strong> that so many makers, creators, designers, engineers, and leaders have adopted the moral framework of open source being part of their calling. Businesses, too! I used to get laughed out of the room or had spears thrown at the security of open source, but that is no longer a blocker, and the conversation has really elevated. It doesn’t feel like one person raising their hand anymore; it’s grown into a truly special movement, a lens through which you can view almost anything.</p>\n\n\n\n<p>Open source is the best way we have to set the foundation for future generations to build upon, ensuring the light cone of humanity’s technological expansion becomes something that belongs to all of us, not just a few.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 07 Sep 2025 19:08:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Matt: Breaking Ribs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149695\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ma.tt/2025/09/breaking-ribs/\";s: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:1959:\"<p><span style=\"margin: 0px; padding: 0px;\"><a href=\"https://chrisyoungcooks.com/\" target=\"_blank\">Chris Young</a>, who is otherwise famous for being a <a href=\"https://modernistcuisine.com/books/modernist-cuisine/\" target=\"_blank\">co-author of the 2,438-page cookbook Modernist Cuisine</a> or <a href=\"https://www.youtube.com/shorts/s8OcZYCBaOo\" target=\"_blank\">centrifuging steaks and drinking them</a>, is one of the friends who, over the years, has told me I have to watch <a href=\"https://en.wikipedia.org/wiki/Breaking_Bad\" target=\"_blank\">Breaking Bad</a>, the TV show.</span> When I was in Marrakech for a few weeks earlier this year, and it was a million degrees outside, I cracked and started watching, and I see why people say it’s one of the best shows ever. I’m only up to S2E4, and I see why everyone loves it, including that it is sometimes unintentionally hilarious, but I had to stop because it was getting a bit too dark and bumming me out before I went to bed.</p>\n\n\n\n<p>However, I’m glad I made it through that season and a half of Breaking Bad, because it has given me the ability to appreciate this homage Chris has done, attempting to use science and chemistry to cook ribs in an apartment oven just as well as you could with a smoker. If you live at the intersection of Breaking Bad, BBQ, science, chemistry, and cooking, this is the video for you. And now, this makes me want to order some <a href=\"https://thepitroombbq.com/\">Pit Room</a> in Houston. (WordPress-powered!)</p>\n\n\n\n<figure class=\"wp-block-embed alignwide is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n\n\n\n<p>And if you haven’t yet, you should <a href=\"https://combustion.inc/\">buy one of Chris’ Combustion Predictive Thermometers</a> (<a href=\"https://www.amazon.com/dp/B0DNKJ8FQB/?tag=photomatt08-20\">here on Amazon</a>). </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 06 Sep 2025 20:33: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: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:25;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"Gutenberg Times: Gutenberg Changelog 120—WordCamp US, Automattic Telex, Gutenberg 21.4 and 21.5, and the need for more blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=41792\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-120-wordcamp-us-telex-gutenberg-21-4-and-21-5/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:48635:\"<p>Birgit Pauli-Haack and Sarah Norris discussed WordCamp US, Automattic Telex, Gutenberg 21.4 and 21.5, and the need for more blocks.</p>\n\n\n\n<p>This episode dives into the ongoing evolution of Gutenberg, from AI-driven tools for easier block creation to the expansion of core blocks and enhancements stemming from vibrant community input. There’s a strong focus on practical improvements for developers and better experiences for end users, all while staying plugged into the latest WordCamp happenings and the broader future of site editing in WordPress. </p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/https://gutenbergtimes.com/podcast/gutenberg-changelog-120-wordcamp-us-telex-gutenberg-21-4-and-21-5/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/https://gutenbergtimes.com/podcast/gutenberg-changelog-120-wordcamp-us-telex-gutenberg-21-4-and-21-5/#transcript\">Transcript</a></p>\n\n\n\n<p></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Editor: <a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo: <a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production: <a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\">Special Guest: <strong>Sarah Norris</strong></h2>\n\n\n\n<p>JavaScript Developer / Core team rep</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://profiles.wordpress.org/mikachan/\">WordPress Profile @mikachan</a></li>\n\n\n\n<li><a href=\"https://sekai.co.uk/\">Personal website: sekai.co.uk</a></li>\n\n\n\n<li><a href=\"https://twitter.com/mikachan_\">Twitter: @mikachan_</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordCamp US </h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://telex.automattic.ai/projects/new\">Automattic Telex </a>build block from plain-english prompts</li>\n\n\n\n<li>Adam Silverstein’s talk, <a href=\"https://wordpress.tv/2025/09/03/unlock-developer-superpowers-with-ai/\">Unlock Developer Superpowers with AI</a></li>\n\n\n\n<li>John Maeda’s talk,<a href=\"https://wordpress.tv/2025/09/03/cozy-ai-cooking-wordcamp-edition/\"> Cozy AI Cooking: WordCamp Edition</a></li>\n\n\n\n<li>Prof. Adam Gazzaley’s talk, <a href=\"https://wordpress.tv/2025/09/03/a-new-era-of-experiential-medicine-ai-and-the-brain/\">A New Era of Experiential Medicine—AI and the Brain</a></li>\n\n\n\n<li>Michelle Hunt’s <a href=\"https://wordpress.tv/2025/09/03/building-experiences-design-systems-user-experience-and-full-site-editing/\">Building Experiences: Design Systems, User Experience, and Full Site Editing</a></li>\n\n\n\n<li>Mary Ann Aschenbrenner’s talk, <a href=\"https://wordpress.tv/2025/09/03/moving-a-website-from-classic-to-a-block-theme/\">Moving a Website from Classic to a Block Theme</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2025/09/03/block-composability-the-past-and-the-future/\">Block Composability: The Past and The Future</a> with Seth Rubenstein and Max Schmeling. </li>\n\n\n\n<li><a href=\"https://wordpress.tv/event/wordcamp-us-2025/\">Full list of talks is available on WordPress TV here.</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress Developer Blog</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://developer.wordpress.org/news/2025/08/whats-new-for-developers-august-2025/\">What’s new for developers? (August 2025)</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2025/07/you-dont-need-theme-json-for-block-theme-styles/\">You don’t need theme.json for block theme styles</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2025/08/registering-custom-social-icons-in-wordpress-6-9/\">Registering custom social icons in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2025/08/refactoring-the-multi-block-plugin-build-smarter-register-cleaner-scale-easier/\">Refactoring the Multi-Block Plugin: Build Smarter, Register Cleaner, Scale Easier</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2025/09/implementing-namespaces-and-coding-standards-in-wordpress-plugin-development/\">Implementing Namespaces and Coding Standards in WordPress Plugin Development</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/subscribe/\">Subscribe to the blog</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Gutenberg releases and work in progress</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2025/08/14/whats-new-in-gutenberg-21-4-13-august/\">What’s new in Gutenberg 21.4? (13 August)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/08/28/whats-new-in-gutenberg-21-5/\">What’s new in Gutenberg 21.5? (27 August)</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/71026\">New Block additions for the Block Library</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/why-wordpress-core-needs-more-blocks/\">Why WordPress Core needs more blocks</a><br /></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<ul class=\"wp-block-list\">\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on X (formerly known as Twitter) or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:[email protected]\">[email protected]</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Hello, and welcome to our 120th episode of the Gutenberg Changelog Podcast. In today’s episode we will talk about WordCamp US, Telex, Gutenberg 21.4 and 5 and also we will discuss that we need more blocks. Maybe. I’m your host Birgit Pauli-Haack, curator at the Gutenberg Times and WordPress developer advocate and full-time core contributor for the WordPress open source project sponsored by Automattic. </p>\n\n\n\n<p>And after a long break, Sarah Norris joins me again. Yay. She is a co-core team rep, a core contributor to the Goodwill Project, and developer and designer working for Automattic. Thank you so much for taking the time and coming onto the show again. Sarah, how are you today? And maybe you can briefly outline what you have been working on for what might be coming to WordPress 6.9.</p>\n\n\n\n<p><em>Sarah Norris:</em> Yeah, sure. Yeah. Hello. It has been a really long time. It’s good to be back. Yeah, I’m good. I’m looking forward to autumn, my favorite time of year. So for 6.9 I’ve mostly been working on new blocks. Yes, all the new blocks. I’ve been working on the Accordion block, which was called Accordions but is now called Accordion Singular. Also I’ve been looking over the new tabs block. There’s a PR going for that that I’m really interested in, looking at maybe getting the table of contents block stabilized as well. I think there’s a lot of work to do there, but I think it’s, it’s quite well rounded, well outlined so we can get stuck in there. And then I’ve also been working on a new terms query block as well. So that’s it’s like the query loop block but for taxonomies.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Wow, it sounds exciting. Awesome. Awesome. So you’re the right person to talk about. We need more blocks later on so we’re coming to the announcements. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Announcements</h3>\n\n\n\n<h3 class=\"wp-block-heading\">Automattic Telex</h3>\n\n\n\n<p>So at his keynote at WordCamp US, Matt Mullenweg, you probably heard it all already, dear listeners announced experimental AI tool called Telex, and it can be used to build new blocks with a plain English language prompt so you don’t have to speak code. So try it out. I’ll share the links in the show notes. And Ray Mori from the repository has quite done a good rundown of all the reactions for Telex on Twitter and all that. So I’m going to share this with you. But it’s a really exciting tool and it’s also experimental, so it might not have the outcome that you want, but you might get new ideas from it. So have you tried it out, Sarah?</p>\n\n\n\n<p><em>Sarah Norris:</em> Yes. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p><em>Sarah Norris: </em>I’ve been following the development closely and trying it out. It’s amazing. It’s so much fun to use. Yeah. Definitely recommend people try it out. You might not get what you expect, but I don’t know if you ever do with AI, it’s all about what you put into it, isn’t it? And see what you get. Especially for new blocks. People should try it to build new blocks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>So did you build a new block?</p>\n\n\n\n<p><em>Sarah Norris: </em>I built a few ideas, like a few silly things. I haven’t tried it on any new core blocks yet. Maybe that’s the. The next step. Maybe I should try it on all these new core blocks we’ve got coming up.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Well, but I’m more interested in the silly things than the crazy things or in the quirky things. But did you try?</p>\n\n\n\n<p><em>Sarah Norris: </em>What did I try? I’ve tried like some random image generators, just like some random color stuff as well. Trying like different colors, different patterns.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah.</p>\n\n\n\n<p><em>Sarah Norris:</em> Maybe I should add some to the new live tool so we can get them in the library.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>There’s a library maybe coming up. Okay, well, it’s the next current step. Yeah. Kind of thinking about, okay, if so many people build blocks and we want to kind of showcase all those ideas, if they’re ready enough so other people can use them, then you probably want to have a site for that. That’s totally true. Yeah, true. </p>\n\n\n\n<h3 class=\"wp-block-heading\">WordCamp US</h3>\n\n\n\n<p>Anyway, so speaking of WordCamp viewers, the talks are almost all uploaded to WordPress TV, so the team is really amazing. And there were fantastic talks at the showcase day as well as the other days. And we had about a dozen talks about AI in all kinds of flavors. And I only want to kind of point out three of them. One was for developers. Adam Silverstein’s talk Unlock Developer Superpowers with AI is definitely worth a look on the rerun as he tested quite a few new tools and also gave a great rundown on his approach and how he works with it. </p>\n\n\n\n<p>So Adam is a former Googler and he is a core committer on the WordPress project. So yeah, he’s definitely out there ahead of, well, at least me. I don’t know about Sarah, but definitely ahead of me, so. And for nondevelopers, John Maeda’s talk was a fantastic introduction in how to think about AI in his cozy AI cooking talk as a keynote on the third day. And then if you want to be amazed of what’s happening in other areas outside of development, but in other areas of science, I highly recommend Professor Adam Gazzaley’s talk on the new era of experimental medicine, AI and the brain. And he talks about how his lab at the University of San Francisco did a lot of brain testing and figured out a way to replicate and have a feedback loop, a close feedback loop to reactions on certain things. So and what they actually did was they created a video game to help people with ADHD. And that’s for prescription, but also available for adults who are kind of having a bit of a cognitive decline in the later years and want to kind of keep a stop to that or at least delay it. So it’s really an interesting talk. Totally not related to WordPress at all. So yeah, have you watched any of those talks?</p>\n\n\n\n<p><em>Sarah Norris: </em>I haven’t this week. I’ve been concentrating on basically building the terms query block. But all three of these I really want to watch. They sound really good, especially that last one that sounds super interesting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, yeah, the resources that he mentions in his slide deck and all that, you can really kind of go down that rabbit hole on a Sunday afternoon and kind of learn more about that. And then for block and block related talks, there were so many and each covering a different angle. I have a list in my Weekend Edition 38 that I would kind of where I said I would want to watch it and even if I’m not getting into the talk, I will keep a list of that for the reruns. But if I wanted also three of them is one is Michelle Hunt’s Building Experiences, Design systems, User experience and full site editing. And she really brings it home in talking about Atomic Design, which was a topic two years ago in San Diego or three years ago even, and then applying it to WordPress and themes and blocks and also creating a design system as well as guardrails for users. That’s her user experience piece that if you have too many options you confuse users and they don’t need them, but you can build guardrails around it and curate the experience quite well. </p>\n\n\n\n<p>Mary Ann Aschenbrenner is from a small agency and she talked about how she moved websites from classic theme to a block theme and what the steps were involved. And yeah, some decision making process there, really good. And then Block Composability the Past and the Future with Seth Rubenstein and Max Schmeling, and they talked about the remote data block coming out of WordPress VIP and they open sourced it, and that is how you can connect the Gutenberg editor with an outside data source like Google Spreadsheets or Airtable and bring that data in live. So when it changed the data on the other sites. Yeah, it’s updated the website and use block bindings and interactivity API to pull it all into a page and blocks that you can put on a page. So it’s really interesting what comes out of that this year in WordCamp US. So have you looked at the remote data block yet?</p>\n\n\n\n<p><em>Sarah Norris: </em>No, I haven’t, but that sounds amazing. It almost sounds like zapier but. But for. For the editor. Yeah, that sounds really cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, that was the idea about it, that you don’t have to create blocks for that. You kind of use that one block. Yeah, that has a lot of tools in there and then you can pull them in. It’s really interesting. So yeah, but of course everyone is at a different stage in their blocks journey, and it’s difficult to recommend a talk without knowing more about the needs but so I will share in the notes the link to all the talks of WordCamp US. I think right now they have two or three pages already uploaded so you can kind of look at them but don’t forget it and let times go past. It might also be something to put on your list for Christmas vacation days or Thanksgiving days instead of other things maybe. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Community Contributions</h3>\n\n\n\n<p>So what’s community contributions? It seems there’s more new Momentum at the WordPress Developer Blog because apart from the What’s New for Developers by Justin Tadlock, there were four more articles published since we had our last Gutenberg Changelog recording, and two of them are by Justin Tadlock. </p>\n\n\n\n<p>One is a little controversial as a stated title, you don’t need Theme JSON for block theme styles. When you want to need or step away from using theme JSON for styling themes, this guide will walk you through the best practices of using style sheets instead. You will also learn from the article that Justin actually really likes theme JSON, but he wants to pick you up where you are and if you don’t don’t have a real good handle on it yet, you have alternatives and options. And the second one is in view of what’s coming to WordPress 6.9 is registering custom social icons for Gutenberg, and it’s a new filter hook that’s coming to the next release, and it’s learn how to use it to register your own services for social icons block. So his example is IMDb, that’s the movie database or Ko Fi, that’s buy me some coffee kind of donation place. I used it for my next edition of the Gutenberg Times theme where I want to have an archive page for my podcast, and I needed the icons for all the podcast directories where you can find the Gutenberg Changelog because only Spotify was on there, and there are so many others that are there, so. And Pocket Cast is already in there, but all the others are not. So I built them with that new tool for my new plugin. So it’s really interesting. So if you have other needs, you can do it yourself. You don’t need to wait for Core to put them in. </p>\n\n\n\n<p>And Troy Chaplin also he published a series on refactoring a multiblock plugin to build smarter register cleaner and scale easier. So if you have a multi block plugin, it’s kind of gives it a cleaner structure, support all block types and also a smarter registration and bundling of your assets. I think it’s a very good tutorial for the next stage of your plugins. And he also has a second post in the same realm is about implementing namespaces and coding standards in WordPress plugin development. This post got a lot of comments and suggestions from other people, co-developers and others. So it’s definitely worth looking into because namespacing, auto loading and linting for your multi block plugin is definitely something you want to find out or how to do this. So shout out for both authors for taking the time to put those tutorials together for other WordPress developers. And dear listeners, make sure you never miss another post of the developer block again. Subscribe to the blog. Anyway, I’m not asking you, I’m not putting on the spot when you’re gonna write for the developer blog. But yeah, think about it. We’re open to ideas.</p>\n\n\n\n<p><em>Sarah Norris: </em>I’ll have a think.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Say again?</p>\n\n\n\n<p><em>Sarah Norris:</em> I’ll have a think.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s Released – Gutenberg 21.4</h3>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, have a think. So, which brings us dear listeners to the Gutenberg releases in the last four weeks. We are starting with Gutenberg 21.4. Do you want to get us started, Sarah?</p>\n\n\n\n<p><em>Sarah Norris: </em>Yes. Yeah. Okay. Okay. What we’ve got first for 21.4. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p>So in enhancements we’ve got a new server side render hook.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. And I’ve put some question marks on it because I need you to explain it to me a bit.</p>\n\n\n\n<p><em>Sarah Norris: </em>I mean, I’m not sure I can do that. So I think this is a. It’s a really nice refactoring job. So we had. Well, we still do have some data fetching logic in a server side render function and this has been refactored into a hook called useserverside Render, and it basically gives consumers more control over the block content when they’re using the server side rendering technique. I think we did have this functionality before, but this makes it much easier and more flexible for consumers to absorb the block content.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>All right, so when you say consumers, you mean extenders who use it in their block plugin, right?</p>\n\n\n\n<p><em>Sarah Norris: </em>Yes, yeah, that’s right.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. It’s not me as a consumer of Nutella or something.</p>\n\n\n\n<p><em>Sarah Norris: </em>Nutella Hook though, would be amazing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>That’s a new blog.</p>\n\n\n\n<p><em>Sarah Norris: </em>Use Nutella.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Use the Teleservice. No. Oh, what a mess. So we have quite a few things that are concerning the data views. It gets a real good polish now and some great features in there. So the first thing is that there is a control command plus click for multiselection in the table layout. When you have data views in a table. So you can click all the rows that you want to use for bulk edits or something like that, which is really cool. It’s also a feature that is in the old WP admin. The second one is the data form select box to have custom empty options. This is actually really cool because then you have a no selection and it doesn’t disrupt anything of the workflow. Yeah, I got this all my life of web development and forms that when you have a dropdown you need an empty one. So if it’s not a required field. So they can unselect things.</p>\n\n\n\n<p><em>Sarah Norris: </em>Yeah, Very easily forgotten because how often do you actually build dropdowns as well? So every time you build one it’s good. Oh yeah, I need an empty option.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. It’s now built in to have a custom empty option if you want it. You want to do the next.</p>\n\n\n\n<p><em>Sarah Norris: </em>Yeah. What’s the next one? So I’ve got support group by in the table layout. So this, this is adding support for the table to be grouped by field, isn’t it? So it means that when you’re viewing a table, it can be grouped into separate sections and each section will have a heading. Yeah. But I guess depending on the content, it makes it much easier to consume that content and then. Yeah, each section has a table row with a heading. Yeah, that helps separate it out. Nice and neat.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, it makes it a little bit easier to find all the stuff that you need. The next one is that it’s now use responsive images for the dataview grid layout. So if you’re on a tablet, the images are smaller so you get more things on the screen as well as the mobile. You can use that in mobile as well.</p>\n\n\n\n<p><em>Sarah Norris: </em>Yeah, yeah. I didn’t know about this PR actually. It’s very, very cool because it’s. It allows you to to pass a maximum width to the images in the grid view. Because I think previously it was using the largest image or one of the largest image sizes. But that means like if there were a lot of images, this is saving like literal megabytes on every grid view. So that’s. It’s really, really cool. Good, Good pr. Good performance. PP.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, absolutely. Yeah.</p>\n\n\n\n<p><em>Sarah Norris: </em>Next one is allow data views empty state to be customized. Oh yeah. So this is if. So if you’re like loading a data views component, if there were no results previously, I think it just would render just a white screen basically, which is an empty data view component. But this allows you to pass in like a default empty state. So if you’re listing pages and no pages are part of the search results, then you can add something like a no pages found message. But it’ll be styled nicely and be centered and will look much better UX than a blank screen, basically.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Then nothing.</p>\n\n\n\n<p><em>Sarah Norris: </em>Yeah, yeah, then nothing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. And I also like the. The last one is a data form is now a bootstrap validation for required and type checks on the input. And that’s right now for text input, email, integer and boolean field types. Boolean. Yeah, I never knows how to pronounce it. How do you pronounce it?</p>\n\n\n\n<p><em>Sarah Norris: </em>Boolean.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Boolean. Boolean. Boolean. Yeah. Other people say boolean. Anyway. Yeah, I really like that. So now you can have your data forms automatically kind of validated and at least for those types I think more is coming there as well. So yeah, if you use the data views for your plugins, you can actually have now good user input handling as well.</p>\n\n\n\n<p><em>Sarah Norris: </em>Next is the block library section and then we have the cover video block Add drag and drop support for poster uploads. So this is so for videos you can add a poster image for HTML videos. And this basically just allows drag and drop functionality. So we can drag these images into the poster section when you’re editing the cover video block basically makes it much easier to add a poster.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, yeah. Drag and drop is always fun most of the time. Yeah. And it’s not only for the video block, but it’s also for the cover block that has that video that’s also then pulled in. If there is not enough bandwidth on the page to show a poster instead of the video, and only when you click on it, the video kind of plays. And then we have updates to the file block. Two of them. One is to use the mime type to determine if a file is a PDF and the other one is have the nature of Feature detection for PDF support. So that would also give the PDF support means have it embedded on the page as an option or also have thumbnails and all that kind of thing. So yeah, those are kind of great enhancements.</p>\n\n\n\n<p><em>Sarah Norris:</em> Next up is the block editor section. So we have the list add keyboard shortcuts to indent, outdate, outdent. So this adds a keyboard shortcut to the tooltips. Why can’t I say tooltips? All these words that you don’t have to say out loud. And then you’re forcing me to say. When you hover over the block toolbar for the list block, you’ll now get some helpful tool tips that tell you about the indent and tab keyboard shortcuts. Basically.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, yeah, it’s been a while that it actually is the tab to indent on the list block. But it wasn’t really that widely known because it took a while to get it in there and now you can. On a single list item you can use the tab to indent it. But now you also know it by hovering over the tooltips or getting some tooltips. When you hover over the block toolbar, there is the icon to indent and outdent. And now it also has the tooltip for use the tab dummy kind of thing. All right. Oh, the write mode is also has quite some updates in the last few Gutenberg releases. This one also only has one that it adds the shuffle style to the write mode toolbar on a container block. So if you have a block, if there is a style variations for that particular block, you can you get this little color drop to select those style variations that is actually coming out of the zoom out mode that was already in 6.8.</p>\n\n\n\n<p><em>Sarah Norris: </em>Yeah, it’s very cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>It’s totally cool.</p>\n\n\n\n<p><em>Sarah Norris: </em>Yeah, it makes it really easy to. I know that’s the whole point of it, but it makes it very easy to switch between the styles. I think it’s something that we don’t really think about, especially when you’re building for the editor as well. But as soon as you see it in action, it’s just like, oh, this is unlocks loads of functionality just in one click. It’s very cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah.</p>\n\n\n\n<p><em>Sarah Norris: </em>Next up is the component section. Got one in here as well. So this is the text control improve theming support. I think this is a little PR for making the border and placeholder colors themable for the text control component specifically. So it means that if you switch the theme, the border and the placeholder colors will also change as well as the other colors related to text control.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. And then there’s a block binding update on the date block. It now allows block binding, so yay. Now you can have the date block. There’s a date block or post date, for instance. Yeah, you can. Yeah, okay.</p>\n\n\n\n<p><em>Sarah Norris:</em> Exactly.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, you can. Or recording date. Yeah, or something like that. You can connect it to a block binding and make it all follow all the date things in WordPress like location and localized formatting and all that. Block bindings also gets a little bit more wider usage. Opens up for wider usage during 6.9. I have not yet put a whole good research in there, but I’ve done some testing and it works really, really well also to. To add it to an audio block and all that.</p>\n\n\n\n<p><em>Sarah Norris: </em>I can tell you one thing, although it will probably be for Gutenberg changelog 21.6 or 121, but I’ve been using block bindings. I’ve been using block bindings for the terms query block as well. And it was unbelievably easy to implement. Just like so much kudos to the people who’ve been working on block bindings. So I’ve used it to expose term data so we can absorb that in the new blocks for the terms. And it’s just. I don’t know, I’m just blown away by it really. It just makes so much sense. Makes everything so much more flexible.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, I use the block bindings too. I registered a separate source for the block bindings for my podcast archive page. Yeah. Because I wanted recording date and stuff, the podcast description and the logo as well as for every episode recording date and the download link just in there in the query loop. And it really worked. Yeah. The audio blog. I’m still debugging it because of course it’s all my fault. But it really works well and I’m so happy that I don’t have to write new blocks. And I can use a plugin that creates all those fields and has their own template, but the templates are not for block themes. So I can create my own template and add all those blocks bindings and put it into a plugin. So it’s really cool.</p>\n\n\n\n<p><em>Sarah Norris: </em>Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So many more options opening up with block bindings.</p>\n\n\n\n<p><em>Sarah Norris: </em>Yeah. What’s our next section now?</p>\n\n\n\n<h3 class=\"wp-block-heading\">Documentation</h3>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>So I scroll down to the documentation section of the changelog and I just wanted to point out two things. One is that the Playground CLI is now preferred over the WP now when you use it on any of your projects for playground to have a local development. So it’s really cool if you’re developing a plugin, but not in the realm of a website, just on a separate folder. And then you can do playground CLI and then it opens up a WordPress instance right from that and knows it’s coming from a plugin. So it puts all the stuff from right in there into the playground. It installs it and activates it. And really fast development. Now that was previous was WP now and now it’s the Playground CLI and it’s documented. And the second one was the document guidelines on how to get new social icons into Core and have the link to the developer blog article by Justin Tadlock on how to do it yourself. What else? I think that I have the feeling we are now at the end of Gutenberg 21.4.</p>\n\n\n\n<p><em>Sarah Norris: </em></p>\n\n\n\n<p>Yes, success.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>And we are coming to Gutenberg 21.5. Do you want to start again?</p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 21.5</h3>\n\n\n\n<p><em>Sarah Norris: </em>Yes, I can do. Yeah. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p>Starting at enhancements again. So first up is Data Form. Panel layout can open as dropdown or modal. So I think this is adding the. The modal panel type to the data form. And yeah, it basically means that a panel can be opened as a modal, making the data form more flexible.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yes, indeed. Yeah. And then the data views also get an additional enhancement as the option is now added to allow Infinite Scroll. On Data Views, you can decide between pagination or infinite scroll like we have in the media library. There’s an Infinite Scroll Infinite scroll kind of way. So yeah, it kind of opens up a lot more possibilities for Core or plugin developers to use that.</p>\n\n\n\n<p><em>Sarah Norris: </em>Next up is the block library section. First up is the query title, adding a post type label variation. So this adds a post type label to the query title block, which displays the singular name of the query post type.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. So you know, when you look at it, oh, this is a recipe or this is a post or this is a page. When it kind of comes into the query loop, that’s definitely helpful, kind of prevents confusion. Definitely, yeah. And then of course we come to your accordion block.</p>\n\n\n\n<p><em>Sarah Norris:</em> Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Is it still experimental or has it been removed? Experimental.</p>\n\n\n\n<p><em>Sarah Norris: </em>It’s still experimental at the moment. So it’s only just been merged. Yeah. So we’re still testing. So the best thing about blocks being experimental is that we can make breaking changes, essentially. So I think it will be experimental until hopefully not the last minute. But, you know, the last minute being the last few weeks, probably before 6.9. But I think I’m feeling really confident about the block in general. So hopefully just after a few rounds of testing, maybe some tweaks being made. There’s already been a bunch of. A bunch of PRs opened for some small tweaks as well, which is really nice to see. So, yeah, hopefully it’ll be. It’ll be stabilized by 6.9. That’d be great.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. Yeah, I hope, I hope so very much though. Yeah. So the accordion block is. It’s implementing the HTML standard kind of way and then how it kind of works with blocks and you have a whole panel and then you have additional accordion. You have an accordions. It’s not a accordions block, but it’s a whole accordion. And then the accordion items, and then you have inner blocks that can house any content in the accordion item panels, right?</p>\n\n\n\n<p><em>Sarah Norris: </em>Yeah, that’s right. I think that’s where I got stuck as well, because I was like, this is multiple accordions. No, it’s one accordion and then the accordion is made up of multiple sections. Yeah. And then we have to have accordion content and then the accordion header and accordion panel. And within the panel you can add. I think it’s. I think it’s all blocks. I should know, shouldn’t I? But yeah, you can add any, any content within that panel. It just makes it a little bit more flexible than the details block. But I know that the accordion and the details block are very, very similar also at the moment. I think the details block will be surfaced if you search for accordion as well in the block editor. My plan, in my head at the moment, I probably need to write this down somewhere, is that once the accordion block, the new block is stabilized, then we could remove that accordion keyword from the details block. So both of those are two very obvious distinct blocks. </p>\n\n\n\n<p>Hopefully reduce some confusion. I think the main issue is with the details uses a summary element and I don’t think it’s semantically correct to add headings, but maybe a bunch of other stuff as well. Basically you can only really technically add text content, which doesn’t make it very flexible. And then the accordion block will have, at the moment only has an option for one type of icon. But the idea is that we’re going to add a lot more customization to the icon and making the header content itself more flexible. So yeah, hopefully this accordion block is much more flexible and just it’s kind of like an advanced block compared to the details. And I think, I think they can both exist fine. They’re both, they’re both HTML paradigms. They can both exist as blocks as well. And you know, more blocks. We need more blocks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>More blocks, yes, definitely. Yeah, yeah. There were also some you you weren’t able in the details block, you were also not able to. To style the summary separately from the details. So if you put a border around you, it almost was on the same on the whole thing and not on the single. On the details. Yeah, or if you want to have a text styling on the summary, it also would bleed through the details. So yeah, but that’s wanted I think the details and summary that comes also from Markdown which so you could use it on GitHub and all that and there it really can have additional styling. So the accordion block is definitely for much richer styling and designs available. So are you thinking about handling transforms from details to accordions?</p>\n\n\n\n<p><em>Sarah Norris: </em>I haven’t thought of that yet, but that makes perfect sense because I imagine. Well, this is only a guess, but I imagine some people have. Users have been using the details block for probably what they would have wanted to use an accordion block for like if they wanted additional styling or for like more advanced FAQ sections and stuff like that. So yes, I imagine that will be a want transforming from a details block to the accordion. So yeah, I’ll add it to the list.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Write it down. All right, the next one is again it’s on the component section and there are a few in there. But I just wanted to point out the forms component that it also now supports an async validation. It means that you can also do server side validation and supports that with a. It’s a breaking change for this. It’s a private component so we shouldn’t even talk about that. Okay, so I didn’t see that but it’s. Yeah, it has an async story. So you can have an async validation. Yes, maybe sooner or later we get the public, but yeah, we’ll see.</p>\n\n\n\n<p><em>Sarah Norris: </em>For themes, there is additional support for providing the border radius presets. So yeah, if you’re familiar with other presets that you can have in theme JSON for styling, this is one for Border Radius allows you to set border radius presets and then they’re available in the different controls and it also uses the spacing sizes is like a modal for the way the presets use as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, if you are a themer, you definitely want to control the border radius and have users use just the certain numbers for it. Yeah, so if you use a smaller one then it’s always 15, and it’s not one is 12 and the other one is 17 or something like that. And then if you want a bigger radius for 25 or something like you don’t want to kind of that users put in all above 20, so to speak. So you have. You have a more consistent design on your site. And even if you kind of let the users use Border Radius for certain things for designing the next one is. Well, I think. Well, just want to say that the presets for Border Radius is definitely a big thing for theme developers. Yeah, I really get that. </p>\n\n\n\n<p>The next one is actually a really big thing for anybody who uses WordPress because the command palette comes to the admin dashboard. So you can actually be anywhere in your WordPress admin and then say open Site editor or add page or open style book or something like that. So you don’t have to find the menu. Click 15 times through the menu to find that particular piece there. Or say add CSS. I don’t know if that’s a command yet, but it definitely should be. So it’s a much easier way. And a lot of people might actually appreciate that they can do shortcuts pretty much to get to wherever they need to do. For the power users, it’s definitely an improvement. And I also can see there is. In the roadmap, there was also. That’s actually part of the roadmap that the command palette is available for the admin dashboard. But it’s also a foundational piece to get also AI using some of the commands and also to add. To have plugin use add commands to it that are not connected to the site editor. So plugin developers actually can streamline their processes as well for their users. Yeah, it’s nice. Yeah, it’s cool. Yeah. And I think now we have. Yeah, there’s a media for you. Do you want to go.</p>\n\n\n\n<p><em>Sarah Norris: </em>I can do for the block library, the median text block. So this is retain use featured image hook value during transformations. So I think this is a bug fix that fixes the media and text transformations to and from a cover block. Basically ensures that the use featured image value is retained during the transformation, which is very important. Don’t want to be resetting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It’s very important. And kind of adds. Removes an additional step people have to think about. So I already did this. Why do I have to do it again?</p>\n\n\n\n<p><em>Sarah Norris: </em>Yeah, exactly.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>After they migrated. We are at the end of Gutenberg 21.5. Yes, we did it, Sarah. </p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s in Active Development or Discussed</h3>\n\n\n\n<p>Now we have one section left in our podcast that’s the what’s in active development or discussed. And as I said in the intro we need more blocks. </p>\n\n\n\n<h3 class=\"wp-block-heading\">More Blocks</h3>\n\n\n\n<p>Matias Ventura, lead architect of Gutenberg and the whole revamping of the admin design, he posted an issue called New Blocks Editions for the Block Library. And there’s a lot of discussions that we would need there if we need them or not need them. But he comes from a point where he says, okay, for theme to have a good create a good experience for their users, it would be helpful to have these kinds of blocks or some, some of them or all of them in there. So there is no doubt that when a theme styles a block or uses it in patterns or in template parts or something like that, that it’s not going to be there. And that’s the experience now that if users use some other block, a theme that assumes there are blocks in there, they get a very confusing message there that so and so block wasn’t installed if they want to install it or something like that. And I think that’s for any new user of the WordPress could work inside editor are not very helpful. And so there are some suggested blocks there. Amongst them, the icons block, the playlist block, the slider, slider or carousel block, a stretchy text block, tabs block, accordion block. We have that Mega menus, math ML block, marquee block, table of content, time to read breadcrumbs and dialogue block. That’s kind of the list. I think it can go on and on and on, but I think it’s a good list there. I felt I’m a little bit okay, the marquee block. Didn’t we outphase that in the, in the 90s already? But I think it comes in handy when you have a news sticker across the top or something like that. MathML I think it’s a good block for educational sites, especially in math education. So I don’t know if that needs to be in the core or it can still be a plugin. Actually, Adam Silverstein created a plugin with the MathML block or the breadcrumbs block. Definitely important because that’s so important that we can help people find their way back. So a lot of people chime in. Aaron Jorban, Mike McAllister, Jeff Paul, Rich Tabor, Joe Dalston, Hendrik Larsen, Jeff Chandler yeah, a lot of people kind of join me in.</p>\n\n\n\n<p><em>Sarah Norris: </em>Yeah, it’s great to see.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> What do you think?</p>\n\n\n\n<p><em>Sarah Norris:</em> It’s great to see so much interaction and conversation about new blocks. I think generally most people think that we should have more blocks, but I think the contention comes down to per block and which one should be added. And I think that’s fine. I think that it’s fine to have a discussion per block about that. But at the moment I think the lack of blocks just limits the flexibility and design opportunities in the editor. So that’s where maybe the decision process is a little bit easier for things like the accordion block, because it’s such an obvious design choice and option to have. Similar to the tabs block, probably the carousel block icons. But then there’s others like you mentioned about MathML maybe would have less users, but that doesn’t mean it shouldn’t be in core. It’s probably just a longer conversation or maybe it doesn’t make it into core. I’m not sure how I feel about the marquee block because I think it’d be really fun to have a marquee block. But I also understand that maybe, you know, not. Not everyone would want to use it. So maybe it doesn’t warrant going in. But then it’s fun, isn’t it?</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>So, yeah, there’s fun.</p>\n\n\n\n<p><em>Sarah Norris: </em>I don’t know.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>I have also seen that there’s a developers and user usability. People don’t like sliders and carousels.</p>\n\n\n\n<p><em>Sarah Norris: </em>Right.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>But users or site owners like them very much. Yeah, exactly. So I talked with a few and at WordCamp US I talked with a few agency owners, said, yeah, that’s one of the blocks that we built ourselves because we need it on every single project that we are doing. Yeah. I can’t keep them kind of say, okay, there are alternatives when they want it. You know, our customers want them and so we build them.</p>\n\n\n\n<p><em>Sarah Norris: </em>Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And they’re pretty good to. They’re pretty navigational things, so interactive things. So if the site has no activity at all, this is actually getting you back.</p>\n\n\n\n<p><em>Sarah Norris:</em> Yeah, exactly. And so many of these blocks listed in this issue that Matias opened, so many of them already have so much work. They already have a PR or. And they’ve probably just stalled the same question of how do we do this? Why should we do this? Do we need this block? So I think it’s just a case of going through each block and having that conversation. Because the accordion block, I only picked it up and finished it. Jeff had done. Already done so much good work on that and that’s why it was able to be landed so quickly and yeah. In a similar position with many of the others. So, yeah, I’m looking forward to that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. I think the table of contents has received quite a few iterations.</p>\n\n\n\n<p><em>Sarah Norris:</em> Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And just a few pieces missing that would make it a little bit more a little easier to handle, but we all kind of found our ways around it. But for that, we always have to install Gutenbergs to have the blocks there. And not everyone wants to use Gutenberg in production. Yeah, still. </p>\n\n\n\n<p>All right. Okay. So we are coming to the end of our Gutenberg Changelog podcast. As always, the show notes will be published on GutenbergTimes.com podcast and if you have questions, suggestions, or news that you want us to include, send them to <a href=\"http://changelogutenbergtimes.com\">changelogutenbergtimes.com</a> that’s <a href=\"http://changelogutenburgtimes.com\">changelogutenburgtimes.com</a> Thank you so much, Sarah, for being here, and thank you to all the listeners for listening. And if you want to review our podcast on several of those directories, like on Apple or on Spotify, please do, as it helps other people to discover it. So thank you for listening, and goodbye and see you at the next one.</p>\n\n\n\n<p><em>Sarah Norris:</em> Bye.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Bye.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 06 Sep 2025 12:03:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Gutenberg Times: Accordion Block, Automattic Telex, Playground CLI and more—Weekend Edition #339\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=41640\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://gutenbergtimes.com/accordion-block-automattic-telex-playground-cli-and-more-weekend-edition-339/\";s: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:30809:\"<p>Hi,</p>\n\n\n\n<p>WordCamp US was a blast, although a four-day WordCamp felt weird. And after day four I was exhausted. I am almost done dealing with jet lag coming back from the nine-hour time difference. Interestingly enough, I saw way more talks than at previous WordCamps and I enjoyed learning new things. I also caught up with many long-time WordPress friends, most of whom I haven’t seen since the pandemic. My heart is full. <img alt=\"💕\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f495.png\" style=\"height: 1em;\" /> </p>\n\n\n\n<p>More on WordCamp US below.</p>\n\n\n\n<p>I also caught up on a lot of stuff from the rest of the WordPress world, so this weekend edition is really packed.</p>\n\n\n\n<p>Wishing you a fantastic weekend. </p>\n\n\n\n<p>Yours, <img alt=\"💕\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f495.png\" style=\"height: 1em;\" /><br /><em>Birgit</em></p>\n\n\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\"></div>\n\n\n<h2 class=\"wp-block-heading\" id=\"wordcamp-us-2025\">WordCamp US 2025</h2>\n\n\n\n<p>For this week, I just link some recaps post and collect the WordPress TV links of the talks. More to come over the next weeks or so. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"recap-posts\">Recap posts</h3>\n\n\n\n<p>There are already quite a few recap posts about WordPress US published. Here is a selection:</p>\n\n\n\n<p><strong>Brett McSherry</strong> published a recap: <a href=\"https://wordpress.org/news/2025/08/portland-welcomes-wcus-2025/\"><strong>Portland Welcomes WordCamp US 2025: A Community Gathering</strong></a></p>\n\n\n\n<p>So did <strong>Rae Morey</strong> at The Repository <a href=\"https://www.therepository.email/wordcamp-us-2025-wraps-in-portland-ai-demos-student-programs-and-whats-next-for-wordpress\" rel=\"noreferrer noopener\" target=\"_blank\"><strong>WordCamp US 2025 Wraps in Portland: AI Demos, Student Programs, and What’s Next for WordPress</strong></a></p>\n\n\n\n<p><strong>Andy Fragen</strong> shared his photo album: <a href=\"https://thefragens.com/wcus-2025-in-pictures/\"><strong>WCUS 2025 in Pictures.</strong></a></p>\n\n\n\n<p>Communications Lead at DreamHost, <strong>Annette Irwin</strong>, reported extensively from each day in Portland, OR:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://www.dreamhost.com/news/announcements/inside-wordcamp-us-2025-contributor-day/\">Inside WordCamp US 2025 Contributor Day</a></li>\n\n\n\n<li><a href=\"https://www.dreamhost.com/news/announcements/wordcamp-us-2025-showcase-day-where-wordpress-comes-to-life/\">WordCamp US 2025: Showcase Day — Where WordPress Comes to Life</a></li>\n\n\n\n<li><a href=\"https://www.dreamhost.com/news/announcements/wordcamp-us-2025-day-3-recap-innovation-energy-and-community/\">WordCamp US 2025: Day 3 Recap— Innovation, Energy, and Community</a></li>\n\n\n\n<li><a href=\"https://www.dreamhost.com/news/announcements/wordcamp-us-2025-day-4-ai-insights-and-a-fond-farewell/\">WordCamp US 2025 Day 4: AI Insights and a Fond Farewell</a></li>\n</ul>\n\n\n\n<p><a href=\"https://wordpress.com/blog/2025/09/05/wordcamp-us-2025-recap/\"><strong>The 5 Best Things About WordCamp US 2025</strong></a> by Tess Needham, WordPress.com</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"recordings\">Recordings </h3>\n\n\n\n<p>The WordCamp US Livestream recordings are <a href=\"https://youtube.com/playlist?list=PL1pJFUVKQ7ERiUTP1Mt_yhRDOzESEoodI\">available on YouTube</a>. The AV team is in the process of <a href=\"https://wordpress.tv/event/wordcamp-us-2025/\">uploading single talks to WordPressTV</a></p>\n\n\n\n<p>Here is the list of talks I shared in <a href=\"https://gutenbergtimes.com/wordcamp-us-more-blocks-a-new-book-gutenberg-21-4-and-wordpress-6-9-weekend-edition-338/\">Weekend Edition 338</a>, now with the links to the recordings on WordPress TV</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Joeleen Kennedy</strong>: <a href=\"https://wordpress.tv/2025/09/03/modernizing-at-scale-how-fse-supports-wikimedias-evolving-ux/\">Modernizing at Scale: How FSE Supports Wikimedia’s Evolving UX</a></li>\n\n\n\n<li><strong>Josh Bryant</strong>: <a href=\"https://wordpress.tv/2025/09/03/reimagining-wordpress-editing-how-we-embedded-gutenberg-into-our-product-ecosystem/\">Reimagining WordPress Editing: How We Embedded Gutenberg Into Our Product Ecosystem</a></li>\n\n\n\n<li><strong>Seth Rubenstein</strong>: <a href=\"https://wordpress.tv/2025/09/03/block-composability-the-past-and-the-future/\">Block Composability: The Past and The Future</a></li>\n\n\n\n<li><strong>Stephanie Stelzer</strong>: <a href=\"https://wordpress.tv/2025/09/03/coding-the-magic-a-developers-journey-through-aloha/\">Coding the Magic: A Developer’s Journey Through Aloha</a></li>\n\n\n\n<li><strong>Mary Ann Aschenbrenner</strong>: <a href=\"https://wordpress.tv/2025/09/03/moving-a-website-from-classic-to-a-block-theme/\">Moving a Website from Classic to a Block Theme</a></li>\n\n\n\n<li><strong>Anton Plauch</strong>e: <a href=\"https://wordpress.tv/2025/09/03/building-resilient-interfaces-by-embracing-fluid-design/\">Building Resilient Interfaces by Embracing Fluid Design</a></li>\n\n\n\n<li><strong>Jemima Abu</strong>: <a href=\"https://wordpress.tv/2025/09/03/a-php-developers-guide-to-reactjs/\">A PHP Developer’s Guide to ReactJS</a></li>\n\n\n\n<li><strong>Michelle Schlup Hunt</strong>: <a href=\"https://wordpress.tv/2025/09/03/building-experiences-design-systems-user-experience-and-full-site-editing/\">Building Experiences: Design Systems, User Experience, and Full Site Editing</a></li>\n\n\n\n<li><strong>Tammie Lister</strong>: <a href=\"https://wordpress.tv/2025/09/03/the-system-is-the-strategy/\">The System is the Strategy</a><br /></li>\n</ul>\n\n\n\n<p>AI was a big topic at WCUS 2025 with about a dozen talks from various angles. My recommendations are: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>For developers, check out <strong>Adam Silverstein</strong>’s talk, <a href=\"https://wordpress.tv/2025/09/03/unlock-developer-superpowers-with-ai/\">Unlock Developer Superpowers with AI,</a> as he has tested quite a few tools and can give a great rundown about his approach. </li>\n\n\n\n<li>For non-developers, if you need an introduction on how to think about AI, watch <strong>John Maeda</strong>’s talk <a href=\"https://wordpress.tv/2025/09/03/cozy-ai-cooking-wordcamp-edition/\">Cozy AI Cooking: WordCamp Edition</a></li>\n\n\n\n<li>If you want to be amazed by what’s happening in other areas of science, I highly recommend <strong>Prof. Adam Gazzaley</strong>‘s talk, <a href=\"https://wordpress.tv/2025/09/03/a-new-era-of-experiential-medicine-ai-and-the-brain/\">A New Era of Experiential Medicine – AI and the Brain</a> </li>\n</ul>\n\n\n\n<p>The <a href=\"https://wordpress.tv/event/wordcamp-us-2025/\">full list of talks is available on WordPress TV here.</a></p>\n\n\n\n<p>The recordings of the workshops are not yet available. I’ll share them in a future Weekend Edition. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"major-wordpress-events-in-2026\">Major WordPress events in 2026 </h2>\n\n\n\n<p>2026 is still many months away, but you can’t plan soon enough. Save the dates! </p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table class=\"has-fixed-layout\"><thead><tr><th>Dates</th><th>Name of the Event</th><th>Location</th></tr></thead><tbody><tr><td>January 23-24, 2026</td><td><a href=\"https://nepal.wordcamp.org/2026/\">WordCamp Nepal</a></td><td>Butwal, Nepal</td></tr><tr><td>April 8-11, 2026</td><td><a href=\"https://pressconf.events/\">PressConf</a></td><td>Phoenix, Arizona, USA</td></tr><tr><td>April 9–11, 2026</td><td><a href=\"https://asia.wordcamp.org/2026/\">WordCamp Asia </a></td><td>Mumbai, India </td></tr><tr><td>April 23-24, 2026</td><td><a href=\"https://checkoutsummit.com/\">Checkout Summit</a></td><td>Palermo, Italy</td></tr><tr><td>June 4-6, 2026</td><td><a href=\"https://europe.wordcamp.org/2026/\">WordCamp Europe</a></td><td>Krakow, Poland</td></tr><tr><td>August 16-19, 2026</td><td>WordCamp US</td><td>Phoenix, Arizona, USA</td></tr></tbody></table></figure>\n\n\n\n<p>Many more WordCamps are in the early stages. You can check out the <a href=\"https://central.wordcamp.org/schedule/\">schedule on WordCamp.org</a> and also review the WordCamps planned for the rest of 2025. </p>\n\n\n\n<p>For the remainder of 2025, I just booked my flight to Gdansk to attend <a href=\"https://gdynia.wordcamp.org/2025/\"><strong>WordCamp Gdynia</strong></a>, September 26 – 28, the first bilingual WordCamp in Poland. And I am contemplating attending <a href=\"https://pisa.wordcamp.org/2025/\"><strong>WordCamp Pisa</strong></a> in November.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Anne McCarthy</strong> and I joined <strong>Nathan Wrigley</strong> on the <strong><a href=\"https://wpbuilds.com/2025/09/04/435-at-the-core-with-birgit-pauli-haack-and-anne-mccarthy-episode-4/\">4th episode of the “At the Core” podcast</a></strong> series of WPBuilds. We talked about the Admins design and AI building blocks, the Roadmap for 6.9, the command line for WPAdmin, and Speculative loading. It was a fun, fast-paced conversation.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://wpbuilds.com/2025/09/04/435-at-the-core-with-birgit-pauli-haack-and-anne-mccarthy-episode-4/\"><img alt=\"\" class=\"wp-image-41742\" height=\"343\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/09/WP-Builds-Podcast-Episode-435.webp?resize=652%2C343&ssl=1\" width=\"652\" /></a></figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Aki Hamano</strong> released Gutenberg 21.5 and highlighted in his post <a href=\"https://make.wordpress.org/core/2025/08/28/whats-new-in-gutenberg-21-5/\">What’s new in Gutenberg 21.5? (27 August)</a> </p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2025/08/28/whats-new-in-gutenberg-21-5/#introducing-accordion-block\">Introducing Accordion block</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/08/28/whats-new-in-gutenberg-21-5/#command-palette-in-admin-dashboard\">Command Palette in admin dashboard</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/08/28/whats-new-in-gutenberg-21-5/#support-border-radius-presets\">Support border radius presets</a></li>\n</ol>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-41725\" height=\"368\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/09/accordion-block.png?resize=652%2C368&ssl=1\" width=\"652\" /></figure>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p><img alt=\"🎙\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f399.png\" style=\"height: 1em;\" /> The latest episode is <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-120-wordcamp-us-telex-gutenberg-21-4-and-21-5/\">Gutenberg Changelog 120—WordCamp US, Automattic Telex, Gutenberg 21.4 and 21.5, and the need for more blocks</a> with special guest <strong>Sarah Norris. </strong></p>\n\n\n\n<figure class=\"wp-block-image size-full is-style-no-vertical-margin\"><img alt=\"\" class=\"wp-image-41771\" height=\"207\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/09/Screenshot-2025-09-05-at-14.12.23-edited.png?resize=652%2C207&ssl=1\" width=\"652\" /></figure>\n\n\n\n<p class=\"has-small-font-size\"><em>If you are listening via Spotify, please leave a comment. If you listen via other podcast apps, please leave a review. It’ll help with the distribution.</em></p>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p>In her post on the WooCommerce Developer Blog, <strong>Stephanie Pi</strong> walks you through the <a href=\"https://developer.woocommerce.com/2025/09/01/woocommerce-10-2-pre-release-updates/\"><strong>updates coming to WooCommerce 10.2</strong></a>. Get ready for the Product Collection Carousel and Bloc, simplified templates, a faster Cart Block, improved taxonomy filters, and so much more. Beta 2 is scheduled for September 8th, and the final release drops on September 16th, 2025.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Product Carousel coming to WooCommerce 10.2 on September 16, 2025\" class=\"wp-image-41746\" height=\"317\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/09/Screenshot-2025-09-04-at-16.13.10.png?resize=652%2C317&ssl=1\" width=\"652\" /></figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Wes Theron</strong> explains in this video <a href=\"https://www.youtube.com/watch?v=JO-bn9jwarQ\"><strong>how to work with WordPress templates</strong></a>. You’ll learn the difference between pages and templates in WordPress and how templates control the layout and structure of your pages—including headers, footers, and content—without affecting the content itself. Theron explored how editing templates impacts all pages using them, and showed practical examples using the Pages Template, Single Posts Template, All Archives Template, 404 Template, and your homepage.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ajit Bohra</strong>, Lubus, <a href=\"https://x.com/ajitbohra/status/1962503463046365553\">announced</a> that their open-source <strong><a href=\"https://wordpress.org/plugins/blablablocks-tabs-block/\">Tabs Block</a></strong> is now available in the WordPress repository. Users can create horizontal or vertical tabs directly inside the WordPress Block Editor. Documentation can be found <a href=\"https://github.com/lubusIN/blablablocks-tabs-block/wiki\">on GitHub Wiki</a></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Tabs Block screenshot by Lubus.in\" class=\"wp-image-41722\" height=\"343\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/09/Tabs-Block-LubusIN.png?resize=652%2C343&ssl=1\" width=\"652\" /></figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Kevin Batdorf </strong>published the <a href=\"https://wordpress.org/plugins/fit-to-width/\"><strong>Fit To Width block</strong></a> in the WordPress repository. The block is used for displaying each line of text at full width, no matter the length of the text.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"screenshot of an example of the Fit-to-Width block by Kevin Batdorf\" class=\"wp-image-41729\" height=\"458\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/09/screenshot-1.jpg?resize=652%2C458&ssl=1\" width=\"652\" /></figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ryan Welcher</strong> released v4.3.0v of his <a href=\"https://wordpress.org/plugins/advanced-query-loop/\"><strong>Advanced Query Loop block</strong></a> in the WordPress repository. The update introduces a new post exclusion tool, a completely overhauled Post Meta Queries UI, and a new option for Meta Type.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Justin Tadlock</strong> posted his take on the overall question: <strong><a href=\"https://gutenbergtimes.com/why-wordpress-core-needs-more-blocks/\">Why WordPress Core needs more blocks</a>.</strong> He used to support keeping WordPress lean, but block themes changed everything. Now theme builders have way fewer tools compared to before—you can’t just include breadcrumbs, accordions, or icons without finding specific blocks for them. When users don’t have the right blocks installed, they get ugly error messages. He wants WordPress to include more core blocks like tabs, icons, and accordions so theme creators can actually build what they envision without hitting brick walls. What do you think? <a href=\"https://gutenbergtimes.com/why-wordpress-core-needs-more-blocks/#comments\">Leave a comment</a> on Tadlock’s post or on the GitHub issue: <a href=\"https://github.com/WordPress/gutenberg/issues/71026\">New Block additions for the Block Library</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In January, <a href=\"https://wordpress.tv/speakers/arun-r-shenoy/\"><strong>Arun R Shenoy</strong></a> held a talk at WordCamp Kolhapur with the title <strong><a href=\"https://wordpress.tv/2025/08/19/crafting-attractive-block-themes-using-the-block-editor-alone/\">Crafting Attractive Block Themes Using the Block Editor Alone</a></strong>. The recording is now online on WordPressTV. Shenoy explored “minimalist design and the capabilities of the Block Editor. No coding or complex tools—just the editor and your creative vision.” He explained the basics for those who haven’t used the Site Editor yet and want to learn more. The <a href=\"https://kolhapur.wordcamp.org/2025/files/2024/12/WordCamp-Kolhapur-2025-Arun-R-Shenoy.pdf\">slidedeck</a> is also available online.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Screenshot of Arun Shenoy\'s Talk at WordCamp Kolhapur\" class=\"wp-image-41734\" height=\"361\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/09/Screenshot-2025-09-04-at-14.02.52.png?resize=652%2C361&ssl=1\" width=\"652\" /></figure>\n\n\n<section class=\"wp-block-newsletterglue-callout undefined not-color-set\" style=\"border-color: #f9f9e5; border-radius: 22px; border-style: solid; border-width: 0; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; text-align: left; margin-left: 0; margin-right: 0; margin-top: 0px; margin-bottom: 0px; background-color: #f9f9e5;\">\n<p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" rel=\"noreferrer noopener\" target=\"_blank\">“Keeping up with Gutenberg – Index 2025”</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. The previous years are also available: <strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/\"><strong>2024</strong></a></p>\n</section>\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor</h2>\n\n\n\n<p>The head of engineering at The Code Company, <strong><a href=\"https://x.com/zachickson\">Zac Hickson</a></strong> took a look at the question: <a href=\"https://thecode.co/wordpress-interactivity-api-enterprise-ready/\"><strong>Is The WordPress Interactivity API Enterprise-Ready?</strong></a> After a year of testing, they found it’s good to go since WordPress 6.5, making things easier by cutting down technical debt and boosting performance while sticking to the WordPress ecosystem. It handles standard interactive bits pretty well, but you’ll want to plan carefully for those trickier apps. It’s perfect for teams that live and breathe WordPress and want a simpler front-end setup. </p>\n\n\n\n<p>The article takes a look at the WordPress Interactivity API by testing it out in real-life client projects. It dives into how ready it is technically, compares its performance against React, Vue, Alpine.js, and jQuery, and shares some cool case studies, like multi-site subscription systems and interactive camera demos. Plus, it gives some tips on how to implement it and some advice on when to pick this API over the others. The whole analysis is all about figuring out how doable this is for organizations that are all about WordPress.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Author <strong>Paulo Carvajal</strong>‘s new guide, <a href=\"https://wp-block-editor.com/mastering-complex-attributes-in-wordpress-blocks-handling-objects-arrays-and-nested-data/\"><strong>Mastering Complex Attributes in WordPress Blocks: Handling Objects, Arrays, and Nested Data</strong></a>, teaches developers how to work with complex data in block attributes beyond simple text and toggles. It covers arrays for repeatable content like galleries, objects for grouped settings, and nested data structures. The tutorial shows code examples for managing state properly, validating data, and handling performance issues. It explains how to create sophisticated blocks like testimonial sliders while keeping the editing experience user-friendly and avoiding common pitfalls with state management.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"wordpress-developer-blog\">WordPress Developer Blog</h3>\n\n\n\n<p><strong>Troy Chaplin</strong> continues sharing his experience, his workflow and plugin setup on the <em>WordPress Developer Blog</em> with two articles: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://developer.wordpress.org/news/2025/08/refactoring-the-multi-block-plugin-build-smarter-register-cleaner-scale-easier/\"><strong>Refactoring the Multi-Block Plugin: Build Smarter, Register Cleaner, Scale Easier</strong></a><br />Refactor your multi-block plugin with a cleaner structure, support for all block types, and smarter registration, bundling, and asset handling.</li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2025/09/implementing-namespaces-and-coding-standards-in-wordpress-plugin-development/\"><strong>Implementing Namespaces and Coding Standards in WordPress Plugin Development</strong></a><br />Add namespacing, autoloading, and linting to your multi-block plugin for clean, scalable WordPress development.</li>\n</ul>\n\n\n\n<p><strong>Don’t miss a new article ever again. <a href=\"https://developer.wordpress.org/news/subscribe/\">Subscribe to the WordPress Developer Blog!</a></strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Justin Tadlock</strong> and <strong>Abar Thakor</strong> discussed <a href=\"https://openchannels.fm/how-to-start-contributing-to-the-wordpress-developer-blog-even-if-youre-new/\"><strong>How to Start Contributing to the WordPress Developer Blog (Even If You’re New)</strong></a> in an episode on the OpenChannels network. Don’t wait to be an expert before contributing to the WordPress Developer Blog. Even beginners can share small solutions, guides, or case studies they’ve built. Start by browsing existing posts for inspiration, then share your idea on the <a href=\"https://github.com/WordPress/developer-blog-content/discussions/categories/topic-ideas\">GitHub discussion panel.</a> The editorial team is super helpful and will work with you to polish your writing. Your beginner perspective might be exactly what other new developers need to see.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"artificial-intelligence-ai-and-wordpress\">Artificial intelligence (AI) and WordPress</h2>\n\n\n\n<p>A new AI Tool, <a href=\"https://telex.automattic.ai/projects/new\"><strong>Automattic Telex</strong></a>, makes it easier to build Blocks for the block editor. <strong>Matt Mullenweg</strong> announced it in his keynote. </p>\n\n\n\n<p><strong>Rae Morey</strong>, The Repository, reports on the reception around the Interwebs. <a href=\"https://www.therepository.email/automattic-debuts-telex-bringing-ai-powered-vibe-coding-to-gutenberg-blocks\">Automattic Debuts Telex, Bringing AI-Powered “Vibe Coding” to Gutenberg Blocks</a>. </p>\n\n\n\n<p><strong>Sarah Perez</strong> at <em>TechCrunch</em> also picked up the story: <a href=\"https://techcrunch.com/2025/09/02/wordpress-shows-off-telex-its-experimental-ai-development-tool/\">WordPress shows off Telex, its experimental AI development tool</a></p>\n\n\n\n<p><a href=\"https://telex.automattic.ai/projects/new\">Don’t be shy, give it a whirl,</a> share your feedback, and leave a comment. <br /></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Grzegorz Ziółkowski</strong> <a href=\"https://github.com/WordPress/abilities-api/releases/tag/v0.1.0\">released</a> the <strong>Composer package <code>wordpress/abilities-api</code>.</strong> WordPress developers can now test the Abilities API before it officially launches in WordPress 6.9. The Abilities API creates a common language for all WordPress components to define their functionalities, making it easier for both humans and machines to understand. By using this shared language, plugins, and themes can help AI solutions find, interpret, and use capabilities across the WordPress ecosystem. You can learn more about this new feature on the <a href=\"https://make.wordpress.org/ai/2025/07/17/abilities-api/\">Make blog of the AI Team</a>. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-s-new-for-wordpress-playground\">What’s new for WordPress Playground</h2>\n\n\n\n<p>In this episode on the OpenChannels <a href=\"https://openchannels.fm/learn-how-wordpress-playground-revolutionizes-local-development-testing-and-learning/\">Learn How WordPress Playground Revolutionizes Local Development Testing and Learning</a> <strong>Abha Thakor</strong> and <strong>Fellyph Cintra</strong> discuss WordPress Playground, its features, accessibility, and impact on developers and users. One new feature is the Playground Command line interface (CLI). You can use the playground CLI to spin up a WordPress instance directly from your plugin or theme folder by using with the <code>--auto-mount</code> flag with the command. This gives you a complete development environment in seconds.</p>\n\n\n\n<p class=\"has-light-background-background-color has-background\"><code>npx @wp-playground/cli server --auto-mount</code></p>\n\n\n\n<p>Recent updates also added a demo content for the plan Playground site, when accessing <a href=\"https://playground.wordpress.net\">playground.wordpress.net</a></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-41731\" height=\"363\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/09/Screenshot-2025-09-04-at-13.37.00.png?resize=652%2C363&ssl=1\" width=\"652\" /></figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n<section class=\"wp-block-newsletterglue-callout undefined not-color-set\" style=\"border-color: #eeeeee; border-radius: 26px; border-style: solid; border-width: 0; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; text-align: left; margin-left: 0; margin-right: 0; margin-top: 0px; margin-bottom: 0px; background-color: #f3efe9;\">\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg’s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. </p>\n\n\n\n<p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:[email protected]\">Email me </a>with your experience</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n</section>\n\n\n<p class=\"has-text-align-center has-small-font-size\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don’t hesitate to send <a href=\"mailto:[email protected]\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:[email protected]\">[email protected]</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n<section class=\"wp-block-newsletterglue-group\" style=\"padding-top: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; margin-top: 0px; margin-bottom: 0px;\">\n<p>Featured Image: Photo by Peter Nguyen on Unsplash</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don’t want to miss the next Weekend Edition? </strong></p>\n\n\n<form action=\"https://gutenbergtimes.com/feed/\" autocomplete=\"on\" class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\" style=\"margin-bottom: 25px;\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input autocomplete=\"email\" class=\"ngl-form-input-text\" id=\"ngl_email\" name=\"ngl_email\" required=\"required\" style=\"border-radius: 21px;\" type=\"email\" /></div></div><button class=\"ngl-form-button\" style=\"background-color: #005075; border-color: #005075; border-width: 1px; border-style: solid; color: #ffffff; border-radius: 21px;\" type=\"submit\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won’t give your email address to anyone <br />except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"><svg fill=\"none\" height=\"24\" stroke=\"#fff\" stroke-width=\"2\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><polyline points=\"20 6 9 17 4 12\"></polyline></svg></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input id=\"ngl_list_id\" name=\"ngl_list_id\" type=\"hidden\" value=\"26f81bd8ae\" /><input id=\"ngl_double_optin\" name=\"ngl_double_optin\" type=\"hidden\" value=\"yes\" /></form>\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n</section>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 06 Sep 2025 04:23:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:27;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Matt: Happy Birthday Anil\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149659\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2025/09/anil-50/\";s: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:1031:\"<p>If my calendar is correct, one of the OG bloggers <a href=\"https://www.anildash.com/\">Anil Dash</a> is turning 50 today! His blog, which I <span style=\"margin: 0px; padding: 0px;\">believe has been active since 1999, inspired me with how he</span> effortlessly transitioned between his top-tier fandom of Prince and his thoughtful commentary on the nuances and second-order effects of what we were doing with blogging, micro-blogging, web standards, interoperability, and much more. His writing is incisive and insightful. I see a core flame of empowering independents throughout his career that very much aligns with the philosophies I aspire to. Please follow him if you don’t already, and <strong>happy birthday Anil</strong>! It appears that I have linked to him 15 times on my blog before this post, and he has commented 17+ times, the first in 2005, so we have some history! Since I started drafting this he <a href=\"https://dashes.com/2025/09/05/five-for-fifty/\">published his Five for Fifty birthday post</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Sep 2025 18:46: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: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"Open Channels FM: Expanding WordPress Capabilities with Angie and the Power of Multi-Agentic AI\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=109343\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://openchannels.fm/expanding-wordpress-capabilities-with-angie-and-the-power-of-multi-agentic-ai/\";s: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:339:\"In this episode of the Dev Pulse, Expand the Stack series, host Zach Stepek broadcasts straight from the show floor at WordCamp US 2025, where he dives into the latest innovations shaking up the WordPress community. Zach catches up with Shilo Eish Yemini and Miriam Schwab from the Elementor team in their unmistakably pink booth […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Sep 2025 08:22:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Matt: Simon Says\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149349\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://ma.tt/2025/09/simon-says/\";s: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:237:\"<p>Simon Willison <a href=\"https://simonwillison.net/2025/Sep/4/highlighted-tools/\">has vibe-coded 124 useful tools</a>. Also check out <a href=\"https://simonwillison.net/2025/Aug/9/bay-area-ai/\">his Lethal Trifecta presentation</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Sep 2025 01:31: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: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:30;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Open Channels FM: Bridging WordPress and the Cloud Industry at CloudFest USA in Miami\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=108596\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://openchannels.fm/bridging-wordpress-and-the-cloud-industry-at-cloudfest-usa-in-miami/\";s: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:212:\"In this episode, Adam Weeks and Jonathan Wold discuss CloudFest USA, connecting WordPress and cloud industries. Wold highlights networking opportunities, his upcoming chat with Mary Hubbard, and event uniqueness.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Sep 2025 13:15: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:31;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"Open Channels FM: The Power of Teaching as a Beginner: How Fresh Learners Make Great Instructors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=105423\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://openchannels.fm/the-power-of-teaching-as-a-beginner-how-fresh-learners-make-great-instructors/\";s: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:324:\"When we picture great teachers, many of us imagine experts with decades of experience. But what if some of the most impactful educators are those who just learned the ropes themselves? In a recent episode of Open Channels FM, guest Nyasha Green and host Carl Alexander dove deep into this idea and what they shared […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Sep 2025 10:28: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: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Matt: God &amp; Devil Debate HI\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149303\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://ma.tt/2025/09/en-passant/\";s: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:1358:\"<p>There are many levels to the <a href=\"https://www.astralcodexten.com/p/what-is-man-that-thou-art-mindful\">excellent Scott Alexander satire of God, Iblis (Islamic word for devil), and Dwarkesh Patel, one of the best new podcasters of this era</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>There are people who have gone their whole lives without realizing that Twinkle Twinkle Little Star, Baa Baa Black Sheep, and the ABC Song are all the same tune […]</p>\n\n\n\n<p>If they’re used to stories about surgeons getting completed with the string “man”, then that’s the direction their thoughts will always go… Also, how come God can’t make humans speak normally? Everything they say is full of these um dashes!</p>\n</blockquote>\n\n\n\n<p>Which leads to a hat tip to <a href=\"https://briangardner.com/\">Brian Gardner</a> on the incredible <a href=\"https://www.mcsweeneys.net/articles/the-em-dash-responds-to-the-ai-allegations\">McSweeney’s Em dash responding to the the AI allegations</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>So next time you read something and think, “AI wrote this—it has a lot of em dashes,” ask yourself: Is it AI? Or is it just a poet trying to give you vertigo in four lines or fewer?<br /></p>\n</blockquote>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Sep 2025 23:04: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: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:33;a:6:{s:4:\"data\";s:17:\"\n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"HeroPress: HeroPress at WordCamp US 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:29:\"https://heropress.com/?p=8186\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://heropress.com/heropress-at-wordcamp-us-2025/#utm_source=rss&utm_medium=rss&utm_campaign=heropress-at-wordcamp-us-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:10885:\"<img alt=\"A stage with giant letters spelling #WCUS on it.\" class=\"attachment-large size-large wp-post-image\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2025/09/IMG_6810.webp\" width=\"1024\" /><p>I wasn’t sure I was going to make it to WordCamp US this year, but at almost the last minute, <a href=\"https://wordpress.com\">WordPress.com</a> helped me out with travel and accommodations! <a href=\"https://heropress.com/feed/#support\">More on that below</a>.</p>\n\n\n\n<h1 class=\"kt-adv-heading8186_232186-5e wp-block-kadence-advancedheading\">Contributor Day</h1>\n\n\n\n<p>The first day was contributor day and I was a table lead. I think we had more people this year than any other year before. I started the day showing 4 or 5 people how to become contributors, and they each uploaded 20 photos or so. All told we moderated about 160 photos during the day, and pushed the total over 26,000. I also made some great new friends!</p>\n\n\n\n<h2 class=\"kt-adv-heading8186_fc24a0-77 wp-block-kadence-advancedheading\">Photography</h2>\n\n\n\n<p>For the first time ever I was on the WordCamp Photography team. I feel like it’s a great honor because don’t really think of myself as a photographer, and I don’t even own a “real” camera, I just use my iPhone. I do have some lenses from Moment.io which are cool, but they’re not a patch on some of the big crazy lenses I saw around. I took several hundred pictures over the week, here are just a few:</p>\n\n\n\n<div class=\"wp-block-jetpack-tiled-gallery aligncenter is-style-rectangular\"><div class=\"\"><div class=\"tiled-gallery__gallery\"><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\"><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/heropress.com/wp-content/uploads/3025/09/IMG_6793-1024x576.webp?ssl=1\" /></figure></div><div class=\"tiled-gallery__col\"><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/heropress.com/wp-content/uploads/3025/09/IMG_6784-1024x433.webp?ssl=1\" /></figure></div></div><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\"><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/heropress.com/wp-content/uploads/3025/09/IMG_6794-1024x576.webp?ssl=1\" /></figure></div><div class=\"tiled-gallery__col\"><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/heropress.com/wp-content/uploads/3025/09/IMG_6825-1024x433.webp?ssl=1\" /></figure></div></div><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\"><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/heropress.com/wp-content/uploads/3025/09/IMG_6884-1024x576.webp?ssl=1\" /></figure></div><div class=\"tiled-gallery__col\"><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/heropress.com/wp-content/uploads/3025/09/IMG_6887-1024x576.webp?ssl=1\" /></figure></div></div><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\"><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/heropress.com/wp-content/uploads/3025/09/IMG_6947-1024x433.webp?ssl=1\" /></figure></div></div><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\"><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/heropress.com/wp-content/uploads/3025/09/IMG_7013-1024x576.webp?ssl=1\" /></figure><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/heropress.com/wp-content/uploads/3025/09/IMG_7015-1024x576.webp?ssl=1\" /></figure><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/heropress.com/wp-content/uploads/3025/09/IMG_7016-1024x576.webp?ssl=1\" /></figure></div><div class=\"tiled-gallery__col\"><figure class=\"tiled-gallery__item\"><img alt=\"\" src=\"https://i0.wp.com/heropress.com/wp-content/uploads/3025/09/IMG_7057-576x1024.webp?ssl=1\" /></figure></div></div></div></div></div>\n\n\n\n<p></p>\n\n\n\n<h2 class=\"kt-adv-heading8186_e06675-2d wp-block-kadence-advancedheading\">The Mural</h2>\n\n\n\n<p>In addition to the regular photos, I got a series of <a href=\"https://www.jaxko.com/\">Jax Ko</a> making a WordCamp mural. They painted for 2 straight days, and I took a photo about every 2 hours. Here’s the progression in slideshow format:</p>\n\n\n\n<div class=\"wp-block-jetpack-slideshow aligncenter\"><div class=\"wp-block-jetpack-slideshow_container swiper\"><ul class=\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\"><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-8223\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3025/09/IMG_6997-1024x576.webp\" width=\"1024\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-8224\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3025/09/IMG_6998-1024x576.webp\" width=\"1024\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-8225\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3025/09/IMG_7007-1024x576.webp\" width=\"1024\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-8226\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3025/09/IMG_7008-1024x576.webp\" width=\"1024\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-8227\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3025/09/IMG_7028-1024x576.webp\" width=\"1024\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-8228\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3025/09/IMG_7053-1024x576.webp\" width=\"1024\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-8229\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3025/09/IMG_7099-1024x576.webp\" width=\"1024\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-8230\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3025/09/IMG_7113-1024x576.webp\" width=\"1024\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-8231\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3025/09/IMG_7116-1024x576.webp\" width=\"1024\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-8232\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3025/09/IMG_7123-1024x576.webp\" width=\"1024\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-8233\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3025/09/IMG_7136-1024x576.webp\" width=\"1024\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-8234\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3025/09/IMG_7158-1024x576.webp\" width=\"1024\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-8235\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3025/09/IMG_7181-1024x576.webp\" width=\"1024\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-8236\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3025/09/IMG_7207-1024x576.webp\" width=\"1024\" /></figure></li></ul><a class=\"wp-block-jetpack-slideshow_button-prev swiper-button-prev swiper-button-white\"></a><a class=\"wp-block-jetpack-slideshow_button-next swiper-button-next swiper-button-white\"></a><a class=\"wp-block-jetpack-slideshow_button-pause\"></a><div class=\"wp-block-jetpack-slideshow_pagination swiper-pagination swiper-pagination-white\"></div></div></div>\n\n\n\n<h2 class=\"kt-adv-heading8186_977d34-52 wp-block-kadence-advancedheading\" id=\"support\">How I Got There</h2>\n\n\n\n<figure class=\"wp-block-kadence-image kb-image8186_46dcfe-55 size-large\"><img alt=\"\" class=\"kb-img wp-image-8202\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3025/09/IMG_7190-1024x576.webp\" width=\"1024\" /></figure>\n\n\n\n<p>As I mentioned at the top, WordPress.com was my sponsor to get to WordCamp US this year. I really wanted to attend, I’ve never missed one! They very generously offered to help me get there and cover my hotel. More than that though, folks from .com at WordCamp sought me out and told me how glad they were that I was there. It was a very welcoming gesture.</p>\n\n\n\n<p>If you haven’t looked at WordPress.com for hosting in a while, you should check it out. There have been some substantial changes in the last few years, there are some great new features.</p>\n\n\n\n<div class=\"wp-block-kadence-image kb-image8186_9641eb-32\"><figure class=\"alignright size-large\"><a class=\"kb-advanced-image-link\" href=\"https://developer.wordpress.com/studio/\"><img alt=\"WordPress.com Studio\" class=\"kb-img wp-image-8243\" height=\"649\" src=\"https://heropress.com/wp-content/uploads/3025/09/wp_studio-1024x649.webp\" width=\"1024\" /></a></figure></div>\n\n\n\n<p>While many people may have thought of <a href=\"http://wordpress.com/\" rel=\"noreferrer noopener\" target=\"_blank\">WordPress.com</a> as a “free blog” platform only, <a href=\"http://wordpress.com/\" rel=\"noreferrer noopener\" target=\"_blank\">WordPress.com</a> has been a full-featured host for years. At the business and commerce plan level the plugin library is available for both free and paid plugins, which is great, and for more advanced users and developers they offer features like <a href=\"https://wordpress.com/hosting/#extensibility\">staging servers, SSH access, WP-CLI, github deployments</a>, and a <a href=\"https://developer.wordpress.com/studio/\">local development environment</a>. That local dev environment allows you to copy sites from production to local and then push back to either staging or production. This lets you to work on your site without disrupting your visitors’ experiences.</p>\n\n\n\n<p>Even if you don’t have hosting needs at the moment, you can still get involved! They have a great affiliate program, <a href=\"https://wordpress.com/affiliates/\">check it out here</a>. </p>\n<p>The post <a href=\"https://heropress.com/heropress-at-wordcamp-us-2025/\">HeroPress at WordCamp US 2025!</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Sep 2025 18:52: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:34;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Open Channels FM: Open Channels FM Joins as a Media Partner for CloudFest USA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=106125\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://openchannels.fm/open-channels-fm-joins-as-a-media-partner-for-cloudfest-usa/\";s: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:167:\"Open Channels FM partners with CloudFest USA in Miami on November 5-6, highlighting keynotes, panels, and networking opportunities for cloud and hosting professionals.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Sep 2025 16:36:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:140:\"WPTavern: #183 – Destiny Kanno, Isotta Peira and Anand Upadhyay on how WordPress is shaping the future of education for students worldwide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=199013\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:153:\"https://wptavern.com/podcast/183-destiny-kanno-isotta-peira-and-anand-upadhyay-on-how-wordpress-is-shaping-the-future-of-education-for-students-worldwide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:75449:\"<details>Transcript<div>\n<p>[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the blocks, the themes, and in this case, how WordPress is shaping the future of education for students worldwide.</p>\n\n\n\n<p>If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Destiny Kanno, Isotta Peira, and Anand Upadhyay.</p>\n\n\n\n<p>Destiny is the Head of Community Education at Automattic. Isotta is the leader of the WordPress Credits Initiative for students, and Anand is the founder of WordPress Campus Connect.</p>\n\n\n\n<p>This episode is all about how WordPress is not only powering websites, but also empowering the next generation of learners and creators. You’ll hear about the growing movement of education focused WordPress events happening worldwide, from hands-on workshops on university campuses in India, to student clubs designed to keep the momentum going after introductory events.</p>\n\n\n\n<p>Anand shares how WP Campus Connect is bringing WordPress directly to students, reducing barriers to entry, and helping bridge the gap between academic learning and real world tech skills. We also explore the challenges of organizing these events, from convincing institutions of the value of open source, to fostering genuine community involvement among both students and educators.</p>\n\n\n\n<p>Isotta then introduces us to the WordPress Credits Program, an initiative that lets students turn their contributions to the WordPress ecosystem into recognized academic credits at universities like, Pisa in Italy. It’s a win-win. Students gain practical resume worthy experience, while educational institutions get a transferable, skills focused, program that prepares learners for the jobs of the future.</p>\n\n\n\n<p>Whether you’re an educator, a WordPress enthusiast, or just someone who cares about open source and community, this episode is packed with actionable insights. The guests share how flexible and resilient these education initiatives are, how you can get involved, and why engaging the next generation is not just important, but essential for the continued growth and sustainability of the WordPress community.</p>\n\n\n\n<p>It’s a truly inspiring episode, and is at the intersection of so many areas of profound importance.</p>\n\n\n\n<p>If you’re curious about how to bring WordPress into your local school, university, or community, or if you just want to hear how WordPress is making a difference far beyond the web, this episode is for you.</p>\n\n\n\n<p>If you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Destiny Kanno, Isotta Peira and Anand Upadhyay.</p>\n\n\n\n<p>I am joined on the podcast by Destiny Kanno, by Isotta Peira, and also by Anand Upadhyay. Welcome all three of you. Thanks for joining me today.</p>\n\n\n\n<p>Now just before we begin this podcast, we’re going to be talking about education, the education landscape, and how WordPress combines with that. I hope during the course of this conversation, you will get an impression that this is something which is very dear to my heart. We don’t need to go into that, but this is about the most profoundly purposeful use of a CMS that I can actually imagine. I mean, I’m sure there’s other scenarios for other people, but for me, this is the perfect sweet spot. Education, WordPress, open source software. It doesn’t basically get better than that for me.</p>\n\n\n\n<p>So with that out of the way, I think it would be good to go round the houses one at a time and just give a little short biography of who you are, where you work, what your history is with WordPress, something like that. You can make it as long or as short as you like, but if we keep it under a minute, maybe something like that, that would be good. So let’s go to Destiny first.</p>\n\n\n\n<p>[00:04:46] <strong>Destiny Kanno:</strong> Yes. Hi there, I’m Destiny. I’m currently head of community education at Automattic. I’m a sponsored contributor in the .org space. And yes, before working on the exciting new initiatives we’re going to chat through today, I was working alongside the training team, two years as a training team rep, helping build out content, like online workshops and courses and learning pathways. And I was part of the group of folks that brought that new relaunch live last year. So yeah, exciting stuff, and that’s what I’m up to right now.</p>\n\n\n\n<p>[00:05:23] <strong>Nathan Wrigley:</strong> Okay, that’s great. Thank you so much. We have some context there, that’s lovely. And okay, let’s go to Isotta. Do you want to give us your bio next?</p>\n\n\n\n<p>[00:05:30] <strong>Isotta Peira:</strong> Sure. Thanks a lot Nathan for inviting us and, yeah. I’m Isotta, I’ve been around the community since, WordPress community since 2022 when I joined Automattic, and I’ve been a sponsored contributor since then. For the past year, three years, four years, I’ve been contributing full time to the community team. And recently this year I switched on to the educational initiative, and I’m currently leading the WordPress Credits program for students.</p>\n\n\n\n<p>[00:06:01] <strong>Nathan Wrigley:</strong> Okay, thank you very much. And finally, Anand.</p>\n\n\n\n<p>[00:06:04] <strong>Anand Upadhyay:</strong> Hi, my name is Anand, and I am running a WordPress plugin development company WPVibes. I am a user of WordPress from the last 15 years, since 2010 I’m using WordPress for various purposes.</p>\n\n\n\n<p>I have been contributing to WordPress through much multiple channels like Core, docs, polyglots, jumping from one team to another. And from the last year, I have found like my new passion. Just like you, I am also passionate about education and teaching. So from the last year, I found this idea of WordPress Campus Connect, and currently I’m very much involved in trying to bring it to the broader community.</p>\n\n\n\n<p>[00:06:39] <strong>Nathan Wrigley:</strong> Thank you so much. So I think we’ve established that the panelists today, there’s a lot of really meaningful contributions in all of your past, especially around WordPress and education. So let’s dig into that a little bit. As I said at the top of this show, I can’t see a more meaningful use of WordPress, frankly.</p>\n\n\n\n<p>I mean, I don’t know what it’s like in the places where you live, but in the UK where I live, education is one of those things where we like to talk about it being a priority, but the finances kind of don’t really match up to that aspiration. And so things like ICT, websites, coding, all of that, it’s a nice thing to have, but I think often it gets left in the background a little bit.</p>\n\n\n\n<p>And because of that, things like open source platforms, I feel there’s a really great use of that, not only from the educator’s point of view, you know, people that can use those platforms to help with their class education, maybe set up a community website, maybe set up a school website or something like that. But also from the point of view of learners, people who wish to get a leg up in life, and figure that maybe learning technology and learning how to build on the web is a credible place for them to start.</p>\n\n\n\n<p>So let’s just go through, where is WordPress at the moment in the educational landscape? I know that’s incredibly broad because we haven’t sort of pinned it down to any of the projects. Where are we at? What are the initiatives that are going on at the moment? So, again, anybody that wants to jump in, if we do a bit of crosstalking, so be it. But anybody that wants to jump in, just go for it.</p>\n\n\n\n<p>[00:08:13] <strong>Destiny Kanno:</strong> I’ll start from like what I’ve observed a little bit. I’m pretty new to the Community Team itself and this event space, but I have seen that there have been a few education related events happening throughout the years, regardless of WordPress Campus Connect.</p>\n\n\n\n<p>Like in Africa, they recently had their, I think it’s annual event, I believe in Uganda. And that has been going on for a while. It just hasn’t been under like the name WordPress Campus Connect.</p>\n\n\n\n<p>And then I believe as well, and correct me if I’m wrong, there was, with Sebastian in Poland, this like WordPress Academy, like they’re also doing like education type events and initiatives. But when it comes to now this WordPress Campus Connect, it’s an official event series, like do_action. It has like more intention around that. And I think because when you go in and you, you know, apply to organise, and now there’s this way to do it through WordPress Campus Connect, it’s just going to bring those initiatives that are already happening into like a more streamlined funnel of people seeing that it’s happening, I think, in a more, how do I say it?</p>\n\n\n\n<p>[00:09:21] <strong>Nathan Wrigley:</strong> Cohesive would be the word.</p>\n\n\n\n<p>[00:09:22] <strong>Destiny Kanno:</strong> Yeah, cohesive way. Thank you.</p>\n\n\n\n<p>[00:09:24] <strong>Nathan Wrigley:</strong> Yeah, so I guess what you’re saying there is that there’s a lot of people out there in the WordPress community, many of whom might be educators or, you know, working in a school or what have you, and that they’ve rolled their own thing like we all have with WordPress. And that’s great. That’s one of the benefits of having open source software. You download it, roll your own, what have you.</p>\n\n\n\n<p>But it’s also, it’s nice, it’s meaningful, it’s impactful if everybody can see, oh, there’s a bigger, kind of more organised piece somewhere. And it may not fit exactly what I’m doing, but at least I can see that it can be deployed this way. Maybe I can talk to those people, get some intuitions and ideas from those people and what have you, yeah.</p>\n\n\n\n<p>[00:10:01] <strong>Isotta Peira:</strong> I wanted to jump in and connect with what Destiny was saying because this is exactly what happened from the community perspective. So talking about events, a few years ago we were seeing the Training Team doing a lot of great progress around education and the Community Team around events. But we weren’t that connected between contribution teams. And we’ve also, as like project wise, we were seeing also the need to bring a different type of audience to the WordPress events.</p>\n\n\n\n<p>And we weren’t exploring at all the education field. With all the students around the world, we weren’t like taking care of them in our programs. So from the Community Team, they kind of encourage organisers all over the world to come up with new diverse format for events. And in 2023 it was launched this, it was called at the time next generation of WordPress events.</p>\n\n\n\n<p>And one of the formats that stood out was exactly the Campus Connect brought up by Anand and the community. And other events like the Website challenge, and the others that’s been mentioned. And as he was saying, then we have had the time now to come back, connect the pieces between different contribution teams, and be able to offer something recognisable, standardised, something not as overwhelming as sometimes open source programs are.</p>\n\n\n\n<p>And so we hope not just to reach a wider audience of students, but also to empower more teachers, more trainings, and anybody else in the community into bringing WordPress in any different type of education at different levels. With the support of course of the community.</p>\n\n\n\n<p>[00:11:47] <strong>Nathan Wrigley:</strong> We will get into the bits that WP Campus Connect do in a moment, but just coming back to something that you said there, it feels to me, if I browse around in the WordPress landscape, and trust me, I browse around in the WordPress landscape rather a lot. It always feels to me as if, how to describe this, initiatives where companies sell WordPress on, they build things and there’s a fee involved. You know, so you’re a web agency or what have you, you build the thing and you sell it on.</p>\n\n\n\n<p>That seems to dominate the conversation. And the more philanthropic side of things, the education piece, the bit where you’re just, you’re doing the work because it’s meaningful, and perhaps you are not getting remunerated for it. That bit somehow gets, well, it gets ignored. It somehow is the silent relation of the for-profit things. You know, you hang out in Facebook groups and you hang out on Twitter, X, whatever, online, it’s always the for-profit bit, which seems to be making the noise, you know, the plugins, the themes, and rah, rah, rah.</p>\n\n\n\n<p>And this kind of stuff seems to get left. And I don’t know why that is, but it’s, hopefully this podcast is addressing some of that.</p>\n\n\n\n<p>Anyway, sorry Anand, I think it’s your turn to have a little bit of a chat with us. Tell us about, yeah, the same question really, your experience in the education space and where you think WordPress is at at the moment.</p>\n\n\n\n<p>[00:13:02] <strong>Anand Upadhyay:</strong> Yeah, so just as you explained about the state of education in the UK, so the same is in our region, India as well. So students in the academic life are slightly disconnected with the, what is happening in the industry? So there is like a gap between the academics and the industry. So through these kind of events, we are empowering the students to come closer to what really happening in there.</p>\n\n\n\n<p>And we are also helping them to make aware about the various carrier opportunities that WordPress ecosystem can bring to them. It’s not like about just one thing, it’s also about if someone is interested in programming, someone is interested in designing, SEO, content. So there is something for everyone, right?</p>\n\n\n\n<p>So with this program, we are trying to connect the students with the various career opportunities, and also trying to bring some fresh energy to the WordPress ecosystem. They can become the contributors, they can bring their own fresh perspective. Because I have read somewhere the WordPress community in many areas is aging. We need that new fresh energy. So this kind of program can also address that problem.</p>\n\n\n\n<p>It’s always good to have more people getting involved in the contribution, like sort of just started with the WP Credit, which is bringing actually students to the contribution. And the Campus program is trying to introduce them to the WordPress. So all these kind of programmers combined with working towards getting more and more people getting involved in the WordPress ecosystem, and trying to make the project more sustainable in the long run.</p>\n\n\n\n<p>[00:14:28] <strong>Nathan Wrigley:</strong> It’s kind of interesting, I attend quite a lot of WordPress events, and particularly the flagship events so, you know, the WordCamp Asia’s and Europe’s and US and what have you. And, I think you’re right about the demographic. The demographic definitely skews older. It’s hard to see anything above, I would imagine 10% of the crowd that would be under the age of 20. I have no data to back any of that up. I’m kind of putting my finger in the air a little bit.</p>\n\n\n\n<p>But it feels like that. It feels like the demographic is, I don’t know, 30, 35, 40 and above. And if that were the only reason that you were doing WP Campus Connect, that in itself would be a credible reason, you know? But obviously there’s a lot more to it than that. But just that alone would be significant and important.</p>\n\n\n\n<p>And I think also, in a world dominated by proprietary platforms where everything is siloed, you don’t own your own data, the experience is exciting because there’s some kind of algorithm trying to hook into your brainstem, then we need to get these young people. And because we don’t have the marketing budgets of a Facebook or a TikTok or what have you, then we have to do it in different ways. And attaching an event to a campus, to a university, to an educational institution is a great way I think of doing this.</p>\n\n\n\n<p>So firstly, bravo, for getting this thing off the ground. Perhaps this one is for Anand again. I don’t know if he wants to take this question, but can you just describe what WP Campus Connect is? What’s involved in that? What’s the age group? Where are you doing it predominantly? How long has it been going? As much or as little as you like. And depending on what you give back to us, we can take it from there.</p>\n\n\n\n<p>[00:16:09] <strong>Anand Upadhyay:</strong> Yeah, so WordPress Campus Connect, there is no like fixed criteria on to whom you are going to deliver this. So the only thing is we are going to the students, we are going to their campus. We are not creating a kind of WordCamp kind of thing, or centralised workshop where everybody is coming to our venue and we are delivering them the knowledge, but it’s about going to their campus. And because this will reduce the friction, like if we are going to organise an event, centralised event, we are inviting everyone to join, then there will be a friction. A lot of people might not going to join. Maybe there were some valid reasons as well.</p>\n\n\n\n<p>So with Campus Connect, we are going to their campus and delivering the WordPress knowledge to them. And so far we have done this in the universities, postgraduate colleges, undergraduate students. And we are helping them to understand the WordPress, how WordPress can be a career choice for them, and how WordPress can be useful for whatever their interest is.</p>\n\n\n\n<p>Because as I already said, that there is students, if we are going to a college or university, that every student might have different kind of interests. Maybe they are enrolled in the same course, but still they have, might have some different kind of interests.</p>\n\n\n\n<p>So we are trying to explain them that they are with various career opportunities available so you can jump in. And we are doing it through the hands-on workshops. It’s not like that we are just doing a kind of seminar or lecture kind of thing. We are doing it in form of a kind of a hands-on workshop, like five to six hour workshop where we will help them to build their first website.</p>\n\n\n\n<p>And it’s not about like we want to make them expert in six hours. It’s not possible. So what we want to do is, we want to give them a feeling of accomplishment. This is something that is something interesting and this is something that we can use and build something.</p>\n\n\n\n<p>So this way, if they get some, after six hour workshop or five hours workshop, if they’re coming out with kind of feeling of accomplishment that this is interesting, we should explore it further, we should explore it more. So that’s our win.</p>\n\n\n\n<p>[00:18:05] <strong>Nathan Wrigley:</strong> Can I ask, in the part of the world where you are, is there a real hunger for this? Is there a real appetite for this? Because with the best will in the world, I think there might be a geographical divide in terms of interest and hunger for things like WordPress. And again, there’s no heuristics behind this, this is me supposing from what I’ve heard and conversations that I have had.</p>\n\n\n\n<p>It feels like in your part of the world, and you only have to look at plugin contributions, contributions to Core, events that are taking place in your neck of the woods. It seems like there’s a real appetite for it, that there may not be quite in the part of the world where I am from. So first of all, can we speak to that? Is that the case? Is it like, you know, you put this stuff on and people show up? You build it and they come?</p>\n\n\n\n<p>[00:18:56] <strong>Anand Upadhyay:</strong> Yeah, so there is a quite hunger. India is like a kind of a very large country and if you count the number of WordCamps that happening in India every year, it’s quite big. Right now, these are like two, three months where we don’t have any WordCamps because it’s mostly the rainy season in everywhere. Otherwise every month you will have one or two WordCamps. And the communities that are organising WordCamps struggle to find a date that is not conflicting with another WordCamp in the same country. So that’s how the things happen.</p>\n\n\n\n<p>If you talk about the beginning of this year, first three weekends have WordCamps in India, and all were very successful. So there is a kind of WordPress community is very engaging in India, and so the way everywhere.</p>\n\n\n\n<p>And also if you talk about the hunger in the students, so it can vary about what they are learning, what their background is, where they’re located. But, yeah, students from what we have interacted, because we interacted with the students who doesn’t have any knowledge. We got a very good response. We saw them talking about like, oh, this is great. We can do something amazing with this. We have a lot of ideas already. This is something that we can use to implement those ideas.</p>\n\n\n\n<p>So there is surely a hunger, but we just need to give them a path like, this is the path, and you can follow this. And we need to ensure them, there’s big opportunities, big market opportunities are also waiting for them if they excellent with some skills in this segment.</p>\n\n\n\n<p>[00:20:20] <strong>Nathan Wrigley:</strong> Yeah, I think it’s true to say that more or less every young person, let’s go, child or young adult or what have you, has some sort of insatiable appetite to learn. But given the education that they’re presented with, given the opportunities that are put in front of them, their experience of life later on will be very different. And so if WordPress never comes on the menu for them, if nobody ever suggests, well, have a look at this thing, then they’ll never know about this thing. This whole wonderful world of online publishing and all of the myriad things that you can do around the WordPress ecosystem. And so WP Campus Connect, I guess is facilitating that.</p>\n\n\n\n<p>Now, curiously though, you said that you go to where the educational institution is. How does that work? How do you connect, so again, this doesn’t have to go to Anand, this can go to anybody. How do you connect the educator, let’s say, or the institution that wishes to put something on because, you know, their students might like it. How do you connect the educational institution with the people who then go in and provide this WordPress workshop and training? How does that work? How does that get paid for? Is it all voluntary? There’s a lot in there to unpack, but I hope you get the thrust of my question. How do all those jigsaw pieces fit together?</p>\n\n\n\n<p>[00:21:37] <strong>Anand Upadhyay:</strong> The first thing is it’s all voluntary. So just like in a WordCamp, we have an organising team, a team of organisers and speakers. Nobody’s getting paid for this. We are also doing it voluntary. We have a team of organisers, not specifically to me, every WordCamp has a team of organisers, have a team of volunteers, workshop facilitators who are organising the workshops. So it’s all voluntary, nobody’s getting paid.</p>\n\n\n\n<p>And also it’s free for students as well. There is no charge for students from the WordPress Campus team. So it’s not like we are putting a kind of a ticket to them. It’s completely free. Going to your question about getting the institutes convinced for letting us do the workshop in their campus, so it’s kind of a tricky thing.</p>\n\n\n\n<p>The first time we reached out to the institute, so it was very tricky. I get to the college with a pitch deck. So I pitched the complete idea, complete presentation to show them what is WordPress, what are the kind of community thing? Because every institute has this question like, why you are doing this? What are your benefit?</p>\n\n\n\n<p>And It’s the same thing that you said, we have to pass that bureaucracy before getting to the better benefit of the student. We have to go to the bureaucracy. And it’s a genuine question in their mind as well, because, not a lot of such communities exist that are doing these kind of free things voluntarily. For the students. So the first question we were asked is, why are you doing this? What are your benefits? And don’t expect anything from us.</p>\n\n\n\n<p>[00:22:58] <strong>Nathan Wrigley:</strong> It rings so bizarre in the world in which we live. Everything about that screams, hang on. Wait, where’s the catch? Where’s the sales pitch? What’s going to happen after the fact?</p>\n\n\n\n<p>[00:23:10] <strong>Anand Upadhyay:</strong> We have to work on with this way and we have to explain like complete things. We showed them that these are the big events that in the WordCamp ecosystem happens, and we are trying to create a unique initiative for students and we’ll be delivering everything free to them. And we were not going to charge, we just need you to provide the students and the required infrastructure.</p>\n\n\n\n<p>So the pitch is really tough. In some institutes we got very understanding people who understood what we are saying. Within the next 15 minutes, we got them convinced. In some places we have to discuss a lot of questions. But yeah, it was again, interesting experience as well. We got some general feedback from them as, because last time it was the very first time we were doing this kind of thing. We don’t have any reference, like we just have an idea like we are going through this thing. So we also brainstorm with them like, what are the expectation of your students? They also gave us some suggestions.</p>\n\n\n\n<p>So because in every institute you’ll find different kind of students, you have to plan your workshops, you have to plan your workflow according to the interest of the students. So that’s how we approached, yeah, to convince the institute is the most tricky part. Because other than that, if you have to do workshop, we have our facilitators who are already working in WordPress. So it’s not difficult for them to deliver the same knowledge to adults. The only barrier that we have is to convince the college and universities to join and become a partner.</p>\n\n\n\n<p>[00:24:32] <strong>Nathan Wrigley:</strong> And has that journey, that, I guess bridge that you’ve got to cross, has that now become more straightforward? In that, you’ve got a history of things that you’ve done. So it’s now more a case of, look, here’s the testimonials. Here’s the things that have happened. We have credibility, we’ve done it before. This is not brand new. Has that become an easier journey? In other words, the door is more open than it was the first few times around.</p>\n\n\n\n<p>[00:24:54] <strong>Anand Upadhyay:</strong> Yeah, so the last year it was very tough. We have to reach up to them, take appointment, go there and spend some time there. And this year in the institute where we have done this last year, I just sent them a message like, we are doing it again, and if you want to be a part, just fill this form and we will discuss further.</p>\n\n\n\n<p>It works. So it’s much easier. And to those who are not a partner last year, but they have seen our post on the social media after the event, and they reached out to us like somehow we missed it, this time connect with us whenever you are doing it again. So once you have done this thing, you have a credibility and you can just showcase them.</p>\n\n\n\n<p>After that event, we have got a lot of the students joining our meetup. Before that, I’m running our city meetup from 2017, and we barely get 10 to 12 members in every meetup. Right now we are doing the meetups of 40 to 50 members. And it’s a kind of amazing thing. And it’s not only about having a lot of the students only. After seeing the students joining in, after seeing our pictures and the sort of local community going on, some professionals are also jumping in to join the meetups.</p>\n\n\n\n<p>Because they see that there is something valuable going on. So they’re also joining. So this is something amazing, because this is a byproduct. You’ll be able to grow your local community. You’ll be able to strengthen your local community more.</p>\n\n\n\n<p>[00:26:10] <strong>Nathan Wrigley:</strong> I have such profound respect for what you are doing. It is almost bringing tears to my eyes. It’s incredible. Everything that you say there is just so philanthropic. It’s just philanthropy all the way down. College students probably don’t have a great deal of money to throw around. They would want to consume education, which will make their life prospects better. They would like that to be as affordable as possible.</p>\n\n\n\n<p>And you show up, like here’s a bunch of stuff and it’s completely free. Okay, that’s great. And then there’s this virtuous cycle of, okay, we do it each year. That becomes easier, because the testimonials work, and presumably you can spread out and the ripples will move around where you live. And then hopefully maybe hop through jurisdictions and borders and international, who knows? We can get to that.</p>\n\n\n\n<p>But then also this knock on effect, which was maybe unexpected, a consequence that was unexpected of the WordPress community, the meetups that you offer, the swelling there and swelling in the, we talked about the demographics earlier, it’s skewing younger. And if you can attract a percentage of those, and keep them sticking around in the community, they can then take on these roles in the future.</p>\n\n\n\n<p>And the whole thing kind of propels itself. What it needed was the prime mover, which was you, which is pretty incredible. So I don’t know if Destiny or Isotta want to add anything. I’m almost speechless.</p>\n\n\n\n<p>[00:27:31] <strong>Destiny Kanno:</strong> I did have like a few points I wanted to add to what everyone’s saying. Reducing barriers has been a huge factor of setting this up. Originally we were using like the previous event organisation form and were like, actually there’s a lot of stuff in here. It doesn’t make sense for this use case. So we really paid a lot of attention to just thinking differently for this, and treating it differently. We don’t have to use the same things as we had before.</p>\n\n\n\n<p>And Isotta said before, like it’s standardised in a way, but it’s flexible too. So even though we have this framework that people can come to, we don’t say, you can only do the event in this way. You can have a one day event, you could do a half day event, you could have event series over a couple weeks like Anand is doing, and that is totally cool. Like, however you want to run this, we are open to that, and we’re also here to mentor you and support you in that.</p>\n\n\n\n<p>And then I, a thought came to my mind as Anand was talking, and you Nathan as well about like, you know, what’s in it for the volunteers? And I’m like, I think it’s an opportunity for volunteers just as much as it is the students, because they’re also getting exposure to these universities. And I don’t know, maybe someone has an ambition to teach at university someday, or like at least teach about WordPress at a university. So, you know, as you go into these, yes, there’s a hundred percent the philanthropic aspect, but it’s also like a learning experience for you as well as a volunteer to be in that space with the students too.</p>\n\n\n\n<p>And then lastly, I wanted to say as well, like going a little bit back about the current climate and how it feels like we are kind of like aging, I’ve also noticed in my experience it’s like, we are all also just, this is probably very like, duh, but we’re all professionals, right? So we’re not really looking to talk to students most of the time. We’re looking to sell something or network or like talk to other professionals. So I do think that this is a great way to bring in that new batch of folks that are going to become professionals, hopefully in the WordPress space. But yeah, it’s just that renewal instead of like just trying to sell or buy from whoever’s there based off of whatever you’re currently working on in the WordPress space.</p>\n\n\n\n<p>[00:29:46] <strong>Nathan Wrigley:</strong> Thank you. Isotta, anything you want to throw in at this point?</p>\n\n\n\n<p>[00:29:49] <strong>Isotta Peira:</strong> Of course. I want to add one point about the aging discussion that we were having, because also, in my opinion, it is true what you, Nathan, said at the beginning that just only the fact of reaching younger people is a way to make the project more sustainable, long term. But also I would love everyone to think about the other way around, because what is WordPress giving to all these younger generations?</p>\n\n\n\n<p>Because wins are much, I mean, for how I see it, I see like a winning opportunity everywhere. Because it’s not just about reducing the age of the people involved in the project. If we reduce the age, but people are not engaged. If they’re not getting what they need, learning opportunities, networking opportunities, even just opportunities to understand that they have a whole world around them, they didn’t even know that it existed, which happened to me before I learned about WordPress community and WordPress, this is huge.</p>\n\n\n\n<p>So this is a real, like all this initiative are core of the service that will be giving to millions of students. For now, we are at thousands of students already, but, this would be available for any students worldwide. And this is a pretty big deal, I believe, for younger generation and their futures.</p>\n\n\n\n<p>[00:31:12] <strong>Nathan Wrigley:</strong> I think it’s, on every level this is just so remarkably interesting, and the growth of it hopefully we’ll get into the millions. Right now you say you’re in the thousands. It’s still remarkable.</p>\n\n\n\n<p>I want to sort of drill into it a little bit. So it feels like there’s this sort of double fronted marketplace aspect to it where WP Campus Connect kind of sits in the middle, and so you’ve got WP Campus Connect in the center, and then on the one side you’ve got the students and the institutions that those students attend. And then on the other side, you’ve got the educators who will come into that institution and WP Campus Connect is sort of like the fulcrum, the center, the spokes all lead into WP Campus Connect, and they do all the connecting and what have you.</p>\n\n\n\n<p>Let’s talk about the educator side. So this is people who already are familiar with WordPress. Are there any constraints on who you would welcome into WP Campus Connect there? Like, is there any level of expertise that you’ve got to have, or any kind of proof that you’ve got to go through that you, yourself would be a credible educator? I don’t know, so that’s open to anybody. Is there any kind of barrier to entry if you are an existing WordPresser and want to be involved?</p>\n\n\n\n<p>[00:32:20] <strong>Anand Upadhyay:</strong> Yeah, so far we have not planned any kind of a specific requirements or the limitations or criteria. So far we have picked from the local community members, like we just opened the call for facilitators, and all those who are interested in teaching. And they responded to it and we just picked them.</p>\n\n\n\n<p>We are doing a kind of a series of event to, I think five to six colleges in this time and going every weekend to one college. So we have a pool of four workshop facilitators and we’ll be rotating them to multiple colleges. So this is how it is working. So there is no kind of barrier kind of thing.</p>\n\n\n\n<p>We are just thinking about if they are ready for the community work, because there may be many educators, but there may not be everyone who will be doing it for free because we are not going to pay them anything. So if they have the community feeling, they have the community vibes and they can come forward for this. So that’s the only criteria we have. You have the WordPress knowledge, you have the love for community. Just come forward and join us for the event.</p>\n\n\n\n<p>[00:33:19] <strong>Nathan Wrigley:</strong> Okay, that’s great. Great to hear. So staying on that side of things then, I remember my forays in education, one of the things that was kind of drummed into me was, failing to plan is planning to fail. And so there was always this aspect of, if you’re going to stand up in front of a bunch of people, you have to be ready. You can’t necessarily, I mean you can, right? A workshop environment maybe maps to that pretty well, where you stand up and it’s led by what the audience, the students in this case, would like to hear.</p>\n\n\n\n<p>I’m wondering if there’s a curriculum which you have planned or do plan, or if somebody can kind of like drop in and just pick up the pieces of paper if you like and say, okay, here’s the lesson plan, if you like. WP Campus Connect has put these plans together, and we’re going to go and show these students how to do this.</p>\n\n\n\n<p>So that is my ignorance. I don’t know if that’s the kind of thing that you do. Do you provide materials for wannabe educators to deliver, or is it very much you create your own curriculum on the fly or however you wish to do that?</p>\n\n\n\n<p>[00:34:16] <strong>Anand Upadhyay:</strong> So we just meet together and just plan, just think about like how we can go on ahead, like what are the things that we to teach? And we just brainstorm it together. It’s not like we are giving the, because there is not much different between the organiser and workshop facilitators here. So we are all the community members, so we have just divided the roles, but we are all, they’re working towards the same goal.</p>\n\n\n\n<p>So we just all sit together, brainstorm the ideas, like what should we give to the students? So for example, last year we helped them to build a kind of a business website. So all the educators plan together. So we will follow this workflow, we will follow this approach. And we went to one college, we tried to do the same thing. We came back and then we again said what went wrong? What was difficult for the students to follow? How we can overcome them in the next college? We repeat, we improvise and deliver the same thing.</p>\n\n\n\n<p>This year we, again, we are planning, so we again sit together. And then we thought about, last year we helped them to create a kind of a simple business website, but we found that students were not connected with that. They built the same thing, but they didn’t utilise it later because it was not connected to them. So this year we are planning to help them to build their personal portfolio website, a kind of a resume, where they can showcase their projects, they can showcase their resume, they can showcase their work or learning what they have done. So we are planning that kind of website.</p>\n\n\n\n<p>So again, our workshop facilitators are working together, all those educators, and working together to create a kind of a reference website. And then we will guide them to recreate this, the same thing, adding their own touch because this will be more personalised thing. They will get attached to this, and maybe we can have some of the students to put their websites live. So it’ll be, again, a good chance.</p>\n\n\n\n<p>And we are also getting some support from the hosting companies who are offering some pre-hosting accounts so we can do kind of a competition kind of thing, or someone who has done incredible work during the workshops and post workshop, we can provide them those free hostings and they can get the chance to put their website live.</p>\n\n\n\n<p>[00:36:21] <strong>Nathan Wrigley:</strong> Okay, so it’s a real kind of project based education then. So you walk into the room, you interact with the educators, you ask questions, I’m struggling with this thing, I can’t make this work, and they come and step in. So you described it as a workshop and maybe the audience, I don’t know if you’re familiar with that kind of setup, but education often felt like to me, person at the front with some kind of display, whiteboard, blackboard, whatever. They talk, I listen, I fall asleep.</p>\n\n\n\n<p>But this is not that. This is, okay, we have a project, we’re going to design a business website, a personal portfolio, resume kind of website. And the idea is that you interact with that and by the time you’ve left, you’ve got some useful knowledge. You’ve done a thing, not just listen to somebody talking about possibly doing a thing hands on. Okay, that’s brilliant.</p>\n\n\n\n<p>Is there any kind of age restriction? Because obviously if I was to bring along a 3-year-old to this, we would question the utility of that. You kept talking about colleges and I think you mentioned universities a couple of times. So it feels to me as if we’re 18 or something is kind of where this goes, yeah?</p>\n\n\n\n<p>[00:37:28] <strong>Anand Upadhyay:</strong> Yeah, most of the students we interacted with are around mostly 17 plus we can say, 17 or 18 plus. So that’s the age group. And this year we have got a student, we have got a request from one of the high school as well. So they want to, their approach was very nice. They want to give the students kind of exposure to what they are going to face after completing their high school. So they’re running kind of a program so they’re also interested in if we can just go to their school and give their students some kind of a short introduction about any skill that is relevant for them. So we’re also getting that kind of request as well.</p>\n\n\n\n<p>[00:38:04] <strong>Nathan Wrigley:</strong> Yeah, and that’s such an interesting age as well, because you haven’t yet kind of formulated your path. And I think maybe by the time you get to 16, 17, 18, you’re more funneled. You’ve made decisions which have led you in a certain direction. You know, I’m going to be a, I’m into agriculture, I want to do whatever it may be.</p>\n\n\n\n<p>But if the high school level, everything’s wide open still, isn’t it? And if you can get them and expose somebody that’s never been on a computer even, and, oh look, I put something and people nowhere in me can suddenly see it, that may open up a completely new pathway.</p>\n\n\n\n<p>But what you’ve got going at the moment, what do these students get in return? Is there like a quid pro quo? Is there some, sort of leading question here really. Is there some credit that you might get on the other end of this? Do students get to walk away with, apart from obviously the knowledge, which is now in their head for life, do they get to walk away with some kind of accreditation to say, I did this, here’s my certificate, or whatever it may be?</p>\n\n\n\n<p>[00:38:59] <strong>Anand Upadhyay:</strong> Yeah. So we are again providing them certificates for the completion of attending the workshop. And, yes, obviously they are getting some amazing knowledge, amazing exposure to the community. Yeah, but as a proof of thing that they have done something, we are providing them certificates.</p>\n\n\n\n<p>[00:39:14] <strong>Nathan Wrigley:</strong> Okay. And obviously, you know, if they then continue that participation in the meetups and what have you, you get the bit which is way more important than the certificate, which is the actual exposure to the people out there in the real world who can give you that leg up or point you in the right direction for the person that you need to help you on that first career step.</p>\n\n\n\n<p>So I’m just going to the panel, I’m just going to say. Did you want to add anything to that? So I was talking about this sort of double fronted marketplace, you know, students, one side, educators on the other. Anything to add?</p>\n\n\n\n<p>[00:39:43] <strong>Destiny Kanno:</strong> Well, I did want to add in general that we’ve been very careful to say in all of the handbooks and landing pages, educational institutions. So that could be colleges, that could be high schools, that could be technical schools or different business schools, boot camps, wherever you’re getting educated on something that WordPress can maybe be hand in hand with.</p>\n\n\n\n<p>We would love you to run a WordPress Campus Connect event, so I wanted to like make sure we clarify that. And then also, anyone could put this on. A request to organise could come from like a teacher, for example, or a student even. We’re not like limiting it to local community organisers or anything like that. So if there is direct interest as well from a campus, then that’s even better because, you know, they’re going to have a venue and all they really need is like mentorship and maybe some facilitators.</p>\n\n\n\n<p>And then to plug in just a bit, you were like, what kind of curriculum do they have? Don’t forget, there’s Learn WordPress, you know, .org as well where folks can definitely use the materials there to craft their own curriculum or a series of workshops or whatever they’re going to put on as well. So I do want to ensure folks know that there are resources available that are free to help you with that part of the programming too.</p>\n\n\n\n<p>[00:41:00] <strong>Nathan Wrigley:</strong> I’m just going to read this into the record. If you are, I don’t know how podcasts are consumed, I just know that they’re consumed in a wide variety of ways. If you are driving the car or you are walking somewhere and you think, I’ll get to this later, stop. If you know an educator somewhere, make a point to mention this to them at some point. You know, tomorrow, get home, phone them up. They’ve probably never heard of this. They’re probably not in the WordPress space. They probably don’t have the slightest intuition that this freely available stuff could step into their institution, with what sounds like minimal work required on their part.</p>\n\n\n\n<p>But it’s unlikely that they’re WordPressers in the same way that you are because you’re listening to this podcast. So that’s my request to you, that’s your philanthropic request of the day. Go and mention it to the people that you know, who work in these places and have connections with these places, because it won’t happen without those kind of things happening. So, sorry, Isotta, I didn’t allow you a chance to speak. I got all carried away.</p>\n\n\n\n<p>[00:42:00] <strong>Isotta Peira:</strong> Don’t worry at all, Nathan. I believe that we’ve been saying a lot already, and there is just a good amount of information around for everyone who’s listening about how this program works, how to connect with us, and how to just launch their Campus Connect series events in their cities.</p>\n\n\n\n<p>[00:42:18] <strong>Nathan Wrigley:</strong> So we’ve spent a long time thinking about WP Campus Connect, but something that was dropped into the show notes, and I confess, I don’t really have a great deal of background on this, so you’re going to have to explain it in full. WordPress Credits. The name I guess suggests something, but I don’t really know what that something is. So, Isotta, if you fancy just running with that, tell us about WordPress Credits.</p>\n\n\n\n<p>[00:42:39] <strong>Isotta Peira:</strong> Of course. Big pleasure for me to share more about it. WordPress Credits, in simple words, is a contribution based practice programs by the WordPress foundation open to students to just to bridge them in the Core of WordPress. Regardless of what they’re studying, their fields, their interests, what we want to do is take one step from the WordPress skills education and show them how they can enhance, train, and gain new skills using the WordPress ecosystems, regardless their interests.</p>\n\n\n\n<p>And the word credits, as you said, yes, it’s just something because we want to partner with educational institutions, universities, schools, that will recognise the practice program into their students’ curriculum.</p>\n\n\n\n<p>A clear example, we’ve just launched a pilot with the University of Pisa in Italy for the Department of Translation and Communication. And for them, we are offering 150 hours of practice for the students. They will be connected with mentors. They’re going to have their virtual classrooms, and they’ll be guided since the beginning until the end. At the end, they’re going to build their website of WordPress, we teach them how to do it. You are going to use the Learn platform to guide them through the whole process. And they’re going to be involved in practical work within the community.</p>\n\n\n\n<p>They get to pitch what they want to work on. So this is open for designer, translators, developers, whoever wants to practice their own skills and position themself already into the job environment. Because we noticed, I felt like livid on my skin when I was studying translation at the University of Pisa, that I had to do countless hours of practice translating things that nobody ever read, used. It was very good for me. For me it was perfect to have things to practice on, and so I could become a great translator, but I worked on stuff that nobody ever used.</p>\n\n\n\n<p>And the moment I joined the WordPress community in 2022 and I found out about the Polyglots team, I start thinking, hey, I could have been translating WordPress for five years and getting real life experience, exposure to a global community of professionals in the field that I’m interested, and also connection with companies with other fields that I couldn’t even imagine it existed for me as a translator.</p>\n\n\n\n<p>So the goal of this program is exactly to enable students around the world, regardless what they’re studying, to become, to shape their future through practice. And we, when I say we, I mean all the volunteers and contributors who are participating into this project. We have designed a path for each student where they not only get to practice the skills that are more relevant to the fields of study, but also transferable skills.</p>\n\n\n\n<p>Like, for example, organising, working independently in a remote and async environment while keeping stakeholders updated. How to design a project, because they will have to finish the program, presenting a project that they would’ve designed, developed, and worked on. Public speaking because they would have also exposure to presenting the work to the WordPress community.</p>\n\n\n\n<p>And at the end of the mentorship, of course, from experienced contributors in our community, and at the end, at the wrap up, they will receive a certificate from the WordPress Foundation, certifying the hours of contribution within the program. And at that point, the educational institution they’re studying, they’re going to recognise these as a part of their curriculum.</p>\n\n\n\n<p>For some universities and schools, it translates into credits. For example, for Pisa, 150 hours of contribution translating into six credits. So students can decide to skip a traditional exam and do this practice. And for other institution might look different. But the requirement for an institution to join this program is that they have to recognise this work into the students curriculum.</p>\n\n\n\n<p>[00:47:08] <strong>Nathan Wrigley:</strong> Okay so, dear listener, you may have noticed we shifted gears. We went from talking about WP Campus Connect to WordPress Credits, and we’ve now moved into a very different arena.</p>\n\n\n\n<p>And so now, I’ve never been to the University of Pisa, but I’m going to guess that, just the name itself, it’s an utterly credible institution, you know, with a long history of taking in students and requiring them to work hard in order that they get some kind of qualification at the end.</p>\n\n\n\n<p>So this is very different. We are now talking about doing WordPressy things, and at the end of it, it’s equal to a proportion of the stuff that they would be doing at that university already. Now that then, I guess, implies that this is a more structured thing, that there needs to be more inspection of what’s going on, that there needs to be kind of hoops to jump through that you need to be able to credibly say, we know that this person did this. We can prove it. There’s a paper trail, and at the end of it you get, with the University of Pisa, six credits, which equals whatever that equals.</p>\n\n\n\n<p>So presumably there’s more backwards and forwards. Rather than the WP Campus Connect, which is more philanthropic and, you know, more community based, presumably you’ve had to have fairly lengthy conversations and dialogue with the University of Pisa so that they know that you are not giving away six credits for nothing. What’s that been like?</p>\n\n\n\n<p>[00:48:39] <strong>Isotta Peira:</strong> Yes, you are absolutely right, and this is the case, and it is understandably, because we need to show them what is the potential, and what the students will gain. For me, it’s been a wonderful experience. And now I’m also in conversation with other universities and other schools. And having myself lived, like felt this gap between, oh, I’m doing practice, but it feels like it’s just useful to me, but it’s not applied in the real world.</p>\n\n\n\n<p>And seeing, hey, this could bring, just basically push all these students into creating something that not only they own, because I believe the ownership is very important because most of cases, studies are a little bit passive. So as you were saying before, we have a teacher, we sit, we listen and we do what we’re asked to do.</p>\n\n\n\n<p>In this case is the other way around. It’s, hey, this is a playground of learning opportunities for you. We show you everything that you can play with, and then you get to design the project. You get to experiment all this exposure to real life that usually you don’t get at university or another, let’s say, formal institutions. And for the universities, this is going to be, basically a certificate for institutional excellence for them, because right now, only the University of Pisa is offering this. In a few weeks, also the universities Fidélitas in Costa Rica will start offering this.</p>\n\n\n\n<p>So just, hey, to institutions worldwide, this is something that the university, once they understand what it is, they will want to jump on it. And so as you say, it’s a lot of back and forth. It’s always a very interesting conversation because every university has some similar and some different needs for their students. And for me it’s a huge learning curve because I’m getting to learn a lot about other institutions. But at the end, everyone who I’ve been talking to so far, they are like over the moon with the idea of offering this option, this possibility to their students.</p>\n\n\n\n<p>What I’m doing right now is starting connecting with teachers, schools, universities, institution that I personally, I’m already personally connected with, like the case in Pisa. And the WordPress community is key because also, in this community, there’s plenty of teachers. Everywhere you look, there is, oh, okay, I teach WordPress, I teach this other WordPress related theme. Oh, I teach at this school, I teach at this universities. Or, hey, in my kids’ school, they were looking for something like this, and it turns out that maybe you’re not a teacher, but you have kids and they’re at schools.</p>\n\n\n\n<p>So it’s been key, the connection with the community. And it’s actually one of the biggest needs that we have right now. Right now, there are three, including myself, contributors focusing on this project. We need more help, also to create this connection, to get into the institution and to have them understand the offer that we’re giving to them.</p>\n\n\n\n<p>[00:51:59] <strong>Nathan Wrigley:</strong> So I’m going to read into the record a recycled version of the comment that I made a moment ago about WP Campus Connect. And that is that if you know anybody who could fit into this part of the jigsaw, you know, an educator or somebody that works in a university, whatever capacity that may be, I guess you are looking for that door to be slightly pushed ajar so that you’ve got these contacts wherever they may be. Obviously you’ve got Pisa, Costa Rica and what have you. But it would be nice to spread this a little bit further.</p>\n\n\n\n<p>Okay. Okay, so that bit is now done. The bit that I want to ask with this is with the university students going through the WordPress Credit system, is this kind of a distributed thing? Is it something that they can do in their own time? Or do they need to, I don’t know, attend, be in a particular lecture hall at a particular time in order to prove that they’ve done a particular thing? Or is it entirely remote with, well, basically it’s a very open-ended question. How does it work from a student point of view? How do they achieve this?</p>\n\n\n\n<p>[00:52:59] <strong>Isotta Peira:</strong> This is a great question actually. The values behind this program is to keep the open source experience as real as possible. So it is a hundred percent remote. We have built the virtual classroom for each student on the Learn platform, and they will be able to self onboard themself, go through the all the steps, but at the same time, they will be paired with the mentors.</p>\n\n\n\n<p>So we strongly recommend, and for this first, let’s say, round of program, we are making strong suggestion to meet with their mentor once per week, so they can learn more about each other, the mentor can help them guiding their way, but they have to complete the hours. We want to, not just respect the principle of the WordPress ecosystems, but also put students in this real life environment that they will find in their job.</p>\n\n\n\n<p>Because most of the roles in different type of companies, you just don’t have to like stay there and show that they’re doing the things. You work at your pace. You have your project. You have to share updates, of course, and show that you are progressing. And for WordPress credits, if students want to work on weekends, during night, this is up to them. They just have to complete the WordPress site and the hours assigned.</p>\n\n\n\n<p>And there are couple of steps that will have them syncing at a specific moment with other parts of the community. For example, participating to a discussion on Slack, or a discussion on a blog post. Because also they’re experimenting different tool and different communication styles. And if there is a meetup, local meetup active in their cities, one of the step would also be participate to one of them. Or if there is no meetup, local meetup happening, to join an online meetup.</p>\n\n\n\n<p>So in this way the success of this program would reach the most, the highest point, if they have not only completed the work they decided to do, but if they also have experienced all the different parts of the ecosystem. So this way they work out the program, and they have the new world possibility open. They can decide to stay, they can decide to just focus more on one particular thing and they would’ve learned how to upload and work on WordPress, TV. How to use tools like Slack, GitHub, WordPress, the Learn platform, everything. So this is what they will get.</p>\n\n\n\n<p>[00:55:32] <strong>Nathan Wrigley:</strong> Yeah, it’s pretty amazing. I mean, set aside the fact that when I was at university, the internet just didn’t exist because I’m of a certain age, but I would’ve loved something like this. The capacity to just sort of do things in my own time, you know, fit it around, cherry pick the bits that I want to pick. For me it was much more, you pick a course, you show up to the course, you imbibe the content, you sit and exam and so it goes. And that was what was on offer. But this is so great.</p>\n\n\n\n<p>And also, I don’t know if this is something that you do do but it just came into my head, the capacity for this to be an accreditation prior to gaining access to a university. So at the minute in the UK, all of the results are coming out for the examinations which children, well, young adults require in order to get to their place at university. And then when they’re at the university, they obviously get these credits and get the degree or what have you. But something like WordPress credits, it’d be kind of fun if it could count towards that onboarding process, you know, to get you in the door of a university to show up and say, I did the WordPress thing. I did something a little bit above and beyond what everybody else is doing. I mean, I don’t know if there’s any plans for that, but that struck me as a curious option.</p>\n\n\n\n<p>[00:56:45] <strong>Isotta Peira:</strong> That would be the dream. Having WordPress credits embedded into like mandatory curriculum to get to a specific level of education, or to be able to end, to graduate from a specific level of education. This is going to be the dream. Now we’ve taken the first steps, so now we’ve built up the program, we are going to gather feedback, improve it, adjust it with all these first new batch of students that are coming. And also from the sponsors, the universities, and the mentors feedback. And then little by little, this is where we want to go. Ready to bring WordPress contributions everywhere.</p>\n\n\n\n<p>[00:57:22] <strong>Nathan Wrigley:</strong> Yeah, I mean, gosh, what an episode this has been. I thoroughly enjoyed this. However, I don’t know if we’re done yet because on the show notes that I had, we had three points that we were to mention. One was WP Campus Connect, which we did at the beginning, and then we’ve just spent a few moments talking about WordPress Credits. But there’s this other curious bit that I don’t know much about, and I don’t know if this is something we want to delve into, WordPress Student Clubs. What’s that?</p>\n\n\n\n<p>[00:57:47] <strong>Destiny Kanno:</strong> Yeah, so that is, you don’t have to have a WordPress Campus Connect event to request a WordPress Student Club on your campus. But it essentially was birthed out of this idea from Anand of like, hey, you know, now that we’ve got this captive audience of students, like where do they go to continue the WordPress activities after we’re gone? And so the, yeah, WordPress Student Clubs were born.</p>\n\n\n\n<p>You can now request a site created for your Student Club when you request to organise a WordPress Campus Connect event, or you can just reach out to us directly. And right now, I believe Anand is working with the Sophia Girls College right now in Ajmer to set up their WordPress Student Club. I think they’re the first actually to have one.</p>\n\n\n\n<p>And the goal is that they can continue on campus, their WordPress activities. They can connect still with the local community, potentially like invite them to their student club events. It’s just like a extracurricular circle or club that now is WordPress themed that will, I think, help them continue.</p>\n\n\n\n<p>And also, sorry, I just wanted bring in like the Credits portion too. Like you might have folks from different majors, right, that are using WordPress in different ways. So it’s a way for also the students to intermingle amongst different majors within their campus as well.</p>\n\n\n\n<p>[00:59:08] <strong>Nathan Wrigley:</strong> It’s kind of a way to keep the conversation going, isn’t it, in a sense? It’s more opportunities to kind of keep people interested and give them opportunities. And all of that is just so necessary. We talked at the beginning about the age demographic of WordPress and how all of this stuff is just such a real credible way of trying to tackle that.</p>\n\n\n\n<p>And I think if you were to put somebody that went through, let’s say, WP Campus Connect. If you were to drop them straight into a meetup, maybe that’s too much, because it can get fairly technical. You know, the presentations are often about some fairly technical things, and so this feels like a really nice bridge. It keeps it more based around the students, so they’re familiar with each other. They’re in the same institution, presumably. It’s kind of like a club. We call them afterschool clubs in the UK. It feels a little bit more like that. So it’s much more based around where they already are and that kind of thing.</p>\n\n\n\n<p>[00:59:59] <strong>Destiny Kanno:</strong> It gives them a sense of ownership as well, because it’s as you said, it’s a students’ club, so, you know, there’s going to be someone that’s leading it, and maybe a co-lead as well, and a faculty member who will also be there to advise or assist.</p>\n\n\n\n<p>[01:00:13] <strong>Anand Upadhyay:</strong> It’s kind of an in campus meetup group, that kind of thing. So they can, just like you said, taking them to the local community meetup will be a little bit overwhelming from them, because whatever the sessions, whatever the topics that are planned in the meetups stuff, catering to the wider audience. So in the campus club they can decide their own kind of topics. What are the topics they are interested in? And they can learn, it’s kind of a group learning as well. Someone from them is learning one topic and delivering this knowledge to the other club members. So it’s a way to keep the momentum going on that is started with WordPress Campus Connect program.</p>\n\n\n\n<p>[01:00:51] <strong>Nathan Wrigley:</strong> Yeah, it’s absolutely wonderful. I’m going to make sure, before we finally finish this call, although we’ll end the podcast recording in a moment, I’ll make sure that I ask these panelists to send me any links that may assist you. And so what I’m going to say is if you head to the wptavern.com website, and if you search for this episode, you could probably search for WP Campus Connect or WordPress Credits or what have you, certainly it’ll be there available in search.</p>\n\n\n\n<p>Head to that, look at the show notes and the links. There’ll be a transcript of this and there’ll be some show notes where I just sort of summarise what’s going on. But right at the bottom, a little way down the page will be all of the links for everything that we have discussed. Maybe some additional ones as well for things that we didn’t have.</p>\n\n\n\n<p>And when I attend WordPress events, there’s always a sense of this, there’s always a sense of look around, the community’s not getting any younger. We’ve got to do something about it. Complaining is the wrong word. People are not doing that, they’re just curious about that. Well, here, you’ve been spoonfed the solution. You now know what it is that you could do to skew the demographic younger. If the WordPress project is something that you believe in, and you would like to carry on, the only way to do that is to have a funnel of younger people who will become the older people, who will then teach the younger people. And so the cycle continues.</p>\n\n\n\n<p>If you want that to happen and you don’t know how to make that happen, well, now you do. You’ve got these people to reach out to. You’ve got these projects that you know about. You can get involved in any of this, at any level.</p>\n\n\n\n<p>And all that it remains for me to do is to say, wow, thank you to all three of you for being interested in this. Not just interested, being active and making the effort to get these things started, to get them off the ground, which is the hardest bit, I think. And hopefully now that they have got off the ground, they will fly with wings of their own. That would be really nice. So, Destiny, Isotta and Anand, thank you so much for chatting to me today. What an episode that was.</p>\n\n\n\n<p>[01:02:55] <strong>Destiny Kanno:</strong> Thank you so much, Nathan.</p>\n\n\n\n<p>[01:02:57] <strong>Isotta Peira:</strong> Thank you. It’s been a huge pleasure.</p>\n\n\n\n<p>[01:02:59] <strong>Anand Upadhyay:</strong> And thank you for giving us a platform to share all these initiatives.</p>\n</div></details>\n\n\n\n<p>On the podcast today we have <a href=\"https://profiles.wordpress.org/piyopiyofox/\">Destiny Kanno</a>, <a href=\"https://profiles.wordpress.org/peiraisotta/\">Isotta Peira</a> and <a href=\"https://profiles.wordpress.org/anandau14/\">Anand Upadhyay</a>.</p>\n\n\n\n<p>Destiny is the head of Community Education at Automattic. Isotta is the leader of the WordPress credits initiative for students. Anand is the founder of WordPress Campus Connect.</p>\n\n\n\n<p>This episode is all about how WordPress is not only powering websites but also empowering the next generation of learners and creators. You’ll hear about the growing movement of education-focused WordPress events happening worldwide, from hands-on workshops on university campuses in India, to student clubs designed to keep the momentum going after introductory events.</p>\n\n\n\n<p>Anand shares how WP Campus Connect is bringing WordPress directly to students, reducing barriers to entry and helping bridge the gap between academic learning and real-world tech skills. We also explore the challenges of organising these events, from convincing institutions of the value of open source, to fostering genuine community involvement among both students and educators.</p>\n\n\n\n<p>Isotta then introduces us to the WordPress Credits program, an initiative that lets students turn their contributions to the WordPress ecosystem into recognised academic credit at universities like Pisa in Italy. It’s a win-win: students gain practical, resume-worthy experience, while educational institutions get a transferable, skills-focused, program that prepares learners for the jobs of the future.</p>\n\n\n\n<p>Whether you’re an educator, a WordPress enthusiast, or just someone who cares about open source and community, this episode is packed with actionable insights. The guests share how flexible and resilient these education initiatives are, how you can get involved, and why engaging the next generation is not just important, but essential for the continued growth and sustainability of the WordPress community.</p>\n\n\n\n<p>It’s a truly inspiring episode, and is at the intersection of so many areas of profound importance.</p>\n\n\n\n<p>If you’re curious about how to bring WordPress into your local school, university, or community, or if you just want to hear how WordPress is making a difference far beyond the web, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/handbook/wordpress-credits-contribution-internship-program/\">WordPress Credits Program</a></p>\n\n\n\n<p><a href=\"https://gamma.app/docs/WordPress-Credits-2ul3dmv61tpover?mode=present#card-qc1u5yvi4tt7he1\">WordPress Credits: A bridge to open-source technology</a></p>\n\n\n\n<p><a href=\"https://events.wordpress.org/campusconnect/\">WordPress Campus Connect</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/community/handbook/community-deputy/other-event-formats/wordpress-campus-connect/#wordpress-campus-connect-student-clubs\">WordPress Student Clubs</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2025/07/introducing-wordpress-credits-a-new-contribution-internship-program-for-university-students/\">Introducing WordPress Credits: A New Contribution Internship Program for University Students</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Biographies</h2>\n\n\n\n<h3 class=\"wp-block-heading\">Destiny Kanno</h3>\n\n\n\n<p>Destiny Fox Kanno, sponsored contributor at Automattic with a focus on education within the WordPress community. Currently focusing on growing, enabling and amplifying the WordPress Campus Connect and Student Club initiatives.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Isotta Peira</h3>\n\n\n\n<p>Isotta joined the WordPress Community in 2022 as a full-time contributor to the Community Team, sponsored by Automattic. With a background in translation, sales, training, and community management, she also ran a culinary events business. She values making informed decisions by integrating data analysis into her work and believes sharing knowledge is key to fighting inequality. Isotta is currently leading the WordPress Credits program, an initiative that connects open-source contributions with academic curricula worldwide.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Anand Upadhyay</h3>\n\n\n\n<p>Anand Upadhyay is the founder of WPVibes, a WordPress plugin development company. He has been working with WordPress since 2010 and contributes to several Make WordPress teams, including Core, Docs, Polyglots, and Community. He also serves as an organizer for WordCamp Asia, one of the flagship events in the WordPress ecosystem.<br />In addition to building plugins, Anand is deeply passionate about teaching and education. He co-organizes the Ajmer WordPress Meetup and is currently contributing to the global expansion of WordPress Campus Connect, a program he initiated as a pilot in 2024 to introduce students to WordPress and open source. Through these efforts, he focuses on helping new learners and contributors discover opportunities to learn, grow, and find their place in the WordPress community.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Sep 2025 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:36;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"Open Channels FM: How WordPress Handles Backwards Compatibility: Lessons from Real-World Challenges\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=105983\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://openchannels.fm/how-wordpress-handles-backwards-compatibility-lessons-from-real-world-challenges/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:241:\"The discussion on backwards compatibility highlights its importance in WordPress, ensuring seamless functionality during updates. Experts emphasize careful support for older versions, enabling a smoother user experience across diverse sites.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Sep 2025 10:22:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:37;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"Open Channels FM: Building a Resilient Web with Arweave’s Vision for Decentralized Long-Term Content Storage\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=108589\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://openchannels.fm/building-a-resilient-web-with-arweaves-vision-for-decentralized-long-term-content-storage/\";s: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:201:\"The episode features Dave Lockie having a conversation with Sam Williams about Arweave, a decentralized storage network addressing digital impermanence and promoting permanent information preservation.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Sep 2025 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:38;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Matt: Are you a WordPresser?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149276\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://ma.tt/2025/09/wordpresser/\";s: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:2020:\"<p>You might be a WordPresser if…</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You like to have freedom and control over all your software.</li>\n\n\n\n<li>You don’t mind taking a bit more time to invest in tools that give you agency.</li>\n\n\n\n<li>You like inserting little opportunities for joy in everyday interfaces.</li>\n\n\n\n<li>You want future generations to grow up with a free and open web.</li>\n\n\n\n<li>You like to tinker, hack, mod, customize, and share what you learn.</li>\n\n\n\n<li>You are impeccable with your word.</li>\n\n\n\n<li>You think software should have a little soul in it.</li>\n\n\n\n<li>You love giving other people superpowers, teaching them not to need you anymore.</li>\n\n\n\n<li>You appreciate a good plan but want to be able to color outside the lines, or completely reimagine the canvas altogether.</li>\n\n\n\n<li>You think technology is best when it brings people together.</li>\n\n\n\n<li>You get excited by updates.</li>\n\n\n\n<li>You want your corner of the web to truly be yours, not generic or commoditized slop.</li>\n\n\n\n<li>Your friends come to you to learn about new stuff.</li>\n\n\n\n<li>You leave things better than you find them.</li>\n\n\n\n<li>You fix things as you find them, it’s never someone else’s problem.</li>\n\n\n\n<li>You know a single comment can light up someone’s day.</li>\n\n\n\n<li>You’ve gotten out of the house to meet other people into WordPress.</li>\n\n\n\n<li>There’s a Wapuu item or sticker somewhere in your life.</li>\n\n\n\n<li>You “view source.”</li>\n\n\n\n<li>You know the difference between owning your content and being a digital sharecropper.</li>\n\n\n\n<li>You’ve drunkenly registered a domain, and have more domains than websites.</li>\n\n\n\n<li>You’ve snuck an easter egg in a slug.</li>\n\n\n\n<li>You have a Gravatar, and it’s also a museum of all your email identities over the years.</li>\n\n\n\n<li>You think code can be poetry.</li>\n</ul>\n\n\n\n<p>If you identified with two or more of these statements, I am afraid to inform you might be classified as a WordPresser. What did I miss?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Sep 2025 21:50:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:39;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Gutenberg Times: Why WordPress Core needs more blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=41679\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://gutenbergtimes.com/why-wordpress-core-needs-more-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11441:\"<p>Over the years, I have been an ardent supporter of keeping WordPress lean and letting plugins and themes do all the fun, custom stuff. But the block paradigm shifted everything. And moreso, it shifted everything about building WordPress themes.</p>\n\n\n\n<p>Today, my perspective has changed, and I’ve nestled into the camp of those calling for more blocks in WordPress.</p>\n\n\n\n<p>Let me explain why.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A journey</h2>\n\n\n\n<p>Let’s jump back in time for a moment. Three and a half years ago, just before the release of WordPress 5.9, themers were in complete control of the front-end output of WordPress sites. </p>\n\n\n\n<p>Well, that’s a bit of a stretch. They were actually in control of everything but the content. Of that, they mostly had styling control. It was much like the previous 18 years where you would have the freedom and flexibility to build whatever you wanted. </p>\n\n\n\n<p>But in the few years leading up to that point, the landscape had begun changing. Themes had to be compatible with new types of output beyond the basic paragraphs, headings, lists, and media. The Block Editor had been on the scene for a while before WordPress 5.9, but theme authors still exercised almost all the control they had in the past.</p>\n\n\n\n<p>Once you started building block themes, suddenly what was possible shrank very, very quickly.</p>\n\n\n\n<p><em>Want to include breadcrumbs?</em> You need to add support for a <a href=\"https://wordpress.org/plugins/x3p0-breadcrumbs/\">breadcrumbs block</a>, but which one?</p>\n\n\n\n<p><em>Need an accordion?</em> Maybe you could manipulate the Details block, but that may not be <a href=\"https://core.trac.wordpress.org/ticket/60335\">an accessible approach</a>.</p>\n\n\n\n<p><em>How about including SVG icons?</em> You guessed it; you need an <a href=\"https://wordpress.org/plugins/icon-block/\">icon block</a> for that.</p>\n\n\n\n<p>And have you ever experienced what the UI looks like when a user doesn’t have a supported block installed?</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"WordPress post editor that shows a Table of Contents block that is not installed. It includes a message that the site doesn\'t support the block.\" class=\"wp-image-41680\" height=\"340\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/09/toc-no-block.webp?resize=652%2C340&ssl=1\" width=\"652\" /></figure>\n\n\n\n<p><em>Eeeek!</em></p>\n\n\n\n<div class=\"wp-block-genesis-blocks-gb-notice gb-font-size-18 gb-block-notice\" style=\"color: #32373c; background-color: #3373dc;\"><div class=\"gb-notice-text\" style=\"border-color: #3373dc;\">\n<p>I’d also like to take this moment to point out that you are not allowed to bundle custom blocks in themes submitted to the official WordPress theme directory. There are <em>very</em> good reasons for this that I won’t dive into. I’m including this side note merely for context.</p>\n</div></div>\n\n\n\n<p>Gone were the days where you could just include anything and everything. It’s like painting on a canvas with a limited color palette and set of brushes when you previously had every tool at your disposal.</p>\n\n\n\n<p>Now, truly great artists can make magic happen regardless of the tools. Things like the <a href=\"https://developer.wordpress.org/news/tag/block-bindings/\">Block Bindings API</a> can fill in some of the gaps. But some features are just darn hard without a dedicated block.</p>\n\n\n\n<p>Before block themes, theme authors enjoyed loads of new features over the years, but how and what you could build mostly remained static, the only limitation being the technology of the day. Block themes created the potential for more people to take that first step into the world of theming without knowing any code whatsoever. And they introduced the standards that so many of the inner community had called on for so long, created better interoperability with plugins, and brought contemporary technologies to WordPress.</p>\n\n\n\n<p>But the cost was a limited toolset that required new ways of thinking from us old timers who’d been merrily doing our own thing for so long.</p>\n\n\n\n<p>It’s an exciting world, but it could be more exciting in the next stage of this journey.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The case for more Core blocks</h2>\n\n\n\n<p>I am a developer. I love tinkering with anything and everything. I even dabble in creating custom plugins, but my true passion is creating WordPress themes. I’ve probably written just as much on the subject as anyone over the years. It’s safe to say that I know the technical limitations of block theming as much as anyone can reasonably be expected to (though I’m still learning new things all the time).</p>\n\n\n\n<p>So when Matías Ventura, the Project Architect of Gutenberg, opened a <a href=\"https://github.com/WordPress/gutenberg/issues/71026\">ticket calling for more niche blocks</a> in WordPress, it piqued my interest. The list of potential blocks were:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/16484\">Icons</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/805\">Playlist</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/43369\">Slider/Carousel</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/71017\">Stretchy Text</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/34079\">Tabs</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/21584\">Accordion</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/23745\">Mega Menus</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/47198\">MathML</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/41730\">Marquee</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/42229\">Table of Contents</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/53776\">Time to Read</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/21943\">Breadcrumbs</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/61297\">Dialog</a></li>\n</ul>\n\n\n\n<p>Admittedly, I chuckled at the thought of a Stretchy Text block actually being included in Core. But the more I dug into what it takes to actually implement the design, I could see the case for it. I certainly don’t see a good way of using it in a theme design pattern without a dedicated block.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"WordPress post editor that displays a green gradient background in the content canvas. Across the top is demo text that stretches from the far left to far right of the screen, creating a stretchy text effect.\" class=\"wp-image-41682\" height=\"340\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/09/stretchy-text.webp?resize=652%2C340&ssl=1\" width=\"652\" /><figcaption class=\"wp-element-caption\">The <a href=\"https://specialprojects.automattic.com/tools/stretchy-type/\">Stretchy Type block</a> from the Automattic Special Projects team.</figcaption></figure>\n\n\n\n<p>And marquees? Were they not relegated to a long dead era when Geocities ruled the blogosphere? I miss the old days of the wild and wacky web. <em>Could be fun.</em> <img alt=\"🤔\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f914.png\" style=\"height: 1em;\" /></p>\n\n\n\n<p>It’s easy to get tangled up in the weeds, using the most niche blocks as arguments against components like accordions, tabs, dialogs, and table of contents, which are standard pieces of the web as we know it today.</p>\n\n\n\n<p>If you recall, I said earlier that I was a longtime supporter of keeping Core lean. The old WordPress was very much a development framework. But as a theme author in the block theme era, I’ve moved much closer to the thoughts that Ventura espoused:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>I think not having these blocks in the core library severely limits the expressiveness that theme builders (and users) can depend upon to build great designs and it can fracture the overall experience.</p>\n</blockquote>\n\n\n\n<p>There have been many moments in the last three years where I’d have 95% of the work done, speeding toward the finish line of a block theme project. Then I’d smash into a brick wall. Quite often that wall was a missing design component. </p>\n\n\n\n<p>I’ve been in the development game long enough to find workarounds, but it’s been at the expense of untold hours of development time that could’ve been better spent elsewhere.</p>\n\n\n\n<p>And if I’m at the top of my game, what hope is there for newcomers who have bright ideas and big dreams? Will they be able to build that unique design they have in mind? Or will they switch to another platform?</p>\n\n\n\n<p><em>So…I want more blocks. </em></p>\n\n\n\n<p>I want more possibilities. </p>\n\n\n\n<p>I want to make ideas come to life without spending a week figuring out how to pigeonhole some feature into a place it doesn’t belong just to make things work.</p>\n\n\n\n<h2 class=\"wp-block-heading\">To include or not include</h2>\n\n\n\n<p>I hope that you at least agree on one point: For block theming to progress, WordPress needs a mechanism for theme authors to fully express their ideas. </p>\n\n\n\n<p>Everything beyond that is implementation details. Ventura’s <a href=\"https://github.com/WordPress/gutenberg/issues/71026\">proposal for additional blocks</a> has garnered a lot of discussion over the past month both in the ticket and elsewhere around the community. There’s wide agreement and disagreement on some or all points.</p>\n\n\n\n<p>Chiefly, whether the more niche blocks should be bundled is of concern. Things like future compatibility, potential legacy baggage, and bundle size are worth discussing. There’s also the potential for <a href=\"https://github.com/WordPress/gutenberg/issues/58773\">Core/Canonical blocks</a> that Ventura proposed in 2024, a set of blocks built and maintained by WordPress contributors but not shipped with the platform itself. I’d even be happy with a method of auto-installing supported blocks when a user activates a theme.</p>\n\n\n\n<p>Frankly, I don’t much care how we get there—just that we do. And I hope that god-forsaken “your site doesn’t include support for the [name] block” message never graces the screen of one of my theme’s users.</p>\n\n\n\n<p>Let me bundle patterns with icons that users can swap out as needed:</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"WordPress post editor that displays a three-column grid design with an SVG image placeholder, heading, and text.\" class=\"wp-image-41683\" height=\"340\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/09/icon-block.webp?resize=652%2C340&ssl=1\" width=\"652\" /></figure>\n\n\n\n<p>Let me create accessible accordions without manipulating the Details block:</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"WordPress post editor that shows multiple Details block in an accordion-like design.\" class=\"wp-image-41684\" height=\"340\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/09/details-accordion.webp?resize=652%2C340&ssl=1\" width=\"652\" /></figure>\n\n\n\n<p>Just let me create something beautiful.</p>\n\n\n\n<p class=\"has-text-align-right\"><em>Props to Birgit Pauli-Haack, Anne McCarthy, and Héctor Prieto for feedback on this article before publishing.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Sep 2025 14:34:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Open Channels FM: Why Companies Should Sponsor WordPress Contributors (And How To Start)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=105257\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://openchannels.fm/why-companies-should-sponsor-wordpress-contributors-and-how-to-start/\";s: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:189:\"WordPress is powered by a passionate community. Companies should sponsor contributors for goodwill, ecosystem health, and industry connections. Starting small is key to making a difference.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Sep 2025 09:53:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"Open Channels FM: Learn How WordPress Playground Revolutionizes Local Development Testing and Learning\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=108586\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://openchannels.fm/learn-how-wordpress-playground-revolutionizes-local-development-testing-and-learning/\";s: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:163:\"In this episode of The WordPress Way, Abha Thakor and Fellyph Cintra discuss WordPress Playground, its features, accessibility, and impact on developers and users.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Sep 2025 09:08:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Matt: Fact Checkers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149253\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ma.tt/2025/09/fact-checkers/\";s: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:765:\"<p>The New Yorker is always good, but they’re having a bit of a victory lap as they celebrate their centennial. <a href=\"https://www.newyorker.com/magazine/2025/09/01/the-history-of-the-new-yorkers-vaunted-fact-checking-department\">This article on the vaunted fact-checkers is such a delight</a>, with so many in-jokes and back references it’s hard to keep track. </p>\n\n\n\n<p>When I started WordPress, I wrote down five publications that I hoped someday we’d make software so good they’d adopt it. The New Yorker is one of them. If you enjoy words that make your brain tingle, make sure to also follow Automattic’s publications, <a href=\"https://longreads.com/\">Longreads</a> and <a href=\"https://magazine.atavist.com/\">Atavist</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Sep 2025 21:10:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Aaron Jorbin: WP Book Club Week 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:31:\"https://aaron.jorb.in/?p=239215\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://aaron.jorb.in/wp-book-club-week-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:2807:\"<p><em>If you signed up on the <a href=\"https://aaron.jorb.in/a-wordpress-book-club/\">original post</a>, you will also receive this info in an email.</em></p>\n\n\n\n<p>For week one of a <a href=\"https://aaron.jorb.in/a-wordpress-book-club/\">WordPress Book Club</a>, we will be discussing the <a href=\"https://producingoss.com/en/preface.html\">Preface</a> and <a href=\"https://producingoss.com/en/introduction.html\">Chapter 1. Introduction</a>. </p>\n\n\n\n<p>To start the club, we are going to do introductions. I’ll ask everyone to share their name and how long they have been involved in open source. We’ll do this <a href=\"https://www.facilitator.school/glossary/popcorn-style\">popcorn style</a>.</p>\n\n\n\n<p>Next I’ll quickly review some norms for this club:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Make Space </strong>for each other — Be conscious of how much you are speaking and encourage others to speak as well. While <a href=\"https://www.nytimes.com/2021/09/25/opinion/interrupting-cooperative-overlapping.html?searchResultPosition=1\">cooperative overlapping</a> is a conversation style that is natural to some, it’s one we should avoid in this context. </li>\n\n\n\n<li>Approach this club with <strong>enthusiastic collaboration </strong>— This is a phrase that I stole from the preface and is one of the ways that the author describes the unique culture of open source. In this context the phrase means to me that everyone is coming with a positive attitude and a desire to share and learn. We will all assume good intent since everyone is approaching this with good intent. </li>\n\n\n\n<li><strong>Camera On by default</strong>, no questions asked if camera is off — It’s easier and more engaging if we can see each other, so I want to encourage you to have your camera on, but there are also a multitude of reasons that you may want it off. You don’t need to explain why your camera is off, but if you can, please turn it on. </li>\n</ul>\n\n\n\n<p>After that we will get to the meat of the session, and discuss these two sections. I’ll bring a few questions to help get the discussion flowing, but I would also love if folks brought their own as well. Since the majority of participants don’t work in open source day in and day out, I expect some questions to be about ways to apply our learnings outside open source.</p>\n\n\n\n<p>Finally, I am going to encourage everyone to spend some time blogging their thoughts after the discussion. This can be a reaction to something you read or something discussed. It can be notes you took while reading, but I would like to encourage blogging. </p>\n<p>The post <a href=\"https://aaron.jorb.in/wp-book-club-week-1/\">WP Book Club Week 1</a> appeared first on <a href=\"https://aaron.jorb.in\">Aaron Jorbin</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Sep 2025 18:51: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"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:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Matt: Summer WordPress Update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149189\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ma.tt/2025/08/wcus-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:1610:\"<p>I’m still buzzing from an incredible WordCamp US this week, from contributor day to the closing party the vibes were right and it was amazing to connect with fellow travelers in the journey towards creating a more free and open source internet.</p>\n\n\n\n<p>Before our open town hall Q&A I was able to make some fun announcements:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Traffic to WordPress.org is up, and we’ve brought the plugin queue from months to basically a few days.</li>\n\n\n\n<li>Previewed Block Comments and the upcoming Command Palette feature in 6.9.</li>\n\n\n\n<li>Shared some fun AI experiments, including <a href=\"https://github.com/felixarntz/wp-ai-sdk-chatbot-demo\">Felix’s AI chatbot demo</a>, <a href=\"https://telex.automattic.ai/\">Automattic’s new Telex block creator</a>, and more.</li>\n\n\n\n<li>Got to announce details for the next two flagships:\n<ul class=\"wp-block-list\">\n<li><strong>WordCamp Asia 2026</strong>: Mumbai, India, from April 9<sup>th</sup> to 11<sup>th</sup>.</li>\n\n\n\n<li><strong>WordCamp Europe 2026</strong>: Kraków, Poland. June 4<sup>th</sup> to 6<sup>th</sup> 2026.</li>\n\n\n\n<li><strong>WordCamp US 2026</strong>: Phoenix, Arizona, from August 16<sup>th</sup> to 19<sup>th</sup>. <img alt=\"😅\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f605.png\" style=\"height: 1em;\" /></li>\n</ul>\n</li>\n</ul>\n\n\n\n<p>Give it a watch!</p>\n\n\n\n<figure class=\"wp-block-embed alignwide is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 31 Aug 2025 03:25:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WordPress.org blog: Portland Welcomes WordCamp US 2025: A Community Gathering\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=19074\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2025/08/portland-welcomes-wcus-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:33664:\"<p>A full house of attendees gathered in Portland, Oregon, for WordCamp US 2025, with thousands more tuning in online. Over four days, the flagship WordPress event brought together contributors, innovators, and community members for collaboration, inspiration, and discovery.</p>\n\n\n\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-6c531013 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-pullquote\"><blockquote><p>WordPress is so unique because we’re not just a product; we’re a movement.</p><cite>Matt Mullenweg, WordPress Cofounder</cite></blockquote></figure>\n</div>\n\n\n\n<p>The WordPress event began with a dedicated Contributor Day and continued with a Showcase Day and two days of sessions filled with talks, panels, workshops, and community celebrations. WordPress Cofounder Matt Mullenweg joined a diverse lineup of speakers, panelists, and workshop leaders who brought fresh perspectives to the open web from across the globe.</p>\n\n\n\n<p>Set against the vibrant backdrop of Portland — with its iconic bridges, coffee culture, and creative energy — the Sponsor Hall buzzed as companies across the WordPress ecosystem demoed new products, shared insights, and connected with attendees. Each day offered opportunities to refuel with local flavors and international favorites, turning mealtimes into lively hubs of networking and idea-sharing.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Global Gathering in Portland</h2>\n\n\n\n<p>WordCamp US is the annual gathering point for the WordPress community — where collaboration, creativity, and innovation intersect. This year in Portland, the event delivered an expansive program that reached every corner of the ecosystem.</p>\n\n\n\n<p>Here’s what attendees experienced:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Engaging Sessions Across Tracks</strong> – Keynotes, presentations, and discussions explored the evolving web and the role of open source in shaping it.</li>\n\n\n\n<li><strong>A Global Speaker Lineup</strong> – Voices from across continents brought local stories and global visions to the stage.</li>\n\n\n\n<li><strong>Wide-Ranging Topics</strong> – From AI in WordPress development to accessibility, design systems, content strategy, education, and case studies of WordPress at scale.</li>\n\n\n\n<li><strong>Hands-On Learning Opportunities</strong> – Workshops provided practical takeaways, empowering attendees to apply new skills immediately.</li>\n\n\n\n<li><strong>A Community Built on Collaboration</strong> – Whether contributing code, exploring business strategies, or sharing creative projects, attendees found space to learn, grow, and celebrate open source together.</li>\n</ul>\n\n\n\n<p>New contributors took their first steps into open source, seasoned developers explored cutting-edge AI integrations, and agencies and product teams shared strategies for scaling WordPress to meet modern needs. Beyond the technical, conversations around inclusivity, sustainability, and education underscored WordPress’s role as a tool for empowerment and positive change.</p>\n\n\n\n<p>In hallways, coffee lines, and evening meetups, attendees found the “hallway track” alive and well, spontaneous moments of connection that often became the most memorable part of the experience. Whether reconnecting with longtime collaborators or meeting someone new, these small interactions reinforced the heart of WordCamp US: a community that thrives on openness, generosity, and shared purpose.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributor Day: Collaboration at the Core</h2>\n\n\n\n<p>The conference opened on Tuesday, August 26, with a vibrant Contributor Day. Nearly 300 contributors filled the space, including more than 120 first-time participants who were onboarded across 19 teams. Developers, designers, translators, marketers, and community organizers worked side by side, representing WordPress expertise.</p>\n\n\n\n<p>Throughout the day, contributors tackled everything from improving accessibility and performance to refining documentation to enhancing translation tools. Beyond technical contributions, teams like Marketing and Community focused on outreach, mentoring, and shaping future-facing initiatives. Remote participants joined via dedicated channels, reinforcing the inclusive nature of WordPress’s global community. By day’s end, the collective energy was clear: WordPress continues to be built by and for everyone.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped has-black-background-color has-background wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width: 20px; border-radius: 2px;\">\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19080\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19081\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19087\" height=\"2560\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?fit=683%2C1024&ssl=1\" width=\"1707\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19084\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19082\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19085\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19086\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19090\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19089\" height=\"1707\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?fit=1024%2C683&ssl=1\" width=\"2560\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19092\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19088\" height=\"1707\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?fit=1024%2C683&ssl=1\" width=\"2560\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19091\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19083\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n</figure>\n\n\n\n<p>The mix of experience in the room made this year especially notable. First-time contributors were paired with seasoned table leads who guided them through their first steps into open source contribution. Longtime contributors reconnected with their teams and advanced ongoing initiatives, while new voices added fresh perspectives and momentum. The spirit of mentorship was woven throughout, ensuring that Contributor Day was productive and welcoming.</p>\n\n\n\n<p>The results spoke for themselves:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Polyglots</strong> translated more than 12,000 strings, expanding WordPress’s accessibility worldwide.</li>\n\n\n\n<li>The <strong>Community team</strong> celebrated the approval of two brand-new local meetups.</li>\n\n\n\n<li>The <strong>Training team</strong> achieved its objective of updating outdated course thumbnails.</li>\n\n\n\n<li>The <strong>Core team</strong> worked through a live bug scrub, with 9 committers and 16 contributors collaborating on improvements.</li>\n\n\n\n<li>The <strong>Documentation team</strong> completed numerous content updates to keep resources fresh and reliable.</li>\n</ul>\n\n\n\n<p>Momentum carried through every table, with participants reporting measurable progress and a renewed sense of shared purpose. Contributor Day once again highlighted the unique power of collaboration in shaping the open web, proving that every contribution matters through code, translations, training, or community building.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Showcase Day: WordPress in Action</h2>\n\n\n\n<p>Wednesday, August 27, was the popular Showcase Day, spotlighting real-world innovation in WordPress. Initially expected to draw about 250 participants, Showcase Day welcomed more than 800 attendees — a powerful sign of how much energy and curiosity the community brought to Portland. The sessions demonstrated how WordPress powers meaningful work across industries from nonprofits to newsrooms, agencies to global enterprises, while staying true to open source values.</p>\n\n\n\n<p>The day opened with a keynote by Amy Sample Ward: <em>The Tech That Comes Next</em>. Drawing from their co-authored book with Afua Bruce, Amy highlighted the inequities embedded in today’s technologies — from dataset bias to accessibility gaps — and challenged attendees to rethink how tools are funded, built, and deployed. Their talk invited technologists, funders, and community leaders to imagine a more equitable digital future, rooted in collaboration and shared responsibility.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n\n\n\n<p>From there, <a href=\"https://youtu.be/PGvh7fCOUk0\">Joeleen Kennedy</a> of Human Made shared how Full Site Editing (FSE) shapes the refresh of Wikimedia’s ongoing user experience. Her session <em>Modernizing at Scale</em> detailed how FSE is simplifying workflows, improving accessibility, and making the multilingual platform more sustainable for the long term. Attendees gained a behind-the-scenes look at how one of the world’s largest open knowledge platforms is leveraging WordPress innovation.</p>\n\n\n\n<p><a href=\"https://youtu.be/F4NEPcwGRCI\">Josh Bryant</a> took the stage to explore what happens when Gutenberg leaves the WP-Admin dashboard. His talk, <em>Reimagining WordPress Editing</em>, walked through embedding the block editor into a standalone React application to support Dow Jones’s newsroom workflows. From decoupling Gutenberg to managing custom data stores, the session showcased advanced techniques for scaling editorial tools while maintaining the flexibility of the WordPress ecosystem.</p>\n\n\n\n<p>Hands-on learning was a hallmark of Showcase Day, with Jamie Marsland’s workshop leading participants through building and launching their own professional portfolio sites — no coding required. Attendees left with a fully functioning site, demonstrating WordPress’s continued ability to empower anyone, anywhere, to publish online.</p>\n\n\n\n<p>In the afternoon, Jeffrey Paul’s session <em>Scalable, Ethical AI</em> addressed one of the most pressing topics in today’s digital world: how to integrate AI without sacrificing ownership, privacy, or open standards. Walking participants through practical use cases with ClassifAI and local LLMs, Paul emphasized how WordPress can help content creators harness AI while maintaining autonomy over their data.</p>\n\n\n\n<p>The day closed with a forward-looking community highlight: <a href=\"https://events.wordpress.org/campusconnect/\">WordPress Campus Connect</a>. Panelists <a href=\"https://youtu.be/ARqM9U0ESvo\">Destiny Kanno, Andrés Parra, Javier Montes de Blas, Mauricio Barrantes, and Elineth Morera Campos</a> shared how this initiative brings WordPress into classrooms and universities worldwide. Student Andrés Parra received a scholarship to attend WordCamp. During the panel, Elineth also announced that Fidélitas University will begin offering its students a <a href=\"https://wordpress.org/news/2025/07/introducing-wordpress-credits-a-new-contribution-internship-program-for-university-students/\">WordPress Credits</a> program starting in October 2025, making it a mandatory addition sometime in 2026, enabling them to contribute directly to WordPress as part of their studies.</p>\n\n\n\n<p>By connecting students and educators with the open web, Campus Connect is building the next generation of contributors and innovators, ensuring that WordPress remains both a learning tool and a pathway to opportunity.</p>\n\n\n\n<p>Taken together, Showcase Day affirmed that WordPress is more than just a CMS — it is a platform for equitable technology, global collaboration, cutting-edge enterprise solutions, and the future of digital education. WordPress has the power to be both a platform and a community tool for education, equity, and innovation.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Presentation Days: Learning, Inspiration, and Connection</h2>\n\n\n\n<p>The first full day of sessions at WordCamp US 2025 opened with warm remarks from the organizing team, who reminded attendees: <em>“The most important thanks goes to all of you. The mix of new energy and veteran experience is what makes WordCamp so special, so thank you for being here.”</em> That spirit of gratitude and community carried throughout the event.</p>\n\n\n\n<p>The Sponsor Hall became a hub of activity, complete with raffles, the return of Career Corner, and even a Voodoo Donut Truck parked outside. Attendees lined up to test their luck at a claw machine stuffed with plush Wapuus, while others sought guidance at the Happiness Bar — a hands-on help desk for WordPress questions big and small. Between these activities, the steady buzz of conversations made it clear: the “hallway track” remained one of WordCamp’s most valuable experiences.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n\n\n\n<p>The program itself set a high bar. Danny Sullivan’s keynote shed light on how search has evolved to meet the needs of new generations, from 24/7 demand and mobile expectations to short-form video and AI. His session gave attendees a deeper understanding of how search intersects with publishing today and sparked conversations about how WordPress can continue adapting in an era where AI shapes discovery and content.</p>\n\n\n\n<p>From there, the schedule unfolded across multiple tracks. The Core AI panel — featuring <a href=\"https://youtu.be/v_0O6dQ4Q4E\">James LePage, Felix Arntz, and Jeffrey Paul</a> — offered a look into how AI tools are woven into WordPress core. Emphasizing ethics, transparency, and user empowerment, the panel painted a roadmap for how WordPress can adopt new technologies without compromising its open-source values.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-19103\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?resize=1024%2C576&ssl=1\" width=\"1024\" /></figure>\n\n\n\n<p>Hands-on learning played a significant role throughout the conference. Ryan Welcher’s interactive <em>Block Developer Cookbook</em> drew a packed room as participants worked through community-selected code recipes built on the latest WordPress APIs. By the end, attendees left with working examples and practical strategies they could bring back to their projects.</p>\n\n\n\n<p>The program also highlighted diverse technical perspectives. <a href=\"https://youtu.be/vBjNqdacbh4\">Jemima Abu’s</a> session, <em>A PHP Developer’s Guide to ReactJS</em>, bridged the gap between classic and modern web development. At the same time, Adam Gazzaley’s keynote, <em>A New Era of Experiential Medicine – AI and the Brain</em>, invited attendees to consider the human side of technology, exploring how digital tools can advance health and well-being.</p>\n\n\n\n<p>The second day of presentations, Friday, August 29, opened with creativity and imagination. <a href=\"https://youtu.be/O7FPiFpRI3o\">John Maeda’s</a> keynote, <em>Cozy AI Cooking: WordCamp Edition</em>, used the metaphor of a kitchen to demystify AI, blending storytelling with technical insight to show how curiosity and care can guide builders in integrating AI into their work.</p>\n\n\n\n<p>Later in the day, <a href=\"https://youtu.be/ORnJTpjA-4w\">Tammie Lister’s</a> <em>The System is the Strategy</em> illustrated how design systems provide structure and scalability for growing WordPress projects. At the same time, Adam Silverstein’s Unlock Developer Superpowers with AI showcased new ways developers can use emerging tools to speed up workflows and problem-solving.</p>\n\n\n\n<p>Community stories also took center stage. In Creators around a Campfire, Anne McCarthy, Jamie Marsland, Christian Taylor, Mark Szymanski, and Michael Cunningham reflected on how YouTubers and content creators shape the WordPress ecosystem. Their session highlighted the role of storytelling and education in expanding WordPress’s reach to new audiences worldwide.</p>\n\n\n\n<p>The Sponsor Hall remained lively between sessions — with attendees meeting companies, testing demos, and swapping ideas that extended far beyond the conference halls. They also shared moments together at the arcade built for the event and added smiles, hugs, and laughter, which underscored the atmosphere: WordCamp US was as much about connection as code.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Together Into the Future</h2>\n\n\n\n<p>As the event drew to a close, WordPress Cofounder Matt Mullenweg took the stage to share the current state of WordPress and a vision for its future. He highlighted the growth in social media for WordPress with 124,726 new followers since last WCUS — and the WordPress.org website growing over 10% in users along with almost 20% in new users. </p>\n\n\n\n<p>Matt also spotlighted community initiatives shaping the future of open source education and diversity: WordPress Campus Connect, which has already reached 570 students across 11 events. Combined with the growth in overall events (77) which is a 32.76% increase over 2024. Each effort reinforced the message that WordPress is more than software; it is a global movement driven by people.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n\n\n\n<p>He concluded with a live Q&A, fielding questions from the audience on the direction of WordPress, its role in an AI-driven web, and the importance of keeping the project open, inclusive, and adaptable. The final notes of the keynote carried into a closing party in downtown Portland, where attendees capped off the week with music, conversation, and the unmistakable joy of a community coming together.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Closing</h2>\n\n\n\n<p>WordCamp US 2025 once again demonstrated what makes the WordPress ecosystem extraordinary: a community committed to building tools, resources, and opportunities that empower people everywhere.</p>\n\n\n\n<p>This year also marked the debut of the <a href=\"https://airtable.com/appWF6hdXuEOFQMvV/shrV5RZIv0aJjjU00\">Open Horizons Scholarship</a>, which funded six recipients — two organizers, three volunteers, and one speaker — from five countries. A total of $14,670 supported their journeys to WCUS. The scholarship, which also supports participation at WordCamp Asia and WordCamp Europe, is designed to make flagship events more accessible to contributors worldwide.</p>\n\n\n\n<p>A heartfelt thank you goes to the organizers, volunteers, sponsors, and speakers who brought the Portland edition to life — and to every attendee who joined us in person or followed along online. We hope you leave with fresh ideas, meaningful connections, and renewed energy to help shape the future of the open web.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped has-black-background-color has-background wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width: 20px;\">\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19112\" height=\"577\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948.jpg?resize=1024%2C577&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">Gale Wallace</figcaption></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19124\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997.jpeg?resize=1024%2C576&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">Topher DeRosia</figcaption></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19122\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014.jpeg?resize=1024%2C576&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">Topher DeRosia</figcaption></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19107\" height=\"577\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752.jpg?resize=1024%2C577&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">Gale Wallace</figcaption></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19108\" height=\"675\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?resize=1024%2C675&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">Gale Wallace</figcaption></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19113\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076.jpeg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19106\" height=\"433\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809.jpeg?resize=1024%2C433&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">Topher DeRosia</figcaption></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19110\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19119\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827.jpeg?resize=1024%2C576&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">Topher DeRosia</figcaption></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19133\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?resize=1024%2C576&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n</figure>\n\n\n\n<p>Be sure to mark your calendars for the next global gatherings: <a href=\"https://asia.wordcamp.org/2026/\">WordCamp Asia 2026</a> in Mumbai, India, <a href=\"https://europe.wordcamp.org/2026/\">WordCamp Europe 2026</a> in Kraków, Poland, and WordCamp US 2026 in Phoenix, Arizona. We can’t wait to see you at the next chapter of the WordPress story.</p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 30 Aug 2025 03:03:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Open Channels FM: WordCamp Gdynia 2025 Is Speaking More Than One Language\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=108652\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://openchannels.fm/wordcamp-gdynia-2025-is-speaking-more-than-one-language/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:370:\"Something exciting is happening at WordCamp Gdynia 2025 on September 26–28, 2025 and it’s bigger than the coffee breaks and after-party combined. For the first time, the event will feature sessions in both Polish and English. Last year, the organizers noticed something interesting. In the hallways, at the sponsor tables, even over lunch, people naturally […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 29 Aug 2025 08:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Matt: Think Different\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=149110\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2025/08/think-different/\";s: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:2050:\"<p>Pretty heads down at WordCamp US, which has had amazing energy and talks so far. I wanted to take a moment to note two things, first being <a href=\"http://scripting.com/2025/08/28/140604.html?title=thinkDifferentAboutWordpress\">a great essay from Dave Winer asking people to Think Different about WordPress</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>I’ve done this before — asked people to think differently about things, like public writing, with blogging. In the 90s I was running around the Vallley trying to explain to everyone that blogging was going to change everything, all I got was blank stares from people who said “we don’t do that.” They of course eventually did do it. But at first the ideas seemed foreign, unreasonable.</p>\n</blockquote>\n\n\n\n<p>And in light of the <a href=\"https://arstechnica.com/gadgets/2025/08/one-time-wordpress-competitor-typepad-ends-its-slide-into-obscurity-by-shutting-down/\">news of Typepad shutting down</a>, <a href=\"https://developer.wordpress.org/advanced-administration/wordpress/import/#movable-type-and-typepad\">note that WordPress has a Typepad importer</a>. A big advantage of putting your content into an open source platform like WordPress with an active community, vs just static pages or something custom, is that you’re getting constant upgrades “for free” as we maintain and iterate on the software, enabling new APIs or things like allowing your AI to talk to your site. </p>\n\n\n\n<p>WordPress is built by a community of people deeply passionate about backwards and forward compatibility, radical openness so it’s easy to get things in and out of it, and relentless iteration building for the long term. Despite literally billions of dollars spent trying to kill or crush WordPress, and frequent proclamations of its death, we keep trucking along and doing our darndest to make the web a bit more open and free every day. It’s a life mission of many people, including myself.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Aug 2025 20:08:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:48;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Open Channels FM: Closing the Black Friday Prep Gap: Woo’s 2025 Survey Insights\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=108571\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://openchannels.fm/closing-the-black-friday-prep-gap-woos-2025-survey-insights/\";s: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:422:\"Woo’s latest merchant survey uncovers a growing “preparation gap” for Black Friday and Cyber Monday (BFCM). Larger merchants, especially those earning over $1M annually, are prioritizing website performance optimization over inventory management and preparing months ahead, while many smaller merchants still rely on traditional, last-minute tactics. The findings reveal key shifts shaping the 2025 holiday […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 28 Aug 2025 14:26: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:49;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Weston Ruter: The Site Speed Frontier with Performance Lab and Beyond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://weston.ruter.net/?p=35813\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:123003:\"<p>At WordCamp US 2025 this year, I’m presenting a talk called “<a href=\"https://us.wordcamp.org/2025/session/the-site-speed-frontier-with-performance-lab-and-beyond/\">The Site Speed Frontier with Performance Lab and Beyond</a>” with the following description:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>The Core Performance team has been incubating enhancements for WordPress through the Performance Lab plugin. These have been available for a few years now; some have been merged into core (e.g. Speculative Loading) while others are more experimental and remain in testing (e.g. Optimization Detective). This talk will look at how these performance plugins impact the speed of a stock WordPress site running the Twenty Twenty-Five default theme, using Core Web Vitals benchmarks and Lighthouse scores. It will also look at how the theme’s performance can be further tuned, including the use of core patches proposed for the next major release (also available in plugin form to leverage today) to further accelerate the loading of pages to improve the user experience of site visitors.</p>\n</blockquote>\n\n\n\n<p>Here’s my talk <a href=\"https://youtu.be/VHy_mRe1pek?si=UYzEccemyk4UXNOS\">from the WordPress YouTube channel</a> (also <a href=\"https://wordpress.tv/2025/09/03/the-site-speed-frontier-with-performance-lab-and-beyond/\">available on WordPress.tv</a>):</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n\n\n\n<p>And here are my <a href=\"https://docs.google.com/presentation/d/1KMnm49qF6F9AIkH7J4iyiiPbXGXZ-iq5fK2MYqLT_YU/edit?usp=sharing\">slides</a> as well:</p>\n\n\n\n<p></p>\n\n\n\n<p>And what follows is my talk in blog post form, greatly expanded with a lot more details than I had time to share during my talk.</p>\n\n\n\n<p>Table of contents:</p>\n\n\n\n<nav class=\"wp-block-table-of-contents\"><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/#performance-lab\">Performance Lab</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/#case-study-twenty-twenty-five\">Case Study: Twenty Twenty-Five</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/#performance-testing-methodology\">Performance Testing Methodology</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/#largest-contentful-paint\">Largest Contentful Paint</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/#benchmarking\">Benchmarking</a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/#analyzing-optimization-impact-on-lcp\">Analyzing Optimization Impact on LCP</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/#image-placeholders\">Image Placeholders</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/#modern-image-formats\">Modern Image Formats</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/#enhanced-responsive-images\">Enhanced Responsive Images</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/#image-prioritizer\">Image Prioritizer</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/#responsive-image-prioritization\">Responsive Image Prioritization</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/#background-image-prioritization\">Background Image Prioritization</a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/#speculative-loading\">Speculative Loading</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/#view-transitions\">View Transitions</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/#nocache-bfcache\">Instant Back/Forward</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/#script-module-deprioritization\">Script Module Deprioritization</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/#minified-css-inlining\">Minified CSS Inlining</a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/#whats-next\">What’s Next</a></li></ol></nav>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"performance-lab\">Performance Lab</h2>\n\n\n\n<p>I’ve been a WordPress <a href=\"https://make.wordpress.org/core/handbook/about/organization/#committers\">core committer</a> for <a href=\"https://weston.ruter.net/2025/05/14/a-decade-as-a-core-committer-my-wordpress-contribution-history/\">over 10 years</a>, and since Spring 2023 I’ve been heavily involved on the <a href=\"https://make.wordpress.org/performance/handbook/about-the-team/\">Core Performance Team</a>. In addition to contributing patches directly to the WordPress core codebase, we also develop new performance optimizations in the form of feature plugins. We use our <a href=\"https://wordpress.org/plugins/performance-lab/\">Performance Lab</a> plugin as a way to collect the feature plugins we’re currently working on to facilitate discovery:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-plugin-directory wp-block-embed-plugin-directory\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/plugins/performance-lab/\">Performance Lab</a></blockquote>\n</div></figure>\n\n\n\n<p>Most of these performance feature plugins are developed in the <a href=\"https://github.com/wordpress/performance\">WordPress/performance</a> monorepo on GitHub. In the same way as the Gutenberg plugin serves as a way to develop new editor features, the Performance Lab plugin is a way we incubate new performance features. It allows us to get feedback from users and test the impact prior to being proposed for merging into a new release of WordPress core when it gets rolled out to <a href=\"https://w3techs.com/technologies/overview/content_management\">~43%</a> of the web.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"case-study-twenty-twenty-five\">Case Study: Twenty Twenty-Five</h2>\n\n\n\n<p>The default theme for the current version of WordPress is <a href=\"https://wordpress.org/themes/twentytwentyfive/\">Twenty Twenty- Five</a>. Default themes in core basically encapsulate the latest and greatest in what WordPress has to offer in terms of features and performance. Indeed, <a href=\"https://wordpress.org/documentation/article/block-themes/\">block themes</a> are generally faster than classic themes (especially with page caching) for a few reasons, including:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Scripts and styles are <a href=\"https://make.wordpress.org/core/2021/07/01/block-styles-loading-enhancements-in-wordpress-5-8/\">selectively loaded</a> based on whether their blocks actually used on the page.</li>\n\n\n\n<li>Blocks are more likely to use the <a href=\"https://developer.wordpress.org/block-editor/reference-guides/interactivity-api/\">Interactivity API</a> which involves deferred <a href=\"https://make.wordpress.org/core/2024/03/04/script-modules-in-6-5/\">script modules</a> (which don’t block rendering) and <a href=\"https://developer.wordpress.org/block-editor/reference-guides/interactivity-api/core-concepts/server-side-rendering/\">server-side rendering</a>.</li>\n</ul>\n\n\n\n<p>So the Twenty Twenty-Five theme should be very fast, and indeed it is. But with Performance Lab features (and beyond), it can be made even faster.</p>\n\n\n\n<p>Your mileage will vary with other themes, either having an even greater impact or a lesser one. Every site is unique (hopefully!) and so the impact of optimizations depends on a page’s contents, how a theme is built, and which plugins are active. But in this post, I’ll show the impact of the optimizations in various page layouts of the Twenty Twenty-Five Theme.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"performance-testing-methodology\">Performance Testing Methodology</h2>\n\n\n\n<p>Perhaps the most popular way to analyze the performance of a webpage is to use <a href=\"https://developer.chrome.com/docs/lighthouse/overview/\">Lighthouse</a>, either <a href=\"https://developer.chrome.com/docs/lighthouse/overview#devtools\">in Chrome DevTools</a> or via the bottom half of <a href=\"https://pagespeed.web.dev/\">PageSpeed Insights</a>. Lighthouse allows you to test pages either as a desktop or mobile device, <a href=\"https://github.com/GoogleChrome/lighthouse#why-is-the-performance-score-so-low-it-looks-fine-to-me\">emulating</a> the viewport, CPU, and connection speed. Lighthouse is an important tool to get a sense of a page’s performance, but it has limitations. It captures data from a single page load on a simulated device. There is often <a href=\"https://github.com/GoogleChrome/lighthouse?tab=readme-ov-file#why-does-the-performance-score-change-so-much\">variability</a> in the results, and it also doesn’t reflect the experience of real users which is what you’d get from Real User Monitoring (RUM), such as in the <a href=\"https://developer.chrome.com/docs/crux\">Chrome User Experience Report</a> (CrUX)—shown in the first section of PageSpeed Insights. Lighthouse provides simulated <a href=\"https://web.dev/articles/lab-and-field-data-differences#lab_data\">lab data</a> whereas CrUX provides real <a href=\"https://web.dev/articles/lab-and-field-data-differences#field_data\">field data</a>, which is more accurate. Nevertheless, field data can take a long time to collect and it can be difficult to do A/B tests at scale to capture the before/after performance impacts. That said, CrUX is definitely used to track the performance of new WordPress releases overall, as <a href=\"https://felix-arntz.me/\">Felix Arntz</a> shared the <a href=\"https://make.wordpress.org/core/2023/12/19/wordpress-performance-impact-on-core-web-vitals-in-2023/\">WordPress performance impact on Core Web Vitals in 2023</a>. Felix also wrote up how to <a href=\"https://make.wordpress.org/core/2024/04/05/conducting-wordpress-performance-research-in-the-field/\">conduct WordPress performance research in the field</a>.</p>\n\n\n\n<p>For the purposes of measuring the impact of performance optimizations here, lab data will be more practical because the results are available in real time, without having to wait for real users to provide field data. And I’m interested in relative performance impacts, not necessarily absolute ones. </p>\n\n\n\n<p>Running a Lighthouse audit before and after a Performance Lab feature plugin is active is a way to measure the impact of the optimization. However, given variability in the results, it can be difficult to be certain of the improvement. A Lighthouse audit may no longer flag an area for improvement, but the overall Lighthouse score may be unchanged. Indeed, even a Lighthouse score of 100 doesn’t mean the page performance is “perfect”. As <a href=\"https://discuss.httparchive.org/t/lighthouse-scores-as-predictors-of-page-level-crux-data/2232#:~:text=Of%20the%20pages%20that%20got%20a%2090%2B%20in%20Lighthouse%20in%20September%2C%2043%25%20didn%E2%80%99t%20meet%20one%20or%20more%20CWV%20threshold.\">found</a> by Brendan Kenny:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Of the pages that got a 90+ in Lighthouse in September [2021], 43% didn’t meet one or more CWV threshold.</p>\n</blockquote>\n\n\n\n<figure class=\"wp-block-image aligncenter size-medium wp-lightbox-container\"><img alt=\"Lighthouse performance score of 100\" class=\"wp-image-36044 not-transparent\" height=\"236\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/lighthouse-performance-score-100.png?resize=300%2C236&ssl=1\" width=\"300\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<p>A great score—even 100—doesn’t mean there still isn’t a lot of room for improvement!</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"largest-contentful-paint\">Largest Contentful Paint</h3>\n\n\n\n<p>One of the main components in <a href=\"https://developer.chrome.com/docs/lighthouse/performance/performance-scoring\">calculating</a> Lighthouse’s Performance score is the <a href=\"https://web.dev/articles/lcp\">Largest Contentful Paint</a> (LCP) metric of <a href=\"https://web.dev/articles/vitals#core-web-vitals\">Core Web Vitals</a> (CWV). LCP metric is <a href=\"https://developer.chrome.com/docs/lighthouse/performance/performance-scoring\">weighted</a> at 25% of the total Lighthouse score. As noted in how <a href=\"https://developer.chrome.com/docs/lighthouse/performance/performance-scoring\">how Lighthouse scores are determined</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>The metric value for LCP represents the time duration between the user initiating the page load and the page rendering its primary content. Based on real website data, top-performing sites render LCP in about 1,220ms, so that metric value is mapped to a score of 99.</p>\n</blockquote>\n\n\n\n<p>A 1.2 second LCP is 12 times slower than a 100 ms LCP, where 100 ms is a <a href=\"https://www.nngroup.com/articles/response-times-3-important-limits/#:~:text=0.1%20second%20is%20about%20the%20limit%20for%20having%20the%20user%20feel%20that%20the%20system%20is%20reacting%20instantaneously%2C%20meaning%20that%20no%20special%20feedback%20is%20necessary%20except%20to%20display%20the%20result.\">proposed</a> threshold for the user to perceive a reaction as being instantaneous. Nevertheless, a “good” LCP value is 2.5 seconds and below:</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img alt=\"LCP (Largest Contentful Paint). Graph showing Good, Needs Improvement, and Poor divided by 800 ms and 1800 ms thresholds.\" class=\"wp-image-35844\" height=\"192\" src=\"https://weston.ruter.net/wp-content/uploads/2025/08/good-lcp-values.svg\" style=\"width: 645px; height: auto;\" width=\"768\" /><figcaption class=\"wp-element-caption\">A good LCP value is 2.5 seconds or less. (Courtesy <a href=\"https://web.dev/articles/lcp\">web.dev</a>)</figcaption></figure>\n\n\n\n<p>The LCP metric can be further subdivided, with the first part represented by the <a href=\"https://web.dev/articles/ttfb\">Time To First Byte</a> (TTFB) metric. The longer it takes the server to respond with the generated HTML document, the more this will hurt the LCP metric. A slow TTFB means you are less likely to have a good LCP. If a site has a 1.5-second TTFB which needs improvement, then this leaves only 1 second for the LCP element to be rendered to get a good LCP metric. A good TTFB is considered to be about half that, at 800 ms and below:</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large is-resized\"><img alt=\"TTFB (Time To First Byte). Graph showing Good, Needs Improvement, and Poor divided by 800 ms and 1800 ms thresholds.\" class=\"wp-image-35845\" height=\"192\" src=\"https://weston.ruter.net/wp-content/uploads/2025/08/good-ttfb-values.svg\" style=\"width: 645px; height: auto;\" width=\"768\" /><figcaption class=\"wp-element-caption\">Good TTFB values are 0.8 seconds or less, and poor values are greater than 1.8 seconds. (Courtesy <a href=\"https://web.dev/articles/ttfb\">web.dev</a>)</figcaption></figure>\n\n\n\n<p>Unfortunately, in looking at HTTP Archive’s <a href=\"https://httparchive.org/reports/techreport/landing\">Tech Report</a>, as of July 2025, only <a href=\"https://httparchive.org/reports/techreport/tech?tech=ALL%2CWordPress&geo=ALL&rank=ALL&good-cwv-over-time=TTFB&client=desktop#comparison-good-cwvs\">31% of desktop clients</a> visiting WordPress sites experience a good TTFB, whereas it’s just <a href=\"https://httparchive.org/reports/techreport/tech?tech=ALL%2CWordPress&geo=ALL&rank=ALL&good-cwv-over-time=TTFB&client=mobile#comparison-good-cwvs\">24% for mobile clients</a>. This means it is all too likely that a 1.5-second TTFB is the norm for WordPress sites. This is in part what contributes to WordPress lagging behind most other CMSes for the LCP metric <a href=\"https://lookerstudio.google.com/s/k9MqdchHqw4\">on mobile</a> and <a href=\"https://lookerstudio.google.com/s/j4AmmUaraQM\">on desktop</a>, even about 10% below the average on all measured sites.</p>\n\n\n\n<p>In comparison with the other CWV metrics—<a href=\"https://web.dev/articles/cls\">Cumulative Layout Shift</a> (CLS) and <a href=\"https://web.dev/articles/inp\">Interaction to Next Paint</a> (INP)—WordPress is doing worse in terms of LCP, as evident in the metric passing rates from the following <a href=\"https://httparchive.org/reports/techreport/landing\">reports</a> on HTTP Archive:</p>\n\n\n\n<figure class=\"wp-block-table is-style-regular\"><table><thead><tr><th class=\"has-text-align-right\">Device</th><th class=\"has-text-align-center\">LCP</th><th class=\"has-text-align-center\">CLS</th><th class=\"has-text-align-center\">INP</th></tr></thead><tbody><tr><td class=\"has-text-align-right\"><a href=\"https://httparchive.org/reports/techreport/tech?client=mobile&tech=WordPress&geo=ALL&rank=ALL&page=1#good-cwvs\">Mobile</a></td><td class=\"has-text-align-center\">53%</td><td class=\"has-text-align-center\">83%</td><td class=\"has-text-align-center\">86%</td></tr><tr><td class=\"has-text-align-right\"><a href=\"https://httparchive.org/reports/techreport/tech?client=desktop&tech=WordPress&geo=ALL&rank=ALL&page=1#good-cwvs\">Desktop</a></td><td class=\"has-text-align-center\">64%</td><td class=\"has-text-align-center\">71%</td><td class=\"has-text-align-center\">98%</td></tr></tbody></table></figure>\n\n\n\n<p>Therefore, improving LCP remains the most important focus for performance optimizations in WordPress. So in this post I’ll focus on the LCP impact for the plugins featured in Performance Lab and some other changes proposed for WordPress 6.9.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"benchmarking\">Benchmarking</h3>\n\n\n\n<p>Because the Lighthouse score is variable and a 100 score merely reflects a “good” LCP, evaluating the performance benefit of an optimization requires measuring the LCP metric itself. Due to the variability in the metric, it’s important to obtain the median value of the LCP over many measurements. By capturing the median LCP value before and after an optimization is applied, the relative impact on performance can be measured.</p>\n\n\n\n<p>The tool I use for benchmarking LCP is in the <a href=\"https://github.com/GoogleChromeLabs/wpp-research\">GoogleChromeLabs/wpp-research</a> repo, which my team developed when I was at Google. Specifically, I use the <code><a href=\"https://github.com/GoogleChromeLabs/wpp-research/tree/main/cli#benchmark-web-vitals\">benchmark-web-vitals</a></code> command which includes the ability to emulate mobile and desktop devices, network connections, and CPU speeds.</p>\n\n\n\n<p>Here’s an example command I use to benchmark two URLs emulating a mobile device on a Fast 4G connection, and compare their results:</p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs language-javascript\">npm run research -- benchmark-web-vitals \\\n --url=<span class=\"hljs-string\">\"http://localhost/?enable_plugins=none\"</span> \\\n --url=<span class=\"hljs-string\">\"http://localhost/?enable_plugins=foo\"</span> \\\n --number=<span class=\"hljs-number\">50</span> \\\n --network-conditions=<span class=\"hljs-string\">\"Fast 4G\"</span> \\\n --emulate-device=<span class=\"hljs-string\">\"Moto G4\"</span> \\\n --diff \\\n --output=md</code></span></pre>\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\">Helper mu-plugin to override active plugins via query vars\n<p>I threw this together to help me with benchmarking so that I didn’t have to manually activate/deactivate plugins constantly.</p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs language-php\"><span class=\"hljs-meta\"><?php</span>\n<span class=\"hljs-comment\">/**\n * Plugin Name: Active Plugins Override\n */</span>\n\n<span class=\"hljs-keyword\">namespace</span> <span class=\"hljs-title\">ActivePluginsOverride</span>;\n\n<span class=\"hljs-function\"><span class=\"hljs-keyword\">function</span> <span class=\"hljs-title\">get_always_active_plugins</span><span class=\"hljs-params\">()</span>: <span class=\"hljs-title\">array</span> </span>{\n <span class=\"hljs-keyword\">return</span> <span class=\"hljs-keyword\">array</span>(\n <span class=\"hljs-string\">\'user-switching/user-switching.php\'</span>\n );\n}\n\nadd_filter(\n <span class=\"hljs-string\">\'option_active_plugins\'</span>,\n <span class=\"hljs-keyword\">static</span> <span class=\"hljs-function\"><span class=\"hljs-keyword\">function</span> <span class=\"hljs-params\">( $plugins )</span> </span>{\n <span class=\"hljs-keyword\">return</span> array_unique( array_merge( $plugins, get_always_active_plugins() ) );\n },\n <span class=\"hljs-number\">100</span>\n);\n\n<span class=\"hljs-keyword\">if</span> ( <span class=\"hljs-keyword\">isset</span>( $_GET[<span class=\"hljs-string\">\'disable_all_plugins\'</span>] ) || ( <span class=\"hljs-keyword\">isset</span>( $_GET[<span class=\"hljs-string\">\'enable_plugins\'</span>] ) && $_GET[<span class=\"hljs-string\">\'enable_plugins\'</span>] === <span class=\"hljs-string\">\'none\'</span> ) ) {\n add_filter( <span class=\"hljs-string\">\'option_active_plugins\'</span>, <span class=\"hljs-string\">\'__return_empty_array\'</span> );\n}\n\n<span class=\"hljs-keyword\">if</span> ( <span class=\"hljs-keyword\">isset</span>( $_GET[<span class=\"hljs-string\">\'disable_plugins\'</span>] ) ) {\n <span class=\"hljs-keyword\">if</span> ( is_array( $_GET[<span class=\"hljs-string\">\'disable_plugins\'</span>] ) ) {\n $disable_plugins = $_GET[<span class=\"hljs-string\">\'disable_plugins\'</span>];\n } <span class=\"hljs-keyword\">else</span> {\n $disable_plugins = explode( <span class=\"hljs-string\">\',\'</span>, $_GET[<span class=\"hljs-string\">\'disable_plugins\'</span>] );\n }\n\n add_filter(\n <span class=\"hljs-string\">\'option_active_plugins\'</span>,\n <span class=\"hljs-function\"><span class=\"hljs-keyword\">function</span> <span class=\"hljs-params\">( $active_plugins )</span> <span class=\"hljs-title\">use</span> <span class=\"hljs-params\">( $disable_plugins )</span> </span>{\n <span class=\"hljs-keyword\">return</span> array_merge(\n array_filter(\n $active_plugins,\n <span class=\"hljs-function\"><span class=\"hljs-keyword\">function</span> <span class=\"hljs-params\">( $active_plugin )</span> <span class=\"hljs-title\">use</span> <span class=\"hljs-params\">( $disable_plugins )</span> </span>{\n $slug = strtok( $active_plugin, <span class=\"hljs-string\">\'/\'</span> );\n <span class=\"hljs-keyword\">return</span> ! in_array( $slug, $disable_plugins );\n }\n ),\n get_always_active_plugins()\n );\n }\n );\n}\n\n<span class=\"hljs-keyword\">if</span> ( <span class=\"hljs-keyword\">isset</span>( $_GET[<span class=\"hljs-string\">\'enable_plugins\'</span>] ) ) {\n <span class=\"hljs-keyword\">if</span> ( is_array( $_GET[<span class=\"hljs-string\">\'enable_plugins\'</span>] ) ) {\n $enable_plugins = $_GET[<span class=\"hljs-string\">\'enable_plugins\'</span>];\n } <span class=\"hljs-keyword\">else</span> {\n $enable_plugins = explode( <span class=\"hljs-string\">\',\'</span>, $_GET[<span class=\"hljs-string\">\'enable_plugins\'</span>] );\n }\n\n <span class=\"hljs-keyword\">if</span> ( count( array_intersect( $enable_plugins, <span class=\"hljs-keyword\">array</span>( <span class=\"hljs-string\">\'embed-optimizer\'</span>, <span class=\"hljs-string\">\'image-prioritizer\'</span> ) ) ) > <span class=\"hljs-number\">0</span> ) {\n $enable_plugins[] = <span class=\"hljs-string\">\'optimization-detective\'</span>;\n $enable_plugins[] = <span class=\"hljs-string\">\'od-admin-ui\'</span>;\n }\n\n add_filter(\n <span class=\"hljs-string\">\'option_active_plugins\'</span>,\n <span class=\"hljs-function\"><span class=\"hljs-keyword\">function</span> <span class=\"hljs-params\">( $active_plugins )</span> <span class=\"hljs-title\">use</span> <span class=\"hljs-params\">( $enable_plugins )</span> </span>{\n <span class=\"hljs-keyword\">return</span> array_filter(\n $active_plugins,\n <span class=\"hljs-function\"><span class=\"hljs-keyword\">function</span> <span class=\"hljs-params\">( $active_plugin )</span> <span class=\"hljs-title\">use</span> <span class=\"hljs-params\">( $enable_plugins )</span> </span>{\n $slug = strtok( $active_plugin, <span class=\"hljs-string\">\'/\'</span> );\n <span class=\"hljs-keyword\">return</span> in_array( $slug, $enable_plugins );\n }\n );\n }\n );\n}</code></span></pre></details>\n\n\n\n<p>This results in a table like the following, showing the median metrics for the number of requests to both URLs:</p>\n\n\n\n<figure class=\"wp-block-table benchmark-web-vitals\"><table><thead><tr><th>Metric</th><th>Before</th><th>After</th><th>Diff (ms)</th><th>Diff (%)</th></tr></thead><tbody><tr><td>FCP</td><td>436.1</td><td>438.6</td><td>+2.5</td><td>+0.6%</td></tr><tr><td>LCP</td><td>915.3</td><td>690.9</td><td>-224.4</td><td>-24.5%</td></tr><tr><td>TTFB</td><td>50.8</td><td>50.6</td><td>-0.2</td><td>-0.3%</td></tr><tr><td>LCP-TTFB</td><td>865.6</td><td>638.3</td><td>-227.3</td><td>-26.3%</td></tr></tbody></table></figure>\n\n\n\n<p>In this example, the LCP improved by ~25% by enabling the “foo” plugin, which is exactly the kind of performance improvement we’re looking for on the Core Performance Team. Note this “LCP-TTFB” metric is simply the LCP metric minus the TTFB metric; this allows for measuring the client-side contributions to LCP by discounting any server-side variability in generating the response. The LCP-TTFB metric is important considering the lack of page caching on a local environment, and that certain optimizations may increase TTFB when page caching is not involved. For WordPress to scale, it’s important to have some <a href=\"https://developer.wordpress.org/advanced-administration/performance/cache/\">page caching layer</a> in place.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"analyzing-optimization-impact-on-lcp\">Analyzing Optimization Impact on LCP</h2>\n\n\n\n<p>I’m going to analyze the impact of the following feature plugins featured in Performance Lab:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://weston.ruter.net/category/wordpress/feed/#image-placeholders\">Image Placeholders</a></li>\n\n\n\n<li><a href=\"https://weston.ruter.net/category/wordpress/feed/#modern-image-formats\">Modern Image Formats</a></li>\n\n\n\n<li><a href=\"https://weston.ruter.net/category/wordpress/feed/#enhanced-responsive-images\">Enhanced Responsive Images</a></li>\n\n\n\n<li><a href=\"https://weston.ruter.net/category/wordpress/feed/#image-prioritizer\">Image Prioritizer</a></li>\n\n\n\n<li><a href=\"https://weston.ruter.net/category/wordpress/feed/#speculative-loading\">Speculative Loading</a></li>\n\n\n\n<li id=\"view-transitions\"><a href=\"https://weston.ruter.net/category/wordpress/feed/#view-transitions\">View Transitions</a></li>\n</ul>\n\n\n\n<p>I’m not covering <a href=\"https://wordpress.org/plugins/performant-translations/\">Performant Translations</a> since it was mostly <a href=\"https://make.wordpress.org/core/2023/11/08/merging-performant-translations-into-core/\">merged</a> into core as of 6.5. I’m also not covering <a href=\"https://wordpress.org/plugins/embed-optimizer/\">Embed Optimizer</a> since it primarily helps with <abbr title=\"Interaction to Next Paint\">INP</abbr> by lazy-loading and <abbr title=\"Cumulative Layout Shfit\">CLS</abbr> by reserving space for resizing embeds; the LCP improvement is difficult to measure for embeds that appear in the initial viewport given their cross-origin nature. Lastly, I’m not covering <a href=\"https://wordpress.org/plugins/web-worker-offloading/\">Web Worker Offloading</a> since it is quite experimental and it is only related to <abbr title=\"Interaction to Next Paint\">INP</abbr>. However, I am going to cover enhancements beyond Performance Lab being targeted for WordPress 6.9:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://weston.ruter.net/category/wordpress/feed/#nocache-bfcache\">Instant Back/Forward</a> (actually, brand new to Performance Lab)</li>\n\n\n\n<li><a href=\"https://weston.ruter.net/category/wordpress/feed/#script-module-deprioritization\">Script Module Deprioritization</a></li>\n\n\n\n<li><a href=\"https://weston.ruter.net/category/wordpress/feed/#minified-css-inlining\">Minified CSS Inlining</a></li>\n</ul>\n\n\n\n<p>The first four Performance Lab feature plugins are all related to images. In focusing on improving the LCP metric, this makes sense because images are the LCP element 73.3% of the time on mobile and 83.3% of the time on desktop, <a href=\"https://almanac.httparchive.org/en/2024/performance#lcp-content-types\">according</a> to Web Almanac 2024:</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large wp-lightbox-container\"><img alt=\"Bar chart showing the top LCP content types for desktop and mobile in 2024. For desktop, 83.3% of pages have images as the LCP content type, while 73.3% of mobile pages have images as their LCP content. Text accounts for 16.3% of LCP content on desktop and 26.3% on mobile. Inline images are rare, making up 0.3% of LCP content on desktop and 0.4% on mobile.\" class=\"wp-image-36050 not-transparent\" height=\"433\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/largest-contentful-paint-top-content-types.png?resize=700%2C433&ssl=1\" width=\"700\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">Top three LCP content types segmented by device.</figcaption></figure>\n\n\n\n<div class=\"wp-block-spacer\" style=\"height: 100px;\"></div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"image-placeholders\">Image Placeholders</h3>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-plugin-directory wp-block-embed-plugin-directory\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/plugins/dominant-color-images/\">Image Placeholders</a></blockquote>\n</div></figure>\n\n\n\n<p>The <a href=\"https://wordpress.org/plugins/dominant-color-images/\">Image Placeholders</a> plugin, originally called “Dominant Color Images”, adds a non-transparent image’s dominant color as the background color. This improves the perceived page loading experience by showing <em>something</em> sooner, rather than just a blank spot on the page.</p>\n\n\n\n<p>Instead of this:</p>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-36047 not-transparent\" height=\"381\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/dominan-color-images-before.png?resize=700%2C381&ssl=1\" width=\"700\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<p>With the plugin active (and the media regenerated), the following is the result:</p>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-36048 not-transparent\" height=\"381\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/dominan-color-images-after.png?resize=700%2C381&ssl=1\" width=\"700\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<p>The visual impact that this plugin has on the loading of the page is that there is a brown rectangle serving as a placeholder for where the user can expect an image to load.</p>\n\n\n\n<p>However, when benchmarking the web vitals, there is <em>no improvement</em> in LCP. In fact, there even appears to be a slight regression:</p>\n\n\n\n<figure class=\"wp-block-table benchmark-web-vitals\"><table><thead><tr><th></th><th>Before</th><th>After</th><th>Diff (ms)</th><th>Diff (%)</th></tr></thead><tbody><tr><td>FCP</td><td>437.2</td><td>439.5</td><td>+2.3</td><td>+0.5%</td></tr><tr><td>LCP</td><td>610.8</td><td>613.5</td><td>+2.7</td><td><strong>+0.4%</strong></td></tr><tr><td>TTFB</td><td>44.2</td><td>44.0</td><td>-0.2</td><td>-0.5%</td></tr><tr><td>LCP-TTFB</td><td>566.3</td><td>568.1</td><td>+1.8</td><td>+0.3%</td></tr></tbody></table><figcaption class=\"wp-element-caption\">Benchmark results for 250 requests each, before and after, emulating Moto G4 over Fast 4G connection.</figcaption></figure>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\">Benchmark command<pre class=\"wp-block-code\"><span><code class=\"hljs language-javascript\">npm run research -- benchmark-web-vitals \\\n --url=<span class=\"hljs-string\">\"https://wcus-perf-talk-demo.local/2025/07/30/bison-featured-image/?enable_plugins=none\"</span> \\\n --url=<span class=\"hljs-string\">\"https://wcus-perf-talk-demo.local/2025/07/30/bison-featured-image/?enable_plugins=dominant-color-images\"</span> \\\n --number=<span class=\"hljs-number\">250</span> \\\n --network-conditions=<span class=\"hljs-string\">\"Fast 4G\"</span> \\\n --emulate-device=<span class=\"hljs-string\">\"Moto G4\"</span> \\\n --diff \\\n --output=md</code></span></pre></details>\n\n\n\n<p>Moreover, there is <strong>no difference</strong> in the Lighthouse performance score which is already maxed out at 100 (but again, this doesn’t mean perfection). Nevertheless, just because there is no improvement on the raw performance metric, this doesn’t mean there isn’t value in doing it. User-perceived performance is also important, as long as it doesn’t negatively impact LCP (which should hopefully not conflict). We’ll revisit this later with <a href=\"https://weston.ruter.net/category/wordpress/feed/#view-transitions\">View Transitions</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\" style=\"height: 100px;\"></div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"modern-image-formats\">Modern Image Formats</h3>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-plugin-directory wp-block-embed-plugin-directory\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/plugins/webp-uploads/\">Modern Image Formats</a></blockquote>\n</div></figure>\n\n\n\n<p>Modern image formats, like WebP and AVIF, are able to compress much higher compared to older formats like JPEG and PNG. For example, an image compressed with AVIF could be 50% smaller than a JPEG with similar visual quality. It stands to reason that if an image is smaller, then it will take less time to download, and the LCP metric will be improved since the image can render sooner. This also addresses a common audit you encounter in Lighthouse to <a href=\"https://developer.chrome.com/docs/lighthouse/performance/uses-webp-images\">serve images in next-gen formats</a>:</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img alt=\"Serve images in next-gen formats — Est savings of 46 KiB\n\nImage formats like WebP and AVIF often provide better compression than PNG or JPEG, which means faster downloads and less data consumption. Learn more about modern image formats. FCP LCP\n\nConsider using the Performance Lab plugin to automatically convert your uploaded JPEG images into WebP, wherever supported.\" class=\"has-border-color has-contrast-border-color wp-image-36137 not-transparent\" height=\"432\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/lighthouse-audit-serve-images-in-next-gen-formats-cropped.png?resize=700%2C432&ssl=1\" width=\"700\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<p>Note that the audit here estimates that the image in a modern image format would be 54% smaller for this image. (Note also the shameless plug for Performance Lab thanks to the <a href=\"https://github.com/GoogleChrome/lighthouse-stack-packs\">Stack Pack</a> for WordPress.)</p>\n\n\n\n<p>The <a href=\"https://wordpress.org/plugins/webp-uploads/\">Modern Image Formats</a> plugin (originally called “WebP Uploads”) addresses this audit’s complaint by converting uploaded images into AVIF or WebP, depending on which is available on your server. With the plugin active, the original <a href=\"https://en.wikipedia.org/wiki/File:American_bison_k5680-1.jpg\">Bison <img alt=\"🦬\" class=\"wp-smiley\" src=\"https://weston.ruter.net/wp-content/plugins/local-twemoji/images/emoji/72x72/1f9ac.png?ver=16-0-1\" style=\"height: 1em;\" /> image</a> uploaded as a JPEG is compressed from 356 KB down to 292 KB in AVIF format. This is ~18% smaller, not the hoped-for ~50% reduction in file size. Nevertheless, will this yield a 18% improvement in LCP? Here are the results of testing the same page as when testing Image Placeholders above, a post where the featured image is the LCP element:</p>\n\n\n\n<figure class=\"wp-block-table benchmark-web-vitals\"><table><thead><tr><th>Metric</th><th>Before</th><th>After</th><th>Diff (ms)</th><th>Diff (%)</th></tr></thead><tbody><tr><td>FCP</td><td>438.8</td><td>426.8</td><td>-12.1</td><td>-2.7%</td></tr><tr><td>LCP</td><td>613.8</td><td>599.2</td><td>-14.6</td><td><strong>-2.4%</strong></td></tr><tr><td>TTFB</td><td>47.8</td><td>49.2</td><td>+1.4</td><td>+2.8%</td></tr><tr><td>LCP-TTFB</td><td>565.1</td><td>550.6</td><td>-14.5</td><td>-2.6%</td></tr></tbody></table><figcaption class=\"wp-element-caption\">Benchmark results for 50 requests each, before and after, emulating Moto G4 over Fast 4G connection.</figcaption></figure>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\">Benchmark command<pre class=\"wp-block-code\"><span><code class=\"hljs language-javascript\">npm run research -- benchmark-web-vitals \\\n --url=<span class=\"hljs-string\">\"https://wcus-perf-talk-demo.local/2025/07/30/bison-featured-image/?enable_plugins=none\"</span> \\\n --url=<span class=\"hljs-string\">\"https://wcus-perf-talk-demo.local/2025/07/30/bison-featured-image/?enable_plugins=webp-uploads\"</span> \\\n --number=<span class=\"hljs-number\">50</span> \\\n --network-conditions=<span class=\"hljs-string\">\"Fast 4G\"</span> \\\n --emulate-device=<span class=\"hljs-string\">\"Moto G4\"</span> \\\n --diff \\\n --output=md</code></span></pre></details>\n\n\n\n<p>So while the image file size was reduced ~20%, the LCP improvement here was only ~2%. </p>\n\n\n\n<p>Brendan Kenny’s article on <a href=\"https://web.dev/blog/common-misconceptions-lcp#lcp_sub-part_breakdown\">Common Misconceptions About How to Optimize LCP</a> shows that among the LCP sub-parts, the TTFB and “image load delay” contribute much more to the overall time compared with actually downloading the image resource. (Also described in <a href=\"https://almanac.httparchive.org/en/2024/performance#lcp-sub-parts\">Web Almanac</a>.) <a href=\"https://remkusdevries.com/\">Remkus de Vries</a> has likewise emphasized that we should <a href=\"https://remkusdevries.com/stop-obsessing-over-image-optimization/\">Stop Obsessing Over Image Optimization</a>. We absolutely shouldn’t be serving 10 MB images to visitors, but there are diminishing returns for optimizing LCP with each percentage reduction in an image’s file size. There are far more impactful ways to improve LCP than to use the most optimal image compression.</p>\n\n\n\n<p><em>Thanks to <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> for championing support for modern image formats both in this plugin and in core!</em></p>\n\n\n\n<div class=\"wp-block-spacer\" style=\"height: 100px;\"></div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"enhanced-responsive-images\">Enhanced Responsive Images</h3>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-plugin-directory wp-block-embed-plugin-directory\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/plugins/auto-sizes/\">Enhanced Responsive Images</a></blockquote>\n</div></figure>\n\n\n\n<p>The <a href=\"https://wordpress.org/plugins/auto-sizes/\">Enhanced Responsive Images</a> plugin was originally developed as a way to automatically add <code>sizes=auto</code> for images with <code>loading=lazy</code>. This <a href=\"https://github.com/whatwg/html/pull/8008\">new part</a> of the HTML spec lets the browser compute the responsive sizes because lazy-loaded images are loaded after the page has been laid out. This enhancement <a href=\"https://make.wordpress.org/core/2024/10/18/auto-sizes-for-lazy-loaded-images-in-wordpress-6-7/\">landed</a> in WordPress 6.7. Since then, the scope of the plugin has changed to improve the calculation of the responsive <code>sizes</code> attribute for images which are not lazy-loaded.</p>\n\n\n\n<p>By default, WordPress uses the same formula for constructing the default <code>sizes</code> attribute for all images. For example, if an image is 1024 pixels wide, then the <code>sizes</code> attribute is set to:</p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs language-plaintext\">(max-width: 1024px) 100vw, 1024px</code></span></pre>\n\n\n<p>This is problematic, however, because if the image takes up half the width of the screen, then the browser will select the image URL from the <code>srcset</code> attribute for the size corresponding to the width of the viewport, not the width of the actual <code>IMG</code> element. This is often fine on mobile when images are more often taking up the full page width, but on desktop viewports it means a much larger image will be downloaded than is appropriate for the container size. For example, consider these images in a Columns block (sourced from Wikipedia, as linked):</p>\n\n\n\n<div class=\"wp-block-columns is-not-stacked-on-mobile is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><a href=\"https://en.wikipedia.org/wiki/File:American_bison_k5680-1.jpg\"><img alt=\"A Bison standing among grasses looking toward the camera.\" class=\"wp-image-34617 not-transparent\" height=\"457\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/05/American_bison_k5680-1.jpg?resize=700%2C457&ssl=1\" width=\"700\" /></a></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><a href=\"https://commons.wikimedia.org/wiki/File:Bison_bison_Wichita_Mountain_Oklahoma.jpg\"><img alt=\"Bison bison at the Wichita Mountain Wildlife Refuge in Oklahoma.\" class=\"wp-image-36065 not-transparent\" height=\"507\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/Bison_bison_Wichita_Mountain_Oklahoma.jpg?resize=700%2C507&ssl=1\" width=\"700\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://commons.wikimedia.org/wiki/File:The_last_of_the_Canadian_buffaloes_Photo_No_580_(HS85-10-13487).jpg\"><img alt=\"The last of the Canadian buffaloes.\" class=\"wp-image-36066 not-transparent\" height=\"483\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/The_last_of_the_Canadian_buffaloes_Photo_No_580_HS85-10-13487.jpg?resize=700%2C483&ssl=1\" width=\"700\" /></a></figure>\n</div>\n</div>\n\n\n\n<p>These images were all resized to be 1024 pixels wide, and so using the default WordPress scheme, they all have the same <code>sizes</code> attribute (as shown above), in spite of the fact that the first <code>IMG</code> element is twice the width of the second and third, and 1024px itself is about double the entire 645px width of the root Columns block on desktop. </p>\n\n\n\n<p>In Lighthouse, the <a href=\"https://developer.chrome.com/docs/lighthouse/performance/uses-responsive-images\">properly size images</a> audit correctly identifies these images as having inaccurate <code>sizes</code>:</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img alt=\"Properly size images — Est savings of 226 KiB\n\nServe images that are appropriately-sized to save cellular data and improve load time. Learn how to size images.\n\nUpload images directly through the media library to ensure that the required image sizes are available, and then insert them from the media library or use the image widget to ensure the optimal image sizes are used (including those for the responsive breakpoints). Avoid using Full Size images unless the dimensions are adequate for their usage.\n\" class=\"has-border-color has-accent-6-border-color wp-image-36138 not-transparent\" height=\"700\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/lighthouse-audit-properly-size-images-full-cropped.png?resize=625%2C700&ssl=1\" width=\"625\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<p>On my test page, this Columns block is at the beginning of the content, so none of the <code>IMG</code> tags are lazy-loaded and likewise none are eligible for auto-sizes. This is where the <em>enhanced</em> Enhanced Responsive Sizes plugin comes in. Now that auto-sizes was merged into core, the plugin’s scope has changed to improve the accuracy of the <code>sizes</code> attribute by using the structured layout information available in <a href=\"https://wordpress.org/documentation/article/block-themes/\">block themes</a> (which is not available in classic themes). With this plugin active, the width in the <code>sizes</code> attribute for the <code>IMG</code> in the first column reduces from 1024px down to 429px:</p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs language-plaintext\">(max-width: 429px) 100vw, 429px</code></span></pre>\n\n\n<p>And the two smaller <code>IMG</code> tags in the second narrower column get reduced from 1024px down to 134px:</p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs language-plaintext\">(max-width: 134px) 100vw, 134px</code></span></pre>\n\n\n<p>Here is the performance impact when benchmarking the change:</p>\n\n\n\n<figure class=\"wp-block-table benchmark-web-vitals\"><table><thead><tr><th>Metric</th><th>Before</th><th>After</th><th>Diff (ms)</th><th>Diff (%)</th></tr></thead><tbody><tr><td>FCP</td><td>436.1</td><td>438.6</td><td>+2.5</td><td>+0.6%</td></tr><tr><td>LCP</td><td>915.3</td><td>690.9</td><td>-224.4</td><td><strong>-24.5%</strong></td></tr><tr><td>TTFB</td><td>50.8</td><td>50.6</td><td>-0.2</td><td>-0.3%</td></tr><tr><td>LCP-TTFB</td><td>865.6</td><td>638.3</td><td>-227.3</td><td>-26.3%</td></tr></tbody></table><figcaption class=\"wp-element-caption\">Benchmark results for 50 requests each, before and after, emulating Moto G4 over Fast 4G connection.</figcaption></figure>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\">Benchmark command<pre class=\"wp-block-code\"><span><code class=\"hljs language-javascript\">npm run research -- benchmark-web-vitals \\\n --url=<span class=\"hljs-string\">\"https://wcus-perf-talk-demo.local/2025/07/31/bison-two-columns/?enable_plugins=none\"</span> \\\n --url=<span class=\"hljs-string\">\"https://wcus-perf-talk-demo.local/2025/07/31/bison-two-columns/?enable_plugins=auto-sizes\"</span> \\\n --number=<span class=\"hljs-number\">50</span> \\\n --network-conditions=<span class=\"hljs-string\">\"Fast 4G\"</span> \\\n --emulate-device=<span class=\"hljs-string\">\"Moto G4\"</span> \\\n --diff \\\n --output=md</code></span></pre></details>\n\n\n\n<p>This has a dramatic <strong>~25% reduction in LCP!</strong></p>\n\n\n\n<p>This also has an improvement in the Lighthouse score for this example page, whereas I did not find an improvement when testing the previous plugins.</p>\n\n\n\n<div class=\"wp-block-columns is-not-stacked-on-mobile is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-large has-custom-border wp-lightbox-container\"><img alt=\"Lighthouse performance score 96 with an LCP of 2.7 seconds.\" class=\"has-border-color has-accent-6-border-color wp-image-36070 not-transparent\" height=\"473\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/lighthouse-score-before-auto-sizes.png?resize=700%2C473&ssl=1\" width=\"700\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">Before</figcaption></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-large has-custom-border wp-lightbox-container\"><img alt=\"Lighthouse performance score 99 with an LCP of 2.0 seconds.\" class=\"has-border-color has-accent-6-border-color wp-image-36071 not-transparent\" height=\"473\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/lighthouse-score-after-auto-sizes.png?resize=700%2C473&ssl=1\" width=\"700\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">After</figcaption></figure>\n</div>\n</div>\n\n\n\n<p>The optimization also greatly improved the properly size images audit, before and after:</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large has-custom-border\"><img alt=\"⚠ Properly size images — Est savings of 225 KiB\" class=\"has-border-color has-accent-6-border-color wp-image-36073 not-transparent\" height=\"99\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/lighthouse-properly-size-images-audit-before-auto-sizes.png?resize=700%2C99&ssl=1\" width=\"700\" /></figure>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large has-custom-border\"><img alt=\"⚠ Properly size images — Est savings of 91 KiB\" class=\"has-border-color has-accent-6-border-color wp-image-36074 not-transparent\" height=\"99\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/lighthouse-properly-size-images-audit-after-auto-sizes.png?resize=700%2C99&ssl=1\" width=\"700\" /></figure>\n\n\n\n<p>Note that this audit is unlikely to ever pass completely unless you generate many more intermediate image sizes to better fit all possible dimensions for your responsive images. This is something that an image CDN could do for you, however. </p>\n\n\n\n<p>The effect of the more accurate <code>sizes</code> can be is evident in which intermediate image size files get downloaded:</p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th class=\"has-text-align-right\"></th><th class=\"has-text-align-center\">Before</th><th class=\"has-text-align-center\">After</th><th class=\"has-text-align-right\">Reduction</th></tr></thead><tbody><tr><td class=\"has-text-align-right\"><img alt=\"A Bison standing among grasses looking toward the camera.\" class=\"wp-image-34617 not-transparent\" height=\"33\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/05/American_bison_k5680-1-scaled.jpg?resize=50%2C33&ssl=1\" width=\"50\" /></td><td class=\"has-text-align-center\">2048×1336</td><td class=\"has-text-align-center\">1024×668</td><td class=\"has-text-align-right\">-75%</td></tr><tr><td class=\"has-text-align-right\"><img alt=\"Bison bison at the Wichita Mountain Wildlife Refuge in Oklahoma.\" class=\"wp-image-36065 not-transparent\" height=\"36\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/Bison_bison_Wichita_Mountain_Oklahoma-scaled.jpg?resize=50%2C36&ssl=1\" width=\"50\" /></td><td class=\"has-text-align-center\">2048×1483</td><td class=\"has-text-align-center\">300×217</td><td class=\"has-text-align-right\">-98%</td></tr><tr><td class=\"has-text-align-right\"><img alt=\"The last of the Canadian buffaloes.\" class=\"wp-image-36066 not-transparent\" height=\"35\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/The_last_of_the_Canadian_buffaloes_Photo_No_580_HS85-10-13487-scaled.jpg?resize=50%2C35&ssl=1\" width=\"50\" /></td><td class=\"has-text-align-center\">2048×1413</td><td class=\"has-text-align-center\">300×207</td><td class=\"has-text-align-right\">-98%</td></tr></tbody><tfoot><tr><td class=\"has-text-align-right\">Total:</td><td class=\"has-text-align-center\">8,667,136px</td><td class=\"has-text-align-center\">811,232px</td><td class=\"has-text-align-right\">-91%</td></tr></tfoot></table></figure>\n\n\n\n<p>In this test of images in a Columns block, what follows is the impact of Modern Image Formats with AVIF versus Enhanced Responsive Images with more accurate <code>sizes</code>, and then with them both active together:</p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Plugins</th><th class=\"has-text-align-right\">Transferred</th><th class=\"has-text-align-right\">Reduction</th></tr></thead><tbody><tr><td>None</td><td class=\"has-text-align-right\">1,595 kB</td><td class=\"has-text-align-right\">—</td></tr><tr><td>Modern Image Formats with AVIF</td><td class=\"has-text-align-right\">1,137 kB</td><td class=\"has-text-align-right\">29%</td></tr><tr><td>Enhanced Responsive Images</td><td class=\"has-text-align-right\">206 kB</td><td class=\"has-text-align-right\">87%</td></tr><tr><td>Both</td><td class=\"has-text-align-right\">175 kB</td><td class=\"has-text-align-right\">89%</td></tr></tbody></table></figure>\n\n\n\n<p>As is evident, the use of a more accurate <code>sizes</code> attribute has three times the reduction in bytes compared with using the AVIF image format (87% vs 29%)! Adding AVIF on top of the better <code>sizes</code> only yields an additional 2% reduction in transferred bytes in this example. It’s no wonder why Enhanced Responsive Images has a greater impact on LCP compared with Modern Image Formats!</p>\n\n\n\n<p><em>Props to <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> and <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> for <a href=\"https://github.com/WordPress/performance/pulls?q=is%3Apr+label%3A%22%5BPlugin%5D+Enhanced+Responsive+Images%22+is%3Amerged\">their work</a> on this! Joe also first <a href=\"https://joemcgill.net/2025/01/happy-10-yrs-for-default-sizes/\">proposed</a> the original <code>sizes</code> attribute.</em></p>\n\n\n\n<div class=\"wp-block-spacer\" style=\"height: 100px;\"></div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"image-prioritizer\">Image Prioritizer</h3>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-plugin-directory wp-block-embed-plugin-directory\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/plugins/image-prioritizer/\">Image Prioritizer</a></blockquote>\n</div></figure>\n\n\n\n<p>The last Performance Lab feature plugin which focuses on images is <a href=\"https://wordpress.org/plugins/image-prioritizer/\">Image Prioritizer</a>. As indicated by the name, the plugin optimizes image loading prioritization. For example, it boosts the priority of the detected LCP image with <code>fetchpriority=high</code> while also deprioritizing the loading of images outside the viewport with lazy-loading. This plugin depends on the <a href=\"https://wordpress.org/plugins/optimization-detective/\">Optimization Detective</a> plugin as its framework for the optimizations it applies. I gave a <a href=\"https://weston.ruter.net/2025/02/21/boosting-performance-with-optimization-detective/\">talk</a> at WordCamp Asia 2025 all about this plugin:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-weston-ruter wp-block-embed-weston-ruter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://weston.ruter.net/2025/02/21/boosting-performance-with-optimization-detective/\">Boosting Performance with Optimization Detective</a></blockquote>\n</div></figure>\n\n\n\n<p>In that talk, I cover Image Prioritizer in depth; the plugin description also has the <a href=\"https://wordpress.org/plugins/image-prioritizer/#:~:text=The%20current%20optimizations%20include%3A\">full list of optimizations</a>. But I’ll highlight here a couple of the most impactful optimizations which improve the LCP metric for images.</p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"responsive-image-prioritization\">Responsive Image Prioritization</h4>\n\n\n\n<p>Take for example this gallery of three images (again, from Wikipedia as linked):</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><a href=\"https://commons.wikimedia.org/wiki/File:Bison_with_its_young.jpg\"><img alt=\"\" class=\"wp-image-36117 not-transparent\" height=\"467\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/Bison_with_its_young-2560w.jpg?resize=700%2C467&ssl=1\" width=\"700\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://commons.wikimedia.org/wiki/File:Bison_bison_Wichita_Mountain_Oklahoma.jpg\"><img alt=\"Bison bison at the Wichita Mountain Wildlife Refuge in Oklahoma.\" class=\"wp-image-36065 not-transparent\" height=\"507\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/Bison_bison_Wichita_Mountain_Oklahoma.jpg?resize=700%2C507&ssl=1\" width=\"700\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><a href=\"https://en.wikipedia.org/wiki/File:American_bison_k5680-1.jpg\"><img alt=\"A Bison standing among grasses looking toward the camera.\" class=\"wp-image-34617 not-transparent\" height=\"457\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/05/American_bison_k5680-1.jpg?resize=700%2C457&ssl=1\" width=\"700\" /></a></figure>\n</figure>\n\n\n\n<p>This gallery is configured without the “Crop images to fit” setting enabled. On desktop, the second image is the largest image of the three, and so it is the LCP element. However, on mobile it’s actually the third image which is the largest (and the LCP element) since it appears on a row by itself:</p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-large has-custom-border wp-lightbox-container\"><img alt=\"\" class=\"has-border-color has-accent-6-border-color wp-image-36126 not-transparent\" height=\"455\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/gallery-block-with-lcp-element-on-desktop.png?resize=700%2C455&ssl=1\" width=\"700\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">Desktop layout</figcaption></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-large has-custom-border wp-lightbox-container\"><img alt=\"\" class=\"has-border-color has-accent-6-border-color wp-image-36127 not-transparent\" height=\"700\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/gallery-block-with-lcp-element-on-mobile.png?resize=394%2C700&ssl=1\" width=\"394\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">Mobile layout</figcaption></figure>\n</div>\n</div>\n\n\n\n<p>Nevertheless, WordPress core adds <code>fetchpriority=high</code> to the <em>first</em> <code>IMG</code>, of the bison and calf, even though it is never the LCP element. WordPress adds the <code>fetchpriority</code> attribute to the first sufficiently-large image it finds on the page, making a best guess as to which is the LCP element. But even when core does add the attribute to the right image on a desktop viewport, it could be wrong for mobile, and vice versa. In <a href=\"https://github.com/GoogleChromeLabs/wpp-research/pull/73\">my research</a>, when WordPress core correctly adds the <code>fetchpriority</code> attribute to the LCP <code>IMG</code> element on desktop or mobile, I found that 37% of those pages have a different <code>IMG</code> which is the LCP element for the other viewport. This means it’s only safe to use the <code>fetchpriority</code> attribute on <code>IMG</code> tags when they are the LCP element on <em>both</em> desktop and mobile (and tablet too). But WordPress doesn’t know how the page is laid out (although this is starting to change in the case of block themes, as with Enhanced Responsive Images above). This is where Optimization Detective comes in.</p>\n\n\n\n<p>The Optimization Detective plugin provides a framework to capture measurements from site visitors about what elements are displayed on a page across a variety of device form factors and responsive breakpoints (e.g. desktop, tablet, and mobile). These measurements are stored in “URL Metrics” (a custom post type) which can then be used by extensions, like Image Prioritizer, to apply more accurate optimizations. In this case, Image Prioritizer:</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Removes <code>fetchpriority=high</code> from the first <code>IMG</code> in the Gallery.</li>\n\n\n\n<li>Adds responsive preload <code>LINK</code> tags for the actual LCP element based on media queries.</li>\n</ol>\n\n\n\n<p>For example, the following <code>LINK</code> tags are added to the page:</p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs language-xml shcb-code-table\"><span class=\"shcb-loc\"><span><span class=\"hljs-tag\"><<span class=\"hljs-name\">link</span></span>\n</span></span><span class=\"shcb-loc\"><span><span class=\"hljs-tag\"> <span class=\"hljs-attr\">rel</span>=<span class=\"hljs-string\">\"preload\"</span> <span class=\"hljs-attr\">as</span>=<span class=\"hljs-string\">\"image\"</span> <span class=\"hljs-attr\">fetchpriority</span>=<span class=\"hljs-string\">\"high\"</span></span>\n</span></span><span><span class=\"hljs-tag\"> <span class=\"hljs-attr\">href</span>=<span class=\"hljs-string\">\".../bison-2.jpg\"</span></span>\n</span><span class=\"shcb-loc\"><span><span class=\"hljs-tag\"> <span class=\"hljs-attr\">imagesrcset</span>=<span class=\"hljs-string\">\"...\"</span> <span class=\"hljs-attr\">imagesizes</span>=<span class=\"hljs-string\">\"...\"</span></span>\n</span></span><span><span class=\"hljs-tag\"> <span class=\"hljs-attr\">media</span>=<span class=\"hljs-string\">\"screen and (width <= 480px)\"</span></span>\n</span><span class=\"shcb-loc\"><span><span class=\"hljs-tag\">></span>\n</span></span><span class=\"shcb-loc\"><span><span class=\"hljs-tag\"><<span class=\"hljs-name\">link</span></span>\n</span></span><span class=\"shcb-loc\"><span><span class=\"hljs-tag\"> <span class=\"hljs-attr\">rel</span>=<span class=\"hljs-string\">\"preload\"</span> <span class=\"hljs-attr\">as</span>=<span class=\"hljs-string\">\"image\"</span> <span class=\"hljs-attr\">fetchpriority</span>=<span class=\"hljs-string\">\"high\"</span></span>\n</span></span><span><span class=\"hljs-tag\"> <span class=\"hljs-attr\">href</span>=<span class=\"hljs-string\">\".../bison-3.jpg\"</span></span>\n</span><span class=\"shcb-loc\"><span><span class=\"hljs-tag\"> <span class=\"hljs-attr\">imagesrcset</span>=<span class=\"hljs-string\">\"...\"</span> <span class=\"hljs-attr\">imagesizes</span>=<span class=\"hljs-string\">\"...\"</span></span>\n</span></span><span><span class=\"hljs-tag\"> <span class=\"hljs-attr\">media</span>=<span class=\"hljs-string\">\"screen and (782px < width)\"</span></span>\n</span><span class=\"shcb-loc\"><span><span class=\"hljs-tag\">></span>\n</span></span></code></span></pre>\n\n\n<p>Note how the first <code>LINK</code> preloads the second bison image on mobile, but the second <code>LINK</code> preloads the third bison image on desktop. Here is the performance impact for these changes on mobile:</p>\n\n\n\n<figure class=\"wp-block-table benchmark-web-vitals\"><table><thead><tr><th>Metric</th><th>Before</th><th>After</th><th>Diff (ms)</th><th>Diff (%)</th></tr></thead><tbody><tr><td>FCP</td><td>441.9</td><td>449.5</td><td>+7.7</td><td>+1.7%</td></tr><tr><td>LCP</td><td>984.1</td><td>713.2</td><td>-270.9</td><td><strong>-27.5%</strong></td></tr><tr><td>TTFB</td><td>49.4</td><td>53.5</td><td>+4.1</td><td>+8.3%</td></tr><tr><td>LCP-TTFB</td><td>935.1</td><td>659.5</td><td>-275.6</td><td>-29.5%</td></tr></tbody></table><figcaption class=\"wp-element-caption\">Benchmark results for 50 requests each, before and after, emulating Moto G4 over Fast 4G connection.</figcaption></figure>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\">Benchmark command<pre class=\"wp-block-code\"><span><code class=\"hljs language-javascript\">npm run research -- benchmark-web-vitals \\\n --url=<span class=\"hljs-string\">\"https://wcus-perf-talk-demo.local/2025/08/04/bison-gallery/?disable_all_plugins\"</span> \\\n --url=<span class=\"hljs-string\">\"https://wcus-perf-talk-demo.local/2025/08/04/bison-gallery/?enable_plugins=image-prioritizer\"</span> \\\n --number=<span class=\"hljs-number\">50</span> \\\n --network-conditions=<span class=\"hljs-string\">\"Fast 4G\"</span> \\\n --emulate-device=<span class=\"hljs-string\">\"Moto G4\"</span> \\\n --diff \\\n --output=md</code></span></pre></details>\n\n\n\n<p>This is the biggest LCP improvement I’ve yet shown, with a 27.5% reduction compared with the 24.5% improvement in Enhanced Responsive Images. This shows up as an improvement in the Lighthouse performance score, increasing from 95 to 99:</p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-large has-custom-border wp-lightbox-container\"><img alt=\"Lighthouse performance score 95 with 2.9 second LCP.\" class=\"has-border-color has-accent-6-border-color wp-image-36128 not-transparent\" height=\"462\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/lighthouse-gallery-block-without-image-prioritizer-on-mobile.png?resize=700%2C462&ssl=1\" width=\"700\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">Without Image Prioritizer</figcaption></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-large has-custom-border wp-lightbox-container\"><img alt=\"Lighthouse performance score 99 with 2.1 second LCP.\" class=\"has-border-color has-accent-6-border-color wp-image-36129 not-transparent\" height=\"462\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/lighthouse-gallery-block-with-image-prioritizer-on-mobile.png?resize=700%2C462&ssl=1\" width=\"700\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">With Image Prioritizer</figcaption></figure>\n</div>\n</div>\n\n\n\n<p>But what becomes truly impressive are the results on desktop:</p>\n\n\n\n<figure class=\"wp-block-table benchmark-web-vitals\"><table><thead><tr><th>Metric</th><th>Before</th><th>After</th><th>Diff (ms)</th><th>Diff (%)</th></tr></thead><tbody><tr><td>FCP</td><td>434.9</td><td>436.0</td><td>+1.2</td><td>+0.3%</td></tr><tr><td>LCP</td><td>1020.1</td><td>503.2</td><td>-517.0</td><td><strong>-50.7%</strong></td></tr><tr><td>TTFB</td><td>49.9</td><td>52.4</td><td>+2.6</td><td>+5.1%</td></tr><tr><td>LCP-TTFB</td><td>969.4</td><td>451.3</td><td>-518.2</td><td>-53.5%</td></tr></tbody></table></figure>\n\n\n\n<p>The LCP improvement here on desktop is almost double the improvement on mobile, at an over 50% reduction in LCP! In other words, the LCP metric is cut in half! This shows impressively in the Lighthouse performance score increasing from 93 to 100:</p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-large has-custom-border wp-lightbox-container\"><img alt=\"Lighthouse performance score 93 with 1.7 second LCP.\" class=\"has-border-color has-accent-6-border-color wp-image-36130 not-transparent\" height=\"462\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/lighthouse-gallery-block-without-image-prioritizer-on-desktop.png?resize=700%2C462&ssl=1\" width=\"700\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">Without Image Prioritizer</figcaption></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-large has-custom-border wp-lightbox-container\"><img alt=\"Lighthouse performance score 100 with 0.6 second LCP.\" class=\"has-border-color has-accent-6-border-color wp-image-36131 not-transparent\" height=\"462\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/lighthouse-gallery-block-with-image-prioritizer-on-desktop.png?resize=700%2C462&ssl=1\" width=\"700\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">With Image Prioritizer</figcaption></figure>\n</div>\n</div>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"background-image-prioritization\">Background Image Prioritization</h4>\n\n\n\n<p>Related to there being different LCP <code>IMG</code> elements on desktop versus mobile is that the LCP element’s image may not be an <code>IMG</code> at all, but rather a <code>DIV</code> (or some other element) with a CSS <code>background-image</code>. This is a very common way that imagery is added in page builders. Background images are also present in WordPress core, such as in some classic themes’ header images; background images are also on any WordPress site using the Cover block when using a fixed background or when adding a background image to a Group block. The prevalence of non-<code>IMG</code> LCP images is captured in this <a href=\"https://almanac.httparchive.org/en/2022/performance#lcp-content-types\">data presented</a> in Web Almanac 2022, showing that the <code>DIV</code> (presumably with a background image) is the LCP element ~26% of the time compared with an <code>IMG</code> at 42% of the time:</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large wp-lightbox-container\"><img alt=\"Bar chart showing IMG is the LCP element on 47% of desktop pages and 42% of mobile pages, DIV on 28% and 26% respectively, P on 6% and 9%, H1 on 3% and 5%, undetected on 3% and 3%, SECTION on 3% and 3%, H2 on 1% and 2%, A on 1% and 2%, SPAN on 1% and 1%, H3 on 0% and 1%, HEADER on 1% and 1%, LI on 1% and 1%, RS-SBG on 1% and 1%, TD on 1% and 1%, VIDEO on 0% and 0%, and finally H4 is the LCP element type on 0% of both desktop and mobile pages.\" class=\"wp-image-36141 not-transparent\" height=\"700\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/top-lcp-element-types.png?resize=598%2C700&ssl=1\" width=\"598\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">The percent of pages that have a given element as its LCP.</figcaption></figure>\n\n\n\n<p>The problem with the <code>background-image</code> style is that it is CSS: there is no way for core to attach a <code>fetchpriority=high</code> HTML attribute as can be done for LCP <code>IMG</code> candidates. Take the following page for example, where there is a parallax Cover block at the beginning of the content, followed by some paragraphs of text, and finally a Gallery block with five images in it. The black rectangle denotes the desktop viewport:</p>\n\n\n\n<figure class=\"wp-block-image alignwide size-large\"><img alt=\"Depicting a desktop viewport with a Cover block at the top of the page, followed by paragraphs of text, and a Gallery block at the bottom of the page outside of desktop viewport.\" class=\"wp-image-36152 not-transparent\" height=\"349\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/parallax-cover-as-lcp-with-gallery-outside-viewport-cropped.png?resize=700%2C349&ssl=1\" width=\"700\" /></figure>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">Cover image courtesy <a href=\"https://www.pexels.com/photo/brown-buffalo-on-green-grass-field-8148551/\">Gintare</a> K. on Pexels. Other previously-unused images courtesy Wikipedia: <a href=\"https://commons.wikimedia.org/wiki/File:American_Bison_AdF.jpg\">1</a>, <a href=\"https://commons.wikimedia.org/wiki/File:Waldbison_Bison_bison_athabascae_Tierpark_Hellabrunn-13.jpg\">2</a>, <a href=\"https://commons.wikimedia.org/wiki/File:Wood_bison_in_the_snow_(52815312269).jpg\">3</a>.</p>\n\n\n\n<p>The <code>DIV</code> in the Cover block with the CSS <code>background-image</code> is the LCP element. Nevertheless, WordPress core is adding <code>fetchpriority=high</code> to the first <code>IMG</code> in the Gallery block because it is the first sufficiently large image, just in terms of its <code>width</code> and <code>height</code> attributes. Additionally, WordPress core omits <code>loading=lazy</code> from the first three content images (the first three images in the Gallery), but they are not even visible on either the desktop or mobile viewports. The effect here is that the first three images of the Gallery are all loaded first <em>before</em> the all-important background image for the Cover block. Image Prioritizer fixes this by:</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Removing <code>fetchpriority=high</code> from the first <code>IMG</code> in the Gallery, since it is not the LCP element.</li>\n\n\n\n<li>Adding <code>loading=lazy</code> to the first three <code>IMG</code> tags in the Gallery, since none of them are visible in any initial viewport.</li>\n\n\n\n<li>Adding a preload <code>LINK</code> for the CSS <code>background-image</code> so that it is properly prioritized.</li>\n</ol>\n\n\n\n<p>The preload <code>LINK</code> looks like the following:</p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs language-xml\"><span class=\"hljs-tag\"><<span class=\"hljs-name\">link</span>\n <span class=\"hljs-attr\">rel</span>=<span class=\"hljs-string\">\"preload\"</span>\n <span class=\"hljs-attr\">as</span>=<span class=\"hljs-string\">\"image\"</span>\n <span class=\"hljs-attr\">fetchpriority</span>=<span class=\"hljs-string\">\"high\"</span>\n <span class=\"hljs-attr\">href</span>=<span class=\"hljs-string\">\".../bison.jpg\"</span>\n <span class=\"hljs-attr\">media</span>=<span class=\"hljs-string\">\"screen\"</span>\n></span></code></span></pre>\n\n\n<p>Unlike with the responsive image prioritization, the Cover block here is the LCP element for both desktop and mobile, so here there is only one <code>LINK</code> and the <code>media</code> attribute doesn’t need to add any viewport constraints.</p>\n\n\n\n<p>Here is the performance impact:</p>\n\n\n\n<figure class=\"wp-block-table benchmark-web-vitals\"><table><thead><tr><th>Metric</th><th>Before</th><th>After</th><th>Diff (ms)</th><th>Diff (%)</th></tr></thead><tbody><tr><td>FCP</td><td>436.5</td><td>433.9</td><td>-2.7</td><td>-0.6%</td></tr><tr><td>LCP</td><td>1042.4</td><td>579.8</td><td>-462.7</td><td><strong>-44.4%</strong></td></tr><tr><td>TTFB</td><td>49.0</td><td>53.1</td><td>+4.1</td><td>+8.4%</td></tr><tr><td>LCP-TTFB</td><td>994.6</td><td>526.9</td><td>-467.7</td><td>-47.0%</td></tr></tbody></table><figcaption class=\"wp-element-caption\">Benchmark results for 50 requests each, before and after, emulating Moto G4 over Fast 4G connection.</figcaption></figure>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\">Benchmark command<pre class=\"wp-block-code\"><span><code class=\"hljs language-javascript\">npm run research -- benchmark-web-vitals \\\n --url=https:<span class=\"hljs-comment\">//wcus-perf-talk-demo.local/2025/08/04/cover-block/?disable_all_plugins \\</span>\n --url=https:<span class=\"hljs-comment\">//wcus-perf-talk-demo.local/2025/08/04/cover-block/?enable_plugins=image-prioritizer \\</span>\n --number=<span class=\"hljs-number\">50</span> \\\n --network-conditions=<span class=\"hljs-string\">\"Fast 4G\"</span> \\\n --emulate-device=<span class=\"hljs-string\">\"Moto G4\"</span> \\\n --diff \\\n --output=md</code></span></pre></details>\n\n\n\n<p>This is the second-best improvement to LCP I’ve shown here in analyzing these plugins. The Lighthouse performance score is also improved from 92 to 99:</p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-large has-custom-border wp-lightbox-container\"><img alt=\"Lighthouse performance score of 92 with 3.3 second LCP\" class=\"has-border-color has-accent-6-border-color wp-image-36154 not-transparent\" height=\"468\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/lighthouse-score-cover-block-without-image-prioritizer.png?resize=700%2C468&ssl=1\" width=\"700\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">Before</figcaption></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-large has-custom-border wp-lightbox-container\"><img alt=\"Lighthouse performance score of 92 with 2.1 second LCP\" class=\"has-border-color has-accent-6-border-color wp-image-36155 not-transparent\" height=\"468\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/lighthouse-score-cover-block-with-image-prioritizer.png?resize=700%2C468&ssl=1\" width=\"700\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">After</figcaption></figure>\n</div>\n</div>\n\n\n\n<p>Surely nothing can improve LCP more than what was achieved here with the Image Prioritizer plugin, right? Read on.</p>\n\n\n\n<div class=\"wp-block-spacer\" style=\"height: 100px;\"></div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"speculative-loading\">Speculative Loading</h3>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-plugin-directory wp-block-embed-plugin-directory\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/plugins/speculation-rules/\">Speculative Loading</a></blockquote>\n</div></figure>\n\n\n\n<p>The <a href=\"https://wordpress.org/plugins/speculation-rules/\">Speculative Loading</a> plugin is the first discussed here not specifically focused on improving LCP for images, although they do benefit. This was a feature plugin actually to bring the <a href=\"https://developer.mozilla.org/en-US/docs/Web/API/Speculation_Rules_API\">Speculation Rules API</a> to WordPress core, which was <a href=\"https://make.wordpress.org/core/2025/03/06/speculative-loading-in-6-8/\">merged</a> in 6.8. This API allows pages to either:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Prefetch a link, reducing TTFB to zero.</li>\n\n\n\n<li>Prerender a link, potentially reducing LCP to zero.</li>\n</ul>\n\n\n\n<p>As such, Speculative Loading is somewhat cheating at performance because you can’t get any faster at loading something than to have it already loaded.</p>\n\n\n\n<p>The degree by which TTFB and LCP are improved is largely dependent on the “eagerness” of the speculation. There are three main eagerness values for when speculation starts:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Conservative: when you pointer-down on a link.</li>\n\n\n\n<li>Moderate: when you hover over a link (or <a href=\"https://issues.chromium.org/issues/372053392\">soon</a> on mobile when a link is in the viewport).</li>\n\n\n\n<li>Eager: right away without any user interaction. </li>\n</ul>\n\n\n\n<p>For the initial core merge, the default cautious configuration was to use prefetch with conservative eagerness. Conservative eagerness was to avoid unused speculations which can overly tax under-powered servers, and prefetching was to avoid potential compatibility issues with prerendering, such as with analytics or ads.</p>\n\n\n\n<p>Here’s the impact that the various configurations of Speculative Loading have on LCP:</p>\n\n\n\n<div class=\"wp-block-group is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-23441af8 wp-block-group-is-layout-flex block-visibility-hide-small-screen\" id=\"play-all-button-row\">\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><button class=\"wp-block-button__link has-text-align-center wp-element-button\" type=\"button\">Play All</button></div>\n</div>\n</div>\n\n\n\n<noscript>\n \n</noscript>\n\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\" id=\"speculative-loading-videos\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\"><strong>No Speculation</strong></p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-xx-large-font-size wp-elements-b5fdba613d5f54f529164d484d92f964\" style=\"color: #388e3c;\"><strong>2.17 s</strong></p>\n\n\n\n<figure class=\"wp-block-video aligncenter\"><video controls=\"controls\" height=\"1080\" poster=\"https://weston.ruter.net/wp-content/uploads/2025/08/speculative-loading-0-poster-source.png\" src=\"https://weston.ruter.net/wp-content/uploads/2025/08/speculative-loading-1-none-8s.mp4\" width=\"914\"></video><figcaption class=\"wp-element-caption\">(experience in 6.7)</figcaption></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\"><strong>Conservative Prefetch</strong></p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-xx-large-font-size wp-elements-4d5479e34dcbef7f8a0893f1cf0b6b4e\" style=\"color: #388e3c;\"><strong>2.12 s</strong></p>\n\n\n\n<figure class=\"wp-block-video aligncenter\"><video controls=\"controls\" height=\"1080\" poster=\"https://weston.ruter.net/wp-content/uploads/2025/08/speculative-loading-0-poster-source.png\" src=\"https://weston.ruter.net/wp-content/uploads/2025/08/speculative-loading-2-conservative-prefetch-8s.mp4\" width=\"914\"></video><figcaption class=\"wp-element-caption\">2.3% reduction in LCP<br />(default as of WP 6.8)</figcaption></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\"><strong>Moderate Prefetch</strong></p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-xx-large-font-size wp-elements-12afbcabcb1015bd3dd64bd0c56507e3\" style=\"color: #388e3c;\"><strong>1.04 s</strong></p>\n\n\n\n<figure class=\"wp-block-video aligncenter\"><video controls=\"controls\" height=\"1080\" poster=\"https://weston.ruter.net/wp-content/uploads/2025/08/speculative-loading-0-poster-source.png\" src=\"https://weston.ruter.net/wp-content/uploads/2025/08/speculative-loading-3-moderate-prefetch-8s.mp4\" width=\"914\"></video><figcaption class=\"wp-element-caption\">52.1%% reduction in LCP</figcaption></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\"><strong>Moderate Prerender</strong></p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-xx-large-font-size wp-elements-878b05b2c5f120b82213be7b98b2888a\" style=\"color: #388e3c;\"><strong>0.04 s</strong></p>\n\n\n\n<figure class=\"wp-block-video aligncenter\"><video controls=\"controls\" height=\"1080\" poster=\"https://weston.ruter.net/wp-content/uploads/2025/08/speculative-loading-0-poster-source.png\" src=\"https://weston.ruter.net/wp-content/uploads/2025/08/speculative-loading-4-moderate-prerender-8s.mp4\" width=\"914\"></video><figcaption class=\"wp-element-caption\">98.2% reduction in LCP</figcaption></figure>\n</div>\n</div>\n\n\n\n<p>Navigation with prerendering results in a practically instantaneous page load with a near zero LCP! In all these cases the LCP is still considered “good” at being less than 2.5 seconds, but just because something is good doesn’t mean it can’t be better!</p>\n\n\n\n<p>Note that the test page here adds a 1 second TTFB via <code>sleep(1)</code>. This reflects a fairly typical server response time considering that only a <a href=\"https://httparchive.org/reports/techreport/tech?tech=ALL%2CWordPress&geo=ALL&rank=ALL&good-cwv-over-time=TTFB#comparison-good-cwvs\">quarter</a> of WordPress sites have a good TTFB passing rate, which is 800 ms and faster.</p>\n\n\n\n<p><em>Props to <a href=\"https://felix-arntz.me/\">Felix Arntz</a> for spearheading this feature and landing it in core.</em></p>\n\n\n\n<div class=\"wp-block-spacer\" style=\"height: 100px;\"></div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"view-transitions\">View Transitions</h3>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-plugin-directory wp-block-embed-plugin-directory\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/plugins/view-transitions/\">View Transitions</a></blockquote>\n</div></figure>\n\n\n\n<p>As described in the previous example, page navigations with Speculative Loading can be nearly instant with prerendering. This is great, but it’s almost too good. The navigation can feel so instant as to be abrupt. There can also be a white flicker between the page loads. To help in part with having too much of a good thing, the newest plugin to be featured in Performance Lab is <a href=\"https://wordpress.org/plugins/view-transitions/\">View Transitions</a>. There is a new web platform feature for <a href=\"https://developer.chrome.com/docs/web-platform/view-transitions/cross-document\">cross-document view transitions for multi-page applications</a>, and this plugin brings these smooth page navigation animations to WordPress. With Speculative Loading and View Transitions, navigating around a regular multi-page WordPress site can feel as fluid as a single-page app (and without all the implementation complexity).</p>\n\n\n\n<p>Take a look at the impact on the user experience when navigating between the homepage and a blog post:</p>\n\n\n\n<div class=\"wp-block-columns is-not-stacked-on-mobile is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-video aligncenter\"><video controls=\"controls\" height=\"1080\" loop=\"loop\" poster=\"https://weston.ruter.net/wp-content/uploads/2025/08/view-transitions-poster.jpg\" src=\"https://weston.ruter.net/wp-content/uploads/2025/08/view-transitions-disabled-with-navigation-via-links.mp4\" width=\"756\"></video><figcaption class=\"wp-element-caption\">Without View Transitions</figcaption></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-video aligncenter\"><video controls=\"controls\" height=\"1080\" loop=\"loop\" poster=\"https://weston.ruter.net/wp-content/uploads/2025/08/view-transitions-poster.jpg\" src=\"https://weston.ruter.net/wp-content/uploads/2025/08/view-transitions-enabled-with-navigation-via-links.mp4\" width=\"756\"></video><figcaption class=\"wp-element-caption\">With View Transitions</figcaption></figure>\n</div>\n</div>\n\n\n\n<p>Note that these view transitions apply not only when navigating via links, but they also apply when navigating with the back/forward buttons in the browser:</p>\n\n\n\n<div class=\"wp-block-columns is-not-stacked-on-mobile is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-video aligncenter\"><video controls=\"controls\" height=\"1080\" loop=\"loop\" poster=\"https://weston.ruter.net/wp-content/uploads/2025/08/view-transitions-via-bfcache-poster.jpg\" src=\"https://weston.ruter.net/wp-content/uploads/2025/08/view-transitions-disabled-with-navigation-via-bfcache.mp4\" width=\"722\"></video><figcaption class=\"wp-element-caption\">Without View Transitions</figcaption></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-video aligncenter\"><video controls=\"controls\" height=\"1080\" loop=\"loop\" poster=\"https://weston.ruter.net/wp-content/uploads/2025/08/view-transitions-via-bfcache-poster.jpg\" src=\"https://weston.ruter.net/wp-content/uploads/2025/08/view-transitions-enabled-with-navigation-via-bfcache.mp4\" width=\"722\"></video><figcaption class=\"wp-element-caption\">With View Transitions</figcaption></figure>\n</div>\n</div>\n\n\n\n<p>Nevertheless, as nice as these cross-document view transitions are, do note that there is no LCP improvement to using them. As referenced previously with Image Placeholders, the View Transitions plugin provides a non-performance user experience improvement. So don’t expect to find any difference in your Lighthouse scores or LCP passing rates with this plugin.</p>\n\n\n\n<p><em>Props again to <a href=\"https://felix-arntz.me/\">Felix Arntz</a> for spearheading this feature plugin.</em></p>\n\n\n\n<div class=\"wp-block-spacer\" style=\"height: 100px;\"></div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"nocache-bfcache\">Instant Back/Forward</h3>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-plugin-directory wp-block-embed-plugin-directory\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/plugins/nocache-bfcache/\">Instant Back/Forward</a></blockquote>\n</div></figure>\n\n\n\n<p>Originally, the <a href=\"https://wordpress.org/plugins/nocache-bfcache/\">Instant Back/Forward</a> plugin (née “No-cache BFCache”) was part of the “beyond” part of my talk because it wasn’t among the plugins featured by Performance Lab. However, this is no longer the case since <a href=\"https://github.com/WordPress/performance/releases/tag/2025-08-25\">v4.0.0</a>. In the previous section about Speculative Loading, I showed how prerendering enabled near instant page loads with practically zero LCP. But there is a much older browser technology for instantaneous page navigations: the <a href=\"https://web.dev/articles/bfcache\">back-forward cache</a> (bfcache). This was also depicted above in the back/forward navigation videos with view transitions.</p>\n\n\n\n<p>I wrote up a <a href=\"https://weston.ruter.net/2025/07/23/instant-back-forward-navigations-in-wordpress/\">blog post</a> already all about bfcache and this plugin:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-weston-ruter wp-block-embed-weston-ruter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://weston.ruter.net/2025/07/23/instant-back-forward-navigations-in-wordpress/\">Instant Back/Forward Navigations in WordPress</a></blockquote>\n</div></figure>\n\n\n\n<p>To recap, webpages are generally not eligible for bfcache when they are served with <code>Cache-Control: no-store</code>. This header is sent when a user is logged-in and often on e-commerce sites for the shopping cart, checkout, and account pages. While it importantly prevents such pages from being cached by proxies, it also prevents the browser from storing pages in bfcache. This plugin removes the <code>no-store</code> directive. In its place, it ensures that the <code>private</code> directive is sent to prevent proxies from caching the response; also, to ensure preserve privacy after logging out, it includes logic to invalidate pages from the bfcache so they cannot be re-accessed.</p>\n\n\n\n<p>What follows is an example of a site running Twenty Twenty-Five with the BuddyPress plugin and Slow 4G network emulation. After entering an activity status update, I navigate from the Personal tab to the Mentions and Favorites tabs. Then I use the back button to go back to the Personal tab. Without bfcache, navigating back from the Favorites tab to the Personal tab is very slow since (1) the browser has to re-fetch the HTML from the server, and (2) the DOM has to be completely reconstructed. Without bfcache, there is also the unfortunate result that the drafted status update is lost, since the form field was re-constructed with JavaScript. In contrast, when bfcache is enabled, navigating to the previous tabs is instant, and the DOM is preserved with each navigation, resulting in the drafted status update being kept intact:</p>\n\n\n\n<div class=\"wp-block-columns is-not-stacked-on-mobile is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-video aligncenter\"><video controls=\"controls\" height=\"1080\" poster=\"https://weston.ruter.net/wp-content/uploads/2025/08/buddypress-poster.jpg\" src=\"https://weston.ruter.net/wp-content/uploads/2025/08/buddypress-sans-bfcache.mp4\" width=\"788\"></video><figcaption class=\"wp-element-caption\">Without bfcache</figcaption></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-video aligncenter\"><video controls=\"controls\" height=\"1080\" poster=\"https://weston.ruter.net/wp-content/uploads/2025/08/buddypress-poster.jpg\" src=\"https://weston.ruter.net/wp-content/uploads/2025/08/buddypress-with-bfcache.mp4\" width=\"788\"></video><figcaption class=\"wp-element-caption\">With bfcache</figcaption></figure>\n</div>\n</div>\n\n\n\n<p>Without bfcache, the back navigation has an LCP of <strong>1.41 seconds</strong> whereas with bfcache the LCP is <strong>0.02 seconds</strong>: nearly instantaneous. </p>\n\n\n\n<p>There are other <a href=\"https://web.dev/articles/bfcache#optimize\">reasons</a> why pages may be ineligible for bfcache than the <code>no-store</code> directive, but it is one of the most common causes. It’s very important to try to preserve bfcache eligibility because back/forward navigations are <a href=\"https://web.dev/articles/bfcache#:~:text=Chrome%20usage%20data%20shows%20that%201%20in%2010%20navigations%20on%20desktop%20and%201%20in%205%20on%20mobile%20are%20either%20back%20or%20forward.\">very common</a> on the web:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Chrome usage data shows that 1 in 10 navigations on desktop and 1 in 5 on mobile are either back or forward.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\" style=\"height: 100px;\"></div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"script-module-deprioritization\">Script Module Deprioritization</h3>\n\n\n\n<p>Moving on from instant page loads with Speculative Loading and bfcache, another way to shave off milliseconds on the LCP metric is to reduce network contention for loading the LCP element resource (e.g. an image). Consider a template with an Image block and a Navigation block, where the Image block has a lightbox and the Navigation block expands on mobile. These blocks use the Interactivity API which involves adding script modules to the page with the necessary logic. As noted previously, one of the key design principles of the Interactivity API is <a href=\"https://developer.wordpress.org/block-editor/reference-guides/interactivity-api/core-concepts/server-side-rendering/\">server-side rendering</a>. This means that by design the Navigation block and the Image block do <em>not</em> need their script modules in the critical rendering path.</p>\n\n\n\n<p>It turns out that these script modules are currently loaded with high priority because the browser doesn’t know they aren’t critical. So they compete with the loading of critical resources, like the LCP image, even though script modules aren’t render blocking.</p>\n\n\n\n<p>I’ve written a <a href=\"https://weston.ruter.net/2025/05/26/improve-lcp-by-deprioritizing-interactivity-api-script-modules/\">separate post</a> all about this problem and the solution:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-weston-ruter wp-block-embed-weston-ruter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://weston.ruter.net/2025/05/26/improve-lcp-by-deprioritizing-interactivity-api-script-modules/\">Improve LCP by Deprioritizing Script Modules from the Interactivity API</a></blockquote>\n</div></figure>\n\n\n\n<p>To summarize, there are two ways to prevent script modules from delaying the loading of critical resources:</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Add <code>fetchpriority=low</code> to the <code>SCRIPT</code> module tags and the <code>modulepreload</code> <code>LINK</code>.</li>\n\n\n\n<li>Move the <code>SCRIPT</code> tags to the end of the <code>BODY</code> (the footer).</li>\n</ol>\n\n\n\n<p>Here are the results of these optimizations on an emulated broadband connection with an <code>IMG</code> as the LCP element:</p>\n\n\n\n<figure class=\"wp-block-table benchmark-web-vitals\"><table><thead><tr><th>Metric</th><th>Before</th><th>After</th><th>Diff (ms)</th><th>Diff (%)</th></tr></thead><tbody><tr><td>FCP</td><td>137.0</td><td>137.2</td><td>+0.2</td><td>+0.1%</td></tr><tr><td>LCP</td><td>406.0</td><td>368.8</td><td>-37.2</td><td><strong>-9.2%</strong></td></tr><tr><td>TTFB</td><td>33.7</td><td>33.6</td><td>-0.1</td><td>-0.1%</td></tr><tr><td>LCP-TTFB</td><td>371.7</td><td>336.0</td><td>-35.7</td><td>-9.6%</td></tr></tbody></table></figure>\n\n\n\n<p>This is a healthy LCP improvement, more impactful than using the Modern Image Formats with the AVIF format in my testing above. There are two plugins available on GitHub which implement these optimizations while waiting for them to be available in core:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/westonruter/script-fetchpriority-low\">Script Fetch Priority Low</a> (cf. <a href=\"https://core.trac.wordpress.org/ticket/61734\" title=\"Add the ability to handle "fetchpriority" to ES Modules and Import Maps\">#61734</a>)</li>\n\n\n\n<li><a href=\"https://github.com/westonruter/script-modules-in-footer\">Script Modules in Footer</a> (cf. <a href=\"https://core.trac.wordpress.org/ticket/63486\" title=\"Script modules should support being printed in the footer the same as classic scripts\">#63486</a>)</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\" style=\"height: 100px;\"></div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"minified-css-inlining\">Minified CSS Inlining</h3>\n\n\n\n<p>The final optimization I’m analyzing is the impact of eliminating render-blocking external stylesheets. With JavaScript, adding <code>defer</code> to a <code>SCRIPT</code> is an easy way to prevent them from blocking rendering (assuming they can be deferred). However, this is not so easy to do with external stylesheets. CSS is always render-blocking because otherwise there is a flash of unstyled content (FOUC). The web platform does not (<a href=\"https://scottjehl.com/posts/async-css-already/\">currently</a>) provide an official way to opt in to <a href=\"https://www.filamentgroup.com/lab/load-css-simpler/\">async CSS</a>. Instead, the best way to handle this is to inline the CSS in <code>STYLE</code> tags (at least for the critical CSS).</p>\n\n\n\n<p>On a vanilla WordPress install when loading the Sample Page, where the LCP element is text, there are two render-blocking stylesheets:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The Navigation block’s <code>style.min.css</code></li>\n\n\n\n<li>The Twenty Twenty-Five theme’s <code>style.css</code></li>\n</ul>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-36207 not-transparent\" height=\"243\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/twentytwentyfive-render-blocking-stylesheets.png?resize=700%2C243&ssl=1\" width=\"700\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button><figcaption class=\"wp-element-caption\">External stylesheets in the DevTools network panel.</figcaption></figure>\n\n\n\n<p>Despite these render-blocking stylesheets, Lighthouse is giving the page a 100 performance score. But as I’ve said before, just because you have a 100 score in Lighthouse, this doesn’t mean you can do more. Even with a perfect Lighthouse score, there is actually an audit that is pointing out the performance problem: <a href=\"https://developer.chrome.com/docs/lighthouse/performance/render-blocking-resources\">Eliminate render-blocking resources</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border wp-lightbox-container\"><img alt=\"Eliminate render-blocking resources — Est savings of 0 ms.\n\nResources are blocking the first paint of your page. Consider delivering critical JS/CSS inline and deferring all non-critical JS/styles. Learn how to eliminate render-blocking resources. FCP | LCP\n\nThere are a number of WordPress plugins that can help you inline critical assets or defer less important resources. Beware that optimizations provided by these plugins may break features of your theme or plugins, so you will likely need to make code changes.\" class=\"has-border-color has-accent-6-border-color wp-image-36208 not-transparent\" height=\"372\" src=\"https://i0.wp.com/weston.ruter.net/wp-content/uploads/2025/08/lighthouse-eliminate-render-blocking-resources.png?resize=700%2C372&ssl=1\" width=\"700\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<p>It’s strange that this audit has an overall estimated savings of zero milliseconds, but for the theme’s stylesheet it shows an estimated savings of 150 milliseconds.</p>\n\n\n\n<p>To inline these two stylesheets to prevent them from being render-blocking, what is needed is to:</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Opt in to inline the (minified) theme’s <code>style.css</code>.</li>\n\n\n\n<li>Increase the <code>styles_inline_size_limit</code>.</li>\n</ol>\n\n\n\n<p>To inline Twenty Twenty-Five’s stylesheet, all that is required is to add the <code>path</code> data for where the registered style is located on the filesystem. This can be done as simply as follows:</p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs language-php\">add_action(\n <span class=\"hljs-string\">\'wp_enqueue_scripts\'</span>,\n <span class=\"hljs-function\"><span class=\"hljs-keyword\">function</span> <span class=\"hljs-params\">()</span>: <span class=\"hljs-title\">void</span> </span>{\n wp_style_add_data(\n <span class=\"hljs-string\">\'twentytwentyfive-style\'</span>,\n <span class=\"hljs-string\">\'path\'</span>,\n get_parent_theme_file_path( <span class=\"hljs-string\">\'style.css\'</span> )\n );\n },\n <span class=\"hljs-number\">20</span>\n);</code></span></pre>\n\n\n<p>However, since the stylesheet is not yet minified (cf. <a href=\"https://core.trac.wordpress.org/ticket/63012\" title=\"Bundled themes: Stylesheets should be minified\">#63012</a>), you can hack in runtime minification using a plugin like <a href=\"https://gist.github.com/westonruter/09e553a7b66d1a2e68cd5a9ed351c59b\">Twenty Twenty-Five Stylesheet Inlining</a>. This plugin is currently just in a Gist since I hope this will land soon in core for 6.9 via <a href=\"https://core.trac.wordpress.org/ticket/63007\" title=\"Bundled themes: Stylesheets for block themes are missing path data for inlining\">#63007</a>.</p>\n\n\n\n<p>To increase the limit for inline CSS, all that is needed is a simple filter. The default limit is 20 KB which seems low considering the inline CSS limit for an AMP page is 75 KB. To increase the limit to 30 KB which allows enough room for the Navigation block’s relatively stylesheet to be inlined, you can use this PHP code:</p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs language-php\">add_filter(\n <span class=\"hljs-string\">\'styles_inline_size_limit\'</span>,\n <span class=\"hljs-function\"><span class=\"hljs-keyword\">function</span> <span class=\"hljs-params\">()</span>: <span class=\"hljs-title\">int</span> </span>{\n <span class=\"hljs-keyword\">return</span> <span class=\"hljs-number\">30000</span>;\n }\n);</code></span></pre>\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\">Plugin used for benchmarking below<pre class=\"wp-block-code\"><span><code class=\"hljs language-php\"><span class=\"hljs-meta\"><?php</span>\n<span class=\"hljs-comment\">/**\n * Plugin Name: Increase Styles Inline Size Limit (styles_inline_size_limit)\n * Author: Weston Ruter\n * Update URI: false\n */</span>\nadd_filter(\n <span class=\"hljs-string\">\'styles_inline_size_limit\'</span>,\n <span class=\"hljs-keyword\">static</span> <span class=\"hljs-function\"><span class=\"hljs-keyword\">function</span> <span class=\"hljs-params\">()</span>: <span class=\"hljs-title\">int</span> </span>{\n $limit = <span class=\"hljs-number\">-1</span>;\n <span class=\"hljs-keyword\">if</span> ( <span class=\"hljs-keyword\">isset</span>( $_GET[<span class=\"hljs-string\">\'styles_inline_size_limit\'</span>] ) ) {\n $limit = (int) $_GET[<span class=\"hljs-string\">\'styles_inline_size_limit\'</span>];\n }\n <span class=\"hljs-keyword\">if</span> ( $limit < <span class=\"hljs-number\">0</span> ) {\n $limit = <span class=\"hljs-number\">75000</span>;\n }\n <span class=\"hljs-keyword\">return</span> $limit;\n }\n);</code></span></pre></details>\n\n\n\n<p>Increasing this limit in core is being tracked in <a href=\"https://core.trac.wordpress.org/ticket/63018\" title=\"Increase styles_inline_size_limit from 20,000 bytes\">#63018</a>. We still need to determine the optimal threshold for inlining, weighing against the benefits of serving stylesheets from the browser cache for subsequent page navigations.</p>\n\n\n\n<p>As for the performance impact of inlining these stylesheets, here are the results for the loading Sample Page on an emulated Fast 4G connection:</p>\n\n\n\n<figure class=\"wp-block-table benchmark-web-vitals\"><table><thead><tr><th>Metric</th><th>Before</th><th>After</th><th>Diff (ms)</th><th>Diff (%)</th></tr></thead><tbody><tr><td>FCP</td><td>409.1</td><td>228.4</td><td>-180.7</td><td>-44.2%</td></tr><tr><td>LCP</td><td>510.0</td><td>325.4</td><td>-184.6</td><td><strong>-36.2%</strong></td></tr><tr><td>TTFB</td><td>43.3</td><td>43.8</td><td>+0.6</td><td>+1.3%</td></tr><tr><td>LCP-TTFB</td><td>466.5</td><td>281.2</td><td>-185.4</td><td>-39.7%</td></tr></tbody></table></figure>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\">Benchmark command<pre class=\"wp-block-code\"><span><code class=\"hljs language-javascript\">npm run research -- benchmark-web-vitals \\\n --url=<span class=\"hljs-string\">\"https://wcus-perf-talk-demo.local/sample-page/?enable_plugins=twentytwentyfive-stylesheet-inlining\"</span> \\\n --url=<span class=\"hljs-string\">\"https://wcus-perf-talk-demo.local/sample-page/?enable_plugins=twentytwentyfive-stylesheet-inlining,increase-styles-inline-size-limit.php&styles_inline_size_limit=30000\"</span> \\\n --number=<span class=\"hljs-number\">50</span> \\\n --network-conditions=<span class=\"hljs-string\">\"Fast 4G\"</span> \\\n --emulate-device=<span class=\"hljs-string\">\"Moto G4\"</span> \\\n --diff \\\n --output=md</code></span></pre></details>\n\n\n\n<p>This decreases the LCP by over a third! </p>\n\n\n\n<p>And here are the results when emulating a Slow 3G connection:</p>\n\n\n\n<figure class=\"wp-block-table benchmark-web-vitals\"><table><thead><tr><th>Metric</th><th>Before</th><th>After</th><th>Diff (ms)</th><th>Diff (%)</th></tr></thead><tbody><tr><td>FCP</td><td>4206.5</td><td>2276.0</td><td>-1930.5</td><td>-45.9%</td></tr><tr><td>LCP</td><td>4308.3</td><td>2384.6</td><td>-1923.7</td><td><strong>-44.7%</strong></td></tr><tr><td>TTFB</td><td>42.6</td><td>45.5</td><td>+2.85</td><td>+6.7%</td></tr><tr><td>LCP-TTFB</td><td>4265.9</td><td>2339.7</td><td>-1926.3</td><td>-45.2%</td></tr></tbody></table></figure>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\">Benchmark command<pre class=\"wp-block-code\"><span><code class=\"hljs language-javascript\">npm run research -- benchmark-web-vitals \\\n --url=<span class=\"hljs-string\">\"https://wcus-perf-talk-demo.local/sample-page/?enable_plugins=twentytwentyfive-stylesheet-inlining\"</span> \\\n --url=<span class=\"hljs-string\">\"https://wcus-perf-talk-demo.local/sample-page/?enable_plugins=twentytwentyfive-stylesheet-inlining,increase-styles-inline-size-limit.php&styles_inline_size_limit=30000\"</span> \\\n --number=<span class=\"hljs-number\">50</span> \\\n --network-conditions=<span class=\"hljs-string\">\"Slow 3G\"</span> \\\n --emulate-device=<span class=\"hljs-string\">\"Moto G4\"</span> \\\n --diff \\\n --output=md</code></span></pre></details>\n\n\n\n<p>A 44.4% reduction in LCP is on par with the largest improvements achieved by the Image Prioritizer plugin in my evaluations here. This means that on a Slow 3G connection, the LCP goes from <strong>poor</strong> at 4.31 seconds to <strong>good</strong> at 2.38 seconds.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"whats-next\">What’s Next</h2>\n\n\n\n<p>My hope is that several of these improvements will land later this year in WordPress core. Some of them are <a href=\"https://make.wordpress.org/core/2025/07/28/roadmap-to-6-9/#performance-improvements\">tracked</a> in the <a href=\"https://make.wordpress.org/core/2025/07/28/roadmap-to-6-9/\">Roadmap to 6.9</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Planned performance improvements include improving Data Views performance <a href=\"https://github.com/WordPress/gutenberg/issues/70789\">by supporting partial entity fetching and smart field resolution</a>, <a href=\"https://core.trac.wordpress.org/ticket/61734\">adding the ability to handle “fetchpriority” to ES Modules and Import Maps</a>, <a href=\"https://core.trac.wordpress.org/ticket/63636\">standardizing output buffering</a> so developers can hook into a unified filter and manipulate the entire rendered HTML after it’s generated but before it’s sent to the browser (e.g. for page caches and performance optimizations), implementing <a href=\"https://core.trac.wordpress.org/ticket/63636\">instant page navigations from browser history via bfcache</a> even when pages are flagged with “nocache” such as when users are logged in, and <a href=\"https://core.trac.wordpress.org/ticket/63007#comment:31\">stylesheet improvements around minification and inlining</a>.</p>\n</blockquote>\n\n\n\n<p>You can <a href=\"https://make.wordpress.org/performance/handbook/get-involved/\">get involved</a> with the Core Performance Team to help make this happen!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-medium-font-size\">Where I’ve shared this, if you want to discuss or boost:</p>\n\n\n\n<ul class=\"wp-block-social-links is-layout-flex wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-linkedin wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://www.linkedin.com/posts/westonruter_the-site-speed-frontier-with-performance-activity-7366592585110310914-fAWv\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19.7,3H4.3C3.582,3,3,3.582,3,4.3v15.4C3,20.418,3.582,21,4.3,21h15.4c0.718,0,1.3-0.582,1.3-1.3V4.3 C21,3.582,20.418,3,19.7,3z M8.339,18.338H5.667v-8.59h2.672V18.338z M7.004,8.574c-0.857,0-1.549-0.694-1.549-1.548 c0-0.855,0.691-1.548,1.549-1.548c0.854,0,1.547,0.694,1.547,1.548C8.551,7.881,7.858,8.574,7.004,8.574z M18.339,18.338h-2.669 v-4.177c0-0.996-0.017-2.278-1.387-2.278c-1.389,0-1.601,1.086-1.601,2.206v4.249h-2.667v-8.59h2.559v1.174h0.037 c0.356-0.675,1.227-1.387,2.526-1.387c2.703,0,3.203,1.779,3.203,4.092V18.338z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">LinkedIn</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-bluesky wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://bsky.app/profile/weston.ruter.net/post/3lxg2haotcs2c\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6.3,4.2c2.3,1.7,4.8,5.3,5.7,7.2.9-1.9,3.4-5.4,5.7-7.2,1.7-1.3,4.3-2.2,4.3.9s-.4,5.2-.6,5.9c-.7,2.6-3.3,3.2-5.6,2.8,4,.7,5.1,3,2.9,5.3-5,5.2-6.7-2.8-6.7-2.8,0,0-1.7,8-6.7,2.8-2.2-2.3-1.2-4.6,2.9-5.3-2.3.4-4.9-.3-5.6-2.8-.2-.7-.6-5.3-.6-5.9,0-3.1,2.7-2.1,4.3-.9h0Z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Bluesky</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-twitter wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://x.com/westonruter/status/1960827200384721188\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-mastodon wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://mastodon.social/@westonruter/115103019556229139\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M23.193 7.879c0-5.206-3.411-6.732-3.411-6.732C18.062.357 15.108.025 12.041 0h-.076c-3.068.025-6.02.357-7.74 1.147 0 0-3.411 1.526-3.411 6.732 0 1.192-.023 2.618.015 4.129.124 5.092.934 10.109 5.641 11.355 2.17.574 4.034.695 5.535.612 2.722-.15 4.25-.972 4.25-.972l-.09-1.975s-1.945.613-4.129.539c-2.165-.074-4.449-.233-4.799-2.891a5.499 5.499 0 0 1-.048-.745s2.125.52 4.817.643c1.646.075 3.19-.097 4.758-.283 3.007-.359 5.625-2.212 5.954-3.905.517-2.665.475-6.507.475-6.507zm-4.024 6.709h-2.497V8.469c0-1.29-.543-1.944-1.628-1.944-1.2 0-1.802.776-1.802 2.312v3.349h-2.483v-3.35c0-1.536-.602-2.312-1.802-2.312-1.085 0-1.628.655-1.628 1.944v6.119H4.832V8.284c0-1.289.328-2.313.987-3.07.68-.758 1.569-1.146 2.674-1.146 1.278 0 2.246.491 2.886 1.474L12 6.585l.622-1.043c.64-.983 1.608-1.474 2.886-1.474 1.104 0 1.994.388 2.674 1.146.658.757.986 1.781.986 3.07v6.304z\"></svg><span class=\"wp-block-social-link-label screen-reader-text\">Mastodon</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-threads wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://www.threads.com/@westonruter/post/DN3-3S-konm?xmt=AQF0yJplskrfY6oHVh4vRlE3DV_wKvinkt72VC0J-SlKYw\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M16.3 11.3c-.1 0-.2-.1-.2-.1-.1-2.6-1.5-4-3.9-4-1.4 0-2.6.6-3.3 1.7l1.3.9c.5-.8 1.4-1 2-1 .8 0 1.4.2 1.7.7.3.3.5.8.5 1.3-.7-.1-1.4-.2-2.2-.1-2.2.1-3.7 1.4-3.6 3.2 0 .9.5 1.7 1.3 2.2.7.4 1.5.6 2.4.6 1.2-.1 2.1-.5 2.7-1.3.5-.6.8-1.4.9-2.4.6.3 1 .8 1.2 1.3.4.9.4 2.4-.8 3.6-1.1 1.1-2.3 1.5-4.3 1.5-2.1 0-3.8-.7-4.8-2S5.7 14.3 5.7 12c0-2.3.5-4.1 1.5-5.4 1.1-1.3 2.7-2 4.8-2 2.2 0 3.8.7 4.9 2 .5.7.9 1.5 1.2 2.5l1.5-.4c-.3-1.2-.8-2.2-1.5-3.1-1.3-1.7-3.3-2.6-6-2.6-2.6 0-4.7.9-6 2.6C4.9 7.2 4.3 9.3 4.3 12s.6 4.8 1.9 6.4c1.4 1.7 3.4 2.6 6 2.6 2.3 0 4-.6 5.3-2 1.8-1.8 1.7-4 1.1-5.4-.4-.9-1.2-1.7-2.3-2.3zm-4 3.8c-1 .1-2-.4-2-1.3 0-.7.5-1.5 2.1-1.6h.5c.6 0 1.1.1 1.6.2-.2 2.3-1.3 2.7-2.2 2.7z\"></svg><span class=\"wp-block-social-link-label screen-reader-text\">Threads</span></a></li></ul>\n\n\n\n<p></p>\n<p>The post <a href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/\">The Site Speed Frontier with Performance Lab and Beyond</a> appeared first on <a href=\"https://weston.ruter.net\">Weston Ruter</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Aug 2025 18:05:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Weston Ruter\";s:7:\"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:\"Thu, 18 Sep 2025 04:34:34 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Thu, 18 Sep 2025 04:30:22 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";i:1727716820;s:21:\"cache_expiration_time\";i:1758213275;s:23:\"__cache_expiration_time\";i:1758213275;}', 'off');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(620, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1758213275', 'off'),
(621, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1758170075', 'off'),
(622, '_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b', '1758213275', 'off'),
(623, '_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b', '<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2025/08/portland-welcomes-wcus-2025/\'>Portland Welcomes WordCamp US 2025: A Community Gathering</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2025/08/portland-are-you-ready-the-wcus-2025-schedule-has-arrived/\'>Portland, Are You Ready? The WCUS 2025 Schedule Has Arrived!</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/podcast/185-mary-ann-aschenbrenner-on-switching-clients-from-classic-to-block-themes\'>WPTavern: #185 – Mary Ann Aschenbrenner on Switching Clients From Classic to Block Themes</a></li><li><a class=\'rsswidget\' href=\'https://openchannels.fm/how-to-make-your-open-web-content-last-forever-effortless-permanent-backups-and-media-storage/\'>Open Channels FM: How to Make Your Open Web Content Last Forever: Effortless, Permanent Backups and Media Storage</a></li><li><a class=\'rsswidget\' href=\'https://openchannels.fm/godaddys-new-ai-site-designer-from-idea-to-wordpress-site-in-minutes/\'>Open Channels FM: GoDaddy’s New AI Site Designer: From Idea to WordPress Site in Minutes</a></li></ul></div>', 'off'),
(634, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1758174066;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:4:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.5\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.7\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:35:\"redux-framework/redux-framework.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/redux-framework\";s:4:\"slug\";s:15:\"redux-framework\";s:6:\"plugin\";s:35:\"redux-framework/redux-framework.php\";s:11:\"new_version\";s:5:\"4.5.7\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/redux-framework/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/redux-framework.4.5.7.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:60:\"https://ps.w.org/redux-framework/assets/icon.svg?rev=2889347\";s:3:\"svg\";s:60:\"https://ps.w.org/redux-framework/assets/icon.svg?rev=2889347\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/redux-framework/assets/banner-772x250.png?rev=2889347\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}}s:7:\"checked\";a:5:{s:19:\"akismet/akismet.php\";s:3:\"5.5\";s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.7\";s:27:\"dreams-tour/dreams-tour.php\";s:3:\"1.0\";s:9:\"hello.php\";s:5:\"1.7.2\";s:35:\"redux-framework/redux-framework.php\";s:5:\"4.5.7\";}}', 'off'),
(640, '_site_transient_timeout_theme_roots', '1758178944', 'off'),
(641, '_site_transient_theme_roots', 'a:2:{s:10:\"dreamstour\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";}', 'off'),
(642, '_site_transient_timeout_available_translations', '1758188115', 'off');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(643, '_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:6:\"6.0.10\";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:62:\"https://downloads.wordpress.org/translation/core/6.0.10/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.6\";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.6/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.26\";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.26/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-10 08:09:09\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.2/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.6\";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.6/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.27\";s:7:\"updated\";s:19:\"2024-12-26 00:37:42\";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.27/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-06-26 09:35:39\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-01 14:03:28\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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.7\";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.7/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-09-12 21:14:30\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.2/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.8.2\";s:7:\"updated\";s:19:\"2025-09-09 08:25:54\";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.8.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:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-11 16:48:51\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-15 11:58:43\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-06-05 10:10:20\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-09-12 00:46:57\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-09-12 00:46:11\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.8.2/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_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-28 10:25:03\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-28 10:25:24\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.8.2/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:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.7\";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.7/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-21 14:54:13\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.2/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_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-05-22 11:56:25\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-29 13:22:09\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-30 21:52:12\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-19 23:02:24\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-25 13:50:40\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-19 08:40:47\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.2/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_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-05-26 16:45:13\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"6.8.2\";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:64:\"https://downloads.wordpress.org/translation/core/6.8.2/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-28 22:23:40\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-09-09 19:08:59\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-06-05 19:07:27\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.4.6\";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.6/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.7\";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.7/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.11\";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.11/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.17\";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.17/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_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-14 15:46:25\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.22\";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.22/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-11 05:24:36\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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: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:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-05 12:26:55\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-02-14 17:29:08\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-03 12:49:52\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-05-12 09:41:09\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-22 13:39:42\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-29 15:04:36\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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.6\";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.6/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.26\";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.26/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.7\";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.7/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-16 11:10:04\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-29 04:27:18\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.2/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.34\";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.34/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.7\";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.7/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.6\";s:7:\"updated\";s:19:\"2025-02-06 05:17:11\";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.6/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-31 12:41:06\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.2/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.7\";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.7/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-06-09 13:56:03\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-16 04:17:52\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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.27\";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.27/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-11 21:28:29\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-13 14:20:01\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.2/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.27\";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.27/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-04-14 08:02:58\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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.7\";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.7/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:5:\"6.8.2\";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:61:\"https://downloads.wordpress.org/translation/core/6.8.2/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.22\";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.22/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-22 16:17:50\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.2/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-09-15 15:01:44\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-05 20:50:47\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.8.2/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:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-17 05:00:42\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.8.2/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.6\";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.6/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-15 19:11:43\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.2/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:6:\"6.0.10\";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:65:\"https://downloads.wordpress.org/translation/core/6.0.10/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.8.2\";s:7:\"updated\";s:19:\"2025-08-26 17:54:08\";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.8.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.6\";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.6/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:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-26 17:30:52\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.2/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.16\";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.16/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.39\";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.39/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-27 04:25:37\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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.8.2\";s:7:\"updated\";s:19:\"2025-07-23 09:31:59\";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.8.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_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-29 06:56:09\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-31 11:10:17\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.8.2/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-09-15 07:18:24\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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:\"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.26\";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.26/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-15 10:57:19\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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.35\";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.35/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_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-27 23:38:30\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-30 11:47:36\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.4.6\";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.6/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:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-27 23:48:59\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.8.2/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:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-17 09:56:52\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-09-10 08:22:10\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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.17\";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.17/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-14 12:02:26\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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.8.2\";s:7:\"updated\";s:19:\"2025-04-24 16:58:02\";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.8.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:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-14 09:44:53\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-04-18 09:38:51\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-09-08 20:51:20\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-08-10 20:44:58\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-06-28 12:50:48\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.2/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.39\";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.39/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.11\";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.11/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:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-08 16:09:09\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-04-16 23:11:08\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-18 21:39:23\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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:3:\"6.8\";s:7:\"updated\";s:19:\"2025-04-18 21:10:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.8/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.17\";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.17/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-09-01 09:12:13\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.8.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-16 04:41:52\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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.7\";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.7/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:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-29 06:55:14\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.8.2/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:\"继续\";}}}', 'off');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(647, '_site_transient_timeout_php_check_53fa02513e93f8d5b695fa686a20e650', '1758784037', 'off'),
(648, '_site_transient_php_check_53fa02513e93f8d5b695fa686a20e650', 'a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'off'),
(652, 'WPLANG', '', 'auto'),
(653, 'new_admin_email', '[email protected]', 'auto'),
(670, '_site_transient_timeout_wp_theme_files_patterns-581389df7e25f67e9a33658e7d328eb8', '1758189730', 'off'),
(671, '_site_transient_wp_theme_files_patterns-581389df7e25f67e9a33658e7d328eb8', 'a:2:{s:7:\"version\";s:3:\"1.0\";s:8:\"patterns\";a:0:{}}', 'off');
-- --------------------------------------------------------
--
-- Table structure for table `wp_postmeta`
--
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`post_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_postmeta`
--
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(3, 7, '_menu_item_type', 'custom'),
(4, 7, '_menu_item_menu_item_parent', '0'),
(5, 7, '_menu_item_object_id', '7'),
(6, 7, '_menu_item_object', 'custom'),
(7, 7, '_menu_item_target', ''),
(8, 7, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(9, 7, '_menu_item_xfn', ''),
(10, 7, '_menu_item_url', 'http://dev-dreamstour-wp.dreamstechnologies.com/'),
(11, 7, '_menu_item_orphaned', '1757575563'),
(12, 8, '_menu_item_type', 'post_type'),
(13, 8, '_menu_item_menu_item_parent', '0'),
(14, 8, '_menu_item_object_id', '2'),
(15, 8, '_menu_item_object', 'page'),
(16, 8, '_menu_item_target', ''),
(17, 8, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(18, 8, '_menu_item_xfn', ''),
(19, 8, '_menu_item_url', ''),
(20, 8, '_menu_item_orphaned', '1757575563'),
(21, 9, '_menu_item_type', 'custom'),
(22, 9, '_menu_item_menu_item_parent', '0'),
(23, 9, '_menu_item_object_id', '9'),
(24, 9, '_menu_item_object', 'custom'),
(25, 9, '_menu_item_target', ''),
(26, 9, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(27, 9, '_menu_item_xfn', ''),
(28, 9, '_menu_item_url', 'http://dev-dreamstour-wp.dreamstechnologies.com/'),
(29, 9, '_menu_item_orphaned', '1757575573'),
(30, 10, '_menu_item_type', 'post_type'),
(31, 10, '_menu_item_menu_item_parent', '0'),
(32, 10, '_menu_item_object_id', '2'),
(33, 10, '_menu_item_object', 'page'),
(34, 10, '_menu_item_target', ''),
(35, 10, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(36, 10, '_menu_item_xfn', ''),
(37, 10, '_menu_item_url', ''),
(38, 10, '_menu_item_orphaned', '1757575573'),
(39, 11, '_menu_item_type', 'custom'),
(40, 11, '_menu_item_menu_item_parent', '0'),
(41, 11, '_menu_item_object_id', '11'),
(42, 11, '_menu_item_object', 'custom'),
(43, 11, '_menu_item_target', ''),
(44, 11, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(45, 11, '_menu_item_xfn', ''),
(46, 11, '_menu_item_url', 'http://dev-dreamstour-wp.dreamstechnologies.com/'),
(47, 11, '_menu_item_orphaned', '1757575588'),
(48, 12, '_menu_item_type', 'post_type'),
(49, 12, '_menu_item_menu_item_parent', '0'),
(50, 12, '_menu_item_object_id', '2'),
(51, 12, '_menu_item_object', 'page'),
(52, 12, '_menu_item_target', ''),
(53, 12, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(54, 12, '_menu_item_xfn', ''),
(55, 12, '_menu_item_url', ''),
(56, 12, '_menu_item_orphaned', '1757575588'),
(57, 13, '_menu_item_type', 'custom'),
(58, 13, '_menu_item_menu_item_parent', '0'),
(59, 13, '_menu_item_object_id', '13'),
(60, 13, '_menu_item_object', 'custom'),
(61, 13, '_menu_item_target', ''),
(62, 13, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(63, 13, '_menu_item_xfn', ''),
(64, 13, '_menu_item_url', 'http://dev-dreamstour-wp.dreamstechnologies.com/'),
(66, 14, '_menu_item_type', 'post_type'),
(67, 14, '_menu_item_menu_item_parent', '78'),
(68, 14, '_menu_item_object_id', '2'),
(69, 14, '_menu_item_object', 'page'),
(70, 14, '_menu_item_target', ''),
(71, 14, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(72, 14, '_menu_item_xfn', ''),
(73, 14, '_menu_item_url', ''),
(75, 15, '_wp_attached_file', '2025/09/logo.svg'),
(76, 15, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:29281;}'),
(77, 16, '_wp_attached_file', '2025/09/logo-dark.svg'),
(78, 16, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:35776;}'),
(79, 17, '_wp_trash_meta_status', 'publish'),
(80, 17, '_wp_trash_meta_time', '1757578337'),
(84, 22, '_edit_lock', '1757655609:1'),
(85, 23, '_edit_lock', '1757675837:1'),
(86, 24, '_edit_last', '1'),
(87, 24, '_wp_page_template', 'page-template-add-tour.php'),
(88, 24, '_edit_lock', '1757734650:1'),
(89, 29, 'tour_highlights', 'a:1:{i:0;s:0:\"\";}'),
(90, 30, 'tour_highlights', 'a:1:{i:0;s:0:\"\";}'),
(91, 31, 'tour_start_date', '06-09-2025'),
(92, 31, 'tour_end_date', '13-09-2025'),
(93, 31, 'tour_destination', 'Destination'),
(94, 31, 'tour_people_limit', '25'),
(95, 31, 'tour_price', '100'),
(96, 31, 'tour_offer_price', '80'),
(97, 31, 'tour_min_age', '18'),
(98, 31, 'tour_city', 'City'),
(99, 31, 'tour_state', 'State'),
(100, 31, 'tour_zip', '628908'),
(101, 31, 'tour_address', 'Address'),
(102, 31, 'tour_address_1', 'Address 1'),
(103, 31, 'tour_highlights', 'a:1:{i:0;s:12:\"Highlights 1\";}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(104, 31, 'tour_itenary', 'a:3:{i:0;a:4:{s:5:\"title\";s:6:\"zxczxc\";s:4:\"date\";s:0:\"\";s:11:\"description\";s:6:\"zxczxc\";s:5:\"image\";s:91162:\"data:image/png;base64,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\";}i:1;a:4:{s:5:\"title\";s:7:\"Title 2\";s:4:\"date\";s:10:\"30-09-2025\";s:11:\"description\";s:7:\"czxczxc\";s:5:\"image\";s:151534:\"data:image/png;base64,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\";}i:2;a:4:{s:5:\"title\";s:7:\"Title 2\";s:4:\"date\";s:10:\"30-09-2025\";s:11:\"description\";s:6:\"zxczxc\";s:5:\"image\";s:91162:\"data:image/png;base64,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\";}}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(105, 31, 'tour_faq', 'a:2:{i:0;a:2:{s:8:\"question\";s:5:\"Faq 1\";s:6:\"answer\";s:5:\"Ans 1\";}i:1;a:2:{s:8:\"question\";s:5:\"Faq 2\";s:6:\"answer\";s:5:\"Faq 2\";}}'),
(106, 32, 'tour_start_date', '06-09-2025'),
(107, 32, 'tour_end_date', '13-09-2025'),
(108, 32, 'tour_destination', 'Destination'),
(109, 32, 'tour_people_limit', '25'),
(110, 32, 'tour_price', '100'),
(111, 32, 'tour_offer_price', '80'),
(112, 32, 'tour_min_age', '18'),
(113, 32, 'tour_city', 'City'),
(114, 32, 'tour_state', 'State'),
(115, 32, 'tour_zip', '628908'),
(116, 32, 'tour_address', 'Address'),
(117, 32, 'tour_address_1', 'Address 1'),
(118, 32, 'tour_highlights', 'a:1:{i:0;s:12:\"Highlights 1\";}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(119, 32, 'tour_itenary', 'a:3:{i:0;a:4:{s:5:\"title\";s:6:\"zxczxc\";s:4:\"date\";s:0:\"\";s:11:\"description\";s:6:\"zxczxc\";s:5:\"image\";s:91162:\"data:image/png;base64,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\";}i:1;a:4:{s:5:\"title\";s:7:\"Title 2\";s:4:\"date\";s:10:\"30-09-2025\";s:11:\"description\";s:7:\"czxczxc\";s:5:\"image\";s:151534:\"data:image/png;base64,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\";}i:2;a:4:{s:5:\"title\";s:7:\"Title 2\";s:4:\"date\";s:10:\"30-09-2025\";s:11:\"description\";s:6:\"zxczxc\";s:5:\"image\";s:91162:\"data:image/png;base64,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\";}}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(120, 32, 'tour_faq', 'a:2:{i:0;a:2:{s:8:\"question\";s:5:\"Faq 1\";s:6:\"answer\";s:5:\"Ans 1\";}i:1;a:2:{s:8:\"question\";s:5:\"Faq 2\";s:6:\"answer\";s:5:\"Faq 2\";}}'),
(121, 33, '_wp_attached_file', '2025/09/about.png'),
(122, 33, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:387;s:6:\"height\";i:389;s:4:\"file\";s:17:\"2025/09/about.png\";s:8:\"filesize\";i:68353;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"about-298x300.png\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:131471;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"about-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16437;}s:15:\"dreamstour_list\";a:5:{s:4:\"file\";s:17:\"about-350x352.png\";s:5:\"width\";i:350;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:175903;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(123, 34, '_wp_attached_file', '2025/09/apple-touch-icon.png'),
(124, 34, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:180;s:6:\"height\";i:180;s:4:\"file\";s:28:\"2025/09/apple-touch-icon.png\";s:8:\"filesize\";i:11039;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"apple-touch-icon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5412;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(125, 32, 'tour_gallery', 'a:2:{i:0;i:33;i:1;i:34;}'),
(126, 31, '_edit_lock', '1757747871:1'),
(127, 32, '_edit_lock', '1757747878:1'),
(128, 35, 'tour_start_date', '24-09-2025'),
(129, 35, 'tour_end_date', '30-09-2025'),
(130, 35, 'tour_destination', 'Destination'),
(131, 35, 'tour_people_limit', '28'),
(132, 35, 'tour_price', '500'),
(133, 35, 'tour_offer_price', '400'),
(134, 35, 'tour_min_age', '18'),
(135, 35, 'tour_city', 'City'),
(136, 35, 'tour_state', 'State'),
(137, 35, 'tour_zip', '628908'),
(138, 35, 'tour_address', 'address'),
(139, 35, 'tour_address_1', 'Address 1'),
(140, 35, 'tour_highlights', 'a:3:{i:0;s:44:\"Exclusive merchandise available at each show\";i:1;s:40:\"VIP packages with meet-and-greet options\";i:2;s:37:\"Special acoustic set in select cities\";}'),
(147, 35, 'tour_gallery', 'a:5:{i:0;i:50;i:1;i:51;i:2;i:52;i:3;i:53;i:4;i:54;}'),
(148, 35, '_edit_lock', '1758123223:1'),
(151, 35, 'tour_itenary', 'a:4:{i:0;a:4:{s:5:\"title\";s:29:\"Day 1, Kickoff in Los Angeles\";s:4:\"date\";s:10:\"16-09-2025\";s:11:\"description\";s:103:\"The New York show at Madison Square Garden promises to be a highlight of the tour, featuring special...\";s:5:\"image\";i:58;}i:1;a:4:{s:5:\"title\";s:25:\"Day 2, West Coast Wonders\";s:4:\"date\";s:10:\"27-09-2025\";s:11:\"description\";s:103:\"The tour moves to Chicago, where Luna will perform at the iconic United Center. Expect a night fille...\";s:5:\"image\";i:55;}i:2;a:4:{s:5:\"title\";s:20:\"Day 3, Midwest Magic\";s:4:\"date\";s:10:\"14-09-2025\";s:11:\"description\";s:103:\"The tour launches with a spectacular concert at The Hollywood Bowl, where Luna will debut her latest...\";s:5:\"image\";i:56;}i:3;a:4:{s:5:\"title\";s:28:\"Day 4, East Coast Excitement\";s:4:\"date\";s:10:\"26-09-2025\";s:11:\"description\";s:103:\"Fans in Seattle and Portland can look forward to intimate performances, complete with fan meet-and-g...\";s:5:\"image\";i:57;}}'),
(152, 35, 'tour_faq', 'a:5:{i:0;a:2:{s:8:\"question\";s:35:\"Is airport shuttle service offered?\";s:6:\"answer\";s:317:\"Does have fully refundable room rates available to book on our site. If you’ve booked a fully refundable room rate, this can be cancelled up to a few days before check-in depending on the property\'s cancellation policy. Just make sure to check this property\'s cancellation policy for the exact terms and conditions.\";}i:1;a:2:{s:8:\"question\";s:42:\"What are the check-in and check-out times?\";s:6:\"answer\";s:317:\"Does have fully refundable room rates available to book on our site. If you’ve booked a fully refundable room rate, this can be cancelled up to a few days before check-in depending on the property\'s cancellation policy. Just make sure to check this property\'s cancellation policy for the exact terms and conditions.\";}i:2;a:2:{s:8:\"question\";s:17:\"Are pets allowed?\";s:6:\"answer\";s:317:\"Does have fully refundable room rates available to book on our site. If you’ve booked a fully refundable room rate, this can be cancelled up to a few days before check-in depending on the property\'s cancellation policy. Just make sure to check this property\'s cancellation policy for the exact terms and conditions.\";}i:3;a:2:{s:8:\"question\";s:47:\"Does offer free cancellation for a full refund?\";s:6:\"answer\";s:317:\"Does have fully refundable room rates available to book on our site. If you’ve booked a fully refundable room rate, this can be cancelled up to a few days before check-in depending on the property\'s cancellation policy. Just make sure to check this property\'s cancellation policy for the exact terms and conditions.\";}i:4;a:2:{s:8:\"question\";s:16:\"Is there a pool?\";s:6:\"answer\";s:317:\"Does have fully refundable room rates available to book on our site. If you’ve booked a fully refundable room rate, this can be cancelled up to a few days before check-in depending on the property\'s cancellation policy. Just make sure to check this property\'s cancellation policy for the exact terms and conditions.\";}}'),
(153, 39, '_wp_attached_file', '2025/09/itenary_migrated_0_1757755768.jpeg'),
(154, 39, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:513;s:6:\"height\";i:512;s:4:\"file\";s:42:\"2025/09/itenary_migrated_0_1757755768.jpeg\";s:8:\"filesize\";i:65069;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"itenary_migrated_0_1757755768-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30724;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"itenary_migrated_0_1757755768-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9884;}s:15:\"dreamstour_list\";a:5:{s:4:\"file\";s:42:\"itenary_migrated_0_1757755768-350x349.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:349;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38702;}s:19:\"dreamstour_bloggrid\";a:5:{s:4:\"file\";s:42:\"itenary_migrated_0_1757755768-415x414.jpeg\";s:5:\"width\";i:415;s:6:\"height\";i:414;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50202;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(155, 40, '_wp_attached_file', '2025/09/itenary_migrated_1_1757755768.jpeg'),
(156, 40, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:513;s:6:\"height\";i:512;s:4:\"file\";s:42:\"2025/09/itenary_migrated_1_1757755768.jpeg\";s:8:\"filesize\";i:67247;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"itenary_migrated_1_1757755768-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31630;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"itenary_migrated_1_1757755768-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9501;}s:15:\"dreamstour_list\";a:5:{s:4:\"file\";s:42:\"itenary_migrated_1_1757755768-350x349.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:349;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40417;}s:19:\"dreamstour_bloggrid\";a:5:{s:4:\"file\";s:42:\"itenary_migrated_1_1757755768-415x414.jpeg\";s:5:\"width\";i:415;s:6:\"height\";i:414;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52931;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(157, 41, 'tour_highlights', 'a:1:{i:0;s:0:\"\";}'),
(158, 41, '_edit_lock', '1758033231:1'),
(159, 42, '_wp_attached_file', '2025/09/itenary_0_1757756128.jpeg'),
(160, 42, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:301;s:6:\"height\";i:300;s:4:\"file\";s:33:\"2025/09/itenary_0_1757756128.jpeg\";s:8:\"filesize\";i:41627;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"itenary_0_1757756128-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7621;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(161, 41, 'tour_itenary', 'a:1:{i:0;a:4:{s:5:\"title\";s:5:\"Ite 1\";s:4:\"date\";s:10:\"13-09-2025\";s:11:\"description\";s:6:\"zxczxc\";s:5:\"image\";i:42;}}'),
(162, 43, '_wp_attached_file', '2025/09/itenary_0_1757756232.jpeg'),
(163, 43, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:301;s:6:\"height\";i:300;s:4:\"file\";s:33:\"2025/09/itenary_0_1757756232.jpeg\";s:8:\"filesize\";i:66390;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"itenary_0_1757756232-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10185;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(164, 44, '_wp_attached_file', '2025/09/itenary_0_1757756382.jpeg'),
(165, 44, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:513;s:6:\"height\";i:512;s:4:\"file\";s:33:\"2025/09/itenary_0_1757756382.jpeg\";s:8:\"filesize\";i:67247;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"itenary_0_1757756382-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31630;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"itenary_0_1757756382-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9501;}s:15:\"dreamstour_list\";a:5:{s:4:\"file\";s:33:\"itenary_0_1757756382-350x349.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:349;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40417;}s:19:\"dreamstour_bloggrid\";a:5:{s:4:\"file\";s:33:\"itenary_0_1757756382-415x414.jpeg\";s:5:\"width\";i:415;s:6:\"height\";i:414;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52931;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(176, 50, '_wp_attached_file', '2025/09/tour-large-01.jpg'),
(177, 50, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1284;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2025/09/tour-large-01.jpg\";s:8:\"filesize\";i:254521;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"tour-large-01-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15880;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"tour-large-01-1024x479.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123829;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"tour-large-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8122;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"tour-large-01-768x359.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77210;}s:15:\"dreamstour_list\";a:5:{s:4:\"file\";s:25:\"tour-large-01-350x164.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20536;}s:12:\"dreamstour_m\";a:5:{s:4:\"file\";s:25:\"tour-large-01-600x280.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50520;}s:19:\"dreamstour_bloglist\";a:5:{s:4:\"file\";s:25:\"tour-large-01-855x400.jpg\";s:5:\"width\";i:855;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91813;}s:19:\"dreamstour_bloggrid\";a:5:{s:4:\"file\";s:25:\"tour-large-01-415x194.jpg\";s:5:\"width\";i:415;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27449;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(178, 51, '_wp_attached_file', '2025/09/tour-large-02.jpg'),
(179, 51, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1284;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2025/09/tour-large-02.jpg\";s:8:\"filesize\";i:296846;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"tour-large-02-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18339;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"tour-large-02-1024x479.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148083;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"tour-large-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10192;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"tour-large-02-768x359.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92272;}s:15:\"dreamstour_list\";a:5:{s:4:\"file\";s:25:\"tour-large-02-350x164.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23794;}s:12:\"dreamstour_m\";a:5:{s:4:\"file\";s:25:\"tour-large-02-600x280.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60453;}s:19:\"dreamstour_bloglist\";a:5:{s:4:\"file\";s:25:\"tour-large-02-855x400.jpg\";s:5:\"width\";i:855;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109993;}s:19:\"dreamstour_bloggrid\";a:5:{s:4:\"file\";s:25:\"tour-large-02-415x194.jpg\";s:5:\"width\";i:415;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32321;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(180, 52, '_wp_attached_file', '2025/09/tour-large-03.jpg'),
(181, 52, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1284;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2025/09/tour-large-03.jpg\";s:8:\"filesize\";i:209527;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"tour-large-03-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14551;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"tour-large-03-1024x479.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109880;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"tour-large-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8074;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"tour-large-03-768x359.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68370;}s:15:\"dreamstour_list\";a:5:{s:4:\"file\";s:25:\"tour-large-03-350x164.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18777;}s:12:\"dreamstour_m\";a:5:{s:4:\"file\";s:25:\"tour-large-03-600x280.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44867;}s:19:\"dreamstour_bloglist\";a:5:{s:4:\"file\";s:25:\"tour-large-03-855x400.jpg\";s:5:\"width\";i:855;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80902;}s:19:\"dreamstour_bloggrid\";a:5:{s:4:\"file\";s:25:\"tour-large-03-415x194.jpg\";s:5:\"width\";i:415;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24833;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(182, 53, '_wp_attached_file', '2025/09/tour-large-04.jpg'),
(183, 53, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1284;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2025/09/tour-large-04.jpg\";s:8:\"filesize\";i:148038;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"tour-large-04-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14896;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"tour-large-04-1024x479.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97041;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"tour-large-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8643;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"tour-large-04-768x359.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63400;}s:15:\"dreamstour_list\";a:5:{s:4:\"file\";s:25:\"tour-large-04-350x164.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18931;}s:12:\"dreamstour_m\";a:5:{s:4:\"file\";s:25:\"tour-large-04-600x280.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43095;}s:19:\"dreamstour_bloglist\";a:5:{s:4:\"file\";s:25:\"tour-large-04-855x400.jpg\";s:5:\"width\";i:855;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74252;}s:19:\"dreamstour_bloggrid\";a:5:{s:4:\"file\";s:25:\"tour-large-04-415x194.jpg\";s:5:\"width\";i:415;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24710;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(184, 54, '_wp_attached_file', '2025/09/tour-large-05.jpg'),
(185, 54, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1284;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2025/09/tour-large-05.jpg\";s:8:\"filesize\";i:238747;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"tour-large-05-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17618;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"tour-large-05-1024x479.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134741;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"tour-large-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9972;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"tour-large-05-768x359.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84144;}s:15:\"dreamstour_list\";a:5:{s:4:\"file\";s:25:\"tour-large-05-350x164.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22718;}s:12:\"dreamstour_m\";a:5:{s:4:\"file\";s:25:\"tour-large-05-600x280.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55836;}s:19:\"dreamstour_bloglist\";a:5:{s:4:\"file\";s:25:\"tour-large-05-855x400.jpg\";s:5:\"width\";i:855;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100656;}s:19:\"dreamstour_bloggrid\";a:5:{s:4:\"file\";s:25:\"tour-large-05-415x194.jpg\";s:5:\"width\";i:415;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30391;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(186, 35, '_wp_old_slug', 'tour-2'),
(187, 55, '_wp_attached_file', '2025/09/itenary_0_1758008511.jpeg'),
(188, 55, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:185;s:6:\"height\";i:184;s:4:\"file\";s:33:\"2025/09/itenary_0_1758008511.jpeg\";s:8:\"filesize\";i:27306;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"itenary_0_1758008511-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9440;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(189, 56, '_wp_attached_file', '2025/09/itenary_1_1758008511.jpeg'),
(190, 56, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:185;s:6:\"height\";i:184;s:4:\"file\";s:33:\"2025/09/itenary_1_1758008511.jpeg\";s:8:\"filesize\";i:23846;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"itenary_1_1758008511-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8489;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(191, 57, '_wp_attached_file', '2025/09/itenary_2_1758008511.jpeg'),
(192, 57, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:185;s:6:\"height\";i:184;s:4:\"file\";s:33:\"2025/09/itenary_2_1758008511.jpeg\";s:8:\"filesize\";i:19929;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"itenary_2_1758008511-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6812;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(193, 58, '_wp_attached_file', '2025/09/itenary_0_1758008768.jpeg'),
(194, 58, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:185;s:6:\"height\";i:184;s:4:\"file\";s:33:\"2025/09/itenary_0_1758008768.jpeg\";s:8:\"filesize\";i:21865;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"itenary_0_1758008768-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7243;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(195, 35, 'tour_review_count', '1'),
(196, 35, 'tour_rating', '4'),
(199, 60, '_wp_attached_file', '2025/09/itenary_0_1758022293.jpeg'),
(200, 60, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:301;s:6:\"height\";i:300;s:4:\"file\";s:33:\"2025/09/itenary_0_1758022293.jpeg\";s:8:\"filesize\";i:66390;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"itenary_0_1758022293-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10185;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(213, 67, '_menu_item_type', 'post_type'),
(214, 67, '_menu_item_menu_item_parent', '0'),
(215, 67, '_menu_item_object_id', '1'),
(216, 67, '_menu_item_object', 'post'),
(217, 67, '_menu_item_target', ''),
(218, 67, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(219, 67, '_menu_item_xfn', ''),
(220, 67, '_menu_item_url', ''),
(221, 67, '_menu_item_orphaned', '1758026287'),
(226, 41, '_edit_last', '1'),
(239, 13, '_wp_old_date', '2025-09-11'),
(240, 14, '_wp_old_date', '2025-09-11'),
(241, 76, '_edit_last', '1'),
(242, 76, '_wp_page_template', 'default'),
(243, 76, '_edit_lock', '1758085650:1'),
(244, 78, '_menu_item_type', 'custom'),
(245, 78, '_menu_item_menu_item_parent', '0'),
(246, 78, '_menu_item_object_id', '78'),
(247, 78, '_menu_item_object', 'custom'),
(248, 78, '_menu_item_target', ''),
(249, 78, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(250, 78, '_menu_item_xfn', ''),
(251, 78, '_menu_item_url', '#'),
(253, 79, '_menu_item_type', 'custom'),
(254, 79, '_menu_item_menu_item_parent', '0'),
(255, 79, '_menu_item_object_id', '79'),
(256, 79, '_menu_item_object', 'custom'),
(257, 79, '_menu_item_target', ''),
(258, 79, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(259, 79, '_menu_item_xfn', ''),
(260, 79, '_menu_item_url', '#'),
(262, 80, '_edit_last', '1'),
(263, 80, '_edit_lock', '1758184449:1'),
(264, 80, '_wp_page_template', 'login-form.php'),
(265, 85, '_edit_last', '1'),
(266, 85, '_edit_lock', '1758173877:1'),
(267, 85, '_wp_page_template', 'register-form.php'),
(268, 87, '_edit_last', '1'),
(269, 87, '_edit_lock', '1758092955:1'),
(270, 87, '_wp_page_template', 'default'),
(271, 2, '_edit_last', '1'),
(272, 2, '_edit_lock', '1758094028:1'),
(273, 90, '_edit_last', '1'),
(274, 90, '_edit_lock', '1758093901:1'),
(275, 90, '_wp_page_template', 'default'),
(276, 92, '_edit_last', '1'),
(277, 92, '_wp_page_template', 'default'),
(278, 92, '_edit_lock', '1758094056:1'),
(279, 94, '_menu_item_type', 'post_type'),
(280, 94, '_menu_item_menu_item_parent', '78'),
(281, 94, '_menu_item_object_id', '92'),
(282, 94, '_menu_item_object', 'page'),
(283, 94, '_menu_item_target', ''),
(284, 94, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(285, 94, '_menu_item_xfn', ''),
(286, 94, '_menu_item_url', ''),
(288, 95, '_menu_item_type', 'post_type'),
(289, 95, '_menu_item_menu_item_parent', '78'),
(290, 95, '_menu_item_object_id', '90'),
(291, 95, '_menu_item_object', 'page'),
(292, 95, '_menu_item_target', ''),
(293, 95, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(294, 95, '_menu_item_xfn', ''),
(295, 95, '_menu_item_url', ''),
(297, 96, '_wp_attached_file', '2025/09/card-01.svg'),
(298, 96, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:1354;}'),
(299, 97, '_wp_attached_file', '2025/09/card-02.svg'),
(300, 97, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:1177;}'),
(301, 98, '_wp_attached_file', '2025/09/card-03.svg'),
(302, 98, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:2753;}'),
(303, 99, '_wp_attached_file', '2025/09/card-04.svg'),
(304, 99, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:1250;}'),
(305, 100, '_wp_attached_file', '2025/09/card-05.svg'),
(306, 100, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:2408;}'),
(307, 101, '_wp_attached_file', '2025/09/card-06.svg'),
(308, 101, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:6644;}'),
(309, 102, '_menu_item_type', 'custom'),
(310, 102, '_menu_item_menu_item_parent', '0'),
(311, 102, '_menu_item_object_id', '102'),
(312, 102, '_menu_item_object', 'custom'),
(313, 102, '_menu_item_target', ''),
(314, 102, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(315, 102, '_menu_item_xfn', ''),
(316, 102, '_menu_item_url', '#'),
(318, 103, '_menu_item_type', 'custom'),
(319, 103, '_menu_item_menu_item_parent', '0'),
(320, 103, '_menu_item_object_id', '103'),
(321, 103, '_menu_item_object', 'custom'),
(322, 103, '_menu_item_target', ''),
(323, 103, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(324, 103, '_menu_item_xfn', ''),
(325, 103, '_menu_item_url', '#'),
(327, 104, '_menu_item_type', 'custom'),
(328, 104, '_menu_item_menu_item_parent', '0'),
(329, 104, '_menu_item_object_id', '104'),
(330, 104, '_menu_item_object', 'custom'),
(331, 104, '_menu_item_target', ''),
(332, 104, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(333, 104, '_menu_item_xfn', ''),
(334, 104, '_menu_item_url', '#'),
(336, 105, '_menu_item_type', 'custom'),
(337, 105, '_menu_item_menu_item_parent', '0'),
(338, 105, '_menu_item_object_id', '105'),
(339, 105, '_menu_item_object', 'custom'),
(340, 105, '_menu_item_target', ''),
(341, 105, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(342, 105, '_menu_item_xfn', ''),
(343, 105, '_menu_item_url', '#'),
(345, 106, '_menu_item_type', 'custom'),
(346, 106, '_menu_item_menu_item_parent', '0'),
(347, 106, '_menu_item_object_id', '106'),
(348, 106, '_menu_item_object', 'custom'),
(349, 106, '_menu_item_target', ''),
(350, 106, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(351, 106, '_menu_item_xfn', ''),
(352, 106, '_menu_item_url', '#'),
(354, 107, '_menu_item_type', 'custom'),
(355, 107, '_menu_item_menu_item_parent', '0'),
(356, 107, '_menu_item_object_id', '107'),
(357, 107, '_menu_item_object', 'custom'),
(358, 107, '_menu_item_target', ''),
(359, 107, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(360, 107, '_menu_item_xfn', ''),
(361, 107, '_menu_item_url', '#'),
(363, 108, '_menu_item_type', 'custom'),
(364, 108, '_menu_item_menu_item_parent', '0'),
(365, 108, '_menu_item_object_id', '108'),
(366, 108, '_menu_item_object', 'custom'),
(367, 108, '_menu_item_target', ''),
(368, 108, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(369, 108, '_menu_item_xfn', ''),
(370, 108, '_menu_item_url', '#'),
(372, 109, '_menu_item_type', 'custom'),
(373, 109, '_menu_item_menu_item_parent', '0'),
(374, 109, '_menu_item_object_id', '109'),
(375, 109, '_menu_item_object', 'custom'),
(376, 109, '_menu_item_target', ''),
(377, 109, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(378, 109, '_menu_item_xfn', ''),
(379, 109, '_menu_item_url', '#'),
(381, 110, '_menu_item_type', 'post_type'),
(382, 110, '_menu_item_menu_item_parent', '0'),
(383, 110, '_menu_item_object_id', '2'),
(384, 110, '_menu_item_object', 'page'),
(385, 110, '_menu_item_target', ''),
(386, 110, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(387, 110, '_menu_item_xfn', ''),
(388, 110, '_menu_item_url', ''),
(390, 111, '_menu_item_type', 'custom'),
(391, 111, '_menu_item_menu_item_parent', '0'),
(392, 111, '_menu_item_object_id', '111'),
(393, 111, '_menu_item_object', 'custom'),
(394, 111, '_menu_item_target', ''),
(395, 111, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(396, 111, '_menu_item_xfn', ''),
(397, 111, '_menu_item_url', '#'),
(399, 112, '_menu_item_type', 'custom'),
(400, 112, '_menu_item_menu_item_parent', '0'),
(401, 112, '_menu_item_object_id', '112'),
(402, 112, '_menu_item_object', 'custom'),
(403, 112, '_menu_item_target', ''),
(404, 112, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(405, 112, '_menu_item_xfn', ''),
(406, 112, '_menu_item_url', '#'),
(408, 113, '_menu_item_type', 'custom'),
(409, 113, '_menu_item_menu_item_parent', '0'),
(410, 113, '_menu_item_object_id', '113'),
(411, 113, '_menu_item_object', 'custom'),
(412, 113, '_menu_item_target', ''),
(413, 113, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(414, 113, '_menu_item_xfn', ''),
(415, 113, '_menu_item_url', '#'),
(417, 114, '_menu_item_type', 'custom'),
(418, 114, '_menu_item_menu_item_parent', '0'),
(419, 114, '_menu_item_object_id', '114'),
(420, 114, '_menu_item_object', 'custom'),
(421, 114, '_menu_item_target', ''),
(422, 114, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(423, 114, '_menu_item_xfn', ''),
(424, 114, '_menu_item_url', '#'),
(426, 115, '_menu_item_type', 'custom'),
(427, 115, '_menu_item_menu_item_parent', '0'),
(428, 115, '_menu_item_object_id', '115'),
(429, 115, '_menu_item_object', 'custom'),
(430, 115, '_menu_item_target', ''),
(431, 115, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(432, 115, '_menu_item_xfn', ''),
(433, 115, '_menu_item_url', '#'),
(435, 116, '_menu_item_type', 'custom'),
(436, 116, '_menu_item_menu_item_parent', '0'),
(437, 116, '_menu_item_object_id', '116'),
(438, 116, '_menu_item_object', 'custom'),
(439, 116, '_menu_item_target', ''),
(440, 116, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(441, 116, '_menu_item_xfn', ''),
(442, 116, '_menu_item_url', '#'),
(444, 117, '_menu_item_type', 'custom'),
(445, 117, '_menu_item_menu_item_parent', '0'),
(446, 117, '_menu_item_object_id', '117'),
(447, 117, '_menu_item_object', 'custom'),
(448, 117, '_menu_item_target', ''),
(449, 117, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(450, 117, '_menu_item_xfn', ''),
(451, 117, '_menu_item_url', '#'),
(453, 118, '_menu_item_type', 'custom'),
(454, 118, '_menu_item_menu_item_parent', '0'),
(455, 118, '_menu_item_object_id', '118'),
(456, 118, '_menu_item_object', 'custom'),
(457, 118, '_menu_item_target', ''),
(458, 118, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(459, 118, '_menu_item_xfn', ''),
(460, 118, '_menu_item_url', '#'),
(462, 119, '_menu_item_type', 'custom'),
(463, 119, '_menu_item_menu_item_parent', '0'),
(464, 119, '_menu_item_object_id', '119'),
(465, 119, '_menu_item_object', 'custom'),
(466, 119, '_menu_item_target', ''),
(467, 119, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(468, 119, '_menu_item_xfn', ''),
(469, 119, '_menu_item_url', '#'),
(471, 120, '_menu_item_type', 'custom'),
(472, 120, '_menu_item_menu_item_parent', '0'),
(473, 120, '_menu_item_object_id', '120'),
(474, 120, '_menu_item_object', 'custom'),
(475, 120, '_menu_item_target', ''),
(476, 120, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(477, 120, '_menu_item_xfn', ''),
(478, 120, '_menu_item_url', '#'),
(480, 121, '_menu_item_type', 'custom'),
(481, 121, '_menu_item_menu_item_parent', '0'),
(482, 121, '_menu_item_object_id', '121'),
(483, 121, '_menu_item_object', 'custom'),
(484, 121, '_menu_item_target', ''),
(485, 121, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(486, 121, '_menu_item_xfn', ''),
(487, 121, '_menu_item_url', '#'),
(489, 122, '_menu_item_type', 'custom'),
(490, 122, '_menu_item_menu_item_parent', '0'),
(491, 122, '_menu_item_object_id', '122'),
(492, 122, '_menu_item_object', 'custom'),
(493, 122, '_menu_item_target', ''),
(494, 122, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(495, 122, '_menu_item_xfn', ''),
(496, 122, '_menu_item_url', '#'),
(498, 123, '_menu_item_type', 'custom'),
(499, 123, '_menu_item_menu_item_parent', '0'),
(500, 123, '_menu_item_object_id', '123'),
(501, 123, '_menu_item_object', 'custom'),
(502, 123, '_menu_item_target', ''),
(503, 123, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(504, 123, '_menu_item_xfn', ''),
(505, 123, '_menu_item_url', '#'),
(507, 124, '_menu_item_type', 'custom'),
(508, 124, '_menu_item_menu_item_parent', '0'),
(509, 124, '_menu_item_object_id', '124'),
(510, 124, '_menu_item_object', 'custom'),
(511, 124, '_menu_item_target', ''),
(512, 124, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(513, 124, '_menu_item_xfn', ''),
(514, 124, '_menu_item_url', '#'),
(516, 125, '_menu_item_type', 'custom'),
(517, 125, '_menu_item_menu_item_parent', '0'),
(518, 125, '_menu_item_object_id', '125'),
(519, 125, '_menu_item_object', 'custom'),
(520, 125, '_menu_item_target', ''),
(521, 125, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(522, 125, '_menu_item_xfn', ''),
(523, 125, '_menu_item_url', '#'),
(525, 126, '_menu_item_type', 'custom'),
(526, 126, '_menu_item_menu_item_parent', '0'),
(527, 126, '_menu_item_object_id', '126'),
(528, 126, '_menu_item_object', 'custom'),
(529, 126, '_menu_item_target', ''),
(530, 126, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(531, 126, '_menu_item_xfn', ''),
(532, 126, '_menu_item_url', '#'),
(534, 127, '_menu_item_type', 'custom'),
(535, 127, '_menu_item_menu_item_parent', '0'),
(536, 127, '_menu_item_object_id', '127'),
(537, 127, '_menu_item_object', 'custom'),
(538, 127, '_menu_item_target', ''),
(539, 127, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(540, 127, '_menu_item_xfn', ''),
(541, 127, '_menu_item_url', '#'),
(543, 128, '_menu_item_type', 'custom'),
(544, 128, '_menu_item_menu_item_parent', '0'),
(545, 128, '_menu_item_object_id', '128'),
(546, 128, '_menu_item_object', 'custom'),
(547, 128, '_menu_item_target', ''),
(548, 128, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(549, 128, '_menu_item_xfn', ''),
(550, 128, '_menu_item_url', '#'),
(552, 129, '_menu_item_type', 'custom'),
(553, 129, '_menu_item_menu_item_parent', '0'),
(554, 129, '_menu_item_object_id', '129'),
(555, 129, '_menu_item_object', 'custom'),
(556, 129, '_menu_item_target', ''),
(557, 129, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(558, 129, '_menu_item_xfn', ''),
(559, 129, '_menu_item_url', '#'),
(561, 130, '_menu_item_type', 'custom'),
(562, 130, '_menu_item_menu_item_parent', '0'),
(563, 130, '_menu_item_object_id', '130'),
(564, 130, '_menu_item_object', 'custom'),
(565, 130, '_menu_item_target', ''),
(566, 130, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(567, 130, '_menu_item_xfn', ''),
(568, 130, '_menu_item_url', '#'),
(570, 131, '_menu_item_type', 'custom'),
(571, 131, '_menu_item_menu_item_parent', '0'),
(572, 131, '_menu_item_object_id', '131'),
(573, 131, '_menu_item_object', 'custom'),
(574, 131, '_menu_item_target', ''),
(575, 131, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(576, 131, '_menu_item_xfn', ''),
(577, 131, '_menu_item_url', '#');
-- --------------------------------------------------------
--
-- Table structure for table `wp_posts`
--
CREATE TABLE `wp_posts` (
`ID` bigint(20) UNSIGNED NOT NULL,
`post_author` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT 0,
`post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_posts`
--
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2025-09-11 04:31:47', '2025-09-11 04:31:47', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2025-09-11 04:31:47', '2025-09-11 04:31:47', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=1', 0, 'post', '', 1),
(2, 1, '2025-09-11 04:31:47', '2025-09-11 04:31:47', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Blog List', '', 'publish', 'closed', 'closed', '', 'blog-list', '', '', '2025-09-17 07:27:08', '2025-09-17 07:27:08', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?page_id=2', 0, 'page', '', 0),
(3, 1, '2025-09-11 04:31:47', '2025-09-11 04:31:47', '<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we are</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://dev-dreamstour-wp.dreamstechnologies.com.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Comments</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Media</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cookies</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What rights you have over your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Where your data is sent</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->\n', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2025-09-11 04:31:47', '2025-09-11 04:31:47', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?page_id=3', 0, 'page', '', 0),
(4, 0, '2025-09-11 04:31:55', '2025-09-11 04:31:55', '<!-- wp:page-list /-->', 'Navigation', '', 'publish', 'closed', 'closed', '', 'navigation', '', '', '2025-09-11 04:31:55', '2025-09-11 04:31:55', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/index.php/2025/09/11/navigation/', 0, 'wp_navigation', '', 0),
(5, 0, '2025-09-11 04:31:55', '2025-09-11 04:31:55', '<!-- wp:page-list /-->', 'Navigation', '', 'publish', 'closed', 'closed', '', 'navigation', '', '', '2025-09-11 04:31:55', '2025-09-11 04:31:55', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/2025/09/11/navigation/', 0, 'wp_navigation', '', 0),
(7, 1, '2025-09-11 07:26:03', '0000-00-00 00:00:00', '', 'Home', '', 'draft', 'closed', 'closed', '', '', '', '', '2025-09-11 07:26:03', '0000-00-00 00:00:00', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=7', 1, 'nav_menu_item', '', 0),
(8, 1, '2025-09-11 07:26:03', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2025-09-11 07:26:03', '0000-00-00 00:00:00', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=8', 1, 'nav_menu_item', '', 0),
(9, 1, '2025-09-11 07:26:13', '0000-00-00 00:00:00', '', 'Home', '', 'draft', 'closed', 'closed', '', '', '', '', '2025-09-11 07:26:13', '0000-00-00 00:00:00', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=9', 1, 'nav_menu_item', '', 0),
(10, 1, '2025-09-11 07:26:13', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2025-09-11 07:26:13', '0000-00-00 00:00:00', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=10', 1, 'nav_menu_item', '', 0),
(11, 1, '2025-09-11 07:26:28', '0000-00-00 00:00:00', '', 'Home', '', 'draft', 'closed', 'closed', '', '', '', '', '2025-09-11 07:26:28', '0000-00-00 00:00:00', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=11', 1, 'nav_menu_item', '', 0),
(12, 1, '2025-09-11 07:26:28', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2025-09-11 07:26:28', '0000-00-00 00:00:00', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=12', 1, 'nav_menu_item', '', 0),
(13, 1, '2025-09-17 07:27:55', '2025-09-11 07:49:03', '', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2025-09-17 07:27:55', '2025-09-17 07:27:55', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=13', 1, 'nav_menu_item', '', 0),
(14, 1, '2025-09-17 07:27:55', '2025-09-11 07:49:03', ' ', '', '', 'publish', 'closed', 'closed', '', '14', '', '', '2025-09-17 07:27:55', '2025-09-17 07:27:55', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=14', 4, 'nav_menu_item', '', 0),
(15, 1, '2025-09-11 08:11:59', '2025-09-11 08:11:59', '', 'logo', '', 'inherit', 'open', 'closed', '', 'logo', '', '', '2025-09-11 08:11:59', '2025-09-11 08:11:59', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/logo.svg', 0, 'attachment', 'image/svg+xml', 0),
(16, 1, '2025-09-11 08:12:12', '2025-09-11 08:12:12', '', 'logo-dark', '', 'inherit', 'open', 'closed', '', 'logo-dark', '', '', '2025-09-11 08:12:12', '2025-09-11 08:12:12', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/logo-dark.svg', 0, 'attachment', 'image/svg+xml', 0),
(17, 1, '2025-09-11 08:12:17', '2025-09-11 08:12:17', '{\n \"dreamstour::custom_logo\": {\n \"value\": 16,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2025-09-11 08:12:17\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '4cc01e45-f17e-468e-b8f8-3023a7039de7', '', '', '2025-09-11 08:12:17', '2025-09-11 08:12:17', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/4cc01e45-f17e-468e-b8f8-3023a7039de7/', 0, 'customize_changeset', '', 0),
(18, 1, '2025-09-11 08:17:47', '2025-09-11 08:17:47', '{\"version\": 3, \"isGlobalStylesUserThemeJSON\": true }', 'Custom Styles', '', 'publish', 'closed', 'closed', '', 'wp-global-styles-twentytwentyfive', '', '', '2025-09-11 08:17:47', '2025-09-11 08:17:47', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/wp-global-styles-twentytwentyfive/', 0, 'wp_global_styles', '', 0),
(22, 1, '2025-09-12 05:26:03', '2025-09-12 05:26:03', '', 'zczc', '', 'publish', 'closed', 'closed', '', 'zczc', '', '', '2025-09-12 05:26:03', '2025-09-12 05:26:03', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?post_type=tour&p=22', 0, 'tour', '', 0),
(23, 1, '2025-09-12 05:43:34', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2025-09-12 05:43:34', '0000-00-00 00:00:00', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?page_id=23', 0, 'page', '', 0),
(24, 1, '2025-09-12 05:44:42', '2025-09-12 05:44:42', 'coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon v', 'Add Tours', '', 'publish', 'closed', 'closed', '', 'add-tours', '', '', '2025-09-12 10:14:04', '2025-09-12 10:14:04', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?page_id=24', 0, 'page', '', 0),
(25, 1, '2025-09-12 05:44:42', '2025-09-12 05:44:42', '', 'Add Tours', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2025-09-12 05:44:42', '2025-09-12 05:44:42', '', 24, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=25', 0, 'revision', '', 0),
(26, 1, '2025-09-12 05:44:52', '2025-09-12 05:44:52', 'coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon coming soon v', 'Add Tours', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2025-09-12 05:44:52', '2025-09-12 05:44:52', '', 24, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=26', 0, 'revision', '', 0),
(27, 1, '2025-09-12 05:44:54', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2025-09-12 05:44:54', '0000-00-00 00:00:00', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?page_id=27', 0, 'page', '', 0),
(28, 1, '2025-09-12 11:24:49', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2025-09-12 11:24:49', '0000-00-00 00:00:00', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?page_id=28', 0, 'page', '', 0),
(29, 1, '2025-09-13 04:08:16', '2025-09-13 04:08:16', '', 'atest', '', 'publish', 'closed', 'closed', '', 'atest', '', '', '2025-09-13 04:08:16', '2025-09-13 04:08:16', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/atest/', 0, 'tour', '', 0),
(30, 1, '2025-09-13 04:08:37', '2025-09-13 04:08:37', '', 'atest zxczxc', '', 'publish', 'closed', 'closed', '', 'atest-zxczxc', '', '', '2025-09-13 04:08:37', '2025-09-13 04:08:37', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/atest-zxczxc/', 0, 'tour', '', 0),
(31, 1, '2025-09-13 07:16:19', '2025-09-13 07:16:19', '', 'Tour 1', '', 'publish', 'closed', 'closed', '', 'tour-1', '', '', '2025-09-13 07:16:19', '2025-09-13 07:16:19', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/tour-1/', 0, 'tour', '', 0),
(32, 1, '2025-09-13 07:18:15', '2025-09-13 07:18:15', '', 'Tour 1', '', 'publish', 'closed', 'closed', '', 'tour-1-2', '', '', '2025-09-13 07:18:15', '2025-09-13 07:18:15', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/tour-1-2/', 0, 'tour', '', 0),
(33, 1, '2025-09-13 07:18:15', '2025-09-13 07:18:15', '', 'about.png', '', 'inherit', 'open', 'closed', '', 'about-png', '', '', '2025-09-13 07:18:15', '2025-09-13 07:18:15', '', 32, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/tour-1-2/about-png/', 0, 'attachment', 'image/png', 0),
(34, 1, '2025-09-13 07:18:16', '2025-09-13 07:18:16', '', 'apple-touch-icon.png', '', 'inherit', 'open', 'closed', '', 'apple-touch-icon-png', '', '', '2025-09-13 07:18:16', '2025-09-13 07:18:16', '', 32, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/tour-1-2/apple-touch-icon-png/', 0, 'attachment', 'image/png', 0),
(35, 1, '2025-09-13 07:21:28', '2025-09-13 07:21:28', '<p>Kicking off on April 1, 2025, the \"DreamsTour\" will take Luna to major cities across North America and Europe, including Los Angeles, New York, Chicago, Toronto, and London. Each concert will showcase her unique blend of pop and ethereal soundscapes, bringing her music to life in a way you\'ve never seen before. </p>\r\n<p>Each concert will showcase her unique blend of pop and ethereal soundscapes, bringing her music to life in a way you\'ve never seen before.</p>', 'Rainbow Mountain Valley', 'Kicking off on April 1, 2025, the \"DreamsTour\" will take Luna to major cities across North America and Europe, including Los Angeles, New York, Chicago, Toronto, and London. Each concert will showcase her unique blend of pop and ethereal soundscapes,', 'publish', 'closed', 'closed', '', 'rainbow-mountain-valley', '', '', '2025-09-17 15:41:49', '2025-09-17 15:41:49', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/tour-2/', 0, 'tour', '', 3),
(38, 1, '2025-09-13 07:21:50', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2025-09-13 07:21:50', '0000-00-00 00:00:00', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?post_type=tour&p=38', 0, 'tour', '', 0),
(39, 1, '2025-09-13 09:29:28', '2025-09-13 09:29:28', '', 'itenary_migrated_0_1757755768.jpeg', '', 'inherit', 'open', 'closed', '', 'itenary_migrated_0_1757755768-jpeg', '', '', '2025-09-13 09:29:28', '2025-09-13 09:29:28', '', 35, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/tour-2/itenary_migrated_0_1757755768-jpeg/', 0, 'attachment', 'image/jpeg', 0),
(40, 1, '2025-09-13 09:29:28', '2025-09-13 09:29:28', '', 'itenary_migrated_1_1757755768.jpeg', '', 'inherit', 'open', 'closed', '', 'itenary_migrated_1_1757755768-jpeg', '', '', '2025-09-13 09:29:28', '2025-09-13 09:29:28', '', 35, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/tour-2/itenary_migrated_1_1757755768-jpeg/', 0, 'attachment', 'image/jpeg', 0),
(41, 1, '2025-09-13 09:32:38', '2025-09-13 09:32:38', '<p>coming soon coming soon coming soon</p> ', 'zxc', '', 'publish', 'closed', 'closed', '', 'zxc', '', '', '2025-09-16 13:01:24', '2025-09-16 13:01:24', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/zxc/', 0, 'tour', '', 0),
(42, 1, '2025-09-13 09:35:28', '2025-09-13 09:35:28', '', 'itenary_0_1757756128.jpeg', '', 'inherit', 'open', 'closed', '', 'itenary_0_1757756128-jpeg', '', '', '2025-09-13 09:35:28', '2025-09-13 09:35:28', '', 41, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/zxc/itenary_0_1757756128-jpeg/', 0, 'attachment', 'image/jpeg', 0),
(43, 1, '2025-09-13 09:37:12', '2025-09-13 09:37:12', '', 'itenary_0_1757756232.jpeg', '', 'inherit', 'open', 'closed', '', 'itenary_0_1757756232-jpeg', '', '', '2025-09-13 09:37:12', '2025-09-13 09:37:12', '', 35, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/tour-2/itenary_0_1757756232-jpeg/', 0, 'attachment', 'image/jpeg', 0),
(44, 1, '2025-09-13 09:39:42', '2025-09-13 09:39:42', '', 'itenary_0_1757756382.jpeg', '', 'inherit', 'open', 'closed', '', 'itenary_0_1757756382-jpeg', '', '', '2025-09-13 09:39:42', '2025-09-13 09:39:42', '', 35, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/tour-2/itenary_0_1757756382-jpeg/', 0, 'attachment', 'image/jpeg', 0),
(50, 1, '2025-09-16 06:41:50', '2025-09-16 06:41:50', '', 'tour-large-01.jpg', '', 'inherit', 'open', 'closed', '', 'tour-large-01-jpg', '', '', '2025-09-16 06:41:50', '2025-09-16 06:41:50', '', 35, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/tour-2/tour-large-01-jpg/', 0, 'attachment', 'image/jpeg', 0),
(51, 1, '2025-09-16 06:41:51', '2025-09-16 06:41:51', '', 'tour-large-02.jpg', '', 'inherit', 'open', 'closed', '', 'tour-large-02-jpg', '', '', '2025-09-16 06:41:51', '2025-09-16 06:41:51', '', 35, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/tour-2/tour-large-02-jpg/', 0, 'attachment', 'image/jpeg', 0),
(52, 1, '2025-09-16 06:41:52', '2025-09-16 06:41:52', '', 'tour-large-03.jpg', '', 'inherit', 'open', 'closed', '', 'tour-large-03-jpg', '', '', '2025-09-16 06:41:52', '2025-09-16 06:41:52', '', 35, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/tour-2/tour-large-03-jpg/', 0, 'attachment', 'image/jpeg', 0),
(53, 1, '2025-09-16 06:41:52', '2025-09-16 06:41:52', '', 'tour-large-04.jpg', '', 'inherit', 'open', 'closed', '', 'tour-large-04-jpg', '', '', '2025-09-16 06:41:52', '2025-09-16 06:41:52', '', 35, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/tour-2/tour-large-04-jpg/', 0, 'attachment', 'image/jpeg', 0),
(54, 1, '2025-09-16 06:41:53', '2025-09-16 06:41:53', '', 'tour-large-05.jpg', '', 'inherit', 'open', 'closed', '', 'tour-large-05-jpg', '', '', '2025-09-16 06:41:53', '2025-09-16 06:41:53', '', 35, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/tour-2/tour-large-05-jpg/', 0, 'attachment', 'image/jpeg', 0),
(55, 1, '2025-09-16 07:41:51', '2025-09-16 07:41:51', '', 'itenary_0_1758008511.jpeg', '', 'inherit', 'open', 'closed', '', 'itenary_0_1758008511-jpeg', '', '', '2025-09-16 07:41:51', '2025-09-16 07:41:51', '', 35, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/rainbow-mountain-valley/itenary_0_1758008511-jpeg/', 0, 'attachment', 'image/jpeg', 0),
(56, 1, '2025-09-16 07:41:51', '2025-09-16 07:41:51', '', 'itenary_1_1758008511.jpeg', '', 'inherit', 'open', 'closed', '', 'itenary_1_1758008511-jpeg', '', '', '2025-09-16 07:41:51', '2025-09-16 07:41:51', '', 35, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/rainbow-mountain-valley/itenary_1_1758008511-jpeg/', 0, 'attachment', 'image/jpeg', 0),
(57, 1, '2025-09-16 07:41:51', '2025-09-16 07:41:51', '', 'itenary_2_1758008511.jpeg', '', 'inherit', 'open', 'closed', '', 'itenary_2_1758008511-jpeg', '', '', '2025-09-16 07:41:51', '2025-09-16 07:41:51', '', 35, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/rainbow-mountain-valley/itenary_2_1758008511-jpeg/', 0, 'attachment', 'image/jpeg', 0),
(58, 1, '2025-09-16 07:46:08', '2025-09-16 07:46:08', '', 'itenary_0_1758008768.jpeg', '', 'inherit', 'open', 'closed', '', 'itenary_0_1758008768-jpeg', '', '', '2025-09-16 07:46:08', '2025-09-16 07:46:08', '', 35, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/rainbow-mountain-valley/itenary_0_1758008768-jpeg/', 0, 'attachment', 'image/jpeg', 0),
(60, 1, '2025-09-16 11:31:33', '2025-09-16 11:31:33', '', 'itenary_0_1758022293.jpeg', '', 'inherit', 'open', 'closed', '', 'itenary_0_1758022293-jpeg', '', '', '2025-09-16 11:31:33', '2025-09-16 11:31:33', '', 35, 'http://dev-dreamstour-wp.dreamstechnologies.com/tour/rainbow-mountain-valley/itenary_0_1758022293-jpeg/', 0, 'attachment', 'image/jpeg', 0),
(67, 1, '2025-09-16 12:38:07', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2025-09-16 12:38:07', '0000-00-00 00:00:00', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=67', 1, 'nav_menu_item', '', 0),
(76, 1, '2025-09-17 05:09:32', '2025-09-17 05:09:32', '', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2025-09-17 05:09:32', '2025-09-17 05:09:32', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?page_id=76', 0, 'page', '', 0),
(77, 1, '2025-09-17 05:09:32', '2025-09-17 05:09:32', '', 'Home', '', 'inherit', 'closed', 'closed', '', '76-revision-v1', '', '', '2025-09-17 05:09:32', '2025-09-17 05:09:32', '', 76, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=77', 0, 'revision', '', 0),
(78, 1, '2025-09-17 07:27:55', '2025-09-17 06:13:02', '', 'Blogs', '', 'publish', 'closed', 'closed', '', 'sub-menu', '', '', '2025-09-17 07:27:55', '2025-09-17 07:27:55', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=78', 3, 'nav_menu_item', '', 0),
(79, 1, '2025-09-17 07:27:55', '2025-09-17 06:13:02', '', 'Tours', '', 'publish', 'closed', 'closed', '', 'sub-menu-2', '', '', '2025-09-17 07:27:55', '2025-09-17 07:27:55', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=79', 2, 'nav_menu_item', '', 0),
(80, 1, '2025-09-17 06:55:44', '2025-09-17 06:55:44', '', 'Sign In', '', 'publish', 'closed', 'closed', '', 'sign-in', '', '', '2025-09-18 07:38:11', '2025-09-18 07:38:11', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?page_id=80', 0, 'page', '', 0),
(81, 1, '2025-09-17 06:55:38', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2025-09-17 06:55:38', '0000-00-00 00:00:00', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?page_id=81', 0, 'page', '', 0),
(82, 1, '2025-09-17 06:55:44', '2025-09-17 06:55:44', '', 'Sign In', '', 'inherit', 'closed', 'closed', '', '80-revision-v1', '', '', '2025-09-17 06:55:44', '2025-09-17 06:55:44', '', 80, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=82', 0, 'revision', '', 0),
(83, 1, '2025-09-17 06:55:47', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2025-09-17 06:55:47', '0000-00-00 00:00:00', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?page_id=83', 0, 'page', '', 0),
(84, 1, '2025-09-17 06:55:47', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2025-09-17 06:55:47', '0000-00-00 00:00:00', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?page_id=84', 0, 'page', '', 0),
(85, 1, '2025-09-17 06:56:05', '2025-09-17 06:56:05', '', 'Become Expert', '', 'publish', 'closed', 'closed', '', 'become-expert', '', '', '2025-09-18 05:39:57', '2025-09-18 05:39:57', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?page_id=85', 0, 'page', '', 0),
(86, 1, '2025-09-17 06:56:05', '2025-09-17 06:56:05', '', 'Become Expert', '', 'inherit', 'closed', 'closed', '', '85-revision-v1', '', '', '2025-09-17 06:56:05', '2025-09-17 06:56:05', '', 85, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=86', 0, 'revision', '', 0),
(87, 1, '2025-09-17 06:56:57', '2025-09-17 06:56:57', '', 'Forgot Password', '', 'publish', 'closed', 'closed', '', 'forgot-password', '', '', '2025-09-17 06:56:57', '2025-09-17 06:56:57', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?page_id=87', 0, 'page', '', 0),
(88, 1, '2025-09-17 06:56:57', '2025-09-17 06:56:57', '', 'Forgot Password', '', 'inherit', 'closed', 'closed', '', '87-revision-v1', '', '', '2025-09-17 06:56:57', '2025-09-17 06:56:57', '', 87, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=88', 0, 'revision', '', 0),
(89, 1, '2025-09-17 07:27:08', '2025-09-17 07:27:08', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://dev-dreamstour-wp.dreamstechnologies.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Blog List', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2025-09-17 07:27:08', '2025-09-17 07:27:08', '', 2, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=89', 0, 'revision', '', 0),
(90, 1, '2025-09-17 07:27:22', '2025-09-17 07:27:22', '', 'Blog Grid', '', 'publish', 'closed', 'closed', '', 'blog-grid', '', '', '2025-09-17 07:27:22', '2025-09-17 07:27:22', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?page_id=90', 0, 'page', '', 0),
(91, 1, '2025-09-17 07:27:22', '2025-09-17 07:27:22', '', 'Blog Grid', '', 'inherit', 'closed', 'closed', '', '90-revision-v1', '', '', '2025-09-17 07:27:22', '2025-09-17 07:27:22', '', 90, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=91', 0, 'revision', '', 0),
(92, 1, '2025-09-17 07:27:35', '2025-09-17 07:27:35', '', 'Blog Details', '', 'publish', 'closed', 'closed', '', 'blog-details', '', '', '2025-09-17 07:27:35', '2025-09-17 07:27:35', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?page_id=92', 0, 'page', '', 0),
(93, 1, '2025-09-17 07:27:35', '2025-09-17 07:27:35', '', 'Blog Details', '', 'inherit', 'closed', 'closed', '', '92-revision-v1', '', '', '2025-09-17 07:27:35', '2025-09-17 07:27:35', '', 92, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=93', 0, 'revision', '', 0),
(94, 1, '2025-09-17 07:27:55', '2025-09-17 07:27:55', ' ', '', '', 'publish', 'closed', 'closed', '', '94', '', '', '2025-09-17 07:27:55', '2025-09-17 07:27:55', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=94', 6, 'nav_menu_item', '', 0),
(95, 1, '2025-09-17 07:27:55', '2025-09-17 07:27:55', ' ', '', '', 'publish', 'closed', 'closed', '', '95', '', '', '2025-09-17 07:27:55', '2025-09-17 07:27:55', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=95', 5, 'nav_menu_item', '', 0),
(96, 1, '2025-09-17 12:01:55', '2025-09-17 12:01:55', '', 'card-01', '', 'inherit', 'open', 'closed', '', 'card-01', '', '', '2025-09-17 12:01:55', '2025-09-17 12:01:55', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/card-01.svg', 0, 'attachment', 'image/svg+xml', 0),
(97, 1, '2025-09-17 12:01:56', '2025-09-17 12:01:56', '', 'card-02', '', 'inherit', 'open', 'closed', '', 'card-02', '', '', '2025-09-17 12:01:56', '2025-09-17 12:01:56', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/card-02.svg', 0, 'attachment', 'image/svg+xml', 0),
(98, 1, '2025-09-17 12:01:56', '2025-09-17 12:01:56', '', 'card-03', '', 'inherit', 'open', 'closed', '', 'card-03', '', '', '2025-09-17 12:01:56', '2025-09-17 12:01:56', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/card-03.svg', 0, 'attachment', 'image/svg+xml', 0),
(99, 1, '2025-09-17 12:01:57', '2025-09-17 12:01:57', '', 'card-04', '', 'inherit', 'open', 'closed', '', 'card-04', '', '', '2025-09-17 12:01:57', '2025-09-17 12:01:57', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/card-04.svg', 0, 'attachment', 'image/svg+xml', 0),
(100, 1, '2025-09-17 12:01:58', '2025-09-17 12:01:58', '', 'card-05', '', 'inherit', 'open', 'closed', '', 'card-05', '', '', '2025-09-17 12:01:58', '2025-09-17 12:01:58', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/card-05.svg', 0, 'attachment', 'image/svg+xml', 0),
(101, 1, '2025-09-17 12:01:58', '2025-09-17 12:01:58', '', 'card-06', '', 'inherit', 'open', 'closed', '', 'card-06', '', '', '2025-09-17 12:01:58', '2025-09-17 12:01:58', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/wp-content/uploads/2025/09/card-06.svg', 0, 'attachment', 'image/svg+xml', 0),
(102, 1, '2025-09-17 12:10:30', '2025-09-17 12:10:30', '', 'Our Team', '', 'publish', 'closed', 'closed', '', 'our-team', '', '', '2025-09-17 12:10:30', '2025-09-17 12:10:30', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=102', 1, 'nav_menu_item', '', 0),
(103, 1, '2025-09-17 12:10:30', '2025-09-17 12:10:30', '', 'Pricing Plans', '', 'publish', 'closed', 'closed', '', 'pricing-plans', '', '', '2025-09-17 12:10:30', '2025-09-17 12:10:30', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=103', 2, 'nav_menu_item', '', 0),
(104, 1, '2025-09-17 12:10:30', '2025-09-17 12:10:30', '', 'Gallery', '', 'publish', 'closed', 'closed', '', 'gallery', '', '', '2025-09-17 12:10:30', '2025-09-17 12:10:30', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=104', 3, 'nav_menu_item', '', 0),
(105, 1, '2025-09-17 12:10:30', '2025-09-17 12:10:30', '', 'Settings', '', 'publish', 'closed', 'closed', '', 'settings', '', '', '2025-09-17 12:10:30', '2025-09-17 12:10:30', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=105', 4, 'nav_menu_item', '', 0),
(106, 1, '2025-09-17 12:10:30', '2025-09-17 12:10:30', '', 'Profile', '', 'publish', 'closed', 'closed', '', 'profile', '', '', '2025-09-17 12:10:30', '2025-09-17 12:10:30', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=106', 5, 'nav_menu_item', '', 0),
(107, 1, '2025-09-17 12:10:30', '2025-09-17 12:10:30', '', 'Listings', '', 'publish', 'closed', 'closed', '', 'listings', '', '', '2025-09-17 12:10:30', '2025-09-17 12:10:30', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=107', 6, 'nav_menu_item', '', 0),
(108, 1, '2025-09-17 12:37:31', '2025-09-17 12:37:31', '', 'About Us', '', 'publish', 'closed', 'closed', '', 'about-us', '', '', '2025-09-17 12:37:31', '2025-09-17 12:37:31', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=108', 1, 'nav_menu_item', '', 0),
(109, 1, '2025-09-17 12:37:31', '2025-09-17 12:37:31', '', 'Careers', '', 'publish', 'closed', 'closed', '', 'careers', '', '', '2025-09-17 12:37:31', '2025-09-17 12:37:31', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=109', 2, 'nav_menu_item', '', 0),
(110, 1, '2025-09-17 12:37:31', '2025-09-17 12:37:31', '', 'Blog', '', 'publish', 'closed', 'closed', '', 'blog', '', '', '2025-09-17 12:37:31', '2025-09-17 12:37:31', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=110', 3, 'nav_menu_item', '', 0),
(111, 1, '2025-09-17 12:37:32', '2025-09-17 12:37:32', '', 'Affiliate Program', '', 'publish', 'closed', 'closed', '', 'affiliate-program', '', '', '2025-09-17 12:37:32', '2025-09-17 12:37:32', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=111', 4, 'nav_menu_item', '', 0),
(112, 1, '2025-09-17 12:37:32', '2025-09-17 12:37:32', '', 'Add Your Listing', '', 'publish', 'closed', 'closed', '', 'add-your-listing', '', '', '2025-09-17 12:37:32', '2025-09-17 12:37:32', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=112', 5, 'nav_menu_item', '', 0),
(113, 1, '2025-09-17 12:37:32', '2025-09-17 12:37:32', '', 'Our Partners', '', 'publish', 'closed', 'closed', '', 'our-partners', '', '', '2025-09-17 12:37:32', '2025-09-17 12:37:32', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=113', 6, 'nav_menu_item', '', 0),
(114, 1, '2025-09-17 12:39:14', '2025-09-17 12:39:14', '', 'Hawai', '', 'publish', 'closed', 'closed', '', 'hawai', '', '', '2025-09-17 12:39:14', '2025-09-17 12:39:14', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=114', 1, 'nav_menu_item', '', 0),
(115, 1, '2025-09-17 12:39:14', '2025-09-17 12:39:14', '', 'Istanbul', '', 'publish', 'closed', 'closed', '', 'istanbul', '', '', '2025-09-17 12:39:14', '2025-09-17 12:39:14', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=115', 2, 'nav_menu_item', '', 0),
(116, 1, '2025-09-17 12:39:14', '2025-09-17 12:39:14', '', 'San Diego', '', 'publish', 'closed', 'closed', '', 'san-diego', '', '', '2025-09-17 12:39:14', '2025-09-17 12:39:14', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=116', 3, 'nav_menu_item', '', 0),
(117, 1, '2025-09-17 12:39:14', '2025-09-17 12:39:14', '', 'Belgium', '', 'publish', 'closed', 'closed', '', 'belgium', '', '', '2025-09-17 12:39:14', '2025-09-17 12:39:14', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=117', 4, 'nav_menu_item', '', 0),
(118, 1, '2025-09-17 12:39:14', '2025-09-17 12:39:14', '', 'Los Angeles', '', 'publish', 'closed', 'closed', '', 'los-angeles', '', '', '2025-09-17 12:39:14', '2025-09-17 12:39:14', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=118', 5, 'nav_menu_item', '', 0),
(119, 1, '2025-09-17 12:39:14', '2025-09-17 12:39:14', '', 'Newyork', '', 'publish', 'closed', 'closed', '', 'newyork', '', '', '2025-09-17 12:39:14', '2025-09-17 12:39:14', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=119', 6, 'nav_menu_item', '', 0),
(120, 1, '2025-09-17 12:40:34', '2025-09-17 12:40:34', '', 'Contact Us', '', 'publish', 'closed', 'closed', '', 'contact-us', '', '', '2025-09-17 12:40:34', '2025-09-17 12:40:34', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=120', 1, 'nav_menu_item', '', 0),
(121, 1, '2025-09-17 12:40:34', '2025-09-17 12:40:34', '', 'Legal Notice', '', 'publish', 'closed', 'closed', '', 'legal-notice', '', '', '2025-09-17 12:40:34', '2025-09-17 12:40:34', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=121', 2, 'nav_menu_item', '', 0),
(122, 1, '2025-09-17 12:40:34', '2025-09-17 12:40:34', '', 'Privacy Policy', '', 'publish', 'closed', 'closed', '', 'privacy-policy', '', '', '2025-09-17 12:40:34', '2025-09-17 12:40:34', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=122', 3, 'nav_menu_item', '', 0),
(123, 1, '2025-09-17 12:40:34', '2025-09-17 12:40:34', '', 'Terms and Conditions', '', 'publish', 'closed', 'closed', '', 'terms-and-conditions', '', '', '2025-09-17 12:40:34', '2025-09-17 12:40:34', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=123', 4, 'nav_menu_item', '', 0),
(124, 1, '2025-09-17 12:40:34', '2025-09-17 12:40:34', '', 'Chat Support', '', 'publish', 'closed', 'closed', '', 'chat-support', '', '', '2025-09-17 12:40:34', '2025-09-17 12:40:34', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=124', 5, 'nav_menu_item', '', 0),
(125, 1, '2025-09-17 12:40:34', '2025-09-17 12:40:34', '', 'Refund Policy', '', 'publish', 'closed', 'closed', '', 'refund-policy', '', '', '2025-09-17 12:40:34', '2025-09-17 12:40:34', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=125', 6, 'nav_menu_item', '', 0),
(126, 1, '2025-09-17 12:46:40', '2025-09-17 12:46:37', '', 'Hotel', '', 'publish', 'closed', 'closed', '', 'hotel', '', '', '2025-09-17 12:46:40', '2025-09-17 12:46:40', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=126', 1, 'nav_menu_item', '', 0),
(127, 1, '2025-09-17 12:46:40', '2025-09-17 12:46:37', '', 'Activity Finder', '', 'publish', 'closed', 'closed', '', 'activity-finder', '', '', '2025-09-17 12:46:40', '2025-09-17 12:46:40', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=127', 2, 'nav_menu_item', '', 0),
(128, 1, '2025-09-17 12:46:40', '2025-09-17 12:46:37', '', 'Flight Finder', '', 'publish', 'closed', 'closed', '', 'flight-finder', '', '', '2025-09-17 12:46:40', '2025-09-17 12:46:40', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=128', 3, 'nav_menu_item', '', 0),
(129, 1, '2025-09-17 12:46:40', '2025-09-17 12:46:37', '', 'Holiday Rental', '', 'publish', 'closed', 'closed', '', 'holiday-rental', '', '', '2025-09-17 12:46:40', '2025-09-17 12:46:40', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=129', 4, 'nav_menu_item', '', 0),
(130, 1, '2025-09-17 12:46:40', '2025-09-17 12:46:37', '', 'Car Rental', '', 'publish', 'closed', 'closed', '', 'car-rental', '', '', '2025-09-17 12:46:40', '2025-09-17 12:46:40', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=130', 5, 'nav_menu_item', '', 0),
(131, 1, '2025-09-17 12:46:40', '2025-09-17 12:46:37', '', 'Holiday Packages', '', 'publish', 'closed', 'closed', '', 'holiday-packages', '', '', '2025-09-17 12:46:40', '2025-09-17 12:46:40', '', 0, 'http://dev-dreamstour-wp.dreamstechnologies.com/?p=131', 6, 'nav_menu_item', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_termmeta`
--
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_termmeta`
--
INSERT INTO `wp_termmeta` (`meta_id`, `term_id`, `meta_key`, `meta_value`) VALUES
(3, 41, 'dreamstour-why-book-icon', 'isax isax-medal-star'),
(4, 42, 'dreamstour-why-book-icon', 'isax isax-menu text-primary'),
(5, 43, 'dreamstour-why-book-icon', 'isax isax-message-minus'),
(6, 44, 'dreamstour-why-book-icon', 'isax isax-user-add'),
(7, 45, 'dreamstour-why-book-icon', 'isax isax-grammerly');
-- --------------------------------------------------------
--
-- Table structure for table `wp_terms`
--
CREATE TABLE `wp_terms` (
`term_id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_terms`
--
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'Menu 1', 'menu-1', 0),
(3, 'twentytwentyfive', 'twentytwentyfive', 0),
(4, '4 Days', '4-days', 0),
(5, '3 Nights', '3-nights', 0),
(6, 'Ecotourism', 'ecotourism', 0),
(7, 'Adventure Tour', 'adventure-tour', 0),
(8, 'United States', 'united-states', 0),
(9, 'United Kingdom', 'united-kingdom', 0),
(10, 'Canada', 'canada', 0),
(11, '5 Days', '5-days', 0),
(12, '6 Days', '6-days', 0),
(13, '4 Nights', '4-nights', 0),
(14, '5 Nights', '5-nights', 0),
(15, 'Cultural Experiences', 'cultural-experiences', 0),
(16, 'Culinary Tours', 'culinary-tours', 0),
(17, 'Sightseeing', 'sightseeing', 0),
(18, 'Hiking & Nature Walks', 'hiking-nature-walks', 0),
(19, 'Water Sports', 'water-sports', 0),
(20, 'Wildlife Safaris', 'wildlife-safaris', 0),
(21, 'Exclusive Merchandise', 'exclusive-merchandise', 0),
(22, 'Early Venue Access', 'early-venue-access', 0),
(23, 'Acoustic Performance', 'acoustic-performance', 0),
(24, 'Transportation (if applicable)', 'transportation-if-applicable', 0),
(25, 'Wildlife Safaris', 'wildlife-safaris', 0),
(26, 'Culinary Tours', 'culinary-tours', 0),
(27, 'Travel Expenses', 'travel-expenses', 0),
(28, 'Travel Expenses', 'travel-expenses1', 0),
(29, 'Accommodation', 'accommodation', 0),
(30, 'Food and Beverage', 'food-and-beverage', 0),
(31, 'Parking Fees', 'parking-fees', 0),
(32, 'Personal Expenses', 'personal-expenses', 0),
(33, 'Group Tours', 'group-tours', 0),
(34, 'Beach Tours', 'beach-tours', 0),
(35, 'Historical Tours', 'historical-tours', 0),
(36, 'Footer Pages Menu', 'footer-pages-menu', 0),
(37, 'Footer Company Menu', 'footer-company-menu', 0),
(38, 'Footer Destinations Menu', 'footer-destinations-menu', 0),
(39, 'Footer Support Menu', 'footer-support-menu', 0),
(40, 'Footer Services Menu', 'footer-services-menu', 0),
(41, 'Expertise and Experience', 'expertise-and-experience', 0),
(42, 'Tailored Services', 'tailored-services', 0),
(43, 'Comprehensive Planning', 'comprehensive-planning', 0),
(44, 'Client Satisfaction', 'client-satisfaction', 0),
(45, '24/7 Support', '24-7-support', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_relationships`
--
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`term_order` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_term_relationships`
--
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(13, 2, 0),
(14, 2, 0),
(18, 3, 0),
(29, 4, 0),
(29, 5, 0),
(30, 4, 0),
(30, 5, 0),
(31, 5, 0),
(31, 6, 0),
(31, 10, 0),
(31, 11, 0),
(31, 15, 0),
(31, 16, 0),
(31, 22, 0),
(31, 23, 0),
(31, 29, 0),
(31, 31, 0),
(32, 5, 0),
(32, 6, 0),
(32, 10, 0),
(32, 11, 0),
(32, 15, 0),
(32, 16, 0),
(32, 22, 0),
(32, 23, 0),
(32, 29, 0),
(32, 31, 0),
(35, 4, 0),
(35, 5, 0),
(35, 6, 0),
(35, 10, 0),
(35, 15, 0),
(35, 16, 0),
(35, 17, 0),
(35, 18, 0),
(35, 19, 0),
(35, 20, 0),
(35, 21, 0),
(35, 22, 0),
(35, 23, 0),
(35, 24, 0),
(35, 25, 0),
(35, 26, 0),
(35, 27, 0),
(35, 28, 0),
(35, 29, 0),
(35, 30, 0),
(35, 31, 0),
(35, 32, 0),
(35, 41, 0),
(35, 42, 0),
(35, 43, 0),
(35, 44, 0),
(35, 45, 0),
(78, 2, 0),
(79, 2, 0),
(94, 2, 0),
(95, 2, 0),
(102, 36, 0),
(103, 36, 0),
(104, 36, 0),
(105, 36, 0),
(106, 36, 0),
(107, 36, 0),
(108, 37, 0),
(109, 37, 0),
(110, 37, 0),
(111, 37, 0),
(112, 37, 0),
(113, 37, 0),
(114, 38, 0),
(115, 38, 0),
(116, 38, 0),
(117, 38, 0),
(118, 38, 0),
(119, 38, 0),
(120, 39, 0),
(121, 39, 0),
(122, 39, 0),
(123, 39, 0),
(124, 39, 0),
(125, 39, 0),
(126, 40, 0),
(127, 40, 0),
(128, 40, 0),
(129, 40, 0),
(130, 40, 0),
(131, 40, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_taxonomy`
--
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`count` bigint(20) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_term_taxonomy`
--
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'nav_menu', '', 0, 6),
(3, 3, 'wp_theme', '', 0, 1),
(4, 4, 'tour_duration_days', '', 0, 3),
(5, 5, 'tour_duration_nights', '', 0, 5),
(6, 6, 'tour_category', '', 0, 3),
(7, 7, 'tour_category', '', 0, 0),
(8, 8, 'tour_country', '', 0, 0),
(9, 9, 'tour_country', '', 0, 0),
(10, 10, 'tour_country', '', 0, 3),
(11, 11, 'tour_duration_days', '', 0, 2),
(12, 12, 'tour_duration_days', '', 0, 0),
(13, 13, 'tour_duration_nights', '', 0, 0),
(14, 14, 'tour_duration_nights', '', 0, 0),
(15, 15, 'tour_activities', '', 0, 3),
(16, 16, 'tour_activities', '', 0, 3),
(17, 17, 'tour_activities', '', 0, 1),
(18, 18, 'tour_activities', '', 0, 1),
(19, 19, 'tour_activities', '', 0, 1),
(20, 20, 'tour_activities', '', 0, 1),
(21, 21, 'tour_includes', '', 0, 1),
(22, 22, 'tour_includes', '', 0, 3),
(23, 23, 'tour_includes', '', 0, 3),
(24, 24, 'tour_includes', '', 0, 1),
(25, 25, 'tour_includes', '', 0, 1),
(26, 26, 'tour_includes', '', 0, 1),
(27, 27, 'tour_excludes', '', 0, 1),
(28, 28, 'tour_excludes', '', 0, 1),
(29, 29, 'tour_excludes', '', 0, 3),
(30, 30, 'tour_excludes', '', 0, 1),
(31, 31, 'tour_excludes', '', 0, 3),
(32, 32, 'tour_excludes', '', 0, 1),
(33, 33, 'tour_category', '', 0, 0),
(34, 34, 'tour_category', '', 0, 0),
(35, 35, 'tour_category', '', 0, 0),
(36, 36, 'nav_menu', '', 0, 6),
(37, 37, 'nav_menu', '', 0, 6),
(38, 38, 'nav_menu', '', 0, 6),
(39, 39, 'nav_menu', '', 0, 6),
(40, 40, 'nav_menu', '', 0, 6),
(41, 41, 'tour_why_book', '', 0, 1),
(42, 42, 'tour_why_book', '', 0, 1),
(43, 43, 'tour_why_book', '', 0, 1),
(44, 44, 'tour_why_book', '', 0, 1),
(45, 45, 'tour_why_book', '', 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `wp_usermeta`
--
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_usermeta`
--
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'admin'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'syntax_highlighting', 'true'),
(7, 1, 'comment_shortcuts', 'false'),
(8, 1, 'admin_color', 'fresh'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, 'wp_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(13, 1, 'wp_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', ''),
(15, 1, 'show_welcome_panel', '1'),
(16, 1, 'session_tokens', 'a:1:{s:64:\"d8158417c1d26b9c349265cb21355b181f27f8ce4e7c8cf6b209d930eec6cada\";a:4:{s:10:\"expiration\";i:1758342866;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36\";s:5:\"login\";i:1758170066;}}'),
(17, 1, 'wp_dashboard_quick_press_last_post_id', '6'),
(18, 1, 'managenav-menuscolumnshidden', 'a:3:{i:0;s:15:\"title-attribute\";i:1;s:3:\"xfn\";i:2;s:11:\"description\";}'),
(19, 1, 'metaboxhidden_nav-menus', 'a:1:{i:0;s:12:\"add-post_tag\";}'),
(20, 1, 'wp_user-settings', 'libraryContent=browse&editor=html&posts_list_mode=list'),
(21, 1, 'wp_user-settings-time', '1758123358'),
(22, 1, 'nav_menu_recently_edited', '40'),
(23, 1, 'closedpostboxes_nav-menus', 'a:0:{}'),
(24, 2, 'nickname', 'agent1'),
(25, 2, 'first_name', 'agent1'),
(26, 2, 'last_name', ''),
(27, 2, 'description', ''),
(28, 2, 'rich_editing', 'true'),
(29, 2, 'syntax_highlighting', 'true'),
(30, 2, 'comment_shortcuts', 'false'),
(31, 2, 'admin_color', 'fresh'),
(32, 2, 'use_ssl', '0'),
(33, 2, 'show_admin_bar_front', 'true'),
(34, 2, 'locale', ''),
(35, 2, 'wp_capabilities', 'a:1:{s:5:\"agent\";b:1;}'),
(36, 2, 'wp_user_level', '0'),
(37, 2, 'display_name', 'agent1'),
(39, 3, 'nickname', 'agent2'),
(40, 3, 'first_name', 'agent2'),
(41, 3, 'last_name', ''),
(42, 3, 'description', ''),
(43, 3, 'rich_editing', 'true'),
(44, 3, 'syntax_highlighting', 'true'),
(45, 3, 'comment_shortcuts', 'false'),
(46, 3, 'admin_color', 'fresh'),
(47, 3, 'use_ssl', '0'),
(48, 3, 'show_admin_bar_front', 'true'),
(49, 3, 'locale', ''),
(50, 3, 'wp_capabilities', 'a:1:{s:5:\"agent\";b:1;}'),
(51, 3, 'wp_user_level', '0'),
(52, 3, 'display_name', 'agent2'),
(53, 4, 'nickname', 'agent3'),
(54, 4, 'first_name', 'agent3'),
(55, 4, 'last_name', ''),
(56, 4, 'description', ''),
(57, 4, 'rich_editing', 'true'),
(58, 4, 'syntax_highlighting', 'true'),
(59, 4, 'comment_shortcuts', 'false'),
(60, 4, 'admin_color', 'fresh'),
(61, 4, 'use_ssl', '0'),
(62, 4, 'show_admin_bar_front', 'true'),
(63, 4, 'locale', ''),
(64, 4, 'wp_capabilities', 'a:1:{s:5:\"agent\";b:1;}'),
(65, 4, 'wp_user_level', '0'),
(66, 4, 'display_name', 'agent3'),
(84, 6, 'nickname', 'customer2'),
(85, 6, 'first_name', 'customer2'),
(86, 6, 'last_name', ''),
(87, 6, 'description', ''),
(88, 6, 'rich_editing', 'true'),
(89, 6, 'syntax_highlighting', 'true'),
(90, 6, 'comment_shortcuts', 'false'),
(91, 6, 'admin_color', 'fresh'),
(92, 6, 'use_ssl', '0'),
(93, 6, 'show_admin_bar_front', 'true'),
(94, 6, 'locale', ''),
(95, 6, 'wp_capabilities', 'a:1:{s:12:\"regular_user\";b:1;}'),
(96, 6, 'wp_user_level', '0'),
(97, 6, 'display_name', 'customer2'),
(99, 7, 'nickname', 'agent4'),
(100, 7, 'first_name', 'agent4'),
(101, 7, 'last_name', ''),
(102, 7, 'description', ''),
(103, 7, 'rich_editing', 'true'),
(104, 7, 'syntax_highlighting', 'true'),
(105, 7, 'comment_shortcuts', 'false'),
(106, 7, 'admin_color', 'fresh'),
(107, 7, 'use_ssl', '0'),
(108, 7, 'show_admin_bar_front', 'true'),
(109, 7, 'locale', ''),
(110, 7, 'wp_capabilities', 'a:1:{s:5:\"agent\";b:1;}'),
(111, 7, 'wp_user_level', '0'),
(112, 7, 'dismissed_wp_pointers', ''),
(113, 7, 'display_name', 'agent4'),
(114, 8, 'nickname', 'customer5'),
(115, 8, 'first_name', 'customer5'),
(116, 8, 'last_name', ''),
(117, 8, 'description', ''),
(118, 8, 'rich_editing', 'true'),
(119, 8, 'syntax_highlighting', 'true'),
(120, 8, 'comment_shortcuts', 'false'),
(121, 8, 'admin_color', 'fresh'),
(122, 8, 'use_ssl', '0'),
(123, 8, 'show_admin_bar_front', 'true'),
(124, 8, 'locale', ''),
(125, 8, 'wp_capabilities', 'a:1:{s:12:\"regular_user\";b:1;}'),
(126, 8, 'wp_user_level', '0'),
(127, 8, 'dismissed_wp_pointers', ''),
(128, 8, 'display_name', 'customer5'),
(130, 9, 'nickname', 'agent5'),
(131, 9, 'first_name', 'agent5'),
(132, 9, 'last_name', ''),
(133, 9, 'description', ''),
(134, 9, 'rich_editing', 'true'),
(135, 9, 'syntax_highlighting', 'true'),
(136, 9, 'comment_shortcuts', 'false'),
(137, 9, 'admin_color', 'fresh'),
(138, 9, 'use_ssl', '0'),
(139, 9, 'show_admin_bar_front', 'true'),
(140, 9, 'locale', ''),
(141, 9, 'wp_capabilities', 'a:1:{s:5:\"agent\";b:1;}'),
(142, 9, 'wp_user_level', '0'),
(143, 9, 'dismissed_wp_pointers', ''),
(144, 9, 'display_name', 'agent5'),
(146, 10, 'nickname', 'zxc'),
(147, 10, 'first_name', 'zxczxc'),
(148, 10, 'last_name', ''),
(149, 10, 'description', ''),
(150, 10, 'rich_editing', 'true'),
(151, 10, 'syntax_highlighting', 'true'),
(152, 10, 'comment_shortcuts', 'false'),
(153, 10, 'admin_color', 'fresh'),
(154, 10, 'use_ssl', '0'),
(155, 10, 'show_admin_bar_front', 'true'),
(156, 10, 'locale', ''),
(157, 10, 'wp_capabilities', 'a:1:{s:5:\"agent\";b:1;}'),
(158, 10, 'wp_user_level', '0'),
(159, 10, 'dismissed_wp_pointers', ''),
(160, 10, 'display_name', 'zxczxc'),
(161, 11, 'nickname', 'zxcz'),
(162, 11, 'first_name', 'zxc'),
(163, 11, 'last_name', ''),
(164, 11, 'description', ''),
(165, 11, 'rich_editing', 'true'),
(166, 11, 'syntax_highlighting', 'true'),
(167, 11, 'comment_shortcuts', 'false'),
(168, 11, 'admin_color', 'fresh'),
(169, 11, 'use_ssl', '0'),
(170, 11, 'show_admin_bar_front', 'true'),
(171, 11, 'locale', ''),
(172, 11, 'wp_capabilities', 'a:1:{s:5:\"agent\";b:1;}'),
(173, 11, 'wp_user_level', '0'),
(174, 11, 'dismissed_wp_pointers', ''),
(175, 11, 'display_name', 'zxc'),
(177, 12, 'nickname', 'customer6'),
(178, 12, 'first_name', 'customer6'),
(179, 12, 'last_name', ''),
(180, 12, 'description', ''),
(181, 12, 'rich_editing', 'true'),
(182, 12, 'syntax_highlighting', 'true'),
(183, 12, 'comment_shortcuts', 'false'),
(184, 12, 'admin_color', 'fresh'),
(185, 12, 'use_ssl', '0'),
(186, 12, 'show_admin_bar_front', 'true'),
(187, 12, 'locale', ''),
(188, 12, 'wp_capabilities', 'a:1:{s:12:\"regular_user\";b:1;}'),
(189, 12, 'wp_user_level', '0'),
(190, 12, 'dismissed_wp_pointers', ''),
(191, 12, 'display_name', 'customer6'),
(198, 12, 'session_tokens', 'a:1:{s:64:\"b81d3acf28c892975b21620acd9e64190b6dfdc6502db0b062e10154e260d180\";a:4:{s:10:\"expiration\";i:1759393406;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 Edg/140.0.0.0\";s:5:\"login\";i:1758183806;}}');
-- --------------------------------------------------------
--
-- Table structure for table `wp_users`
--
CREATE TABLE `wp_users` (
`ID` bigint(20) UNSIGNED NOT NULL,
`user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT 0,
`display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_users`
--
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'admin', '$wp$2y$10$fXhBwQIj70ucwFOUXTcNxub.GihKFPAMR86vufXZKG7E0OuSv/laa', 'admin', '[email protected]', 'http://dev-dreamstour-wp.dreamstechnologies.com', '2025-09-11 04:31:47', '', 0, 'admin'),
(2, 'agent1', '$wp$2y$10$u7CFT2dfvLdFTy3C89uXMO3DWYvN/HgtwlrChdipnI00JrcWuIm6m', 'agent1', '[email protected]', '', '2025-09-18 05:51:45', '', 0, 'agent1'),
(3, 'agent2', '$wp$2y$10$gAiV/2rWhay7Cb5VkIE9deqjoMVNuFTqcot9CK4xr4xHAxzm8pKb.', 'agent2', '[email protected]', '', '2025-09-18 06:34:18', '', 0, 'agent2'),
(4, 'agent3', '$wp$2y$10$n4loewUnB1Sbv70iHWBPk.b5CX1mrqO5QlT4bVlNlO7p4WgeQ7ICa', 'agent3', '[email protected]', '', '2025-09-18 06:36:04', '', 0, 'agent3'),
(6, 'customer2', '$wp$2y$10$zR3h0ni4NkoOnD7wmPmEQ.zAUXkedm/acnZrm1CObAKgbms5t7J3i', 'customer2', '[email protected]', '', '2025-09-18 06:41:57', '', 0, 'customer2'),
(7, 'agent4', '$wp$2y$10$jOxD93ForE//yfbJaYvL7O/aC5P28EtjBXI6Bs9pSdPsjGhgsm8P6', 'agent4', '[email protected]', '', '2025-09-18 06:56:32', '', 0, 'agent4'),
(8, 'customer5', '$wp$2y$10$FRLTT2DgIxUGpCNNQOUxMOCPuDRrh.pDYleXleFzP9wyqb84gtPWG', 'customer5', '[email protected]', '', '2025-09-18 07:05:39', '', 0, 'customer5'),
(9, 'agent5', '$wp$2y$10$qavNCuvrJCfH5O82zfLVl.JnqCG0gvKmNGhby2B55hdkScjCE6pFa', 'agent5', '[email protected]', '', '2025-09-18 07:06:49', '', 0, 'agent5'),
(10, 'zxc', '$wp$2y$10$PsfUO.hHLvP7gCDp3Wh8Mu15.gic2mZk5FxRSc1aukIV/dkL9L2wy', 'zxc', '[email protected]', '', '2025-09-18 07:25:37', '', 0, 'zxc'),
(11, 'zxcz', '$wp$2y$10$SCYjtsx6Hs3pPaXG3L.A0.0Kv9w4W7L5C4y1Gohp/hIwmR4sG/lga', 'zxcz', '[email protected]', '', '2025-09-18 07:28:27', '', 0, 'zxcz'),
(12, 'customer6', '$wp$2y$10$vyKCBj9em7tw6UE0tXKoz.jU96BGc1x9.e.cO0.V3qOkuzrYFJbNa', 'customer6', '[email protected]', '', '2025-09-18 08:15:00', '', 0, 'customer6');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `wp_commentmeta`
--
ALTER TABLE `wp_commentmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `comment_id` (`comment_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_comments`
--
ALTER TABLE `wp_comments`
ADD PRIMARY KEY (`comment_ID`),
ADD KEY `comment_post_ID` (`comment_post_ID`),
ADD KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
ADD KEY `comment_date_gmt` (`comment_date_gmt`),
ADD KEY `comment_parent` (`comment_parent`),
ADD KEY `comment_author_email` (`comment_author_email`(10));
--
-- Indexes for table `wp_dreamstour_enquiries`
--
ALTER TABLE `wp_dreamstour_enquiries`
ADD PRIMARY KEY (`id`),
ADD KEY `tour_id` (`tour_id`),
ADD KEY `email` (`email`);
--
-- Indexes for table `wp_dreamstour_wishlists`
--
ALTER TABLE `wp_dreamstour_wishlists`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `user_tour` (`user_id`,`tour_id`),
ADD KEY `tour_id` (`tour_id`);
--
-- Indexes for table `wp_links`
--
ALTER TABLE `wp_links`
ADD PRIMARY KEY (`link_id`),
ADD KEY `link_visible` (`link_visible`);
--
-- Indexes for table `wp_options`
--
ALTER TABLE `wp_options`
ADD PRIMARY KEY (`option_id`),
ADD UNIQUE KEY `option_name` (`option_name`),
ADD KEY `autoload` (`autoload`);
--
-- Indexes for table `wp_postmeta`
--
ALTER TABLE `wp_postmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `post_id` (`post_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_posts`
--
ALTER TABLE `wp_posts`
ADD PRIMARY KEY (`ID`),
ADD KEY `post_name` (`post_name`(191)),
ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
ADD KEY `post_parent` (`post_parent`),
ADD KEY `post_author` (`post_author`);
--
-- Indexes for table `wp_termmeta`
--
ALTER TABLE `wp_termmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `term_id` (`term_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_terms`
--
ALTER TABLE `wp_terms`
ADD PRIMARY KEY (`term_id`),
ADD KEY `slug` (`slug`(191)),
ADD KEY `name` (`name`(191));
--
-- Indexes for table `wp_term_relationships`
--
ALTER TABLE `wp_term_relationships`
ADD PRIMARY KEY (`object_id`,`term_taxonomy_id`),
ADD KEY `term_taxonomy_id` (`term_taxonomy_id`);
--
-- Indexes for table `wp_term_taxonomy`
--
ALTER TABLE `wp_term_taxonomy`
ADD PRIMARY KEY (`term_taxonomy_id`),
ADD UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
ADD KEY `taxonomy` (`taxonomy`);
--
-- Indexes for table `wp_usermeta`
--
ALTER TABLE `wp_usermeta`
ADD PRIMARY KEY (`umeta_id`),
ADD KEY `user_id` (`user_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_users`
--
ALTER TABLE `wp_users`
ADD PRIMARY KEY (`ID`),
ADD KEY `user_login_key` (`user_login`),
ADD KEY `user_nicename` (`user_nicename`),
ADD KEY `user_email` (`user_email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `wp_commentmeta`
--
ALTER TABLE `wp_commentmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `wp_comments`
--
ALTER TABLE `wp_comments`
MODIFY `comment_ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `wp_dreamstour_enquiries`
--
ALTER TABLE `wp_dreamstour_enquiries`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_dreamstour_wishlists`
--
ALTER TABLE `wp_dreamstour_wishlists`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `wp_links`
--
ALTER TABLE `wp_links`
MODIFY `link_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_options`
--
ALTER TABLE `wp_options`
MODIFY `option_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=673;
--
-- AUTO_INCREMENT for table `wp_postmeta`
--
ALTER TABLE `wp_postmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=579;
--
-- AUTO_INCREMENT for table `wp_posts`
--
ALTER TABLE `wp_posts`
MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=132;
--
-- AUTO_INCREMENT for table `wp_termmeta`
--
ALTER TABLE `wp_termmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `wp_terms`
--
ALTER TABLE `wp_terms`
MODIFY `term_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=46;
--
-- AUTO_INCREMENT for table `wp_term_taxonomy`
--
ALTER TABLE `wp_term_taxonomy`
MODIFY `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=46;
--
-- AUTO_INCREMENT for table `wp_usermeta`
--
ALTER TABLE `wp_usermeta`
MODIFY `umeta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=199;
--
-- AUTO_INCREMENT for table `wp_users`
--
ALTER TABLE `wp_users`
MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
COMMIT;
/*!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 */;