757 lines
495 KiB
Plaintext
757 lines
495 KiB
Plaintext
/*M!999999\- enable the sandbox mode */
|
||
-- MariaDB dump 10.19-11.4.5-MariaDB, for Linux (x86_64)
|
||
--
|
||
-- Host: localhost Database: wordpress
|
||
-- ------------------------------------------------------
|
||
-- Server version 11.4.5-MariaDB
|
||
|
||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||
/*!40101 SET NAMES utf8mb4 */;
|
||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||
/*M!100616 SET @OLD_NOTE_VERBOSITY=@@NOTE_VERBOSITY, NOTE_VERBOSITY=0 */;
|
||
|
||
--
|
||
-- Table structure for table `wp_commentmeta`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_commentmeta`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!40101 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_commentmeta` (
|
||
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
||
`meta_key` varchar(255) DEFAULT NULL,
|
||
`meta_value` longtext DEFAULT NULL,
|
||
PRIMARY KEY (`meta_id`),
|
||
KEY `comment_id` (`comment_id`),
|
||
KEY `meta_key` (`meta_key`(191))
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_commentmeta`
|
||
--
|
||
|
||
LOCK TABLES `wp_commentmeta` WRITE;
|
||
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_comments`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_comments`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!40101 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_comments` (
|
||
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
|
||
`comment_author` tinytext NOT NULL,
|
||
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
|
||
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
|
||
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
|
||
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`comment_content` text NOT NULL,
|
||
`comment_karma` int(11) NOT NULL DEFAULT 0,
|
||
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
|
||
`comment_agent` varchar(255) NOT NULL DEFAULT '',
|
||
`comment_type` varchar(20) NOT NULL DEFAULT 'comment',
|
||
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
|
||
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`comment_ID`),
|
||
KEY `comment_post_ID` (`comment_post_ID`),
|
||
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
|
||
KEY `comment_date_gmt` (`comment_date_gmt`),
|
||
KEY `comment_parent` (`comment_parent`),
|
||
KEY `comment_author_email` (`comment_author_email`(10))
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_comments`
|
||
--
|
||
|
||
LOCK TABLES `wp_comments` WRITE;
|
||
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_links`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_links`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!40101 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_links` (
|
||
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`link_url` varchar(255) NOT NULL DEFAULT '',
|
||
`link_name` varchar(255) NOT NULL DEFAULT '',
|
||
`link_image` varchar(255) NOT NULL DEFAULT '',
|
||
`link_target` varchar(25) NOT NULL DEFAULT '',
|
||
`link_description` varchar(255) NOT NULL DEFAULT '',
|
||
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
|
||
`link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
|
||
`link_rating` int(11) NOT NULL DEFAULT 0,
|
||
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`link_rel` varchar(255) NOT NULL DEFAULT '',
|
||
`link_notes` mediumtext NOT NULL,
|
||
`link_rss` varchar(255) NOT NULL DEFAULT '',
|
||
PRIMARY KEY (`link_id`),
|
||
KEY `link_visible` (`link_visible`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_links`
|
||
--
|
||
|
||
LOCK TABLES `wp_links` WRITE;
|
||
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_options`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_options`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!40101 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_options` (
|
||
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`option_name` varchar(191) NOT NULL DEFAULT '',
|
||
`option_value` longtext NOT NULL,
|
||
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
|
||
PRIMARY KEY (`option_id`),
|
||
UNIQUE KEY `option_name` (`option_name`),
|
||
KEY `autoload` (`autoload`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=326 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_options`
|
||
--
|
||
|
||
LOCK TABLES `wp_options` WRITE;
|
||
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
|
||
INSERT INTO `wp_options` VALUES
|
||
(1,'cron','a:10:{i:1754384841;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:1754403051;a:1:{s:22:\"wpwh_daily_maintenance\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1754424480;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:1754432772;a:1:{s:23:\"fs_data_sync_menu-image\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1754467680;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:1754467682;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:1754467817;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1754554041;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1756606162;a:1:{s:22:\"dst_update_ad-inserter\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2635200;}}}s:7:\"version\";i:2;}','on'),
|
||
(2,'siteurl','https://blog.hvgdev.website/wp','on'),
|
||
(3,'home','https://blog.hvgdev.website/wp','on'),
|
||
(4,'blogname','HVG Blog','on'),
|
||
(5,'blogdescription','','on'),
|
||
(6,'users_can_register','0','on'),
|
||
(7,'admin_email','blogadmin@hvg.hu','on'),
|
||
(8,'start_of_week','1','on'),
|
||
(9,'use_balanceTags','0','on'),
|
||
(10,'use_smilies','1','on'),
|
||
(11,'require_name_email','1','on'),
|
||
(12,'comments_notify','1','on'),
|
||
(13,'posts_per_rss','10','on'),
|
||
(14,'rss_use_excerpt','0','on'),
|
||
(15,'mailserver_url','mail.example.com','on'),
|
||
(16,'mailserver_login','login@example.com','on'),
|
||
(17,'mailserver_pass','','on'),
|
||
(18,'mailserver_port','110','on'),
|
||
(19,'default_category','1','on'),
|
||
(20,'default_comment_status','open','on'),
|
||
(21,'default_ping_status','open','on'),
|
||
(22,'default_pingback_flag','1','on'),
|
||
(23,'posts_per_page','10','on'),
|
||
(24,'date_format','Y.m.d.','on'),
|
||
(25,'time_format','H:i','on'),
|
||
(26,'links_updated_date_format','Y.m.d. H:i','on'),
|
||
(27,'comment_moderation','0','on'),
|
||
(28,'moderation_notify','1','on'),
|
||
(29,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','on'),
|
||
(30,'rewrite_rules','a:99:{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:16:\"^rest-api/docs/?\";s:26:\"index.php?swagger_api=docs\";s:18:\"^rest-api/schema/?\";s:28:\"index.php?swagger_api=schema\";s:48:\"kategoria/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:43:\"kategoria/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:24:\"kategoria/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:36:\"kategoria/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:18:\"kategoria/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:46:\"cimke/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:41:\"cimke/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:22:\"cimke/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:34:\"cimke/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:16:\"cimke/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','on'),
|
||
(31,'hack_file','0','on'),
|
||
(32,'blog_charset','UTF-8','on'),
|
||
(33,'moderation_keys','','off'),
|
||
(34,'active_plugins','a:13:{i:0;s:35:\"acme-fix-images/acme-fix-images.php\";i:1;s:27:\"ad-inserter/ad-inserter.php\";i:2;s:25:\"cloudflare/cloudflare.php\";i:3;s:31:\"code-snippets/code-snippets.php\";i:4;s:43:\"comments-from-facebook/facebook-comment.php\";i:5;s:37:\"disable-comments/disable-comments.php\";i:6;s:45:\"disable-wordpress-updates/disable-updates.php\";i:7;s:25:\"menu-image/menu-image.php\";i:8;s:25:\"s3-uploads/s3-uploads.php\";i:9;s:25:\"two-factor/two-factor.php\";i:10;s:37:\"user-role-editor/user-role-editor.php\";i:11;s:37:\"wp-api-swaggerui/wp-api-swaggerui.php\";i:12;s:27:\"wp-webhooks/wp-webhooks.php\";}','on'),
|
||
(35,'category_base','/kategoria','on'),
|
||
(36,'ping_sites','https://rpc.pingomatic.com/','on'),
|
||
(37,'comment_max_links','2','on'),
|
||
(38,'gmt_offset','','on'),
|
||
(39,'default_email_category','1','on'),
|
||
(40,'recently_edited','','off'),
|
||
(41,'template','hvg-blog-general','on'),
|
||
(42,'stylesheet','hvg-blog-general','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','posts','on'),
|
||
(53,'tag_base','/cimke','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:2:{s:25:\"two-factor/two-factor.php\";a:2:{i:0;s:15:\"Two_Factor_Core\";i:1;s:9:\"uninstall\";}s:37:\"user-role-editor/user-role-editor.php\";a:2:{i:0;s:16:\"User_Role_Editor\";i:1;s:9:\"uninstall\";}}','off'),
|
||
(81,'timezone_string','Europe/Budapest','on'),
|
||
(82,'page_for_posts','0','on'),
|
||
(83,'page_on_front','0','on'),
|
||
(84,'default_post_format','0','on'),
|
||
(85,'link_manager_enabled','0','on'),
|
||
(86,'finished_splitting_shared_terms','1','on'),
|
||
(87,'site_icon','11','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','1766995641','on'),
|
||
(93,'disallowed_keys','','off'),
|
||
(94,'comment_previously_approved','1','on'),
|
||
(95,'auto_plugin_theme_update_emails','a:0:{}','off'),
|
||
(96,'auto_update_core_dev','enabled','on'),
|
||
(97,'auto_update_core_minor','enabled','on'),
|
||
(98,'auto_update_core_major','enabled','on'),
|
||
(99,'wp_force_deactivated_plugins','a:0:{}','on'),
|
||
(100,'wp_attachment_pages_enabled','0','on'),
|
||
(101,'initial_db_version','58975','on'),
|
||
(102,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:68:{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:14:\"ure_edit_roles\";b:1;s:16:\"ure_create_roles\";b:1;s:16:\"ure_delete_roles\";b:1;s:23:\"ure_create_capabilities\";b:1;s:23:\"ure_delete_capabilities\";b:1;s:18:\"ure_manage_options\";b:1;s:15:\"ure_reset_roles\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','on'),
|
||
(103,'fresh_site','0','off'),
|
||
(104,'WPLANG','hu_HU','auto'),
|
||
(105,'user_count','1','off'),
|
||
(106,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:165:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Legutóbbi bejegyzések</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:239:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Legutóbbi hozzászólások</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:147:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archívum</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:152:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Kategóriák</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','auto'),
|
||
(107,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','auto'),
|
||
(108,'bedrock_autoloader','a:2:{s:7:\"plugins\";a:1:{s:55:\"bedrock-disallow-indexing/bedrock-disallow-indexing.php\";a:15:{s:4:\"Name\";s:17:\"Disallow Indexing\";s:9:\"PluginURI\";s:25:\"https://roots.io/bedrock/\";s:7:\"Version\";s:5:\"2.0.0\";s:11:\"Description\";s:62:\"Disallow indexing of your site on non-production environments.\";s:6:\"Author\";s:5:\"Roots\";s:9:\"AuthorURI\";s:17:\"https://roots.io/\";s:10:\"TextDomain\";s:5:\"roots\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:15:\"RequiresPlugins\";s:0:\"\";s:5:\"Title\";s:17:\"Disallow Indexing\";s:10:\"AuthorName\";s:5:\"Roots\";}}s:5:\"count\";i:1;}','off'),
|
||
(109,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
|
||
(110,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
|
||
(111,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
|
||
(112,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
|
||
(113,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
|
||
(114,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
|
||
(115,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
|
||
(116,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
|
||
(117,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
|
||
(118,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
|
||
(119,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
|
||
(120,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
|
||
(121,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
|
||
(122,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
|
||
(123,'_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,'nonce_key','Z}NH<@Ke*s1uojz p7`3uo& ?GvLS,BFrHv-I^R[,X|evqL]&!A9mFoP7?:u+T v','off'),
|
||
(128,'nonce_salt','7OS3-]4oJrocig$*$J:{%%FysV:m/XJ21O~)|Q)ItUt[j~CW82$~j +&Wu9U>d*a','off'),
|
||
(129,'theme_mods_twentytwentyfive','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1753972280;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','off'),
|
||
(130,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"d92a46ee939fa4ecea70c134814b638a\";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'),
|
||
(133,'secure_auth_key','51w&wdAyyqN<x> )U;#(}=l/MBgeP?S2TuIy,8fP{.TDJZDoV>]oCsv0Dc:^^2io','off'),
|
||
(134,'secure_auth_salt','n@E+NZMy)BTB%jCZ=,&tT]3,G}q2N{uWWt!/Hh|jQX D5/hv1OzX,3k%@jw/k*wc','off'),
|
||
(135,'logged_in_key','g|u&0]^w@oCaa$dwNe6Kh}w;TIh}Tq4mGH,;BKJ/7r$dz.nU!+jQ}GQv]*E wTK=','off'),
|
||
(136,'logged_in_salt','$P{%dBP7H3/y}fuh%)G/V>nKN6O!mg9G+j]O$39thG(GmVc@#%.j`@O;Um ytUN/','off'),
|
||
(137,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/hu_HU/wordpress-6.8.1.zip\";s:6:\"locale\";s:5:\"hu_HU\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/hu_HU/wordpress-6.8.1.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.1\";s:7:\"version\";s:5:\"6.8.1\";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:1751443680;s:15:\"version_checked\";s:5:\"6.8.1\";s:12:\"translations\";a:0:{}}','off'),
|
||
(141,'_site_transient_update_themes','O:8:\"stdClass\":3:{s:7:\"updates\";a:0:{}s:15:\"version_checked\";s:5:\"6.8.2\";s:12:\"last_checked\";i:1753972556;}','off'),
|
||
(160,'disable_comments_options','a:8:{s:16:\"is_network_admin\";b:0;s:17:\"remove_everywhere\";b:1;s:19:\"disabled_post_types\";a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:10:\"attachment\";}s:22:\"enable_exclude_by_role\";s:1:\"0\";s:22:\"remove_xmlrpc_comments\";i:1;s:24:\"remove_rest_API_comments\";i:1;s:10:\"db_version\";i:7;s:14:\"settings_saved\";b:1;}','auto'),
|
||
(161,'disable_comment_version','2.5.2','auto'),
|
||
(164,'finished_updating_comment_type','1','auto'),
|
||
(168,'wpins_block_notice','a:1:{s:16:\"disable-comments\";s:16:\"disable-comments\";}','auto'),
|
||
(171,'db_upgraded','','on'),
|
||
(174,'can_compress_scripts','1','on'),
|
||
(185,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','off'),
|
||
(186,'recently_activated','a:0:{}','off'),
|
||
(187,'ai-install','1753970962','auto'),
|
||
(188,'widget_ai_widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
|
||
(189,'dst_notification_times','a:1:{s:11:\"ad-inserter\";i:1753970962;}','auto'),
|
||
(190,'_transient_timeout_dst_admin_ip','1764338962','off'),
|
||
(191,'_transient_dst_admin_ip','172.22.0.1','off'),
|
||
(194,'code_snippets_version','3.6.8','auto'),
|
||
(195,'code_snippets_settings','a:2:{s:7:\"general\";a:8:{s:19:\"activate_by_default\";b:1;s:11:\"enable_tags\";b:1;s:18:\"enable_description\";b:1;s:18:\"visual_editor_rows\";i:5;s:10:\"list_order\";s:12:\"priority-asc\";s:13:\"disable_prism\";b:0;s:17:\"hide_upgrade_menu\";b:0;s:18:\"complete_uninstall\";b:0;}s:6:\"editor\";a:11:{s:16:\"indent_with_tabs\";b:1;s:8:\"tab_size\";i:4;s:11:\"indent_unit\";i:4;s:10:\"wrap_lines\";b:1;s:12:\"code_folding\";b:1;s:12:\"line_numbers\";b:1;s:19:\"auto_close_brackets\";b:1;s:27:\"highlight_selection_matches\";b:1;s:21:\"highlight_active_line\";b:1;s:6:\"keymap\";s:7:\"default\";s:5:\"theme\";s:7:\"default\";}}','auto'),
|
||
(200,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:19:\"menu-image/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"2.12.1\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1753970974;s:11:\"plugin_path\";s:25:\"menu-image/menu-image.php\";}}s:7:\"abspath\";s:12:\"/app/web/wp/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:25:\"menu-image/menu-image.php\";s:8:\"sdk_path\";s:19:\"menu-image/freemius\";s:7:\"version\";s:6:\"2.12.1\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1753970974;}}','auto'),
|
||
(201,'fs_debug_mode','','auto'),
|
||
(202,'fs_accounts','a:16:{s:21:\"id_slug_type_path_map\";a:1:{i:4123;a:3:{s:4:\"slug\";s:10:\"menu-image\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:25:\"menu-image/menu-image.php\";}}s:11:\"plugin_data\";a:1:{s:10:\"menu-image\";a:26:{s:19:\"last_load_timestamp\";i:1754305688;s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:25:\"menu-image/menu-image.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1753970974;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:1;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:6:\"2.12.1\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:4:\"3.13\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:19:\"blog.hvgdev.website\";s:9:\"server_ip\";s:10:\"172.22.0.3\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1753970979;s:7:\"version\";s:4:\"3.13\";}s:15:\"prev_is_premium\";b:0;s:30:\"is_diagnostic_tracking_allowed\";b:1;s:30:\"is_extensions_tracking_allowed\";b:1;s:14:\"has_trial_plan\";b:1;s:19:\"keepalive_timestamp\";i:1754367779;s:20:\"activation_timestamp\";i:1753970979;s:9:\"sync_cron\";O:8:\"stdClass\":5:{s:7:\"version\";s:4:\"3.13\";s:7:\"blog_id\";i:0;s:11:\"sdk_version\";s:6:\"2.12.1\";s:9:\"timestamp\";i:1753970986;s:2:\"on\";b:1;}s:14:\"sync_timestamp\";i:1754367779;s:22:\"install_sync_timestamp\";i:1754367779;s:15:\"is_whitelabeled\";b:0;s:21:\"trial_promotion_shown\";i:1754305722;}}s:13:\"file_slug_map\";a:1:{s:25:\"menu-image/menu-image.php\";s:10:\"menu-image\";}s:7:\"plugins\";a:1:{s:10:\"menu-image\";O:9:\"FS_Plugin\":24:{s:2:\"id\";s:4:\"4123\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;s:10:\"public_key\";s:32:\"pk_1a1cac31f5af1ba3d31bd86fe0e8b\";s:10:\"secret_key\";N;s:16:\"parent_plugin_id\";N;s:5:\"title\";s:10:\"Menu Image\";s:4:\"slug\";s:10:\"menu-image\";s:12:\"premium_slug\";s:18:\"menu-image-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";s:8:\"selected\";s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:25:\"menu-image/menu-image.php\";s:7:\"version\";s:4:\"3.13\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:7:\"Premium\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;}}s:12:\"gc_timestamp\";a:0:{}s:10:\"theme_data\";a:0:{}s:9:\"unique_id\";s:32:\"654f02ded614f63c6203b886ab1fa6d3\";s:5:\"plans\";a:1:{s:10:\"menu-image\";a:3:{i:0;O:14:\"FS_Plugin_Plan\":23:{s:2:\"id\";s:8:\"NjY4MA==\";s:7:\"updated\";s:28:\"MjAyMC0xMS0xOCAxMjowODoyOA==\";s:7:\"created\";s:28:\"MjAxOS0wNy0xNSAyMDo0NToxOA==\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:8:\"NDEyMw==\";s:4:\"name\";s:8:\"ZnJlZQ==\";s:5:\"title\";s:8:\"RnJlZQ==\";s:11:\"description\";s:20:\"TWVudSBJbWFnZSBGcmVl\";s:17:\"is_free_localhost\";s:4:\"MQ==\";s:17:\"is_block_features\";s:4:\"MQ==\";s:12:\"license_type\";s:4:\"MA==\";s:16:\"is_https_support\";s:0:\"\";s:12:\"trial_period\";N;s:23:\"is_require_subscription\";s:0:\"\";s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";s:32:\"c3VwcG9ydEB3cG1lbnVpbWFnZS5jb20=\";s:13:\"support_phone\";N;s:18:\"is_success_manager\";s:0:\"\";s:11:\"is_featured\";s:0:\"\";s:9:\"is_hidden\";s:0:\"\";s:7:\"pricing\";N;s:8:\"features\";N;}i:1;O:14:\"FS_Plugin_Plan\":23:{s:2:\"id\";s:8:\"OTQyMg==\";s:7:\"updated\";s:28:\"MjAyMS0xMS0yMiAxMToxNDoxMQ==\";s:7:\"created\";s:28:\"MjAyMC0wMy0yMSAxNTo1NDozNA==\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:8:\"NDEyMw==\";s:4:\"name\";s:16:\"cHJvZmVzc2lvbmFs\";s:5:\"title\";s:16:\"UHJvZmVzc2lvbmFs\";s:11:\"description\";s:32:\"TWVudSBJbWFnZSBQcm9mZXNzaW9uYWw=\";s:17:\"is_free_localhost\";s:4:\"MQ==\";s:17:\"is_block_features\";s:0:\"\";s:12:\"license_type\";s:4:\"MA==\";s:16:\"is_https_support\";s:0:\"\";s:12:\"trial_period\";s:4:\"Nw==\";s:23:\"is_require_subscription\";s:4:\"MQ==\";s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";s:32:\"c3VwcG9ydEB3cG1lbnVpbWFnZS5jb20=\";s:13:\"support_phone\";N;s:18:\"is_success_manager\";s:0:\"\";s:11:\"is_featured\";s:4:\"MQ==\";s:9:\"is_hidden\";s:0:\"\";s:7:\"pricing\";N;s:8:\"features\";N;}i:2;O:14:\"FS_Plugin_Plan\":23:{s:2:\"id\";s:8:\"MTE5MTk=\";s:7:\"updated\";s:28:\"MjAyMC0xMS0zMCAyMzoxMTowNw==\";s:7:\"created\";s:28:\"MjAyMC0xMS0zMCAyMzoxMDo1MA==\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:8:\"NDEyMw==\";s:4:\"name\";s:16:\"ZW50ZXJwcmlzZQ==\";s:5:\"title\";s:16:\"RW50ZXJwcmlzZQ==\";s:11:\"description\";s:40:\"RXZlcnl0aGluZysKVG9wIExldmVsIFN1cHBvcnQ=\";s:17:\"is_free_localhost\";s:4:\"MQ==\";s:17:\"is_block_features\";s:4:\"MQ==\";s:12:\"license_type\";s:4:\"MA==\";s:16:\"is_https_support\";s:0:\"\";s:12:\"trial_period\";N;s:23:\"is_require_subscription\";s:0:\"\";s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:18:\"is_success_manager\";s:0:\"\";s:11:\"is_featured\";s:0:\"\";s:9:\"is_hidden\";s:0:\"\";s:7:\"pricing\";N;s:8:\"features\";N;}}}s:14:\"active_plugins\";O:8:\"stdClass\":3:{s:9:\"timestamp\";i:1754367779;s:3:\"md5\";s:32:\"80cc9426af5080354a78962ed39077b7\";s:7:\"plugins\";a:13:{s:35:\"acme-fix-images/acme-fix-images.php\";a:5:{s:4:\"slug\";s:15:\"acme-fix-images\";s:7:\"version\";s:5:\"2.0.4\";s:5:\"title\";s:39:\"Acme Fix Images - Regenerate Thumbnails\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:27:\"ad-inserter/ad-inserter.php\";a:5:{s:4:\"slug\";s:11:\"ad-inserter\";s:7:\"version\";s:5:\"2.8.5\";s:5:\"title\";s:11:\"Ad Inserter\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:31:\"code-snippets/code-snippets.php\";a:5:{s:4:\"slug\";s:13:\"code-snippets\";s:7:\"version\";s:5:\"3.6.8\";s:5:\"title\";s:13:\"Code Snippets\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:45:\"disable-wordpress-updates/disable-updates.php\";a:5:{s:4:\"slug\";s:25:\"disable-wordpress-updates\";s:7:\"version\";s:5:\"1.8.0\";s:5:\"title\";s:29:\"Disable All WordPress Updates\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:37:\"disable-comments/disable-comments.php\";a:5:{s:4:\"slug\";s:16:\"disable-comments\";s:7:\"version\";s:5:\"2.5.2\";s:5:\"title\";s:16:\"Disable Comments\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:25:\"menu-image/menu-image.php\";a:5:{s:4:\"slug\";s:10:\"menu-image\";s:7:\"version\";s:4:\"3.13\";s:5:\"title\";s:10:\"Menu Image\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:25:\"s3-uploads/s3-uploads.php\";a:5:{s:4:\"slug\";s:10:\"s3-uploads\";s:7:\"version\";s:5:\"3.0.3\";s:5:\"title\";s:10:\"S3 Uploads\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:25:\"cloudflare/cloudflare.php\";a:17:{s:4:\"Name\";s:10:\"Cloudflare\";s:9:\"PluginURI\";s:49:\"https://blog.cloudflare.com/new-wordpress-plugin/\";s:7:\"Version\";s:6:\"4.12.8\";s:11:\"Description\";s:54:\"Cloudflare speeds up and protects your WordPress site.\";s:6:\"Author\";s:16:\"Cloudflare, Inc.\";s:9:\"AuthorURI\";s:0:\"\";s:10:\"TextDomain\";s:10:\"cloudflare\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:3:\"7.2\";s:9:\"UpdateURI\";s:0:\"\";s:15:\"RequiresPlugins\";s:0:\"\";s:5:\"Title\";s:10:\"Cloudflare\";s:10:\"AuthorName\";s:16:\"Cloudflare, Inc.\";s:9:\"is_active\";b:1;s:4:\"slug\";s:10:\"cloudflare\";}s:25:\"two-factor/two-factor.php\";a:17:{s:4:\"Name\";s:10:\"Two Factor\";s:9:\"PluginURI\";s:41:\"https://wordpress.org/plugins/two-factor/\";s:7:\"Version\";s:6:\"0.14.0\";s:11:\"Description\";s:149:\"Enable Two-Factor Authentication using time-based one-time passwords, Universal 2nd Factor (FIDO U2F, YubiKey), email, and backup verification codes.\";s:6:\"Author\";s:26:\"WordPress.org Contributors\";s:9:\"AuthorURI\";s:59:\"https://github.com/wordpress/two-factor/graphs/contributors\";s:10:\"TextDomain\";s:10:\"two-factor\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:1;s:10:\"RequiresWP\";s:3:\"6.7\";s:11:\"RequiresPHP\";s:3:\"7.2\";s:9:\"UpdateURI\";s:0:\"\";s:15:\"RequiresPlugins\";s:0:\"\";s:5:\"Title\";s:10:\"Two Factor\";s:10:\"AuthorName\";s:26:\"WordPress.org Contributors\";s:9:\"is_active\";b:1;s:4:\"slug\";s:10:\"two-factor\";}s:37:\"user-role-editor/user-role-editor.php\";a:17:{s:4:\"Name\";s:16:\"User Role Editor\";s:9:\"PluginURI\";s:27:\"https://www.role-editor.com\";s:7:\"Version\";s:6:\"4.64.5\";s:11:\"Description\";s:56:\"Change/add/delete WordPress user roles and capabilities.\";s:6:\"Author\";s:18:\"Vladimir Garagulya\";s:9:\"AuthorURI\";s:27:\"https://www.role-editor.com\";s:10:\"TextDomain\";s:16:\"user-role-editor\";s:10:\"DomainPath\";s:6:\"/lang/\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:3:\"4.4\";s:11:\"RequiresPHP\";s:3:\"7.3\";s:9:\"UpdateURI\";s:0:\"\";s:15:\"RequiresPlugins\";s:0:\"\";s:5:\"Title\";s:16:\"User Role Editor\";s:10:\"AuthorName\";s:18:\"Vladimir Garagulya\";s:9:\"is_active\";b:1;s:4:\"slug\";s:16:\"user-role-editor\";}s:37:\"wp-api-swaggerui/wp-api-swaggerui.php\";a:17:{s:4:\"Name\";s:16:\"WP API SwaggerUI\";s:9:\"PluginURI\";s:0:\"\";s:7:\"Version\";s:5:\"1.1.2\";s:11:\"Description\";s:35:\"WordPress REST API with Swagger UI.\";s:6:\"Author\";s:11:\"Agus Suroyo\";s:9:\"AuthorURI\";s:0:\"\";s:10:\"TextDomain\";s:16:\"wp-api-swaggerui\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:15:\"RequiresPlugins\";s:0:\"\";s:5:\"Title\";s:16:\"WP API SwaggerUI\";s:10:\"AuthorName\";s:11:\"Agus Suroyo\";s:9:\"is_active\";b:1;s:4:\"slug\";s:16:\"wp-api-swaggerui\";}s:43:\"comments-from-facebook/facebook-comment.php\";a:17:{s:4:\"Name\";s:24:\"Wpdevart Social comments\";s:9:\"PluginURI\";s:55:\"https://wpdevart.com/wordpress-facebook-comments-plugin\";s:7:\"Version\";s:5:\"2.6.7\";s:11:\"Description\";s:148:\"Social (Facebook) comments plugin will help you to display Facebook Comments box on your website. You can use Facebook Comments on your pages/posts.\";s:6:\"Author\";s:8:\"wpdevart\";s:9:\"AuthorURI\";s:20:\"https://wpdevart.com\";s:10:\"TextDomain\";s:22:\"comments-from-facebook\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:15:\"RequiresPlugins\";s:0:\"\";s:5:\"Title\";s:24:\"Wpdevart Social comments\";s:10:\"AuthorName\";s:8:\"wpdevart\";s:9:\"is_active\";b:1;s:4:\"slug\";s:22:\"comments-from-facebook\";}s:27:\"wp-webhooks/wp-webhooks.php\";a:17:{s:4:\"Name\";s:11:\"WP Webhooks\";s:9:\"PluginURI\";s:24:\"https://wp-webhooks.com/\";s:7:\"Version\";s:5:\"3.3.5\";s:11:\"Description\";s:130:\"Put your website on autopilot by using webhooks to get rid of manual tasks and focus on what\'s really important for your business.\";s:6:\"Author\";s:8:\"Ironikus\";s:9:\"AuthorURI\";s:30:\"https://wp-webhooks.com/about/\";s:10:\"TextDomain\";s:11:\"wp-webhooks\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:15:\"RequiresPlugins\";s:0:\"\";s:5:\"Title\";s:11:\"WP Webhooks\";s:10:\"AuthorName\";s:8:\"Ironikus\";s:9:\"is_active\";b:1;s:4:\"slug\";s:11:\"wp-webhooks\";}}}s:11:\"all_plugins\";O:8:\"stdClass\":3:{s:9:\"timestamp\";i:1754305689;s:3:\"md5\";s:32:\"13368a6d8c3d660db4452e7f43008a9a\";s:7:\"plugins\";a:13:{s:35:\"acme-fix-images/acme-fix-images.php\";a:5:{s:4:\"slug\";s:15:\"acme-fix-images\";s:7:\"version\";s:5:\"2.0.4\";s:5:\"title\";s:39:\"Acme Fix Images - Regenerate Thumbnails\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:27:\"ad-inserter/ad-inserter.php\";a:5:{s:4:\"slug\";s:11:\"ad-inserter\";s:7:\"version\";s:5:\"2.8.5\";s:5:\"title\";s:11:\"Ad Inserter\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:25:\"cloudflare/cloudflare.php\";a:5:{s:4:\"slug\";s:10:\"cloudflare\";s:7:\"version\";s:6:\"4.12.8\";s:5:\"title\";s:10:\"Cloudflare\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:31:\"code-snippets/code-snippets.php\";a:5:{s:4:\"slug\";s:13:\"code-snippets\";s:7:\"version\";s:5:\"3.6.8\";s:5:\"title\";s:13:\"Code Snippets\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:45:\"disable-wordpress-updates/disable-updates.php\";a:5:{s:4:\"slug\";s:25:\"disable-wordpress-updates\";s:7:\"version\";s:5:\"1.8.0\";s:5:\"title\";s:29:\"Disable All WordPress Updates\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:37:\"disable-comments/disable-comments.php\";a:5:{s:4:\"slug\";s:16:\"disable-comments\";s:7:\"version\";s:5:\"2.5.2\";s:5:\"title\";s:16:\"Disable Comments\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:25:\"menu-image/menu-image.php\";a:5:{s:4:\"slug\";s:10:\"menu-image\";s:7:\"version\";s:4:\"3.13\";s:5:\"title\";s:10:\"Menu Image\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:25:\"s3-uploads/s3-uploads.php\";a:5:{s:4:\"slug\";s:10:\"s3-uploads\";s:7:\"version\";s:5:\"3.0.3\";s:5:\"title\";s:10:\"S3 Uploads\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:25:\"two-factor/two-factor.php\";a:5:{s:4:\"slug\";s:10:\"two-factor\";s:7:\"version\";s:6:\"0.14.0\";s:5:\"title\";s:10:\"Two Factor\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:37:\"user-role-editor/user-role-editor.php\";a:5:{s:4:\"slug\";s:16:\"user-role-editor\";s:7:\"version\";s:6:\"4.64.5\";s:5:\"title\";s:16:\"User Role Editor\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:37:\"wp-api-swaggerui/wp-api-swaggerui.php\";a:5:{s:4:\"slug\";s:16:\"wp-api-swaggerui\";s:7:\"version\";s:5:\"1.1.2\";s:5:\"title\";s:16:\"WP API SwaggerUI\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:43:\"comments-from-facebook/facebook-comment.php\";a:5:{s:4:\"slug\";s:22:\"comments-from-facebook\";s:7:\"version\";s:5:\"2.6.7\";s:5:\"title\";s:24:\"Wpdevart Social comments\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:27:\"wp-webhooks/wp-webhooks.php\";a:5:{s:4:\"slug\";s:11:\"wp-webhooks\";s:7:\"version\";s:5:\"3.3.5\";s:5:\"title\";s:11:\"WP Webhooks\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}}}s:10:\"all_themes\";O:8:\"stdClass\":3:{s:9:\"timestamp\";i:1754367779;s:3:\"md5\";s:32:\"f1a4a141e1dcea68d3ae871b7d63836a\";s:6:\"themes\";a:2:{s:16:\"hvg-blog-general\";a:5:{s:4:\"slug\";s:16:\"hvg-blog-general\";s:7:\"version\";s:5:\"1.0.0\";s:5:\"title\";s:16:\"hvg-blog-general\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:16:\"twentytwentyfive\";a:5:{s:4:\"slug\";s:16:\"twentytwentyfive\";s:7:\"version\";s:3:\"1.2\";s:5:\"title\";s:18:\"Twenty Twenty-Five\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}}}s:5:\"sites\";a:1:{s:10:\"menu-image\";O:7:\"FS_Site\":26:{s:2:\"id\";s:8:\"18351945\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2025-07-31 14:09:39\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:10:\"public_key\";s:32:\"pk_6ddf37d03a935733172cba09ebe01\";s:10:\"secret_key\";s:32:\"sk_D~RgjRA7E!m.K]RQUbL+LO3jjmZIl\";s:7:\"site_id\";s:9:\"271588097\";s:7:\"blog_id\";N;s:9:\"plugin_id\";s:4:\"4123\";s:7:\"user_id\";s:7:\"9651080\";s:5:\"title\";s:8:\"HVG Blog\";s:3:\"url\";s:30:\"https://blog.hvgdev.website/wp\";s:7:\"version\";s:4:\"3.13\";s:8:\"language\";s:2:\"hu\";s:16:\"platform_version\";s:5:\"6.8.2\";s:11:\"sdk_version\";s:6:\"2.12.1\";s:28:\"programming_language_version\";s:6:\"8.3.23\";s:7:\"plan_id\";s:4:\"6680\";s:10:\"license_id\";N;s:13:\"trial_plan_id\";N;s:10:\"trial_ends\";N;s:10:\"is_premium\";b:0;s:15:\"is_disconnected\";b:0;s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;s:7:\"is_beta\";b:0;}}s:5:\"users\";a:1:{i:9651080;O:7:\"FS_User\":12:{s:2:\"id\";s:7:\"9651080\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2025-07-31 14:09:39\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:10:\"public_key\";s:32:\"pk_3952fe6726fd16a04d34ac91761c5\";s:10:\"secret_key\";s:32:\"sk_iV(eQH@iHu3qJE[HAxc{}Z+.do*tI\";s:5:\"email\";s:9:\"ot@hvg.hu\";s:5:\"first\";s:5:\"Admin\";s:4:\"last\";s:0:\"\";s:11:\"is_verified\";b:0;s:11:\"customer_id\";N;s:5:\"gross\";N;}}s:23:\"user_id_license_ids_map\";a:1:{i:4123;a:1:{i:9651080;a:0:{}}}s:12:\"all_licenses\";a:1:{i:4123;a:0:{}}s:13:\"admin_notices\";a:1:{s:10:\"menu-image\";a:0:{}}}','auto'),
|
||
(203,'fs_api_cache','a:4:{s:26:\"get:/v1/users/9651080.json\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":10:{s:5:\"email\";s:9:\"ot@hvg.hu\";s:5:\"first\";s:5:\"Admin\";s:4:\"last\";s:0:\"\";s:11:\"is_verified\";b:0;s:4:\"auth\";s:8:\"password\";s:10:\"secret_key\";s:32:\"sk_iV(eQH@iHu3qJE[HAxc{}Z+.do*tI\";s:10:\"public_key\";s:32:\"pk_3952fe6726fd16a04d34ac91761c5\";s:2:\"id\";s:7:\"9651080\";s:7:\"created\";s:19:\"2025-07-31 14:09:39\";s:7:\"updated\";N;}s:7:\"created\";i:1753970979;s:9:\"timestamp\";i:1754057379;}s:30:\"get:/v1/installs/18351945.json\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":33:{s:7:\"site_id\";s:9:\"271588097\";s:9:\"plugin_id\";s:4:\"4123\";s:7:\"user_id\";s:7:\"9651080\";s:3:\"url\";s:30:\"https://blog.hvgdev.website/wp\";s:5:\"title\";s:8:\"HVG Blog\";s:7:\"version\";s:4:\"3.13\";s:7:\"plan_id\";s:4:\"6680\";s:10:\"license_id\";N;s:13:\"trial_plan_id\";N;s:10:\"trial_ends\";N;s:15:\"subscription_id\";N;s:5:\"gross\";i:0;s:12:\"country_code\";s:2:\"hu\";s:8:\"language\";s:2:\"hu\";s:16:\"platform_version\";s:5:\"6.8.2\";s:11:\"sdk_version\";s:6:\"2.12.1\";s:28:\"programming_language_version\";s:6:\"8.3.23\";s:9:\"is_active\";b:1;s:15:\"is_disconnected\";b:0;s:10:\"is_premium\";b:0;s:14:\"is_uninstalled\";b:0;s:9:\"is_locked\";b:0;s:6:\"source\";i:0;s:8:\"upgraded\";N;s:12:\"last_seen_at\";s:19:\"2025-07-31 14:09:44\";s:26:\"last_served_update_version\";N;s:10:\"secret_key\";s:32:\"sk_D~RgjRA7E!m.K]RQUbL+LO3jjmZIl\";s:10:\"public_key\";s:32:\"pk_6ddf37d03a935733172cba09ebe01\";s:2:\"id\";s:8:\"18351945\";s:7:\"created\";s:19:\"2025-07-31 14:09:39\";s:7:\"updated\";N;s:7:\"charset\";N;s:7:\"is_beta\";b:0;}s:7:\"created\";i:1753970979;s:9:\"timestamp\";i:1754057379;}s:45:\"get:/v1/users/9651080/plugins/4123/plans.json\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:5:\"plans\";a:3:{i:0;O:14:\"FS_Plugin_Plan\":23:{s:2:\"id\";s:4:\"6680\";s:7:\"updated\";s:19:\"2020-11-18 12:08:28\";s:7:\"created\";s:19:\"2019-07-15 20:45:18\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:4:\"4123\";s:4:\"name\";s:4:\"free\";s:5:\"title\";s:4:\"Free\";s:11:\"description\";s:15:\"Menu Image Free\";s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";N;s:23:\"is_require_subscription\";b:0;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";s:23:\"support@wpmenuimage.com\";s:13:\"support_phone\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:7:\"pricing\";N;s:8:\"features\";N;}i:1;O:14:\"FS_Plugin_Plan\":23:{s:2:\"id\";s:4:\"9422\";s:7:\"updated\";s:19:\"2021-11-22 11:14:11\";s:7:\"created\";s:19:\"2020-03-21 15:54:34\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:4:\"4123\";s:4:\"name\";s:12:\"professional\";s:5:\"title\";s:12:\"Professional\";s:11:\"description\";s:23:\"Menu Image Professional\";s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";i:7;s:23:\"is_require_subscription\";b:1;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";s:23:\"support@wpmenuimage.com\";s:13:\"support_phone\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:1;s:9:\"is_hidden\";b:0;s:7:\"pricing\";N;s:8:\"features\";N;}i:2;O:14:\"FS_Plugin_Plan\":23:{s:2:\"id\";s:5:\"11919\";s:7:\"updated\";s:19:\"2020-11-30 23:11:07\";s:7:\"created\";s:19:\"2020-11-30 23:10:50\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:4:\"4123\";s:4:\"name\";s:10:\"enterprise\";s:5:\"title\";s:10:\"Enterprise\";s:11:\"description\";s:29:\"Everything+\nTop Level Support\";s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";N;s:23:\"is_require_subscription\";b:0;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:7:\"pricing\";N;s:8:\"features\";N;}}}s:7:\"created\";i:1754367779;s:9:\"timestamp\";i:1754454179;}s:65:\"get:/v1/users/9651080/plugins/4123/licenses.json?is_enriched=true\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:8:\"licenses\";a:0:{}}s:7:\"created\";i:1754367779;s:9:\"timestamp\";i:1754454179;}}','off'),
|
||
(208,'fs_gdpr','a:1:{s:2:\"u1\";a:1:{s:18:\"show_opt_in_notice\";b:0;}}','auto'),
|
||
(209,'_site_transient_timeout_fs_locked_1','2069330984','off'),
|
||
(210,'_site_transient_fs_locked_1','1','off'),
|
||
(213,'dst_optin_tracking','a:1:{s:11:\"ad-inserter\";i:1;}','auto'),
|
||
(214,'_transient_timeout_dst_last_action_ad-inserter','1785506999','off'),
|
||
(215,'_transient_dst_last_action_ad-inserter','4','off'),
|
||
(216,'dst_last_track_times','a:1:{s:11:\"ad-inserter\";i:1753971000;}','auto'),
|
||
(217,'wp_menu_image_fa_dismissed','yes','auto'),
|
||
(218,'menu_image_size_1','24x24','auto'),
|
||
(219,'menu_image_size_2','36x36','auto'),
|
||
(220,'menu_image_size_3','48x48','auto'),
|
||
(221,'menu_image_disable_mobile','0','auto'),
|
||
(222,'menu_image_hover','1','auto'),
|
||
(223,'user_role_editor','a:1:{s:11:\"ure_version\";s:6:\"4.64.5\";}','auto'),
|
||
(224,'wp_backup_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','off'),
|
||
(225,'ure_tasks_queue','a:0:{}','auto'),
|
||
(226,'ironikus_webhook_webhooks','a:1:{s:6:\"action\";a:1:{s:9:\"main_6101\";a:3:{s:7:\"api_key\";s:64:\"gt5l0vkpw4glyitlckpqchc23zav40edwilcgw83u50m9wvowiiswote3nxhzd9c\";s:10:\"permission\";s:14:\"manage_options\";s:12:\"date_created\";s:19:\"2025-07-31 14:10:51\";}}}','auto'),
|
||
(227,'_site_transient_update_plugins','O:8:\"stdClass\":3:{s:7:\"updates\";a:0:{}s:15:\"version_checked\";s:5:\"6.8.2\";s:12:\"last_checked\";i:1753972556;}','off'),
|
||
(230,'auth_key','K6C<A3*o@B[sB~lqU;$KwpJ!Bi~mmg*s#&-F6)xvI(@43w8mQ/uMe@ql]]g-:z@x','off'),
|
||
(231,'auth_salt','*_%$l~1sPXPF|O~{jo%)g| WC>]`fH5CVg{}+-}o+)SJ Yf}yL-OCW;4mzQH0VEz','off'),
|
||
(232,'current_theme','hvg-blog-general','auto'),
|
||
(233,'theme_mods_hvg-blog-general','a:6:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:10;s:22:\"hvg_blog_default_image\";s:92:\"https://blog.hvgdev.website/app/uploads/2025/08/no-revisions-9wuhgaeqagy-unsplash-scaled.jpg\";s:12:\"header_image\";s:21:\"random-uploaded-image\";}','on'),
|
||
(234,'theme_switched','','auto'),
|
||
(235,'widget_random_widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
|
||
(236,'widget_archives_by_year','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
|
||
(239,'recently_activated_snippets','a:0:{}','auto'),
|
||
(242,'_transient_health-check-site-status-result','{\"good\":\"17\",\"recommended\":\"1\",\"critical\":\"0\",\"0\":\"NaN\"}','on'),
|
||
(243,'_transient_timeout_dirsize_cache','2069332558','off'),
|
||
(244,'_transient_dirsize_cache','a:963:{s:34:\"/app/web/wp/wp-includes/php-compat\";i:1253;s:36:\"/app/web/wp/wp-includes/images/media\";i:5263;s:38:\"/app/web/wp/wp-includes/images/smilies\";i:10082;s:38:\"/app/web/wp/wp-includes/images/crystal\";i:15541;s:30:\"/app/web/wp/wp-includes/images\";i:102178;s:38:\"/app/web/wp/wp-includes/block-supports\";i:132630;s:36:\"/app/web/wp/wp-includes/theme-compat\";i:15656;s:49:\"/app/web/wp/wp-includes/SimplePie/src/Decode/HTML\";i:17241;s:44:\"/app/web/wp/wp-includes/SimplePie/src/Decode\";i:17241;s:43:\"/app/web/wp/wp-includes/SimplePie/src/Parse\";i:26853;s:50:\"/app/web/wp/wp-includes/SimplePie/src/Content/Type\";i:9290;s:45:\"/app/web/wp/wp-includes/SimplePie/src/Content\";i:9290;s:53:\"/app/web/wp/wp-includes/SimplePie/src/XML/Declaration\";i:9451;s:41:\"/app/web/wp/wp-includes/SimplePie/src/XML\";i:9451;s:43:\"/app/web/wp/wp-includes/SimplePie/src/Cache\";i:68936;s:41:\"/app/web/wp/wp-includes/SimplePie/src/Net\";i:8737;s:42:\"/app/web/wp/wp-includes/SimplePie/src/HTTP\";i:14907;s:37:\"/app/web/wp/wp-includes/SimplePie/src\";i:716234;s:63:\"/app/web/wp/wp-includes/SimplePie/library/SimplePie/Decode/HTML\";i:23828;s:58:\"/app/web/wp/wp-includes/SimplePie/library/SimplePie/Decode\";i:23828;s:57:\"/app/web/wp/wp-includes/SimplePie/library/SimplePie/Parse\";i:2419;s:64:\"/app/web/wp/wp-includes/SimplePie/library/SimplePie/Content/Type\";i:2482;s:59:\"/app/web/wp/wp-includes/SimplePie/library/SimplePie/Content\";i:2482;s:67:\"/app/web/wp/wp-includes/SimplePie/library/SimplePie/XML/Declaration\";i:2493;s:55:\"/app/web/wp/wp-includes/SimplePie/library/SimplePie/XML\";i:2493;s:57:\"/app/web/wp/wp-includes/SimplePie/library/SimplePie/Cache\";i:15217;s:55:\"/app/web/wp/wp-includes/SimplePie/library/SimplePie/Net\";i:2407;s:56:\"/app/web/wp/wp-includes/SimplePie/library/SimplePie/HTTP\";i:2427;s:51:\"/app/web/wp/wp-includes/SimplePie/library/SimplePie\";i:101578;s:41:\"/app/web/wp/wp-includes/SimplePie/library\";i:118803;s:33:\"/app/web/wp/wp-includes/SimplePie\";i:839047;s:46:\"/app/web/wp/wp-includes/Requests/src/Transport\";i:35470;s:43:\"/app/web/wp/wp-includes/Requests/src/Cookie\";i:4363;s:56:\"/app/web/wp/wp-includes/Requests/src/Exception/Transport\";i:1397;s:51:\"/app/web/wp/wp-includes/Requests/src/Exception/Http\";i:16715;s:46:\"/app/web/wp/wp-includes/Requests/src/Exception\";i:22464;s:44:\"/app/web/wp/wp-includes/Requests/src/Utility\";i:7176;s:45:\"/app/web/wp/wp-includes/Requests/src/Response\";i:3101;s:41:\"/app/web/wp/wp-includes/Requests/src/Auth\";i:2541;s:42:\"/app/web/wp/wp-includes/Requests/src/Proxy\";i:4217;s:36:\"/app/web/wp/wp-includes/Requests/src\";i:214849;s:40:\"/app/web/wp/wp-includes/Requests/library\";i:261;s:32:\"/app/web/wp/wp-includes/Requests\";i:215110;s:44:\"/app/web/wp/wp-includes/css/dist/preferences\";i:6314;s:45:\"/app/web/wp/wp-includes/css/dist/edit-widgets\";i:90952;s:41:\"/app/web/wp/wp-includes/css/dist/patterns\";i:7442;s:48:\"/app/web/wp/wp-includes/css/dist/block-directory\";i:15464;s:42:\"/app/web/wp/wp-includes/css/dist/edit-site\";i:590018;s:46:\"/app/web/wp/wp-includes/css/dist/block-library\";i:804012;s:47:\"/app/web/wp/wp-includes/css/dist/format-library\";i:5024;s:42:\"/app/web/wp/wp-includes/css/dist/edit-post\";i:61540;s:40:\"/app/web/wp/wp-includes/css/dist/widgets\";i:23740;s:41:\"/app/web/wp/wp-includes/css/dist/commands\";i:13442;s:50:\"/app/web/wp/wp-includes/css/dist/customize-widgets\";i:25296;s:48:\"/app/web/wp/wp-includes/css/dist/reusable-blocks\";i:2290;s:39:\"/app/web/wp/wp-includes/css/dist/editor\";i:243084;s:36:\"/app/web/wp/wp-includes/css/dist/nux\";i:11874;s:53:\"/app/web/wp/wp-includes/css/dist/list-reusable-blocks\";i:17852;s:43:\"/app/web/wp/wp-includes/css/dist/components\";i:366079;s:45:\"/app/web/wp/wp-includes/css/dist/block-editor\";i:620037;s:32:\"/app/web/wp/wp-includes/css/dist\";i:2904460;s:27:\"/app/web/wp/wp-includes/css\";i:3551277;s:42:\"/app/web/wp/wp-includes/Text/Diff/Renderer\";i:5528;s:40:\"/app/web/wp/wp-includes/Text/Diff/Engine\";i:31802;s:33:\"/app/web/wp/wp-includes/Text/Diff\";i:44136;s:28:\"/app/web/wp/wp-includes/Text\";i:57248;s:30:\"/app/web/wp/wp-includes/assets\";i:28376;s:32:\"/app/web/wp/wp-includes/html-api\";i:536362;s:36:\"/app/web/wp/wp-includes/certificates\";i:226307;s:27:\"/app/web/wp/wp-includes/ID3\";i:1160011;s:28:\"/app/web/wp/wp-includes/pomo\";i:57146;s:41:\"/app/web/wp/wp-includes/interactivity-api\";i:57534;s:41:\"/app/web/wp/wp-includes/blocks/navigation\";i:131175;s:43:\"/app/web/wp/wp-includes/blocks/post-content\";i:1778;s:39:\"/app/web/wp/wp-includes/blocks/comments\";i:29695;s:55:\"/app/web/wp/wp-includes/blocks/query-pagination-numbers\";i:1942;s:38:\"/app/web/wp/wp-includes/blocks/gallery\";i:78452;s:40:\"/app/web/wp/wp-includes/blocks/shortcode\";i:2918;s:39:\"/app/web/wp/wp-includes/blocks/calendar\";i:3804;s:46:\"/app/web/wp/wp-includes/blocks/comment-content\";i:1838;s:38:\"/app/web/wp/wp-includes/blocks/details\";i:2260;s:44:\"/app/web/wp/wp-includes/blocks/template-part\";i:6686;s:51:\"/app/web/wp/wp-includes/blocks/post-navigation-link\";i:4010;s:38:\"/app/web/wp/wp-includes/blocks/columns\";i:9193;s:49:\"/app/web/wp/wp-includes/blocks/comment-reply-link\";i:1447;s:47:\"/app/web/wp/wp-includes/blocks/post-author-name\";i:1673;s:47:\"/app/web/wp/wp-includes/blocks/term-description\";i:2070;s:35:\"/app/web/wp/wp-includes/blocks/code\";i:2828;s:40:\"/app/web/wp/wp-includes/blocks/footnotes\";i:2642;s:39:\"/app/web/wp/wp-includes/blocks/loginout\";i:1474;s:37:\"/app/web/wp/wp-includes/blocks/avatar\";i:2296;s:37:\"/app/web/wp/wp-includes/blocks/button\";i:14327;s:45:\"/app/web/wp/wp-includes/blocks/comments-title\";i:1745;s:52:\"/app/web/wp/wp-includes/blocks/post-author-biography\";i:1507;s:41:\"/app/web/wp/wp-includes/blocks/categories\";i:4020;s:42:\"/app/web/wp/wp-includes/blocks/query-total\";i:1520;s:42:\"/app/web/wp/wp-includes/blocks/social-link\";i:3510;s:40:\"/app/web/wp/wp-includes/blocks/separator\";i:5126;s:35:\"/app/web/wp/wp-includes/blocks/html\";i:3770;s:40:\"/app/web/wp/wp-includes/blocks/page-list\";i:8293;s:40:\"/app/web/wp/wp-includes/blocks/home-link\";i:1130;s:38:\"/app/web/wp/wp-includes/blocks/pattern\";i:411;s:56:\"/app/web/wp/wp-includes/blocks/query-pagination-previous\";i:1051;s:43:\"/app/web/wp/wp-includes/blocks/widget-group\";i:400;s:39:\"/app/web/wp/wp-includes/blocks/freeform\";i:41624;s:36:\"/app/web/wp/wp-includes/blocks/audio\";i:3675;s:36:\"/app/web/wp/wp-includes/blocks/query\";i:12952;s:43:\"/app/web/wp/wp-includes/blocks/site-tagline\";i:2149;s:36:\"/app/web/wp/wp-includes/blocks/verse\";i:2144;s:40:\"/app/web/wp/wp-includes/blocks/site-logo\";i:15709;s:41:\"/app/web/wp/wp-includes/blocks/site-title\";i:3051;s:47:\"/app/web/wp/wp-includes/blocks/query-no-results\";i:901;s:38:\"/app/web/wp/wp-includes/blocks/heading\";i:5866;s:40:\"/app/web/wp/wp-includes/blocks/pullquote\";i:8859;s:38:\"/app/web/wp/wp-includes/blocks/buttons\";i:11544;s:39:\"/app/web/wp/wp-includes/blocks/nextpage\";i:3039;s:40:\"/app/web/wp/wp-includes/blocks/paragraph\";i:7421;s:49:\"/app/web/wp/wp-includes/blocks/navigation-submenu\";i:6204;s:39:\"/app/web/wp/wp-includes/blocks/archives\";i:2233;s:44:\"/app/web/wp/wp-includes/blocks/post-template\";i:7967;s:47:\"/app/web/wp/wp-includes/blocks/query-pagination\";i:5775;s:36:\"/app/web/wp/wp-includes/blocks/embed\";i:11420;s:36:\"/app/web/wp/wp-includes/blocks/block\";i:587;s:50:\"/app/web/wp/wp-includes/blocks/post-featured-image\";i:29843;s:41:\"/app/web/wp/wp-includes/blocks/media-text\";i:16904;s:45:\"/app/web/wp/wp-includes/blocks/page-list-item\";i:1109;s:37:\"/app/web/wp/wp-includes/blocks/column\";i:1636;s:48:\"/app/web/wp/wp-includes/blocks/comment-edit-link\";i:1654;s:34:\"/app/web/wp/wp-includes/blocks/rss\";i:4900;s:50:\"/app/web/wp/wp-includes/blocks/comments-pagination\";i:8917;s:43:\"/app/web/wp/wp-includes/blocks/comment-date\";i:1562;s:42:\"/app/web/wp/wp-includes/blocks/query-title\";i:1721;s:36:\"/app/web/wp/wp-includes/blocks/quote\";i:7166;s:35:\"/app/web/wp/wp-includes/blocks/more\";i:3770;s:40:\"/app/web/wp/wp-includes/blocks/read-more\";i:2428;s:40:\"/app/web/wp/wp-includes/blocks/post-date\";i:1665;s:40:\"/app/web/wp/wp-includes/blocks/tag-cloud\";i:4274;s:38:\"/app/web/wp/wp-includes/blocks/missing\";i:617;s:41:\"/app/web/wp/wp-includes/blocks/post-title\";i:2849;s:43:\"/app/web/wp/wp-includes/blocks/social-links\";i:60255;s:43:\"/app/web/wp/wp-includes/blocks/post-excerpt\";i:3285;s:43:\"/app/web/wp/wp-includes/blocks/preformatted\";i:1907;s:46:\"/app/web/wp/wp-includes/blocks/latest-comments\";i:6816;s:59:\"/app/web/wp/wp-includes/blocks/comments-pagination-previous\";i:1023;s:55:\"/app/web/wp/wp-includes/blocks/comments-pagination-next\";i:1011;s:37:\"/app/web/wp/wp-includes/blocks/search\";i:19632;s:40:\"/app/web/wp/wp-includes/blocks/list-item\";i:1471;s:46:\"/app/web/wp/wp-includes/blocks/navigation-link\";i:10406;s:43:\"/app/web/wp/wp-includes/blocks/latest-posts\";i:11447;s:49:\"/app/web/wp/wp-includes/blocks/post-comments-form\";i:10059;s:36:\"/app/web/wp/wp-includes/blocks/group\";i:8051;s:41:\"/app/web/wp/wp-includes/blocks/post-terms\";i:1981;s:36:\"/app/web/wp/wp-includes/blocks/table\";i:27384;s:35:\"/app/web/wp/wp-includes/blocks/list\";i:2338;s:50:\"/app/web/wp/wp-includes/blocks/comment-author-name\";i:1677;s:58:\"/app/web/wp/wp-includes/blocks/comments-pagination-numbers\";i:1833;s:52:\"/app/web/wp/wp-includes/blocks/query-pagination-next\";i:1039;s:35:\"/app/web/wp/wp-includes/blocks/file\";i:11820;s:36:\"/app/web/wp/wp-includes/blocks/image\";i:66363;s:43:\"/app/web/wp/wp-includes/blocks/text-columns\";i:3054;s:47:\"/app/web/wp/wp-includes/blocks/comment-template\";i:3037;s:36:\"/app/web/wp/wp-includes/blocks/video\";i:8844;s:36:\"/app/web/wp/wp-includes/blocks/cover\";i:87729;s:42:\"/app/web/wp/wp-includes/blocks/post-author\";i:3959;s:44:\"/app/web/wp/wp-includes/blocks/legacy-widget\";i:556;s:37:\"/app/web/wp/wp-includes/blocks/spacer\";i:4737;s:30:\"/app/web/wp/wp-includes/blocks\";i:1535843;s:33:\"/app/web/wp/wp-includes/customize\";i:178173;s:31:\"/app/web/wp/wp-includes/widgets\";i:158198;s:33:\"/app/web/wp/wp-includes/PHPMailer\";i:233633;s:28:\"/app/web/wp/wp-includes/l10n\";i:31237;s:29:\"/app/web/wp/wp-includes/fonts\";i:327011;s:61:\"/app/web/wp/wp-includes/sodium_compat/src/Core32/SecretStream\";i:3656;s:57:\"/app/web/wp/wp-includes/sodium_compat/src/Core32/Poly1305\";i:15965;s:57:\"/app/web/wp/wp-includes/sodium_compat/src/Core32/ChaCha20\";i:6407;s:62:\"/app/web/wp/wp-includes/sodium_compat/src/Core32/Curve25519/Ge\";i:8177;s:59:\"/app/web/wp/wp-includes/sodium_compat/src/Core32/Curve25519\";i:122690;s:48:\"/app/web/wp/wp-includes/sodium_compat/src/Core32\";i:437041;s:47:\"/app/web/wp/wp-includes/sodium_compat/src/PHP52\";i:4116;s:52:\"/app/web/wp/wp-includes/sodium_compat/src/Core/AEGIS\";i:14759;s:53:\"/app/web/wp/wp-includes/sodium_compat/src/Core/Base64\";i:15456;s:59:\"/app/web/wp/wp-includes/sodium_compat/src/Core/SecretStream\";i:3624;s:55:\"/app/web/wp/wp-includes/sodium_compat/src/Core/Poly1305\";i:12912;s:50:\"/app/web/wp/wp-includes/sodium_compat/src/Core/AES\";i:12651;s:55:\"/app/web/wp/wp-includes/sodium_compat/src/Core/ChaCha20\";i:5264;s:60:\"/app/web/wp/wp-includes/sodium_compat/src/Core/Curve25519/Ge\";i:10572;s:57:\"/app/web/wp/wp-includes/sodium_compat/src/Core/Curve25519\";i:124336;s:46:\"/app/web/wp/wp-includes/sodium_compat/src/Core\";i:499975;s:41:\"/app/web/wp/wp-includes/sodium_compat/src\";i:1268866;s:62:\"/app/web/wp/wp-includes/sodium_compat/namespaced/Core/Poly1305\";i:112;s:62:\"/app/web/wp/wp-includes/sodium_compat/namespaced/Core/ChaCha20\";i:224;s:67:\"/app/web/wp/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge\";i:602;s:64:\"/app/web/wp/wp-includes/sodium_compat/namespaced/Core/Curve25519\";i:820;s:53:\"/app/web/wp/wp-includes/sodium_compat/namespaced/Core\";i:2444;s:48:\"/app/web/wp/wp-includes/sodium_compat/namespaced\";i:2698;s:41:\"/app/web/wp/wp-includes/sodium_compat/lib\";i:99005;s:37:\"/app/web/wp/wp-includes/sodium_compat\";i:1377044;s:42:\"/app/web/wp/wp-includes/sitemaps/providers\";i:17599;s:32:\"/app/web/wp/wp-includes/sitemaps\";i:47547;s:42:\"/app/web/wp/wp-includes/rest-api/endpoints\";i:870211;s:39:\"/app/web/wp/wp-includes/rest-api/search\";i:16916;s:39:\"/app/web/wp/wp-includes/rest-api/fields\";i:22750;s:32:\"/app/web/wp/wp-includes/rest-api\";i:1001440;s:27:\"/app/web/wp/wp-includes/IXR\";i:33910;s:38:\"/app/web/wp/wp-includes/block-patterns\";i:8951;s:38:\"/app/web/wp/wp-includes/block-bindings\";i:3610;s:67:\"/app/web/wp/wp-includes/js/dist/script-modules/interactivity-router\";i:21116;s:71:\"/app/web/wp/wp-includes/js/dist/script-modules/block-library/navigation\";i:11881;s:65:\"/app/web/wp/wp-includes/js/dist/script-modules/block-library/form\";i:2559;s:66:\"/app/web/wp/wp-includes/js/dist/script-modules/block-library/query\";i:6276;s:67:\"/app/web/wp/wp-includes/js/dist/script-modules/block-library/search\";i:5460;s:65:\"/app/web/wp/wp-includes/js/dist/script-modules/block-library/file\";i:3826;s:66:\"/app/web/wp/wp-includes/js/dist/script-modules/block-library/image\";i:22849;s:60:\"/app/web/wp/wp-includes/js/dist/script-modules/block-library\";i:52851;s:60:\"/app/web/wp/wp-includes/js/dist/script-modules/interactivity\";i:312802;s:51:\"/app/web/wp/wp-includes/js/dist/script-modules/a11y\";i:5613;s:46:\"/app/web/wp/wp-includes/js/dist/script-modules\";i:392382;s:38:\"/app/web/wp/wp-includes/js/dist/vendor\";i:2701413;s:43:\"/app/web/wp/wp-includes/js/dist/development\";i:179848;s:31:\"/app/web/wp/wp-includes/js/dist\";i:22295514;s:40:\"/app/web/wp/wp-includes/js/tinymce/langs\";i:15529;s:57:\"/app/web/wp/wp-includes/js/tinymce/skins/wordpress/images\";i:16653;s:50:\"/app/web/wp/wp-includes/js/tinymce/skins/wordpress\";i:25413;s:54:\"/app/web/wp/wp-includes/js/tinymce/skins/lightgray/img\";i:2856;s:56:\"/app/web/wp/wp-includes/js/tinymce/skins/lightgray/fonts\";i:155760;s:50:\"/app/web/wp/wp-includes/js/tinymce/skins/lightgray\";i:210254;s:40:\"/app/web/wp/wp-includes/js/tinymce/skins\";i:235667;s:48:\"/app/web/wp/wp-includes/js/tinymce/themes/inlite\";i:452642;s:48:\"/app/web/wp/wp-includes/js/tinymce/themes/modern\";i:446221;s:41:\"/app/web/wp/wp-includes/js/tinymce/themes\";i:898863;s:53:\"/app/web/wp/wp-includes/js/tinymce/plugins/fullscreen\";i:7779;s:49:\"/app/web/wp/wp-includes/js/tinymce/plugins/wplink\";i:26786;s:50:\"/app/web/wp/wp-includes/js/tinymce/plugins/wpemoji\";i:5099;s:48:\"/app/web/wp/wp-includes/js/tinymce/plugins/media\";i:57914;s:56:\"/app/web/wp/wp-includes/js/tinymce/plugins/wptextpattern\";i:11923;s:52:\"/app/web/wp/wp-includes/js/tinymce/plugins/wpdialogs\";i:3761;s:49:\"/app/web/wp/wp-includes/js/tinymce/plugins/wpview\";i:8985;s:52:\"/app/web/wp/wp-includes/js/tinymce/plugins/wordpress\";i:50553;s:55:\"/app/web/wp/wp-includes/js/tinymce/plugins/wpautoresize\";i:8332;s:48:\"/app/web/wp/wp-includes/js/tinymce/plugins/paste\";i:113193;s:54:\"/app/web/wp/wp-includes/js/tinymce/plugins/colorpicker\";i:4910;s:45:\"/app/web/wp/wp-includes/js/tinymce/plugins/hr\";i:1347;s:48:\"/app/web/wp/wp-includes/js/tinymce/plugins/lists\";i:97383;s:51:\"/app/web/wp/wp-includes/js/tinymce/plugins/tabfocus\";i:5336;s:55:\"/app/web/wp/wp-includes/js/tinymce/plugins/compat3x/css\";i:8179;s:51:\"/app/web/wp/wp-includes/js/tinymce/plugins/compat3x\";i:21758;s:54:\"/app/web/wp/wp-includes/js/tinymce/plugins/wpeditimage\";i:37709;s:47:\"/app/web/wp/wp-includes/js/tinymce/plugins/link\";i:32949;s:57:\"/app/web/wp/wp-includes/js/tinymce/plugins/directionality\";i:2749;s:52:\"/app/web/wp/wp-includes/js/tinymce/plugins/textcolor\";i:16237;s:52:\"/app/web/wp/wp-includes/js/tinymce/plugins/wpgallery\";i:4806;s:48:\"/app/web/wp/wp-includes/js/tinymce/plugins/image\";i:55874;s:50:\"/app/web/wp/wp-includes/js/tinymce/plugins/charmap\";i:31811;s:42:\"/app/web/wp/wp-includes/js/tinymce/plugins\";i:607194;s:40:\"/app/web/wp/wp-includes/js/tinymce/utils\";i:18826;s:34:\"/app/web/wp/wp-includes/js/tinymce\";i:2856553;s:40:\"/app/web/wp/wp-includes/js/imgareaselect\";i:49553;s:36:\"/app/web/wp/wp-includes/js/jquery/ui\";i:787634;s:33:\"/app/web/wp/wp-includes/js/jquery\";i:1304968;s:31:\"/app/web/wp/wp-includes/js/crop\";i:20004;s:35:\"/app/web/wp/wp-includes/js/thickbox\";i:31323;s:49:\"/app/web/wp/wp-includes/js/mediaelement/renderers\";i:18880;s:39:\"/app/web/wp/wp-includes/js/mediaelement\";i:721307;s:36:\"/app/web/wp/wp-includes/js/swfupload\";i:8715;s:37:\"/app/web/wp/wp-includes/js/codemirror\";i:1287141;s:35:\"/app/web/wp/wp-includes/js/plupload\";i:490754;s:32:\"/app/web/wp/wp-includes/js/jcrop\";i:24976;s:26:\"/app/web/wp/wp-includes/js\";i:31513410;s:36:\"/app/web/wp/wp-includes/style-engine\";i:48119;s:23:\"/app/web/wp/wp-includes\";i:50939900;s:27:\"/app/web/wp/wp-admin/images\";i:427294;s:39:\"/app/web/wp/wp-admin/css/colors/sunrise\";i:86121;s:37:\"/app/web/wp/wp-admin/css/colors/ocean\";i:79467;s:41:\"/app/web/wp/wp-admin/css/colors/ectoplasm\";i:83892;s:36:\"/app/web/wp/wp-admin/css/colors/blue\";i:82449;s:37:\"/app/web/wp/wp-admin/css/colors/light\";i:83275;s:40:\"/app/web/wp/wp-admin/css/colors/midnight\";i:84671;s:38:\"/app/web/wp/wp-admin/css/colors/coffee\";i:80361;s:38:\"/app/web/wp/wp-admin/css/colors/modern\";i:83520;s:31:\"/app/web/wp/wp-admin/css/colors\";i:689979;s:24:\"/app/web/wp/wp-admin/css\";i:2623520;s:25:\"/app/web/wp/wp-admin/user\";i:3758;s:29:\"/app/web/wp/wp-admin/includes\";i:3089012;s:26:\"/app/web/wp/wp-admin/maint\";i:7611;s:28:\"/app/web/wp/wp-admin/network\";i:126233;s:31:\"/app/web/wp/wp-admin/js/widgets\";i:139432;s:23:\"/app/web/wp/wp-admin/js\";i:1996678;s:20:\"/app/web/wp/wp-admin\";i:9217669;s:11:\"/app/web/wp\";i:60343800;s:47:\"/app/web/app/themes/hvg-blog-general/assets/css\";i:306489;s:50:\"/app/web/app/themes/hvg-blog-general/assets/images\";i:9342;s:58:\"/app/web/app/themes/hvg-blog-general/assets/scss/bootstrap\";i:161680;s:48:\"/app/web/app/themes/hvg-blog-general/assets/scss\";i:255740;s:43:\"/app/web/app/themes/hvg-blog-general/assets\";i:571571;s:44:\"/app/web/app/themes/hvg-blog-general/inc/css\";i:0;s:43:\"/app/web/app/themes/hvg-blog-general/inc/js\";i:260;s:40:\"/app/web/app/themes/hvg-blog-general/inc\";i:71593;s:39:\"/app/web/app/themes/hvg-blog-general/js\";i:160001;s:51:\"/app/web/app/themes/hvg-blog-general/template-parts\";i:11303;s:36:\"/app/web/app/themes/hvg-blog-general\";i:1659923;s:47:\"/app/web/app/themes/twentytwentyfive/assets/css\";i:157;s:57:\"/app/web/app/themes/twentytwentyfive/assets/fonts/beiruti\";i:176048;s:59:\"/app/web/app/themes/twentytwentyfive/assets/fonts/fira-code\";i:106112;s:59:\"/app/web/app/themes/twentytwentyfive/assets/fonts/fira-sans\";i:2778636;s:58:\"/app/web/app/themes/twentytwentyfive/assets/fonts/literata\";i:1698956;s:57:\"/app/web/app/themes/twentytwentyfive/assets/fonts/manrope\";i:53600;s:57:\"/app/web/app/themes/twentytwentyfive/assets/fonts/platypi\";i:142896;s:61:\"/app/web/app/themes/twentytwentyfive/assets/fonts/roboto-slab\";i:115804;s:58:\"/app/web/app/themes/twentytwentyfive/assets/fonts/vollkorn\";i:357316;s:64:\"/app/web/app/themes/twentytwentyfive/assets/fonts/ysabeau-office\";i:299520;s:49:\"/app/web/app/themes/twentytwentyfive/assets/fonts\";i:5728888;s:50:\"/app/web/app/themes/twentytwentyfive/assets/images\";i:1945719;s:43:\"/app/web/app/themes/twentytwentyfive/assets\";i:7674764;s:42:\"/app/web/app/themes/twentytwentyfive/parts\";i:440;s:45:\"/app/web/app/themes/twentytwentyfive/patterns\";i:346754;s:50:\"/app/web/app/themes/twentytwentyfive/styles/blocks\";i:1977;s:50:\"/app/web/app/themes/twentytwentyfive/styles/colors\";i:25175;s:52:\"/app/web/app/themes/twentytwentyfive/styles/sections\";i:10657;s:54:\"/app/web/app/themes/twentytwentyfive/styles/typography\";i:38357;s:43:\"/app/web/app/themes/twentytwentyfive/styles\";i:140995;s:46:\"/app/web/app/themes/twentytwentyfive/templates\";i:5339;s:36:\"/app/web/app/themes/twentytwentyfive\";i:8415408;s:19:\"/app/web/app/themes\";i:10075331;s:49:\"/app/web/app/plugins/s3-uploads/.github/workflows\";i:846;s:39:\"/app/web/app/plugins/s3-uploads/.github\";i:1131;s:35:\"/app/web/app/plugins/s3-uploads/inc\";i:89201;s:43:\"/app/web/app/plugins/s3-uploads/psalm/stubs\";i:742;s:37:\"/app/web/app/plugins/s3-uploads/psalm\";i:742;s:31:\"/app/web/app/plugins/s3-uploads\";i:104686;s:42:\"/app/web/app/plugins/acme-fix-images/admin\";i:10301;s:47:\"/app/web/app/plugins/acme-fix-images/assets/img\";i:4387;s:62:\"/app/web/app/plugins/acme-fix-images/assets/library/atomic-css\";i:212272;s:67:\"/app/web/app/plugins/acme-fix-images/assets/library/fonts/open-sans\";i:111548;s:57:\"/app/web/app/plugins/acme-fix-images/assets/library/fonts\";i:113823;s:51:\"/app/web/app/plugins/acme-fix-images/assets/library\";i:326095;s:43:\"/app/web/app/plugins/acme-fix-images/assets\";i:330482;s:48:\"/app/web/app/plugins/acme-fix-images/build/admin\";i:438283;s:49:\"/app/web/app/plugins/acme-fix-images/build/public\";i:23942;s:42:\"/app/web/app/plugins/acme-fix-images/build\";i:462225;s:49:\"/app/web/app/plugins/acme-fix-images/includes/api\";i:12253;s:45:\"/app/web/app/plugins/acme-fix-images/includes\";i:36894;s:46:\"/app/web/app/plugins/acme-fix-images/languages\";i:8049;s:36:\"/app/web/app/plugins/acme-fix-images\";i:877198;s:48:\"/app/web/app/plugins/disable-comments/assets/css\";i:132645;s:50:\"/app/web/app/plugins/disable-comments/assets/fonts\";i:121592;s:53:\"/app/web/app/plugins/disable-comments/assets/img/blog\";i:7967;s:48:\"/app/web/app/plugins/disable-comments/assets/img\";i:100944;s:47:\"/app/web/app/plugins/disable-comments/assets/js\";i:197296;s:44:\"/app/web/app/plugins/disable-comments/assets\";i:552477;s:46:\"/app/web/app/plugins/disable-comments/includes\";i:47524;s:47:\"/app/web/app/plugins/disable-comments/languages\";i:16430;s:52:\"/app/web/app/plugins/disable-comments/views/partials\";i:63553;s:43:\"/app/web/app/plugins/disable-comments/views\";i:66604;s:37:\"/app/web/app/plugins/disable-comments\";i:750720;s:56:\"/app/web/app/plugins/disable-wordpress-updates/languages\";i:4978;s:46:\"/app/web/app/plugins/disable-wordpress-updates\";i:20167;s:67:\"/app/web/app/plugins/comments-from-facebook/images/featured_plugins\";i:157466;s:66:\"/app/web/app/plugins/comments-from-facebook/images/featured_themes\";i:4032914;s:62:\"/app/web/app/plugins/comments-from-facebook/images/hire_expert\";i:23567;s:50:\"/app/web/app/plugins/comments-from-facebook/images\";i:4239365;s:63:\"/app/web/app/plugins/comments-from-facebook/includes/javascript\";i:3406;s:58:\"/app/web/app/plugins/comments-from-facebook/includes/style\";i:16301;s:52:\"/app/web/app/plugins/comments-from-facebook/includes\";i:78751;s:43:\"/app/web/app/plugins/comments-from-facebook\";i:4370695;s:49:\"/app/web/app/plugins/two-factor/assets/blueprints\";i:359;s:38:\"/app/web/app/plugins/two-factor/assets\";i:359;s:47:\"/app/web/app/plugins/two-factor/includes/Google\";i:20884;s:57:\"/app/web/app/plugins/two-factor/includes/qrcode-generator\";i:56694;s:47:\"/app/web/app/plugins/two-factor/includes/Yubico\";i:16882;s:40:\"/app/web/app/plugins/two-factor/includes\";i:103879;s:45:\"/app/web/app/plugins/two-factor/providers/css\";i:232;s:44:\"/app/web/app/plugins/two-factor/providers/js\";i:5554;s:41:\"/app/web/app/plugins/two-factor/providers\";i:85283;s:31:\"/app/web/app/plugins/two-factor\";i:287481;s:48:\"/app/web/app/plugins/user-role-editor/css/images\";i:36376;s:41:\"/app/web/app/plugins/user-role-editor/css\";i:118675;s:44:\"/app/web/app/plugins/user-role-editor/images\";i:160288;s:54:\"/app/web/app/plugins/user-role-editor/includes/classes\";i:316665;s:46:\"/app/web/app/plugins/user-role-editor/includes\";i:332477;s:40:\"/app/web/app/plugins/user-role-editor/js\";i:299779;s:42:\"/app/web/app/plugins/user-role-editor/lang\";i:26364;s:37:\"/app/web/app/plugins/user-role-editor\";i:1267266;s:41:\"/app/web/app/plugins/code-snippets/assets\";i:4904;s:45:\"/app/web/app/plugins/code-snippets/css/common\";i:4519;s:43:\"/app/web/app/plugins/code-snippets/css/edit\";i:5395;s:45:\"/app/web/app/plugins/code-snippets/css/manage\";i:6690;s:38:\"/app/web/app/plugins/code-snippets/css\";i:34094;s:53:\"/app/web/app/plugins/code-snippets/dist/editor-themes\";i:135087;s:39:\"/app/web/app/plugins/code-snippets/dist\";i:635308;s:55:\"/app/web/app/plugins/code-snippets/js/components/common\";i:3005;s:68:\"/app/web/app/plugins/code-snippets/js/components/SnippetForm/buttons\";i:9817;s:67:\"/app/web/app/plugins/code-snippets/js/components/SnippetForm/fields\";i:10893;s:65:\"/app/web/app/plugins/code-snippets/js/components/SnippetForm/page\";i:7242;s:74:\"/app/web/app/plugins/code-snippets/js/components/SnippetForm/SnippetEditor\";i:10058;s:60:\"/app/web/app/plugins/code-snippets/js/components/SnippetForm\";i:40345;s:58:\"/app/web/app/plugins/code-snippets/js/components/TagEditor\";i:5726;s:48:\"/app/web/app/plugins/code-snippets/js/components\";i:49076;s:43:\"/app/web/app/plugins/code-snippets/js/hooks\";i:10112;s:53:\"/app/web/app/plugins/code-snippets/js/services/manage\";i:6577;s:55:\"/app/web/app/plugins/code-snippets/js/services/settings\";i:3223;s:46:\"/app/web/app/plugins/code-snippets/js/services\";i:9800;s:46:\"/app/web/app/plugins/code-snippets/js/types/wp\";i:2596;s:43:\"/app/web/app/plugins/code-snippets/js/types\";i:8084;s:43:\"/app/web/app/plugins/code-snippets/js/utils\";i:8714;s:37:\"/app/web/app/plugins/code-snippets/js\";i:90704;s:50:\"/app/web/app/plugins/code-snippets/php/admin-menus\";i:33122;s:44:\"/app/web/app/plugins/code-snippets/php/cloud\";i:40740;s:45:\"/app/web/app/plugins/code-snippets/php/export\";i:11250;s:48:\"/app/web/app/plugins/code-snippets/php/front-end\";i:13652;s:47:\"/app/web/app/plugins/code-snippets/php/rest-api\";i:15401;s:47:\"/app/web/app/plugins/code-snippets/php/settings\";i:26884;s:53:\"/app/web/app/plugins/code-snippets/php/views/partials\";i:5333;s:44:\"/app/web/app/plugins/code-snippets/php/views\";i:19855;s:38:\"/app/web/app/plugins/code-snippets/php\";i:312420;s:85:\"/app/web/app/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers\";i:86335;s:74:\"/app/web/app/plugins/code-snippets/vendor/composer/installers/src/Composer\";i:86335;s:65:\"/app/web/app/plugins/code-snippets/vendor/composer/installers/src\";i:86879;s:61:\"/app/web/app/plugins/code-snippets/vendor/composer/installers\";i:90658;s:50:\"/app/web/app/plugins/code-snippets/vendor/composer\";i:139405;s:41:\"/app/web/app/plugins/code-snippets/vendor\";i:140176;s:34:\"/app/web/app/plugins/code-snippets\";i:1306337;s:48:\"/app/web/app/plugins/wp-api-swaggerui/assets/css\";i:144213;s:47:\"/app/web/app/plugins/wp-api-swaggerui/assets/js\";i:1445936;s:44:\"/app/web/app/plugins/wp-api-swaggerui/assets\";i:1590149;s:46:\"/app/web/app/plugins/wp-api-swaggerui/template\";i:1070;s:37:\"/app/web/app/plugins/wp-api-swaggerui\";i:1614036;s:57:\"/app/web/app/plugins/menu-image/freemius/assets/css/admin\";i:54796;s:51:\"/app/web/app/plugins/menu-image/freemius/assets/css\";i:57644;s:51:\"/app/web/app/plugins/menu-image/freemius/assets/img\";i:55332;s:58:\"/app/web/app/plugins/menu-image/freemius/assets/js/pricing\";i:531996;s:50:\"/app/web/app/plugins/menu-image/freemius/assets/js\";i:537799;s:47:\"/app/web/app/plugins/menu-image/freemius/assets\";i:650862;s:60:\"/app/web/app/plugins/menu-image/freemius/includes/customizer\";i:7894;s:55:\"/app/web/app/plugins/menu-image/freemius/includes/debug\";i:3094;s:58:\"/app/web/app/plugins/menu-image/freemius/includes/entities\";i:49957;s:58:\"/app/web/app/plugins/menu-image/freemius/includes/managers\";i:212413;s:64:\"/app/web/app/plugins/menu-image/freemius/includes/sdk/Exceptions\";i:3037;s:53:\"/app/web/app/plugins/menu-image/freemius/includes/sdk\";i:50808;s:61:\"/app/web/app/plugins/menu-image/freemius/includes/supplements\";i:3710;s:49:\"/app/web/app/plugins/menu-image/freemius/includes\";i:1661315;s:50:\"/app/web/app/plugins/menu-image/freemius/languages\";i:783984;s:67:\"/app/web/app/plugins/menu-image/freemius/templates/account/partials\";i:50868;s:58:\"/app/web/app/plugins/menu-image/freemius/templates/account\";i:66162;s:59:\"/app/web/app/plugins/menu-image/freemius/templates/checkout\";i:14060;s:58:\"/app/web/app/plugins/menu-image/freemius/templates/connect\";i:4437;s:56:\"/app/web/app/plugins/menu-image/freemius/templates/debug\";i:14448;s:69:\"/app/web/app/plugins/menu-image/freemius/templates/forms/deactivation\";i:28068;s:56:\"/app/web/app/plugins/menu-image/freemius/templates/forms\";i:171217;s:53:\"/app/web/app/plugins/menu-image/freemius/templates/js\";i:25512;s:59:\"/app/web/app/plugins/menu-image/freemius/templates/partials\";i:5007;s:62:\"/app/web/app/plugins/menu-image/freemius/templates/plugin-info\";i:6611;s:50:\"/app/web/app/plugins/menu-image/freemius/templates\";i:525764;s:40:\"/app/web/app/plugins/menu-image/freemius\";i:3699436;s:51:\"/app/web/app/plugins/menu-image/includes/assets/img\";i:64395;s:47:\"/app/web/app/plugins/menu-image/includes/assets\";i:64395;s:44:\"/app/web/app/plugins/menu-image/includes/css\";i:19901;s:43:\"/app/web/app/plugins/menu-image/includes/js\";i:21304;s:40:\"/app/web/app/plugins/menu-image/includes\";i:105600;s:41:\"/app/web/app/plugins/menu-image/languages\";i:12474;s:31:\"/app/web/app/plugins/menu-image\";i:3924877;s:38:\"/app/web/app/plugins/cloudflare/assets\";i:555052;s:37:\"/app/web/app/plugins/cloudflare/fonts\";i:1028960;s:36:\"/app/web/app/plugins/cloudflare/lang\";i:76573;s:49:\"/app/web/app/plugins/cloudflare/src/API/Exception\";i:283;s:39:\"/app/web/app/plugins/cloudflare/src/API\";i:25304;s:47:\"/app/web/app/plugins/cloudflare/src/Integration\";i:6108;s:42:\"/app/web/app/plugins/cloudflare/src/Router\";i:5787;s:44:\"/app/web/app/plugins/cloudflare/src/Test/API\";i:23946;s:52:\"/app/web/app/plugins/cloudflare/src/Test/Integration\";i:852;s:47:\"/app/web/app/plugins/cloudflare/src/Test/Router\";i:5256;s:50:\"/app/web/app/plugins/cloudflare/src/Test/WordPress\";i:33427;s:40:\"/app/web/app/plugins/cloudflare/src/Test\";i:64541;s:66:\"/app/web/app/plugins/cloudflare/src/WordPress/Constants/Exceptions\";i:197;s:55:\"/app/web/app/plugins/cloudflare/src/WordPress/Constants\";i:719;s:45:\"/app/web/app/plugins/cloudflare/src/WordPress\";i:61378;s:35:\"/app/web/app/plugins/cloudflare/src\";i:166930;s:43:\"/app/web/app/plugins/cloudflare/stylesheets\";i:94421;s:78:\"/app/web/app/plugins/cloudflare/vendor/cloudflare/cf-ip-rewrite/src/CloudFlare\";i:7453;s:67:\"/app/web/app/plugins/cloudflare/vendor/cloudflare/cf-ip-rewrite/src\";i:7453;s:69:\"/app/web/app/plugins/cloudflare/vendor/cloudflare/cf-ip-rewrite/tests\";i:7364;s:63:\"/app/web/app/plugins/cloudflare/vendor/cloudflare/cf-ip-rewrite\";i:61628;s:49:\"/app/web/app/plugins/cloudflare/vendor/cloudflare\";i:61628;s:47:\"/app/web/app/plugins/cloudflare/vendor/composer\";i:31796;s:59:\"/app/web/app/plugins/cloudflare/vendor/psr/log/Psr/Log/Test\";i:9427;s:54:\"/app/web/app/plugins/cloudflare/vendor/psr/log/Psr/Log\";i:20898;s:50:\"/app/web/app/plugins/cloudflare/vendor/psr/log/Psr\";i:20898;s:46:\"/app/web/app/plugins/cloudflare/vendor/psr/log\";i:23891;s:42:\"/app/web/app/plugins/cloudflare/vendor/psr\";i:23891;s:82:\"/app/web/app/plugins/cloudflare/vendor/symfony/polyfill-intl-idn/Resources/unidata\";i:269440;s:74:\"/app/web/app/plugins/cloudflare/vendor/symfony/polyfill-intl-idn/Resources\";i:269440;s:64:\"/app/web/app/plugins/cloudflare/vendor/symfony/polyfill-intl-idn\";i:312439;s:87:\"/app/web/app/plugins/cloudflare/vendor/symfony/polyfill-intl-normalizer/Resources/stubs\";i:404;s:89:\"/app/web/app/plugins/cloudflare/vendor/symfony/polyfill-intl-normalizer/Resources/unidata\";i:137233;s:81:\"/app/web/app/plugins/cloudflare/vendor/symfony/polyfill-intl-normalizer/Resources\";i:137637;s:71:\"/app/web/app/plugins/cloudflare/vendor/symfony/polyfill-intl-normalizer\";i:151159;s:61:\"/app/web/app/plugins/cloudflare/vendor/symfony/polyfill-php72\";i:11592;s:46:\"/app/web/app/plugins/cloudflare/vendor/symfony\";i:475190;s:38:\"/app/web/app/plugins/cloudflare/vendor\";i:592683;s:31:\"/app/web/app/plugins/cloudflare\";i:7944747;s:62:\"/app/web/app/plugins/wp-webhooks/core/includes/assets/dist/css\";i:834859;s:61:\"/app/web/app/plugins/wp-webhooks/core/includes/assets/dist/js\";i:1054537;s:58:\"/app/web/app/plugins/wp-webhooks/core/includes/assets/dist\";i:1889421;s:57:\"/app/web/app/plugins/wp-webhooks/core/includes/assets/img\";i:407551;s:53:\"/app/web/app/plugins/wp-webhooks/core/includes/assets\";i:2296997;s:54:\"/app/web/app/plugins/wp-webhooks/core/includes/classes\";i:303650;s:90:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/advanced-custom-fields/actions\";i:4708;s:93:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/advanced-custom-fields/assets/img\";i:6917;s:89:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/advanced-custom-fields/assets\";i:6917;s:90:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/advanced-custom-fields/helpers\";i:25;s:91:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/advanced-custom-fields/triggers\";i:25;s:82:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/advanced-custom-fields\";i:12521;s:79:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/affiliatewp/actions\";i:20597;s:82:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/affiliatewp/assets/img\";i:1268;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/affiliatewp/assets\";i:1268;s:80:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/affiliatewp/triggers\";i:36113;s:71:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/affiliatewp\";i:58780;s:74:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/amelia/actions\";i:25;s:77:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/amelia/assets/img\";i:4323;s:73:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/amelia/assets\";i:4323;s:74:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/amelia/helpers\";i:6029;s:75:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/amelia/triggers\";i:34078;s:66:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/amelia\";i:45229;s:87:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/broken-link-checker/actions\";i:25;s:90:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/broken-link-checker/assets/img\";i:4166;s:86:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/broken-link-checker/assets\";i:4166;s:87:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/broken-link-checker/helpers\";i:1361;s:88:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/broken-link-checker/triggers\";i:6001;s:79:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/broken-link-checker\";i:12393;s:80:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/contactform7/actions\";i:25;s:83:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/contactform7/assets/img\";i:16556;s:79:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/contactform7/assets\";i:16556;s:80:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/contactform7/helpers\";i:6567;s:81:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/contactform7/triggers\";i:15821;s:72:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/contactform7\";i:40493;s:71:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/edd/actions\";i:461128;s:74:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/edd/assets/img\";i:36554;s:70:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/edd/assets\";i:36554;s:71:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/edd/helpers\";i:13780;s:72:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/edd/triggers\";i:71423;s:63:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/edd\";i:584386;s:77:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/elementor/actions\";i:25;s:80:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/elementor/assets/img\";i:6098;s:76:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/elementor/assets\";i:6098;s:77:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/elementor/helpers\";i:1526;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/elementor/triggers\";i:4645;s:69:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/elementor\";i:13107;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/fluent-crm/actions\";i:41505;s:81:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/fluent-crm/assets/img\";i:605;s:77:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/fluent-crm/assets\";i:605;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/fluent-crm/helpers\";i:5253;s:79:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/fluent-crm/triggers\";i:45328;s:70:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/fluent-crm\";i:93478;s:80:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/fluent-forms/actions\";i:25;s:83:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/fluent-forms/assets/img\";i:1491;s:79:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/fluent-forms/assets\";i:1491;s:80:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/fluent-forms/helpers\";i:25;s:81:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/fluent-forms/triggers\";i:11144;s:72:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/fluent-forms\";i:13485;s:82:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/fluent-support/actions\";i:25;s:85:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/fluent-support/assets/img\";i:3643;s:81:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/fluent-support/assets\";i:3643;s:82:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/fluent-support/helpers\";i:798;s:83:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/fluent-support/triggers\";i:32914;s:74:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/fluent-support\";i:38202;s:84:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/formidable-forms/actions\";i:25;s:87:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/formidable-forms/assets/img\";i:2630;s:83:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/formidable-forms/assets\";i:2630;s:84:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/formidable-forms/helpers\";i:25;s:85:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/formidable-forms/triggers\";i:7960;s:76:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/formidable-forms\";i:11479;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/forminator/actions\";i:25;s:81:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/forminator/assets/img\";i:9363;s:77:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/forminator/assets\";i:9363;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/forminator/helpers\";i:25;s:79:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/forminator/triggers\";i:11377;s:70:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/forminator\";i:21585;s:74:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/givewp/actions\";i:9287;s:77:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/givewp/assets/img\";i:736;s:73:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/givewp/assets\";i:736;s:74:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/givewp/helpers\";i:832;s:75:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/givewp/triggers\";i:40463;s:66:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/givewp\";i:52087;s:80:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/gravityforms/actions\";i:25;s:83:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/gravityforms/assets/img\";i:577;s:79:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/gravityforms/assets\";i:577;s:81:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/gravityforms/triggers\";i:27863;s:72:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/gravityforms\";i:29269;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/happyforms/actions\";i:25;s:81:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/happyforms/assets/img\";i:4059;s:77:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/happyforms/assets\";i:4059;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/happyforms/helpers\";i:25;s:79:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/happyforms/triggers\";i:12666;s:70:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/happyforms\";i:17573;s:77:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/learndash/actions\";i:61004;s:80:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/learndash/assets/img\";i:3516;s:76:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/learndash/assets\";i:3516;s:77:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/learndash/helpers\";i:9223;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/learndash/triggers\";i:70045;s:69:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/learndash\";i:144580;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/newsletter/actions\";i:25;s:81:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/newsletter/assets/img\";i:8300;s:77:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/newsletter/assets\";i:8300;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/newsletter/helpers\";i:25;s:79:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/newsletter/triggers\";i:8656;s:70:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/newsletter\";i:17792;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/ninjaforms/actions\";i:25;s:81:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/ninjaforms/assets/img\";i:28158;s:77:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/ninjaforms/assets\";i:28158;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/ninjaforms/helpers\";i:25;s:79:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/ninjaforms/triggers\";i:6361;s:70:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/ninjaforms\";i:35367;s:88:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/paid-memberships-pro/actions\";i:18572;s:91:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/paid-memberships-pro/assets/img\";i:12709;s:87:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/paid-memberships-pro/assets\";i:12709;s:88:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/paid-memberships-pro/helpers\";i:582;s:89:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/paid-memberships-pro/triggers\";i:49742;s:80:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/paid-memberships-pro\";i:82450;s:83:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/profile-builder/actions\";i:25;s:86:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/profile-builder/assets/img\";i:4769;s:82:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/profile-builder/assets\";i:4769;s:83:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/profile-builder/helpers\";i:25;s:84:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/profile-builder/triggers\";i:25898;s:75:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/profile-builder\";i:31544;s:79:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce/actions\";i:16945;s:82:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce/assets/img\";i:2601;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce/assets\";i:2601;s:79:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce/helpers\";i:6233;s:142:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce/misc/rest-api/vendor/automattic/woocommerce/src/WooCommerce/HttpClient\";i:29321;s:131:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce/misc/rest-api/vendor/automattic/woocommerce/src/WooCommerce\";i:31665;s:119:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce/misc/rest-api/vendor/automattic/woocommerce/src\";i:31665;s:150:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce/misc/rest-api/vendor/automattic/woocommerce/tests/WooCommerce/Tests/HttpClient\";i:6247;s:139:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce/misc/rest-api/vendor/automattic/woocommerce/tests/WooCommerce/Tests\";i:6609;s:133:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce/misc/rest-api/vendor/automattic/woocommerce/tests/WooCommerce\";i:6609;s:121:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce/misc/rest-api/vendor/automattic/woocommerce/tests\";i:7245;s:115:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce/misc/rest-api/vendor/automattic/woocommerce\";i:49943;s:103:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce/misc/rest-api/vendor/automattic\";i:49943;s:101:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce/misc/rest-api/vendor/composer\";i:19237;s:92:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce/misc/rest-api/vendor\";i:69358;s:85:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce/misc/rest-api\";i:71617;s:76:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce/misc\";i:73798;s:80:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce/triggers\";i:120717;s:71:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/woocommerce\";i:221830;s:77:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wordpress/actions\";i:464367;s:80:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wordpress/assets/img\";i:1495;s:76:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wordpress/assets\";i:1495;s:77:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wordpress/helpers\";i:20548;s:74:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wordpress/misc\";i:1924;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wordpress/triggers\";i:212524;s:69:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wordpress\";i:705643;s:75:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wpforms/actions\";i:25;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wpforms/assets/img\";i:28073;s:74:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wpforms/assets\";i:28073;s:76:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wpforms/triggers\";i:5136;s:67:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wpforms\";i:34011;s:77:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wp-fusion/actions\";i:10702;s:80:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wp-fusion/assets/img\";i:1819;s:76:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wp-fusion/assets\";i:1819;s:77:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wp-fusion/helpers\";i:25;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wp-fusion/triggers\";i:7703;s:69:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wp-fusion\";i:21041;s:75:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wpreset/actions\";i:48659;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wpreset/assets/img\";i:3344;s:74:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wpreset/assets\";i:3344;s:75:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wpreset/helpers\";i:1220;s:76:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wpreset/triggers\";i:25;s:67:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wpreset\";i:54757;s:81:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wp-simple-pay/actions\";i:25;s:84:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wp-simple-pay/assets/img\";i:36372;s:80:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wp-simple-pay/assets\";i:36372;s:81:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wp-simple-pay/helpers\";i:25;s:82:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wp-simple-pay/triggers\";i:10396;s:73:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wp-simple-pay\";i:47632;s:79:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wp-webhooks/actions\";i:10250;s:82:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wp-webhooks/assets/img\";i:12491;s:78:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wp-webhooks/assets\";i:12491;s:79:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wp-webhooks/helpers\";i:17936;s:80:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wp-webhooks/triggers\";i:21354;s:71:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations/wp-webhooks\";i:62827;s:59:\"/app/web/app/plugins/wp-webhooks/core/includes/integrations\";i:2503566;s:68:\"/app/web/app/plugins/wp-webhooks/core/includes/partials/descriptions\";i:9892;s:60:\"/app/web/app/plugins/wp-webhooks/core/includes/partials/tabs\";i:217335;s:55:\"/app/web/app/plugins/wp-webhooks/core/includes/partials\";i:237114;s:46:\"/app/web/app/plugins/wp-webhooks/core/includes\";i:5341352;s:37:\"/app/web/app/plugins/wp-webhooks/core\";i:5351002;s:41:\"/app/web/app/plugins/wp-webhooks/language\";i:25;s:32:\"/app/web/app/plugins/wp-webhooks\";i:5469958;s:43:\"/app/web/app/plugins/ad-inserter/css/images\";i:48302;s:36:\"/app/web/app/plugins/ad-inserter/css\";i:150636;s:39:\"/app/web/app/plugins/ad-inserter/images\";i:602824;s:45:\"/app/web/app/plugins/ad-inserter/includes/ace\";i:1222572;s:47:\"/app/web/app/plugins/ad-inserter/includes/agent\";i:15772;s:57:\"/app/web/app/plugins/ad-inserter/includes/colorpicker/css\";i:75883;s:56:\"/app/web/app/plugins/ad-inserter/includes/colorpicker/js\";i:587926;s:53:\"/app/web/app/plugins/ad-inserter/includes/colorpicker\";i:663809;s:55:\"/app/web/app/plugins/ad-inserter/includes/dst/languages\";i:63619;s:45:\"/app/web/app/plugins/ad-inserter/includes/dst\";i:123256;s:68:\"/app/web/app/plugins/ad-inserter/includes/google-api/src/AccessToken\";i:10550;s:68:\"/app/web/app/plugins/ad-inserter/includes/google-api/src/AuthHandler\";i:8245;s:61:\"/app/web/app/plugins/ad-inserter/includes/google-api/src/Http\";i:22119;s:64:\"/app/web/app/plugins/ad-inserter/includes/google-api/src/Service\";i:12141;s:61:\"/app/web/app/plugins/ad-inserter/includes/google-api/src/Task\";i:12203;s:62:\"/app/web/app/plugins/ad-inserter/includes/google-api/src/Utils\";i:9458;s:56:\"/app/web/app/plugins/ad-inserter/includes/google-api/src\";i:128202;s:68:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/composer\";i:100093;s:80:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/firebase/php-jwt/src\";i:26129;s:76:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/firebase/php-jwt\";i:38951;s:68:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/firebase\";i:38951;s:106:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/google/apiclient-services/src/Adsense/Resource\";i:38454;s:97:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/google/apiclient-services/src/Adsense\";i:82749;s:89:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/google/apiclient-services/src\";i:104147;s:85:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/google/apiclient-services\";i:121782;s:81:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/google/auth/src/Cache\";i:14296;s:87:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/google/auth/src/Credentials\";i:48362;s:87:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/google/auth/src/HttpHandler\";i:9417;s:86:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/google/auth/src/Middleware\";i:12518;s:86:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/google/auth/src/Subscriber\";i:11944;s:75:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/google/auth/src\";i:195934;s:71:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/google/auth\";i:236607;s:66:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/google\";i:358389;s:88:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/guzzlehttp/guzzle/src/Cookie\";i:27613;s:91:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/guzzlehttp/guzzle/src/Exception\";i:8419;s:89:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/guzzlehttp/guzzle/src/Handler\";i:59205;s:81:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/guzzlehttp/guzzle/src\";i:197096;s:77:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/guzzlehttp/guzzle\";i:336137;s:83:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/guzzlehttp/promises/src\";i:57743;s:79:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/guzzlehttp/promises\";i:77822;s:93:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/guzzlehttp/psr7/.github/workflows\";i:2077;s:83:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/guzzlehttp/psr7/.github\";i:2705;s:79:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/guzzlehttp/psr7/src\";i:171673;s:75:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/guzzlehttp/psr7\";i:216712;s:70:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/guzzlehttp\";i:630671;s:97:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/monolog/monolog/src/Monolog/Formatter\";i:48696;s:100:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/monolog/monolog/src/Monolog/Handler/Curl\";i:1497;s:110:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed\";i:3340;s:101:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/monolog/monolog/src/Monolog/Handler/Slack\";i:8420;s:105:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp\";i:1401;s:95:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/monolog/monolog/src/Monolog/Handler\";i:230567;s:97:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/monolog/monolog/src/Monolog/Processor\";i:18751;s:87:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/monolog/monolog/src/Monolog\";i:344675;s:79:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/monolog/monolog/src\";i:344675;s:75:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/monolog/monolog\";i:376662;s:67:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/monolog\";i:376662;s:96:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/paragonie/constant_time_encoding/src\";i:53518;s:98:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/paragonie/constant_time_encoding/tests\";i:22413;s:92:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/paragonie/constant_time_encoding\";i:83029;s:88:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/paragonie/random_compat/dist\";i:703;s:101:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/paragonie/random_compat/.github/workflows\";i:2958;s:91:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/paragonie/random_compat/.github\";i:2958;s:87:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/paragonie/random_compat/lib\";i:43325;s:83:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/paragonie/random_compat\";i:48997;s:69:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/paragonie\";i:132026;s:87:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/.github\";i:569;s:106:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Common/Functions\";i:11836;s:96:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Common\";i:11836;s:115:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys\";i:53981;s:120:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Signature\";i:1414;s:110:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats\";i:55395;s:109:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Traits\";i:2979;s:102:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common\";i:201092;s:111:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH/Formats/Keys\";i:7079;s:106:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH/Formats\";i:7079;s:98:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH\";i:10889;s:112:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys\";i:24761;s:117:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Signature\";i:3969;s:107:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats\";i:28730;s:99:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA\";i:37037;s:109:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves\";i:58811;s:105:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves\";i:95511;s:111:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys\";i:78478;s:116:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Signature\";i:4471;s:106:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats\";i:82949;s:98:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC\";i:253254;s:112:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys\";i:42345;s:107:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats\";i:42345;s:99:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA\";i:74921;s:95:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Crypt\";i:976424;s:99:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Exception\";i:7810;s:104:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps\";i:113330;s:99:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/File/ASN1\";i:114291;s:94:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/File\";i:338963;s:131:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions\";i:9886;s:120:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath\";i:14896;s:117:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/GMP\";i:970;s:128:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions\";i:37082;s:117:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP\";i:45882;s:113:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines\";i:195221;s:105:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger\";i:195221;s:106:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField\";i:13810;s:113:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Math/Common/FiniteField\";i:476;s:101:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Math/Common\";i:930;s:105:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField\";i:9748;s:94:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Math\";i:248936;s:98:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP\";i:22133;s:93:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/Net\";i:294275;s:106:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent\";i:9072;s:114:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Common/Traits\";i:885;s:107:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Common\";i:885;s:100:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/System/SSH\";i:18412;s:96:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib/System\";i:18412;s:89:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib/phpseclib\";i:1897376;s:79:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib/phpseclib\";i:1905823;s:69:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/phpseclib\";i:1905823;s:73:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/psr/cache/src\";i:8603;s:69:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/psr/cache\";i:11219;s:80:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/psr/http-message/src\";i:46455;s:76:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/psr/http-message\";i:49594;s:80:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/psr/log/Psr/Log/Test\";i:9427;s:75:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/psr/log/Psr/Log\";i:20898;s:71:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/psr/log/Psr\";i:20898;s:67:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/psr/log\";i:23891;s:63:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/psr\";i:84704;s:87:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/ralouphie/getallheaders/src\";i:1640;s:83:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/ralouphie/getallheaders\";i:4273;s:69:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/ralouphie\";i:4273;s:103:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/symfony/polyfill-intl-idn/Resources/unidata\";i:268978;s:95:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/symfony/polyfill-intl-idn/Resources\";i:268978;s:85:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/symfony/polyfill-intl-idn\";i:307158;s:108:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/symfony/polyfill-intl-normalizer/Resources/stubs\";i:337;s:110:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/symfony/polyfill-intl-normalizer/Resources/unidata\";i:137233;s:102:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/symfony/polyfill-intl-normalizer/Resources\";i:137570;s:92:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/symfony/polyfill-intl-normalizer\";i:150244;s:98:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/symfony/polyfill-php70/Resources/stubs\";i:726;s:92:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/symfony/polyfill-php70/Resources\";i:726;s:82:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/symfony/polyfill-php70\";i:6857;s:82:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/symfony/polyfill-php72\";i:11495;s:67:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor/symfony\";i:475754;s:59:\"/app/web/app/plugins/ad-inserter/includes/google-api/vendor\";i:4107524;s:52:\"/app/web/app/plugins/ad-inserter/includes/google-api\";i:4278820;s:70:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/src/AccessToken\";i:10556;s:70:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/src/AuthHandler\";i:8245;s:63:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/src/Http\";i:22137;s:66:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/src/Service\";i:12174;s:63:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/src/Task\";i:12203;s:64:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/src/Utils\";i:9458;s:58:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/src\";i:128990;s:70:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/composer\";i:99087;s:82:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/firebase/php-jwt/src\";i:29864;s:78:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/firebase/php-jwt\";i:42900;s:70:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/firebase\";i:42900;s:108:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/google/apiclient-services/src/Adsense/Resource\";i:38454;s:99:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/google/apiclient-services/src/Adsense\";i:82749;s:91:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/google/apiclient-services/src\";i:104149;s:87:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/google/apiclient-services\";i:121315;s:83:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/google/auth/src/Cache\";i:14296;s:89:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/google/auth/src/Credentials\";i:48533;s:89:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/google/auth/src/HttpHandler\";i:9417;s:88:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/google/auth/src/Middleware\";i:17167;s:88:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/google/auth/src/Subscriber\";i:11944;s:77:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/google/auth/src\";i:204115;s:73:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/google/auth\";i:247431;s:68:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/google\";i:368746;s:90:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/guzzlehttp/guzzle/src/Cookie\";i:31642;s:93:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/guzzlehttp/guzzle/src/Exception\";i:7672;s:91:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/guzzlehttp/guzzle/src/Handler\";i:73079;s:83:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/guzzlehttp/guzzle/src\";i:224500;s:79:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/guzzlehttp/guzzle\";i:376397;s:85:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/guzzlehttp/promises/src\";i:57829;s:81:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/guzzlehttp/promises\";i:80048;s:91:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/guzzlehttp/psr7/src/Exception\";i:245;s:81:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/guzzlehttp/psr7/src\";i:214341;s:77:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/guzzlehttp/psr7\";i:259430;s:72:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/guzzlehttp\";i:715875;s:99:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/monolog/monolog/src/Monolog/Formatter\";i:57350;s:102:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/monolog/monolog/src/Monolog/Handler/Curl\";i:1895;s:112:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed\";i:4282;s:103:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/monolog/monolog/src/Monolog/Handler/Slack\";i:10575;s:107:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp\";i:1993;s:97:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/monolog/monolog/src/Monolog/Handler\";i:265769;s:99:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/monolog/monolog/src/Monolog/Processor\";i:21654;s:94:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/monolog/monolog/src/Monolog/Test\";i:2085;s:89:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/monolog/monolog/src/Monolog\";i:394952;s:81:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/monolog/monolog/src\";i:394952;s:77:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/monolog/monolog\";i:441069;s:69:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/monolog\";i:441069;s:98:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/paragonie/constant_time_encoding/src\";i:58109;s:100:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/paragonie/constant_time_encoding/tests\";i:24190;s:94:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/paragonie/constant_time_encoding\";i:90370;s:90:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/paragonie/random_compat/dist\";i:703;s:89:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/paragonie/random_compat/lib\";i:1327;s:91:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/paragonie/random_compat/other\";i:1633;s:85:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/paragonie/random_compat\";i:6592;s:71:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/paragonie\";i:96962;s:89:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/.github\";i:569;s:108:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Common/Functions\";i:13481;s:98:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Common\";i:13481;s:117:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys\";i:53987;s:122:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Signature\";i:1414;s:112:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats\";i:55401;s:111:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Traits\";i:2979;s:104:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common\";i:201442;s:113:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH/Formats/Keys\";i:7079;s:108:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH/Formats\";i:7079;s:100:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH\";i:10889;s:114:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys\";i:24761;s:119:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Signature\";i:3969;s:109:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats\";i:28730;s:101:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA\";i:37037;s:111:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves\";i:59203;s:107:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves\";i:96191;s:113:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys\";i:78249;s:118:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Signature\";i:4471;s:108:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats\";i:82720;s:100:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC\";i:253948;s:114:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys\";i:44862;s:109:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats\";i:44862;s:101:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA\";i:77438;s:97:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Crypt\";i:979963;s:101:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Exception\";i:7810;s:106:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps\";i:113330;s:101:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/File/ASN1\";i:114291;s:96:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/File\";i:339359;s:133:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions\";i:9761;s:122:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath\";i:14771;s:119:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/GMP\";i:970;s:130:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions\";i:36957;s:119:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP\";i:45757;s:115:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines\";i:194788;s:107:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger\";i:194788;s:108:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField\";i:13810;s:115:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Math/Common/FiniteField\";i:476;s:103:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Math/Common\";i:930;s:107:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField\";i:9966;s:96:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Math\";i:249086;s:100:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP\";i:22133;s:95:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/Net\";i:319471;s:108:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent\";i:9072;s:116:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Common/Traits\";i:885;s:109:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Common\";i:885;s:102:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/System/SSH\";i:18412;s:98:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib/System\";i:18412;s:91:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib/phpseclib\";i:1928426;s:81:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib/phpseclib\";i:1936963;s:71:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/phpseclib\";i:1936963;s:75:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/psr/cache/src\";i:8771;s:71:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/psr/cache\";i:11657;s:81:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/psr/http-client/src\";i:1915;s:77:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/psr/http-client\";i:4560;s:82:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/psr/http-factory/src\";i:4825;s:78:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/psr/http-factory\";i:7176;s:82:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/psr/http-message/src\";i:46455;s:78:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/psr/http-message\";i:49594;s:82:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/psr/log/Psr/Log/Test\";i:9427;s:77:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/psr/log/Psr/Log\";i:20898;s:73:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/psr/log/Psr\";i:20898;s:69:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/psr/log\";i:23891;s:65:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/psr\";i:96878;s:89:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/ralouphie/getallheaders/src\";i:1640;s:85:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/ralouphie/getallheaders\";i:4273;s:71:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/ralouphie\";i:4273;s:91:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/symfony/deprecation-contracts\";i:4309;s:69:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor/symfony\";i:4309;s:61:\"/app/web/app/plugins/ad-inserter/includes/google-api-8/vendor\";i:3807240;s:54:\"/app/web/app/plugins/ad-inserter/includes/google-api-8\";i:3979327;s:44:\"/app/web/app/plugins/ad-inserter/includes/js\";i:628445;s:54:\"/app/web/app/plugins/ad-inserter/includes/mobiledetect\";i:104275;s:41:\"/app/web/app/plugins/ad-inserter/includes\";i:11580395;s:35:\"/app/web/app/plugins/ad-inserter/js\";i:1029441;s:42:\"/app/web/app/plugins/ad-inserter/languages\";i:3044645;s:32:\"/app/web/app/plugins/ad-inserter\";i:18021038;s:20:\"/app/web/app/plugins\";i:45959206;s:35:\"s3://cdn.hvgblog.hu/uploads/2025/07\";i:0;s:32:\"s3://cdn.hvgblog.hu/uploads/2025\";i:0;s:27:\"s3://cdn.hvgblog.hu/uploads\";i:0;}','off'),
|
||
(255,'_transient_timeout_code_snippets_welcome_data','1754478522','off'),
|
||
(256,'_transient_code_snippets_welcome_data','a:5:{s:6:\"banner\";a:9:{s:3:\"key\";s:0:\"\";s:14:\"start_datetime\";O:17:\"DateTimeImmutable\":3:{s:4:\"date\";s:26:\"2025-06-12 00:00:00.000000\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}s:12:\"end_datetime\";O:17:\"DateTimeImmutable\":3:{s:4:\"date\";s:26:\"2025-06-14 00:00:00.000000\";s:13:\"timezone_type\";i:3;s:8:\"timezone\";s:3:\"UTC\";}s:9:\"text_free\";s:0:\"\";s:15:\"action_url_free\";s:0:\"\";s:17:\"action_label_free\";s:0:\"\";s:8:\"text_pro\";s:0:\"\";s:14:\"action_url_pro\";s:0:\"\";s:16:\"action_label_pro\";s:0:\"\";}s:9:\"hero-item\";a:3:{s:4:\"name\";s:26:\"Code Snippet AI is here…\";s:10:\"follow_url\";s:54:\"https://codesnippets.pro/blog/code-snippet-ai-is-here/\";s:9:\"image_url\";s:71:\"https://codesnippets.pro/wp-content/uploads/2024/05/cs_ai_demo_full.gif\";}s:8:\"features\";a:4:{i:0;a:5:{s:5:\"title\";s:28:\"Pssss... Get Secret Discount\";s:10:\"follow_url\";s:22:\"https://snipco.de/TFIG\";s:9:\"image_url\";s:81:\"https://codesnippets.pro/wp-content/uploads/2024/09/Promotions_Hero_All_Plans.png\";s:8:\"category\";s:5:\"offer\";s:11:\"description\";s:100:\"Get secret discount on all Code Snippets Pro plans. Just use coupon code \'General5\' at the checkout!\";}i:1;a:5:{s:5:\"title\";s:25:\"Add Unsplash to WordPress\";s:10:\"follow_url\";s:22:\"https://snipco.de/Mind\";s:9:\"image_url\";s:53:\"https://i3.ytimg.com/vi/kRSwWDanX0A/maxresdefault.jpg\";s:8:\"category\";s:3:\"tip\";s:11:\"description\";s:70:\"Code Snippet to Add Unsplash to WordPress - Find and Download Images..\";}i:2;a:5:{s:5:\"title\";s:30:\"Code Snippet Cloud Setup Guide\";s:10:\"follow_url\";s:22:\"https://snipco.de/Mine\";s:9:\"image_url\";s:149:\"https://cdn.getgist.com/attachment_images/76ca6cef08ca8e69ac1e7fbc15004bebbd08ad595ee67e0d7b55d1a9555354bfScreenshot%202023-11-23%20at%2000.50.02.png\";s:8:\"category\";s:5:\"guide\";s:11:\"description\";s:143:\"We have done our best to make the cloud set up as smooth and easy as possible. This guide below will walk you through the process step by step.\";}i:3;a:5:{s:5:\"title\";s:14:\"Cloud and AI +\";s:10:\"follow_url\";s:22:\"https://snipco.de/Minf\";s:9:\"image_url\";s:53:\"https://i3.ytimg.com/vi/rEOC2bIwY-w/maxresdefault.jpg\";s:8:\"category\";s:11:\"new feature\";s:11:\"description\";s:68:\"Code Snippets 3.6 Announcement - AI CodeSnippets - Generate AI Code!\";}}s:8:\"partners\";a:4:{i:0;a:3:{s:5:\"title\";s:9:\"Elementor\";s:10:\"follow_url\";s:22:\"https://snipco.de/KK3d\";s:9:\"image_url\";s:76:\"https://codesnippets.pro/wp-content/uploads/2024/05/Elementor-logo-green.png\";}i:1;a:3:{s:5:\"title\";s:7:\"InstaWP\";s:10:\"follow_url\";s:22:\"https://snipco.de/KK3n\";s:9:\"image_url\";s:68:\"https://codesnippets.pro/wp-content/uploads/2024/05/instawp-logo.png\";}i:2;a:3:{s:5:\"title\";s:8:\"Codeable\";s:10:\"follow_url\";s:22:\"https://snipco.de/KK3j\";s:9:\"image_url\";s:69:\"https://codesnippets.pro/wp-content/uploads/2024/05/codeable-logo.png\";}i:3;a:3:{s:5:\"title\";s:10:\"Crocoblock\";s:10:\"follow_url\";s:22:\"https://snipco.de/KK3l\";s:9:\"image_url\";s:71:\"https://codesnippets.pro/wp-content/uploads/2024/05/crocoblock-logo.png\";}}s:9:\"changelog\";a:4:{s:5:\"3.6.8\";a:4:{s:5:\"Added\";a:1:{s:4:\"core\";a:1:{i:0;s:87:\"`code_snippets/hide_welcome_banner` filter hook for hiding welcome banner in dashboard.\";}}s:7:\"Changed\";a:1:{s:3:\"pro\";a:1:{i:0;s:43:\"Updated Freemius SDK to the latest version.\";}}s:7:\"Removed\";a:1:{s:4:\"core\";a:1:{i:0;s:122:\"Functionality allowing `[code_snippet]` shortcodes to be embedded recursively – it will be re-added in a future version.\";}}s:5:\"Fixed\";a:2:{s:4:\"core\";a:4:{i:0;s:80:\"Shortcodes embedded within `[code_snippet]` shortcodes not evaluating correctly.\";i:1;s:92:\"Translation functions being called too early in some instances when loading plugin settings.\";i:2;s:71:\"Incorrect arrow entity used in cloud list table (props to [brandonjp]).\";i:3;s:69:\"Removed reference to missing plugins.css file in core plugin version.\";}s:3:\"pro\";a:1:{i:0;s:46:\"\'Generate\' button not appearing on some sites.\";}}}s:5:\"3.6.7\";a:3:{s:5:\"Added\";a:1:{s:4:\"core\";a:2:{i:0;s:90:\"Generated snippet shortcode tags will include the snippet name, for easier identification.\";i:1;s:130:\"Admin notices will dismiss automatically after five seconds. ([#208](https://github.com/codesnippetspro/code-snippets/issues/208))\";}}s:7:\"Changed\";a:1:{s:4:\"core\";a:3:{i:0;s:40:\"Updated CSS to use latest Sass features.\";i:1;s:161:\"Moved theme selector to just above editor preview on settings page (thanks to [brandonjp]). ([#206](https://github.com/codesnippetspro/code-snippets/issues/206))\";i:2;s:134:\"`[code_snippet]` shortcodes can now be nested within each other. ([#198](https://github.com/codesnippetspro/code-snippets/issues/198))\";}}s:5:\"Fixed\";a:2:{s:3:\"pro\";a:2:{i:0;s:144:\"Save buttons above editor did not follow usual validation process in Pro. ([#197](https://github.com/codesnippetspro/code-snippets/issues/197))\";i:1;s:111:\"Issue with Elementor source code widget. ([#205](https://github.com/codesnippetspro/code-snippets/issues/205))\";}s:4:\"core\";a:5:{i:0;s:69:\"Minor inconsistencies in consistent UI elements between Core and Pro.\";i:1;s:100:\"Tags input not allowing input. ([#211](https://github.com/codesnippetspro/code-snippets/issues/211))\";i:2;s:67:\"Snippet descriptions not visible when viewing cloud search results.\";i:3;s:76:\"Snippet import page not displaying number of successfully imported snippets.\";i:4;s:60:\"Use UTC time when deciding when to display campaign notices.\";}}}s:7:\"3.6.6.1\";a:1:{s:5:\"Fixed\";a:2:{s:4:\"core\";a:1:{i:0;s:79:\"Redeployment of [v3.6.6](#366-2024-11-27) to overcome issue with initial build.\";}s:3:\"pro\";a:1:{i:0;s:36:\"Type issue when caching cloud links.\";}}}s:5:\"3.6.6\";a:2:{s:7:\"Changed\";a:1:{s:4:\"core\";a:4:{i:0;s:51:\"Improved compatability with modern versions of PHP.\";i:1;s:46:\"Extended welcome API to include admin notices.\";i:2;s:111:\"Action hook `code_snippets/update_snippet` now only includes the snippet ID instead of the full snippet object.\";i:3;s:80:\"Action hook `code_snippets/admin/manage` now includes the currently viewed type.\";}}s:5:\"Fixed\";a:1:{s:4:\"core\";a:5:{i:0;s:86:\"Memory issue from checking aggregate posts while loading front-end syntax highlighter.\";i:1;s:98:\"Translation functions being called too early on upgrade, resulting in localisation loading errors.\";i:2;s:89:\"Bug preventing the \'share on network\' status of network snippets from correctly updating.\";i:3;s:98:\"Incorrect logic controlling when to display \'Save Changes\' or \'Save Changes and Activate\' buttons.\";i:4;s:76:\"Old notices persisting when switching between editing and creating snippets.\";}}}}}','off'),
|
||
(257,'_site_transient_timeout_fs_garbage_collection','1754392122','off'),
|
||
(258,'_site_transient_fs_garbage_collection','1','off'),
|
||
(263,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1754411051','off'),
|
||
(264,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1754367851','off'),
|
||
(267,'_transient_timeout_feed_mod_3a831dbc2ddfa3bb019138fca69a5bf6','1754411052','off'),
|
||
(268,'_transient_feed_mod_3a831dbc2ddfa3bb019138fca69a5bf6','1754367852','off'),
|
||
(290,'_site_transient_timeout_community-events-f119fd185e2033d6979a549e98b5e616','1754411051','off'),
|
||
(291,'_site_transient_community-events-f119fd185e2033d6979a549e98b5e616','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"172.22.0.0\";}s:6:\"events\";a:2:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:20:\"WordCamp Vršac 2025\";s:3:\"url\";s:32:\"https://vrsac.wordcamp.org/2025/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2025-09-13 00:00:00\";s:8:\"end_date\";s:19:\"2025-09-14 00:00:00\";s:20:\"start_unix_timestamp\";i:1757714400;s:18:\"end_unix_timestamp\";i:1757800800;s:8:\"location\";a:4:{s:8:\"location\";s:14:\"Vršac, Serbia\";s:7:\"country\";s:2:\"RS\";s:8:\"latitude\";d:45.1026152;s:9:\"longitude\";d:21.2754535;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:20:\"WordCamp Europe 2026\";s:3:\"url\";s:33:\"https://europe.wordcamp.org/2026/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2026-06-04 00:00:00\";s:8:\"end_date\";s:19:\"2026-06-06 00:00:00\";s:20:\"start_unix_timestamp\";i:1780524000;s:18:\"end_unix_timestamp\";i:1780696800;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Europe\";s:7:\"country\";s:2:\"PL\";s:8:\"latitude\";d:50.0477778;s:9:\"longitude\";d:19.9313889;}}}}','off'),
|
||
(292,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1754411051','off'),
|
||
(293,'_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:\"Tue, 15 Jul 2025 16:23: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:\"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-60537\";s:7:\"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: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:1;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:6182:\"\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\" fetchpriority=\"high\" 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=\"(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\" 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=\"(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\" 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=\"(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: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: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:4768:\"\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://wordpressdotorg.survey.fm/wordpress-credits-educational-institution-interest-form\">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://wordpressdotorg.survey.fm/wordpress-credits-%E2%80%93-company-interest-form\">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: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: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: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: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: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: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-1 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{"imageId":"6891841b721c0"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b721c0\" 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":"6891841b72506"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b72506\" 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":"6891841b727ec"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b727ec\" 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":"6891841b72ac4"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b72ac4\" 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":"6891841b72d89"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b72d89\" 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":"6891841b73053"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b73053\" 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":"6891841b73323"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b73323\" 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":"6891841b735db"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b735db\" 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":"6891841b738b4"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b738b4\" 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":"6891841b73b9d"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b73b9d\" 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":"6891841b73e61"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b73e61\" 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":"6891841b7414d"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b7414d\" 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":"6891841b74482"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b74482\" 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-2 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width:20px\">\n<figure data-wp-context=\"{"imageId":"6891841b74c64"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b74c64\" 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":"6891841b74f6a"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b74f6a\" 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":"6891841b75248"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b75248\" 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":"6891841b75511"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b75511\" 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":"6891841b757de"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b757de\" 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":"6891841b75a93"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b75a93\" 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":"6891841b75d4e"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b75d4e\" 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":"6891841b76019"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b76019\" 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":"6891841b762d5"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b762d5\" 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":"6891841b7658c"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b7658c\" 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:6;a:6:{s:4:\"data\";s:57:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"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:\"\";}}}}}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:32:\"WordPress Campus Connect Expands\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2025/05/wordpress-campus-connect-expands/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 07 May 2025 12:40:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s: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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18726\";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:391:\"WordPress Campus Connect, initially launched in October 2024 as a pilot program, has now been formally established as an official event series due to its resounding success. The inaugural program, spearheaded by myself, Anand Upadhyay, garnered immense enthusiasm from 400 Indian students who were eager to engage in hands-on WordPress training. WordPress Campus Connect transcends […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Anand Upadhyay\";s: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:28141:\"\n<p>WordPress Campus Connect, <a href=\"https://central.wordcamp.org/news/2024/12/wp-campus-connect-recap-a-journey-of-empowering-students-and-building-community/\">initially launched in October 2024 as a pilot program</a>, has now been formally established as an official event series due to its resounding success. The inaugural program, spearheaded by myself, <a href=\"https://profiles.wordpress.org/anandau14/\">Anand Upadhyay</a>, garnered immense enthusiasm from 400 Indian students who were eager to engage in hands-on WordPress training.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped has-border-color has-darker-grey-background-color has-background wp-block-gallery-3 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-color:#1c2024;border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{"imageId":"6891841b7fc51"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b7fc51\" 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=\"18733\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A6596.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18733\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A6596-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A6596-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A6596-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A6596-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A6596-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":"6891841b7ffed"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b7ffed\" 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=\"18735\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A8902.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18735\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A8902-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A8902-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A8902-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A8902-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A8902-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":"6891841b802cc"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b802cc\" 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=\"18732\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A6763.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18732\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A6763-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A6763-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A6763-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A6763-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A6763-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":"6891841b8057e"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b8057e\" 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=\"18728\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/05/image-3.jpeg?resize=1024%2C682&ssl=1\" alt=\"\" class=\"wp-image-18728\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/05/image-3.jpeg?resize=1024%2C682&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/05/image-3.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/05/image-3.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/05/image-3.jpeg?resize=1536%2C1023&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/05/image-3.jpeg?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></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6891841b8082d"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b8082d\" 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=\"18729\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/05/image.jpeg?resize=1024%2C682&ssl=1\" alt=\"\" class=\"wp-image-18729\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/05/image.jpeg?resize=1024%2C682&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/05/image.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/05/image.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/05/image.jpeg?resize=1536%2C1023&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/05/image.jpeg?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></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6891841b80ae0"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b80ae0\" 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=\"18730\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/05/image-1.jpeg?resize=1024%2C682&ssl=1\" alt=\"\" class=\"wp-image-18730\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/05/image-1.jpeg?resize=1024%2C682&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/05/image-1.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/05/image-1.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/05/image-1.jpeg?resize=1536%2C1023&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/05/image-1.jpeg?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></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6891841b80dcd"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b80dcd\" 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=\"18737\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A8923.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18737\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A8923-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A8923-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A8923-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A8923-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A8923-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":"6891841b8107e"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b8107e\" 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=\"18731\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/05/image-2.jpeg?resize=1024%2C682&ssl=1\" alt=\"\" class=\"wp-image-18731\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/05/image-2.jpeg?resize=1024%2C682&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/05/image-2.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/05/image-2.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/05/image-2.jpeg?resize=1536%2C1023&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/05/image-2.jpeg?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></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6891841b8134c"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b8134c\" 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=\"18739\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A8821.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18739\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A8821-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A8821-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A8821-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A8821-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A8821-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":"6891841b81600"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b81600\" 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=\"18734\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A6765.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18734\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A6765-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A6765-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A6765-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A6765-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A6765-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":"6891841b818c9"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b818c9\" 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=\"18741\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A9926.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18741\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A9926-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A9926-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A9926-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A9926-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A9926-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":"6891841b81b7b"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6891841b81b7b\" 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=\"18740\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A9269.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18740\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A9269-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A9269-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A9269-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A9269-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/05/1H4A9269-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>WordPress Campus Connect transcends the conventional workshop model by fostering a holistic learning community. It couples on-campus event learning with a diverse range of post-event activities, including meetups, website challenges, scholarships, and volunteering opportunities, all geared towards nurturing student development. The program’s efficacy has prompted other organizations in India to express interest in replicating its structure.</p>\n\n\n\n<p>Looking ahead, multiple local WordPress communities in India aim to reach more students in India through WordPress Campus Connect events. The curriculum will include beginner content, delve into more advanced WordPress concepts, and feature specialized sessions tailored for students with prior WordPress experience. </p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-container-core-group-is-layout-8a400663 wp-block-group-is-layout-constrained\">\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"351\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/05/wpcc-logo-transparent.png?resize=1024%2C351&ssl=1\" alt=\"\" class=\"wp-image-18743\" style=\"object-fit:cover\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/05/wpcc-logo-transparent-scaled.png?resize=1024%2C351&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/05/wpcc-logo-transparent-scaled.png?resize=300%2C103&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/05/wpcc-logo-transparent-scaled.png?resize=768%2C263&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/05/wpcc-logo-transparent-scaled.png?resize=1536%2C527&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/05/wpcc-logo-transparent-scaled.png?resize=2048%2C702&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n</div>\n\n\n\n<p>The official recognition of WordPress Campus Connect as an event series paves the way for further expansion, giving the series similar support and standing as WordCamps but with a student education-first goal and focus. Future plans include organizing large-scale student events, establishing WordPress clubs on college campuses, and facilitating mentorship connections for students.</p>\n\n\n\n<p>To support these ambitious goals, volunteers identified several key next steps:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Volunteer Handbook Development:</strong> Creating a comprehensive guidebook to equip volunteers with the necessary resources and information.</li>\n\n\n\n<li><strong>GatherPress Integration:</strong> Exploring the feasibility of integrating GatherPress as a tool for student groups.</li>\n\n\n\n<li><strong>Volunteer Recruitment:</strong> Actively seeking and onboarding volunteers to support WordPress Campus Connect initiatives through activities such as:\n<ol class=\"wp-block-list\">\n<li>Creating a workflow and guidelines for processing Student Club applications</li>\n\n\n\n<li>On-site facilitation or assistance for WordPress Campus Connect events</li>\n</ol>\n</li>\n\n\n\n<li><strong>Landing Page Creation</strong>: Creating a landing page describing what WordPress Campus Connect is all about</li>\n\n\n\n<li><strong>Student Groups: </strong>Drafting a framework for students to create their own groups for hosting WordPress events and activities. </li>\n</ul>\n\n\n\n<p>The overwhelming success of WordPress Campus Connect and the enthusiasm it has generated serve as a testament to the transformative power of passion and dedication. As WordPress Campus Connect continues to evolve and expand, it holds the promise of shaping the future of WordPress education and community engagement.</p>\n\n\n\n<p class=\"has-off-white-background-color has-background\">If you’re interested in helping shape the future of education with WordPress, <a href=\"https://wordpress.slack.com/archives/C08QK4V94AF\">join us in the #campusconnect Make Slack channel</a> today!</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:\"18726\";s: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: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:35:\"WordPress 6.8.1 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/04/wordpress-6-8-1-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:\"Wed, 30 Apr 2025 17:17:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18721\";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:371:\"WordPress 6.8.1 is now available! This minor release includes fixes for 15 bugs throughout Core and the Block Editor addressing issues affecting multiple areas of WordPress including the block editor, multisite, and REST API. For a full list of bug fixes, please refer to the release candidate announcement. WordPress 6.8.1 is a short-cycle 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Aaron Jorbin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6967:\"\n<h2 class=\"wp-block-heading\">WordPress 6.8.1 is now available!</h2>\n\n\n\n<p>This minor release includes fixes for 15 bugs <a href=\"https://core.trac.wordpress.org/query?resolution=fixed&milestone=6.8.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">throughout Core</a> and <a href=\"https://github.com/WordPress/wordpress-develop/pull/8752\">the Block Editor</a> addressing issues affecting multiple areas of WordPress including the block editor, multisite, and REST API. For a full list of bug fixes, please refer to the <a href=\"https://make.wordpress.org/core/2025/04/28/wordpress-6-8-1-rc1-is-now-available/\">release candidate announcement.</a></p>\n\n\n\n<p>WordPress 6.8.1 is a short-cycle maintenance release. More maintenance releases will 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.1.zip\">download WordPress 6.8.1 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-1\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>.</p>\n\n\n\n<p>WordPress 6.8.1 would not have been possible without the contributions of the following 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\"><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/wildworks\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/ankitmaru\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter\">bernhard-reiter</a>, <a href=\"https://profiles.wordpress.org/poena\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/codeamp\">Code Amp</a>, <a href=\"https://profiles.wordpress.org/talldanwp\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/justlevine\">David Levine</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/dsawyers\">dsawyers</a>, <a href=\"https://profiles.wordpress.org/eduwass\">eduwass</a>, <a href=\"https://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy\">Fabian Kägy</a>, <a href=\"https://profiles.wordpress.org/mamaduka\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/gziolo\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/kabir93\">H. Kabir</a>, <a href=\"https://profiles.wordpress.org/hideishi\">hideishi</a>, <a href=\"https://profiles.wordpress.org/abcd95\">Himanshu Pathak</a>, <a href=\"https://profiles.wordpress.org/jarekmorawski\">jarekmorawski</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/jeffr0\">Jeffro</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</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/joen\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/verygoode\">Joshua Goode</a>, <a href=\"https://profiles.wordpress.org/karthikeya01\">Karthikeya Bethu</a>, <a href=\"https://profiles.wordpress.org/iamkingsleyf\">Kingsley Felix</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/0mirka00\">Lena Morita</a>, <a href=\"https://profiles.wordpress.org/lilgames\">LilGames</a>, <a href=\"https://profiles.wordpress.org/megane9988\">megane9988</a>, <a href=\"https://profiles.wordpress.org/marktimemedia\">Michelle Schulp Hunt</a>, <a href=\"https://profiles.wordpress.org/presstoke\">Mitchell Austin</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nickwilmot\">nickwilmot</a>, <a href=\"https://profiles.wordpress.org/nikunj8866\">Nikunj Hatkar</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbiron\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pratiklondhe\">Pratik Londhe</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/sainathpoojary\">Sainath Poojary</a>, <a href=\"https://profiles.wordpress.org/sc0ttkclark\">Scott Kingsley Clark</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/SirLouen\">SirLouen</a>, <a href=\"https://profiles.wordpress.org/soean\">Sören Wünsch</a>, <a href=\"https://profiles.wordpress.org/sourav08\">Sourav Pahwa</a>, <a href=\"https://profiles.wordpress.org/sabernhardt\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/takuword\">takuword</a>, <a href=\"https://profiles.wordpress.org/tusharaddweb\">Tushar Patel</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/yogeshbhutkar\">Yogesh Bhutkar</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/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><em>Props to <a href=\'https://profiles.wordpress.org/estelaris/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>estelaris</a> and <a href=\'https://profiles.wordpress.org/joedolson/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joedolson</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:\"18721\";s: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:17:\"WordPress Jubilee\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://wordpress.org/news/2025/04/jubilee/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Apr 2025 02:07: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: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=18716\";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:289:\"As I said, we’re dropping all the human blocks. Community guidelines, directory guidelines, and such will need to be followed going forward, but whatever blocks were in place before are now cleared. It may take a few days, but any pre-existing blocks are considered bugs to be fixed.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:298:\"\n<p>As I said, we’re dropping all the human blocks. Community guidelines, directory guidelines, and such will need to be followed going forward, but whatever blocks were in place before are now cleared. It may take a few days, but any pre-existing blocks are considered bugs to be fixed.</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:\"18716\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 05 Aug 2025 04:24:11 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:37:\"Accept-Encoding, accept, content-type\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 15 Jul 2025 16:23:52 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";i:1727736620;s:21:\"cache_expiration_time\";i:1754411051;s:23:\"__cache_expiration_time\";i:1754411051;}','off'),
|
||
(294,'_transient_timeout_feed_3a831dbc2ddfa3bb019138fca69a5bf6','1754411052','off'),
|
||
(295,'_transient_feed_3a831dbc2ddfa3bb019138fca69a5bf6','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:20:\"WordPress.org Magyar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://hu.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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 22 Feb 2025 13:57:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"hu\";s: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-60537\";s:7:\"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:20:\"WordPress.org Magyar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://hu.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: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:73:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Jön az eddigi legnagyobb magyar WordPress Meetup!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://hu.wordpress.org/2024/10/11/jon-az-eddigi-legnagyobb-magyar-wordpress-meetup/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://hu.wordpress.org/2024/10/11/jon-az-eddigi-legnagyobb-magyar-wordpress-meetup/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 11 Oct 2024 11:56: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:1:{i:0;a:5:{s:4:\"data\";s:10:\"Események\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://hu.wordpress.org/?p=574\";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:216:\"Október 19. dátummal, hétvégi szombati napon 14 órai kezdettel folytatjuk a WordPress Budapest MeetUp előadás sorozatunk, most lőször Óbudán. Érdekes témákkal, tapasztalt előadókkal várunk mindenkit!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"DjZoNe\";s: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:2732:\"<p>Október 19. dátummal, hétvégi szombati napon 14 órai kezdettel folytatjuk a WordPress Budapest MeetUp előadás sorozatunk, most lőször Óbudán. Érdekes témákkal, tapasztalt előadókkal várunk mindenkit!</p>\n<p>Az előadások és előadók:<br />\n—————————-<br />\n14:00 – Kapunyitás<br />\n14:30-14:45 WordPress Hírek röviden<br />\n14:45-15:30 Molnár Péter: WordPress sebesség alapozó<br />\n15:40-16:10 Tamás Bence: Konverzióoptimalizálás – Tippek és kritikus elemek<br />\n16:10-16:40 Száraz Krisztián: 24 hatékony WordPress AI/ML plugin 2024-ben<br />\n17:00-17:30 Piller Balázs: WP fejlesztés AI segítséggel<br />\n17:30-18:00 Rottenbacher Tamás: Ingyenes, még is hatékony WP védelmek<br />\n18:00-18:20 Több szemmel: Ahol az előadók közösen válaszolnak kérdésekre.<br />\n18:20-19:00 Networking, kötetlen beszélgetés</p>\n<p>ÚJDONSÁG! A rendezvényen elsőként lesz „Több szemmel”, ami lényegében véve egy kerekasztal beszélgetéshez hasonló formátum lesz. Lehetőség van (akár az előadások közben is) a <a href=\"https://wpmeet.hu/kerdezz\" target=\"_blank\">wpmeet.hu/kerdezz</a> címen kérdéseket beküldeni. Ezekre, illetve a helyszínen felmerülőkérdésekre fognak az előadók együtt válaszolni. Természetesen privát jellegű kérdezés is lehetséges az esemény végén, azonban a nyílvános kérdéseket jobban preferáljuk, mivel többen tanulhatnak a válaszokból. <img src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n<p><a href=\"https://wpmeetup.hu/esemeny/2024-oszi-wpmeetup/\" target=\"_blank\">Meetup esemény</a><br />\n<a href=\"https://www.facebook.com/events/1337437010962412/\" target=\"_blank\">Facebook-os esemény</a></p>\n<p>A helyszín az Óbudai Egyetem főépületében található F08-as terem, ahol 80 főt tudunk fogadni, érkezési sorrendben. Foglalás, regisztráció nincs.</p>\n<p>Hogyan tudsz eljutni a helyszínre?<br />\n– Tömegközlekedéssel: A budai fonódó villamoshálózattal (17-es, 19-es, 41-es villamosokkal, melyekhez az 1-es és 4-6-os villamosokról, 2-es metrótól könnyű átszálási lehetőség van. A Katinyi mártírok parkja megállótól pedig 1 perc sétára található az épület.<br />\n– Autóval: A 1034 Budapest, Bécsi út 96/B-t kell megcélozni. A környező utcákban lehet parkolni ingyenesen.</p>\n<p>Részvétel feltétele: Óbudai egyetem házirendjének és a wpmeetup.hu szabályzat betartása, illetve hozzájárulás a helyszínen történő videó és hangfelvétel készítéshez, fotók megjelenítéséhez.</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://hu.wordpress.org/2024/10/11/jon-az-eddigi-legnagyobb-magyar-wordpress-meetup/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"574\";s: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: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:45:\"Új magyar WordPress Támogatás oldal indult\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://hu.wordpress.org/2018/11/09/uj-magyar-wordpress-tamogatas-oldal-indult/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 09 Nov 2018 15:23:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"WPHU.org hírei\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://hu.wordpress.org/?p=339\";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:541:\"12 év után megszüntetjük a WPHU.ORG Fórumát a jelenlegi formájában és egy új, sokkal egyszerűbben kezelhető támogatás oldalt csinálunk belőle. Az új oldal itt érhető el: https://tamogatas.wphu.org/ Kategóriák, amibe kérdéseket lehet küldeni: Bővítmény és kiegészítésekKiegészítőre lenne szükséged az oldaladhoz? Vagy problémáid akadtak a meglévőkkel? Tárhely és szerverszolgáltatásMegbízható tárhelyszolgáltatót keresel, ahol az oldalad tökéletesen üzemelhet? Biztonság és […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Laszlo Patai\";s: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:1904:\"\n<p><strong>12 év után megszüntetjük a WPHU.ORG Fórumát a jelenlegi formájában és egy új, sokkal egyszerűbben kezelhető támogatás oldalt csinálunk belőle. Az új oldal itt érhető el: <a href=\"https://tamogatas.wphu.org/\">https://tamogatas.wphu.org/</a></strong></p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Kategóriák, amibe kérdéseket lehet küldeni:</strong></h3>\n\n\n\n<p><a href=\"https://tamogatas.wphu.org/c/bovitmeny-es-kiegeszitesek\"><strong>Bővítmény és kiegészítések</strong></a><br>Kiegészítőre lenne szükséged az oldaladhoz? Vagy problémáid akadtak a meglévőkkel?</p>\n\n\n\n<p><a href=\"https://tamogatas.wphu.org/c/tarhely-es-szerverszolgaltatas\"><strong>Tárhely és szerverszolgáltatás</strong></a><br>Megbízható tárhelyszolgáltatót keresel, ahol az oldalad tökéletesen üzemelhet?</p>\n\n\n\n<p><a href=\"https://tamogatas.wphu.org/c/biztonsag-es-adatvedelem\"><strong>Biztonság és adatvédelem</strong></a><br>Növelni szeretnéd az oldalad biztonságát? Esetleg feltöréssel, vírusokkal kapcsolatban vannak kérdéseid?</p>\n\n\n\n<p><a href=\"https://tamogatas.wphu.org/c/megjelenes-sablon-es-grafika\"><strong>Megjelenés, sablon és grafika</strong></a><br>Csak kreatívan! Dizájnnal kapcsolatban ide írhatsz.</p>\n\n\n\n<p><a href=\"https://tamogatas.wphu.org/c/woocommerce-es-e-kereskedelem\"><strong>WooCommerce és e-kereskedelem</strong></a><br>Webshop, internetes kereskedelem. Keressünk egy kis pénzt a WordPress segítségével.</p>\n\n\n\n<p><a href=\"https://tamogatas.wphu.org/c/visszajelzes\"><strong>Visszajelzés</strong></a><br>Társalgás az oldalról, a szervezetünkről, hogy hogyan működik, illetve hogyan lehetne fejleszteni.</p>\n\n\n\n<p>Az összes korábbi tartalmat archiváltuk, ami itt érhető el: <a href=\"https://tamogatas.wphu.org/c/archivum-2006-2018-11-09\">https://tamogatas.wphu.org/c/archivum-2006-2018-11-09</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:3:\"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:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:73:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"Csak a WooCommerce! – Folytatódik a Budapest WordPress Meetup\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://hu.wordpress.org/2018/10/17/csak-a-woocommerce-folytatodik-a-budapest-wordpress-meetup/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://hu.wordpress.org/2018/10/17/csak-a-woocommerce-folytatodik-a-budapest-wordpress-meetup/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Oct 2018 14:31:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Események\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://hu.wordpress.org/?p=329\";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:442:\"A nyári szünet után visszatér a Budapest WordPress Meetup, méghozzá nem is akármivel, hanem forró témákkal, amelyek az este folyamán mind a WooCommerce-et fogják érinteni! Eredetileg úgy terveztem, hogy különböző témákat fogunk kerülgetni, de többen is azt jelezték, hogy sales, marketing és analitika témákról beszélnének szívesen. Ezért aktuális híreken kívül ezekről esik majd szó. Részletes […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"DjZoNe\";s: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:1762:\"\n<p>A nyári szünet után visszatér a <a href=\"https://www.facebook.com/groups/wordpressbudapest/\" target=\"_blank\" rel=\"noopener noreferrer\">Budapest WordPress Meetup</a>, méghozzá nem is akármivel, hanem forró témákkal, amelyek az este folyamán mind a WooCommerce-et fogják érinteni!</p>\n\n\n\n<p>Eredetileg úgy terveztem, hogy \nkülönböző témákat fogunk kerülgetni, de többen is azt jelezték, hogy \nsales, marketing és analitika témákról beszélnének szívesen. Ezért \naktuális híreken kívül ezekről esik majd szó.</p>\n\n\n\n<p><strong>Részletes program</strong></p>\n\n\n\n<ul class=\"wp-block-list\"><li>Balog Péter WooCommerce és a Google Analytics összekapcsolásáról, valamit a forgalmi és értékesítési adatok elemzéséről fog beszélni</li><li>Buza Tamás elmeséli, hogy milyen módszerekkel lehet automatizálni a rendelési részt és a visszajelzéseket</li><li>Lakatos Zsolt végig rohan a WooCommerce frissen megjelenő 3.5-ös verziójának újdonságain, és az ezekben rejlő lehetőségeken</li><li>Nagy Gábor az egytermékes sales oldalakkal kapcsolatos tippekről és trükkökről fog beszélni</li><li>Németh Dániel megosztja velünk, hogy milyen marketing eszközökkel lehet megtámogatni a vásárlási folyamatot</li></ul>\n\n\n\n<p>Helyszín információk és részletek a <a href=\"https://www.meetup.com/Budapest-WordPress-Meetup/events/255577679/\" target=\"_blank\" rel=\"noopener noreferrer\">meetup.com-os eseményünk</a>re kattintva, vagy a <a href=\"https://www.facebook.com/events/176337119918500/\" target=\"_blank\" rel=\"noopener noreferrer\">Facebookos esemény</a>en keresztül érhetőek el.<br><br>Érkezni a helyszínre este 6 órától lehet, az előadások 7 órától fognak kezdődni.<br></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://hu.wordpress.org/2018/10/17/csak-a-woocommerce-folytatodik-a-budapest-wordpress-meetup/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"329\";s: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:73:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Elstartolt a 4.4 fordítása\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://hu.wordpress.org/2015/10/30/elstartolt-a-4-4-forditasa/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://hu.wordpress.org/2015/10/30/elstartolt-a-4-4-forditasa/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 30 Oct 2015 12:59:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Fordítás\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://hu.wordpress.org/?p=105\";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:421:\"Kedves mindenki, nagy örömmel szeretnénk értesíteni titeket, hogy a mai naptól elkezdődött közel 60 nyelven kedvenc tartalomkezelő rendszerünk legújabb verziójának, a WordPress 4.4-nek a fordítása. Mivel a következő verziót decemberre ígérik a fejlesztők, így még sok minden változhat a kódban és a fordításokban is. Reméljük idén is inkább a Mikulás teszi a csizmánkba az új […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"DjZoNe\";s: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:820:\"<p>Kedves mindenki,<br />\nnagy örömmel szeretnénk értesíteni titeket, hogy a mai naptól elkezdődött közel 60 nyelven kedvenc tartalomkezelő rendszerünk legújabb verziójának, a WordPress 4.4-nek a fordítása. </p>\n<p>Mivel a következő verziót decemberre ígérik a fejlesztők, így még sok minden változhat a kódban és a fordításokban is. Reméljük idén is inkább a Mikulás teszi a csizmánkba az új kiadást, mint, hogy a karácsony fa alatt találkozzunk vele.</p>\n<p>Aki esetleg úgy érzi, hogy segíteni szeretne a fordításban az <a href=\"https://translate.wordpress.org/projects/wp/dev/hu/default\" target=\"_blank\">itt megteheti</a>.</p>\n<p>Ha pedig megjött a kedved a fordításokhoz, <a href=\"http://wphu.org/segitseg\" target=\"_blank\">itt nem vész kárba a lelkesedésed</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://hu.wordpress.org/2015/10/30/elstartolt-a-4-4-forditasa/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"105\";s: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:73:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"WordPress 4.3 – Billie\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://hu.wordpress.org/2015/08/19/wordpress-4-3-billie/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://hu.wordpress.org/2015/08/19/wordpress-4-3-billie/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 19 Aug 2015 11:32:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Nincs kategorizálva\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://hu.wordpress.org/?p=98\";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:398:\"Elég régen nem fordult elő olyan, hogy a hivatalos verzió kiadása után egy órával még nem jött ki a magyar csomag, idén a kiadás ütközött némi nehézségbe ütközött. Mindenek előtt a hatalmas érdeklődés miatt tegnap este 8 órától elérhetetlen volt a teljes WordPress.org, így a csomagépítő felületre sem lehetett belépni, amikor ez végre sikerült hajnal […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"DjZoNe\";s: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:1606:\"<p>Elég régen nem fordult elő olyan, hogy a hivatalos verzió kiadása után egy órával még nem jött ki a magyar csomag, idén a kiadás ütközött némi nehézségbe ütközött.</p>\n<p>Mindenek előtt a hatalmas érdeklődés miatt tegnap este 8 órától elérhetetlen volt a teljes WordPress.org, így a csomagépítő felületre sem lehetett belépni, amikor ez végre sikerült hajnal 3-kor, akkor jöttem rá, hogy bizony az SVN repositoryba nem lettek feltöltve a szükséges fájlok még a kiadáshoz, ezért ezt reggelre napoltam. Reggel további nehézségek jöttek, megláttam, hogy az olvasdel.html ami minden magyar csomagnak a része már elég régen nem készült el magyarul, és ezt még hozzá kell igazítani a mostani readme.html-hez. Valamint a kiadáshoz tartozó videó fordítását is reggel véglegesítettem, de még mindig nem tudtam feltölteni, mivel a wordpress.tv oldalán jelenleg nincs magyar nyelv a listán, így erre még várni kell.</p>\n<p>Továbbá kikerült a korábbi hu_HU.php -ból a magyar video embed támogatás, a legutóbbi verziókor <strong>nacin</strong> kérte, hogy ne tegyünk bele semmit, mert már nem támogatott ez a metódus, ezért külön pluginként belekerült, és kibővült egy újabb szolgáltatóval is, így ha valakinek erre lenne szüksége keresse a magyar csomag telepítése után a <strong>Magyar Video Embed</strong> nevű bővítményt, és kapcsolja be. </p>\n<p>Bármilyen óhajt, sóhajt, panaszt és bánatot pedig írjatok meg nekünk a Kapcsolati űrlapon keresztül, a Fórumba, vagy Facebookon.</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://hu.wordpress.org/2015/08/19/wordpress-4-3-billie/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"98\";s: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:73:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Segítség oldal frissítés\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://hu.wordpress.org/2015/01/07/frissitett-segites-oldal/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://hu.wordpress.org/2015/01/07/frissitett-segites-oldal/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 07 Jan 2015 12:31: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:1:{i:0;a:5:{s:4:\"data\";s:20:\"Nincs kategorizálva\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://hu.wordpress.org/?p=75\";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:447:\"Felfrissítettem a Segítség oldalt, így mostantól mindenki kitudja választani, hogy milyen fajta problémája van, és miben tudunk neki segítséget adni. A felső menüben található Segítség menüpontból érhető el mindez, reméljük ez által ti is a megfelelő helyre tudtok fordulni, és minél gyorsabban találtok megoldást a problémáitokra, hozzánk pedig kevesebb téves levél és megkeresés érkezik. Ezenfelül […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"DjZoNe\";s: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:647:\"<p>Felfrissítettem a Segítség oldalt, így mostantól mindenki kitudja választani, hogy milyen fajta problémája van, és miben tudunk neki segítséget adni. </p>\n<p>A felső menüben található <strong>Segítség</strong> menüpontból érhető el mindez, reméljük ez által ti is a megfelelő helyre tudtok fordulni, és minél gyorsabban találtok megoldást a problémáitokra, hozzánk pedig kevesebb téves levél és megkeresés érkezik.</p>\n<p>Ezenfelül kikerült a <strong>Támogass minket!</strong> oldal is a menübe, ahol felsoroljuk, hogy te miben tudsz nekünk segíteni, ha van felesleges időd, és hozzáértésed.</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://hu.wordpress.org/2015/01/07/frissitett-segites-oldal/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"75\";s: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:79:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Magyar videó beágyazások az új 4.1-ben\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://hu.wordpress.org/2014/12/19/magyar-video-beagyazasok-az-uj-4-1-ben/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://hu.wordpress.org/2014/12/19/magyar-video-beagyazasok-az-uj-4-1-ben/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 19 Dec 2014 09:37: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Gépház\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.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:\"\";}i:2;a:5:{s:4:\"data\";s:6:\"oembed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://hu.wordpress.org/?p=56\";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:450:\"Képzeljétek el, az történt, hogy a 4.1 megjelenésére időzítve a magyar csomaghoz megjelent a következő magyar nyelvű oldalak videó tartalmainak automatikus beágyazása: tv2.hu vivatv.hu mtv.co.hu mno.hu noltv.hu indavideo.hu pixter.hu videa.hu Számtalan olyan magyar tartalom szolgáltatót tudunk még, akiknek vannak saját videó megoldásai, de sajnos az ő technológiájuk nem volt beágyazható ezen a módon, és ahogy […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"DjZoNe\";s: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:1453:\"<p>Képzeljétek el, az történt, hogy a 4.1 megjelenésére időzítve a magyar csomaghoz megjelent a következő magyar nyelvű oldalak videó tartalmainak automatikus beágyazása:</p>\n<ul>\n<li>tv2.hu</li>\n<li>vivatv.hu</li>\n<li>mtv.co.hu</li>\n<li>mno.hu</li>\n<li>noltv.hu</li>\n<li>indavideo.hu</li>\n<li>pixter.hu</li>\n<li>videa.hu</li>\n</ul>\n<p>Számtalan olyan magyar tartalom szolgáltatót tudunk még, akiknek vannak saját videó megoldásai, de sajnos az ő technológiájuk nem volt beágyazható ezen a módon, és ahogy láttam, nagyjából sehogy.</p>\n<p>A kimaradó oldalakról, és a kimaradás okairól <strong>WP_CONTEN_DIR/languages/hu_HU.php</strong> -ban talál részletes leírást, aki nagyon kíváncsi rá. Aki esetleg érintett a kimaradt oldalak fejlesztésében, és netán technikai segítségre van szükségük az oEmbed technológiával kapcsolatban, azok a kapcsolati űrlapon keresztül elérnek minket.</p>\n<p>A megoldás feltételezi azt, egy olyan modern sablon használatát, ahol be van állítva a globális <strong>$content_width</strong> nevű változó, ugyanis ez alapján számolódik a videók helyes mérete. Ez a megoldás 2010 óta van a WordPressben.</p>\n<p>Akinek pedig a fenti újítás nincs ínyére, az egyszerűen tegyen a fent említett fájl utolsó sora elé egy # -ot, valahogy így:</p>\n<blockquote><p>\n#add_action( ‘init’, ‘magyar_video_embeds’ );\n</p></blockquote>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://hu.wordpress.org/2014/12/19/magyar-video-beagyazasok-az-uj-4-1-ben/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"56\";s: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:73:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Találkozz a WordPress fejlesztőivel!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://hu.wordpress.org/2011/10/18/talalkozz-a-wordpress-fejlesztoivel/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://hu.wordpress.org/2011/10/18/talalkozz-a-wordpress-fejlesztoivel/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 18 Oct 2011 14:00:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Gépház\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"http://hu.wordpress.org/?p=30\";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:437:\"Örömmel jelentjük be a kedves olvasó, és WordPress-t használó közösségnek, hogy a WordPress-t fejlesztő csapat, az Automattic, szinte teljes legénysége Budapesten lesz október 20 és 27 között. Az alapító, Matt Mullenweg szeretne találkozni magyarországi WordPressesekkel. Úgy tudom, ez az első alkalom, hogy a teljes csapat Magyarországon jár, így érdemes lesz kihasználni a lehetőséget! Szóval a […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"DjZoNe\";s: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:992:\"<p>Örömmel jelentjük be a kedves olvasó, és WordPress-t használó közösségnek, hogy a WordPress-t fejlesztő csapat, az Automattic, szinte teljes legénysége <strong>Budapesten lesz</strong> október 20 és 27 között.</p>\n<p>Az alapító, Matt Mullenweg szeretne találkozni magyarországi WordPressesekkel. Úgy tudom, ez az első alkalom, hogy a teljes csapat Magyarországon jár, így érdemes lesz kihasználni a lehetőséget!</p>\n<p>Szóval a terv az, hogy közel 80 Automattic alkalmazottal egy közös, laza, beszélgetős és iszogatós, amolyan kocka estet fogunk tartani, ami kötetlen beszélgetésekre ad lehetőséget.</p>\n<p>Így nem lesz semmi komolykodás, sem prezentáció, sem semmi hasonló ültetett dolog.</p>\n<p>A helyszín az Instant (ők választották) lesz, az időpont pedig este 9-től zárásig, ami hajnali 2-3-at jelent.</p>\n<p><a href=\"https://www.facebook.com/event.php?eid=108140525963547\" target=\"_blank\">Jelentkezéshez kattints ide</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://hu.wordpress.org/2011/10/18/talalkozz-a-wordpress-fejlesztoivel/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"30\";s: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:88:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"A király új ruhája – megújult a fórumunk!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://hu.wordpress.org/2009/09/08/a-kiraly-uj-ruhaja-megujult-a-forumunk/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://hu.wordpress.org/2009/09/08/a-kiraly-uj-ruhaja-megujult-a-forumunk/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 08 Sep 2009 12:20:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:8:\"Gépház\";s: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:\"bbpress\";s: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:6:\"fórum\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:3:\"ipb\";s: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:5:\"punbb\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:9:\"vbulletin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"http://hu.wordpress.org/?p=25\";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:455:\"Ahogyan tapasztalhattátok az elmúlt pár órában a fórum elérhetetlen volt. De most már minden szebb és jobb, mint előtte. A továbbiakban váltás okairól szeretnék egy kicsit mesélni, azoknak, akiket érdekel. Amikor elkezdtünk komolyabban csapattá szerveződni, mi akik moderátorok és adminok vagyunk, valamint a Magyar WordPress Projectben részt veszünk, elköteleztük magunkat a WordPress terjeszetésében, a kapcsolódó […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"DjZoNe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2330:\"<p>Ahogyan tapasztalhattátok az elmúlt pár órában a fórum elérhetetlen volt.<br />\nDe most már minden szebb és jobb, mint előtte.</p>\n<p>A továbbiakban váltás okairól szeretnék egy kicsit mesélni, azoknak, akiket érdekel.<br />\n<span id=\"more-25\"></span></p>\n<p>Amikor elkezdtünk komolyabban csapattá szerveződni, mi akik moderátorok és adminok vagyunk, valamint a Magyar WordPress Projectben részt veszünk, elköteleztük magunkat a WordPress terjeszetésében, a kapcsolódó technológiák támogatásában, és a felhasználók segítésében.</p>\n<p>Az utóbbiban támadtak nehézségeink az utóbbi időben, ugyanis mióta egyre népszerűbb ez a cms rendszer/blog motor/publikációs platform felbukkantak nem kívánatos elemek, akik örömüket lelték abban, hogy vandálkodni jártak a fórumunka. (trollok)</p>\n<p>Ekkor ébredtünk rá, hogy az eddig használt <strong>PunBB</strong> rendszer nagy hiányosságaiba ütköztünk, és számunkra már nem alkalmas további használatra.</p>\n<p>Gondolkodtunk alternatívákon, hogy mivel lehetne az adatok megtartása mellett leváltani.</p>\n<p>Szempont voltak:</p>\n<ul>\n<li> könnyű kezelhetőség</li>\n<li>moderációs lehetőségek</li>\n<li>kereső barát URL támogatás</li>\n<li>migráló eszközök</li>\n<li>webkettes szolgáltatások támogatása</li>\n</ul>\n<p>Ezek alapján sajnos a <strong>bbPress</strong>-t ki kellett ejtenünk a sorból. Mivel, bár a WordPress kis testvére, és egy nagyon jó fórum rendszer, sajnos a céljainknak ez sem felet meg (ezzel nem zárom ki a lehetőséget, hogy ez a jövőben sem lesz így, viszont még kell neki pár év mire igazán beérik).</p>\n<p>Gyakorlatilag két alternatívánk maradt a <strong>vBulletin</strong> és az <strong>IPB</strong>, és mint láthatjátok ez utóbbi mellett döntöttünk.<br />\nMindenben messze-messze megfelelt az elvárásainknak, sőt egészen sok extrát is tartogatott számunkra.<br />\nAz, hogy az ára is kedvezőbb volt, már csak kellemes ráadás.</p>\n<p>Szóval, meghalt a király(??), éljen a király.<br />\nHasználjátok egészséggel az <a href=\"http://forum.word-press.hu\" target=\"_blank\">új fórum</a>ot.</p>\n<p>Zárszóként pedig, ezúton szeretnénk megköszönni a fordítást az <a href=\"http://ipboard.hu/\">IPB Magyarország</a>nak.</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://hu.wordpress.org/2009/09/08/a-kiraly-uj-ruhaja-megujult-a-forumunk/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"25\";s: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:76:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Egy kis macera\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://hu.wordpress.org/2009/08/17/egy-kis-macera/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://hu.wordpress.org/2009/08/17/egy-kis-macera/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 17 Aug 2009 12:21:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Gépház\";s: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:\"weblap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"http://hu.wordpress.org/?p=23\";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:154:\"A word-press.hu jelenleg szerver gondokkal küzd, addig a látogatók ide lesznek irányítva, hogy hozzá tudjatok jutni legalább a magyarításhoz 🙂\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"DjZoNe\";s: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:295:\"<p>A word-press.hu jelenleg szerver gondokkal küzd, addig a látogatók ide lesznek irányítva, hogy hozzá tudjatok jutni legalább a magyarításhoz <img src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://hu.wordpress.org/2009/08/17/egy-kis-macera/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"23\";s: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:30:\"https://hu.wordpress.org/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:\"13096063\";s:7:\"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:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 05 Aug 2025 04:24:12 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:37:\"Accept-Encoding, accept, content-type\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 23 Apr 2025 13:39:47 GMT\";s:4:\"link\";s:61:\"<https://hu.wordpress.org/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";i:1727736620;s:21:\"cache_expiration_time\";i:1754411052;s:23:\"__cache_expiration_time\";i:1754411052;}','off'),
|
||
(296,'_transient_timeout_dash_v2_dd625b945eae16a892cb96260fa4a65f','1754411052','off'),
|
||
(297,'_transient_dash_v2_dd625b945eae16a892cb96260fa4a65f','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2025/07/wordpress-6-8-2-maintenance-release/\'>WordPress 6.8.2 Maintenance Release</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2025/07/kim-parsell-2025-wcus-scholarship-applications-open/\'>Celebrating Kim Parsell: 2025 WordCamp US Scholarship Applications Open</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://hu.wordpress.org/2024/10/11/jon-az-eddigi-legnagyobb-magyar-wordpress-meetup/\'>Jön az eddigi legnagyobb magyar WordPress Meetup!</a></li><li><a class=\'rsswidget\' href=\'https://hu.wordpress.org/2018/11/09/uj-magyar-wordpress-tamogatas-oldal-indult/\'>Új magyar WordPress Támogatás oldal indult</a></li><li><a class=\'rsswidget\' href=\'https://hu.wordpress.org/2018/10/17/csak-a-woocommerce-folytatodik-a-budapest-wordpress-meetup/\'>Csak a WooCommerce! – Folytatódik a Budapest WordPress Meetup</a></li></ul></div>','off'),
|
||
(306,'site_logo','10','auto'),
|
||
(309,'wpdevart_comment_facebook_app_id','','auto'),
|
||
(310,'wpdevart_comments_box_order_type','social','auto'),
|
||
(311,'wpdevart_comment_title_text','','auto'),
|
||
(312,'wpdevart_comment_title_text_color','#000000','auto'),
|
||
(313,'wpdevart_comment_title_text_font_size','20','auto'),
|
||
(314,'wpdevart_comment_title_text_font_famely','Arial,Helvetica Neue,Helvetica,sans-serif','auto'),
|
||
(315,'wpdevart_comment_title_text_position','left','auto'),
|
||
(316,'wpdevart_comments_box_show_in','{\\\"home\\\":true,\\\"post\\\":true,\\\"page\\\":true}','auto'),
|
||
(317,'wpdevart_comments_box_width','100%','auto'),
|
||
(318,'wpdevart_comments_box_count_of_comments','7','auto'),
|
||
(319,'wpdevart_comments_box_locale','hu_HU','auto'),
|
||
(320,'wpdevart_comments_box_include_sdk','yes','auto'),
|
||
(321,'_site_transient_timeout_available_translations','1754389940','off'),
|
||
(322,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.9\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.9/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2024-02-13 12:49:38\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.5/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.25\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.25/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s: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.5\";s:7:\"updated\";s:19:\"2024-01-19 08:58:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.5/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.26\";s:7:\"updated\";s:19:\"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.26/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s: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.6\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-10 13:56:56\";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.7.2\";s:7:\"updated\";s:19:\"2025-05-15 15:31:31\";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.7.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-07-10 07:10:07\";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_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: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-08-01 16:48:13\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.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-08-01 16:42:00\";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:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.6/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s: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_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-05-22 08:43:39\";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-05-25 12:26:44\";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: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_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:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-06-11 09:05:01\";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_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.5\";s:7:\"updated\";s:19:\"2023-10-16 16:00:04\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.5/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:6:\"5.8.10\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.8.10/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.16\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.16/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.21\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.21/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-05-27 00:56:11\";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_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_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: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-07-09 10:04:44\";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: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-04-29 15:18:18\";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-07-22 21:56:43\";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.5\";s:7:\"updated\";s:19:\"2024-02-01 23:56:53\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.5/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.25\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.25/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.6/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s: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-07-26 05:16:08\";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.6\";s:7:\"updated\";s:19:\"2024-05-04 18:39:24\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"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.5/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-13 10:59:05\";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.6\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.6/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s: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-07-15 02:43:12\";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.26\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.26/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s: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-07-11 12:59:20\";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.26\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.26/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s: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.6\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.6/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s: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.21\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.21/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s: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-07-18 05:34:36\";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-07-28 20:35:39\";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.5\";s:7:\"updated\";s:19:\"2024-06-13 13:11:03\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.5/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s: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:5:\"6.0.9\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.9/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-20 16:41:38\";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.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-06-20 17:22:06\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.5/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-06-19 11:39:21\";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.15\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.15/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.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-07-11 03:23:53\";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: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-06-14 10:43:29\";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_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-30 17:05:07\";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: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-07-13 19:35:47\";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.25\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.25/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s: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_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-05-05 11:53:58\";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_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: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:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2023-08-21 12:15:00\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.5/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-09 11:31:16\";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-07-16 13:29:55\";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.16\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.16/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-30 06:25:52\";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-07-15 06:12:29\";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.7.2\";s:7:\"updated\";s:19:\"2024-09-20 22:15:56\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.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-07-08 16:28:16\";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.10\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.10/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s: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.16\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.16/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.8.2\";s:7:\"updated\";s:19:\"2025-07-19 02:17:53\";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_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:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','off'),
|
||
(323,'_site_transient_timeout_wp_theme_files_patterns-dcaae242aa55a2ea2e922c61f5fb188a','1754384435','off'),
|
||
(324,'_site_transient_wp_theme_files_patterns-dcaae242aa55a2ea2e922c61f5fb188a','a:2:{s:7:\"version\";s:5:\"1.0.0\";s:8:\"patterns\";a:0:{}}','off');
|
||
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_postmeta`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_postmeta`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!40101 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_postmeta` (
|
||
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
||
`meta_key` varchar(255) DEFAULT NULL,
|
||
`meta_value` longtext DEFAULT NULL,
|
||
PRIMARY KEY (`meta_id`),
|
||
KEY `post_id` (`post_id`),
|
||
KEY `meta_key` (`meta_key`(191))
|
||
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_postmeta`
|
||
--
|
||
|
||
LOCK TABLES `wp_postmeta` WRITE;
|
||
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
|
||
INSERT INTO `wp_postmeta` VALUES
|
||
(1,2,'_wp_page_template','default'),
|
||
(2,3,'_wp_page_template','default'),
|
||
(5,8,'_wp_attached_file','2025/08/6523348.png'),
|
||
(6,8,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:19:\"2025/08/6523348.png\";s:8:\"filesize\";i:11198;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"6523348-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2889;}s:10:\"menu-24x24\";a:5:{s:4:\"file\";s:17:\"6523348-24x24.png\";s:5:\"width\";i:24;s:6:\"height\";i:24;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:731;}s:10:\"menu-36x36\";a:5:{s:4:\"file\";s:17:\"6523348-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1101;}s:10:\"menu-48x48\";a:5:{s:4:\"file\";s:17:\"6523348-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:990;}s:5:\"small\";a:5:{s:4:\"file\";s:19:\"6523348-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2105;}s:6:\"square\";a:5:{s:4:\"file\";s:19:\"6523348-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2889;}}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:{}}}'),
|
||
(7,9,'_wp_attached_file','2025/08/cropped-6523348.png'),
|
||
(8,9,'_wp_attachment_context','site-icon'),
|
||
(9,9,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:27:\"2025/08/cropped-6523348.png\";s:8:\"filesize\";i:13205;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"cropped-6523348-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9331;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"cropped-6523348-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2924;}s:10:\"menu-24x24\";a:5:{s:4:\"file\";s:25:\"cropped-6523348-24x24.png\";s:5:\"width\";i:24;s:6:\"height\";i:24;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:715;}s:10:\"menu-36x36\";a:5:{s:4:\"file\";s:25:\"cropped-6523348-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1058;}s:10:\"menu-48x48\";a:5:{s:4:\"file\";s:25:\"cropped-6523348-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:999;}s:5:\"small\";a:5:{s:4:\"file\";s:27:\"cropped-6523348-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1954;}s:6:\"square\";a:5:{s:4:\"file\";s:27:\"cropped-6523348-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2924;}s:16:\"recommended_size\";a:5:{s:4:\"file\";s:27:\"cropped-6523348-470x200.png\";s:5:\"width\";i:470;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10238;}s:11:\"slider_size\";a:5:{s:4:\"file\";s:27:\"cropped-6523348-512x500.png\";s:5:\"width\";i:512;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13179;}s:8:\"row_size\";a:5:{s:4:\"file\";s:27:\"cropped-6523348-350x250.png\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7882;}s:14:\"post_thumbnail\";a:5:{s:4:\"file\";s:27:\"cropped-6523348-512x400.png\";s:5:\"width\";i:512;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12566;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:27:\"cropped-6523348-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6015;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:27:\"cropped-6523348-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3718;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:27:\"cropped-6523348-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3596;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:25:\"cropped-6523348-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:987;}}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:{}}}'),
|
||
(10,10,'_wp_attached_file','2025/08/cropped-cropped-6523348.png'),
|
||
(11,10,'_wp_attachment_context','custom-logo'),
|
||
(12,10,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:35:\"2025/08/cropped-cropped-6523348.png\";s:8:\"filesize\";i:13205;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"cropped-cropped-6523348-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9331;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"cropped-cropped-6523348-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2924;}s:10:\"menu-24x24\";a:5:{s:4:\"file\";s:33:\"cropped-cropped-6523348-24x24.png\";s:5:\"width\";i:24;s:6:\"height\";i:24;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:715;}s:10:\"menu-36x36\";a:5:{s:4:\"file\";s:33:\"cropped-cropped-6523348-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1058;}s:10:\"menu-48x48\";a:5:{s:4:\"file\";s:33:\"cropped-cropped-6523348-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:999;}s:5:\"small\";a:5:{s:4:\"file\";s:35:\"cropped-cropped-6523348-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1954;}s:6:\"square\";a:5:{s:4:\"file\";s:35:\"cropped-cropped-6523348-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2924;}s:16:\"recommended_size\";a:5:{s:4:\"file\";s:35:\"cropped-cropped-6523348-470x200.png\";s:5:\"width\";i:470;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10238;}s:11:\"slider_size\";a:5:{s:4:\"file\";s:35:\"cropped-cropped-6523348-512x500.png\";s:5:\"width\";i:512;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13179;}s:8:\"row_size\";a:5:{s:4:\"file\";s:35:\"cropped-cropped-6523348-350x250.png\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7882;}s:14:\"post_thumbnail\";a:5:{s:4:\"file\";s:35:\"cropped-cropped-6523348-512x400.png\";s:5:\"width\";i:512;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12566;}}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:{}}}'),
|
||
(13,11,'_wp_attached_file','2025/08/cropped-cropped-cropped-6523348.png'),
|
||
(14,11,'_wp_attachment_context','site-icon'),
|
||
(15,11,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:43:\"2025/08/cropped-cropped-cropped-6523348.png\";s:8:\"filesize\";i:13205;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"cropped-cropped-cropped-6523348-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9331;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"cropped-cropped-cropped-6523348-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2924;}s:10:\"menu-24x24\";a:5:{s:4:\"file\";s:41:\"cropped-cropped-cropped-6523348-24x24.png\";s:5:\"width\";i:24;s:6:\"height\";i:24;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:715;}s:10:\"menu-36x36\";a:5:{s:4:\"file\";s:41:\"cropped-cropped-cropped-6523348-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1058;}s:10:\"menu-48x48\";a:5:{s:4:\"file\";s:41:\"cropped-cropped-cropped-6523348-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:999;}s:5:\"small\";a:5:{s:4:\"file\";s:43:\"cropped-cropped-cropped-6523348-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1954;}s:6:\"square\";a:5:{s:4:\"file\";s:43:\"cropped-cropped-cropped-6523348-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2924;}s:16:\"recommended_size\";a:5:{s:4:\"file\";s:43:\"cropped-cropped-cropped-6523348-470x200.png\";s:5:\"width\";i:470;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10238;}s:11:\"slider_size\";a:5:{s:4:\"file\";s:43:\"cropped-cropped-cropped-6523348-512x500.png\";s:5:\"width\";i:512;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13179;}s:8:\"row_size\";a:5:{s:4:\"file\";s:43:\"cropped-cropped-cropped-6523348-350x250.png\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7882;}s:14:\"post_thumbnail\";a:5:{s:4:\"file\";s:43:\"cropped-cropped-cropped-6523348-512x400.png\";s:5:\"width\";i:512;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12566;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:43:\"cropped-cropped-cropped-6523348-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6015;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:43:\"cropped-cropped-cropped-6523348-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3718;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:43:\"cropped-cropped-cropped-6523348-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3596;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:41:\"cropped-cropped-cropped-6523348-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:987;}}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:{}}}'),
|
||
(16,12,'_wp_trash_meta_status','publish'),
|
||
(17,12,'_wp_trash_meta_time','1754378527'),
|
||
(18,13,'_wp_attached_file','2025/08/no-revisions-9wuhgaeqagy-unsplash-scaled.jpg'),
|
||
(19,13,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:52:\"2025/08/no-revisions-9wuhgaeqagy-unsplash-scaled.jpg\";s:8:\"filesize\";i:561654;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"no-revisions-9wuhgaeqagy-unsplash-320x400.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28674;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"no-revisions-9wuhgaeqagy-unsplash-1120x1400.jpg\";s:5:\"width\";i:1120;s:6:\"height\";i:1400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210492;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"no-revisions-9wuhgaeqagy-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9247;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"no-revisions-9wuhgaeqagy-unsplash-640x800.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85077;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"no-revisions-9wuhgaeqagy-unsplash-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:244946;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:47:\"no-revisions-9wuhgaeqagy-unsplash-1639x2048.jpg\";s:5:\"width\";i:1639;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:390288;}s:10:\"menu-24x24\";a:5:{s:4:\"file\";s:43:\"no-revisions-9wuhgaeqagy-unsplash-19x24.jpg\";s:5:\"width\";i:19;s:6:\"height\";i:24;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3737;}s:10:\"menu-36x36\";a:5:{s:4:\"file\";s:43:\"no-revisions-9wuhgaeqagy-unsplash-29x36.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3998;}s:10:\"menu-48x48\";a:5:{s:4:\"file\";s:43:\"no-revisions-9wuhgaeqagy-unsplash-38x48.jpg\";s:5:\"width\";i:38;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4253;}s:5:\"small\";a:5:{s:4:\"file\";s:44:\"no-revisions-9wuhgaeqagy-unsplash-80x100.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6080;}s:6:\"square\";a:5:{s:4:\"file\";s:45:\"no-revisions-9wuhgaeqagy-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9247;}s:16:\"recommended_size\";a:5:{s:4:\"file\";s:45:\"no-revisions-9wuhgaeqagy-unsplash-470x200.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16780;}s:11:\"slider_size\";a:5:{s:4:\"file\";s:46:\"no-revisions-9wuhgaeqagy-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66104;}s:8:\"row_size\";a:5:{s:4:\"file\";s:45:\"no-revisions-9wuhgaeqagy-unsplash-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19052;}s:14:\"post_thumbnail\";a:5:{s:4:\"file\";s:45:\"no-revisions-9wuhgaeqagy-unsplash-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45365;}}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:{}}s:14:\"original_image\";s:37:\"no-revisions-9wuhgaeqagy-unsplash.jpg\";}'),
|
||
(20,14,'_wp_trash_meta_status','publish'),
|
||
(21,14,'_wp_trash_meta_time','1754378665'),
|
||
(22,15,'_wp_attached_file','2025/08/cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2.jpg'),
|
||
(23,15,'_wp_attachment_context','custom-header'),
|
||
(24,15,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1500;s:6:\"height\";i:1021;s:4:\"file\";s:62:\"2025/08/cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2.jpg\";s:8:\"filesize\";i:195493;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-400x272.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22639;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-1400x953.jpg\";s:5:\"width\";i:1400;s:6:\"height\";i:953;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166215;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8317;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:62:\"cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-800x545.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:545;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68490;}s:10:\"menu-24x24\";a:5:{s:4:\"file\";s:60:\"cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-24x16.jpg\";s:5:\"width\";i:24;s:6:\"height\";i:16;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3642;}s:10:\"menu-36x36\";a:5:{s:4:\"file\";s:60:\"cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-36x25.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:25;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3899;}s:10:\"menu-48x48\";a:5:{s:4:\"file\";s:60:\"cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-48x33.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:33;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4090;}s:5:\"small\";a:5:{s:4:\"file\";s:61:\"cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-100x68.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:68;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5592;}s:6:\"square\";a:5:{s:4:\"file\";s:62:\"cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8317;}s:16:\"recommended_size\";a:5:{s:4:\"file\";s:62:\"cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-470x200.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19383;}s:11:\"slider_size\";a:5:{s:4:\"file\";s:63:\"cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72310;}s:8:\"row_size\";a:5:{s:4:\"file\";s:62:\"cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19501;}s:14:\"post_thumbnail\";a:5:{s:4:\"file\";s:62:\"cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50327;}}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:{}}s:17:\"attachment_parent\";i:13;}'),
|
||
(25,15,'_wp_attachment_custom_header_last_used_hvg-blog-general','1754378847'),
|
||
(26,15,'_wp_attachment_is_custom_header','hvg-blog-general'),
|
||
(27,16,'_wp_attached_file','2025/08/cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2.jpg'),
|
||
(28,16,'_wp_attachment_context','custom-header'),
|
||
(29,16,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1500;s:6:\"height\";i:291;s:4:\"file\";s:70:\"2025/08/cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2.jpg\";s:8:\"filesize\";i:72516;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-400x78.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10760;}s:5:\"large\";a:5:{s:4:\"file\";s:71:\"cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-1400x272.jpg\";s:5:\"width\";i:1400;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61418;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8395;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:70:\"cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-800x155.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27632;}s:10:\"menu-24x24\";a:5:{s:4:\"file\";s:67:\"cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-24x5.jpg\";s:5:\"width\";i:24;s:6:\"height\";i:5;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3587;}s:10:\"menu-36x36\";a:5:{s:4:\"file\";s:67:\"cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-36x7.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:7;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3642;}s:10:\"menu-48x48\";a:5:{s:4:\"file\";s:67:\"cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-48x9.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:9;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3725;}s:5:\"small\";a:5:{s:4:\"file\";s:69:\"cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-100x19.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:19;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4345;}s:6:\"square\";a:5:{s:4:\"file\";s:70:\"cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8395;}s:16:\"recommended_size\";a:5:{s:4:\"file\";s:70:\"cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-470x200.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21775;}s:11:\"slider_size\";a:5:{s:4:\"file\";s:71:\"cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-1000x291.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49697;}s:8:\"row_size\";a:5:{s:4:\"file\";s:70:\"cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18736;}s:14:\"post_thumbnail\";a:5:{s:4:\"file\";s:70:\"cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2-800x291.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42312;}}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:{}}s:17:\"attachment_parent\";i:15;}'),
|
||
(32,17,'_wp_trash_meta_status','publish'),
|
||
(33,17,'_wp_trash_meta_time','1754378807'),
|
||
(34,18,'_wp_trash_meta_status','publish'),
|
||
(35,18,'_wp_trash_meta_time','1754378839'),
|
||
(36,19,'_wp_trash_meta_status','publish'),
|
||
(37,19,'_wp_trash_meta_time','1754378847'),
|
||
(38,20,'_wp_trash_meta_status','publish'),
|
||
(39,20,'_wp_trash_meta_time','1754378864'),
|
||
(40,1,'_edit_lock','1754379078:1'),
|
||
(41,16,'_oembed_d03c74573b8e63f4ed3666fdca79879b','{{unknown}}'),
|
||
(44,1,'_thumbnail_id','22'),
|
||
(45,1,'_edit_last','1'),
|
||
(46,1,'_disabel_wpdevart_facebook_comment','enable'),
|
||
(47,1,'_hide_featured','2'),
|
||
(48,1,'_adult_warning','2'),
|
||
(49,22,'_wp_attached_file','2025/07/hayden-walker-ihied-_4tny-unsplash-scaled.jpg'),
|
||
(50,22,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1665;s:4:\"file\";s:53:\"2025/07/hayden-walker-ihied-_4tny-unsplash-scaled.jpg\";s:8:\"filesize\";i:1226033;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"hayden-walker-ihied-_4tny-unsplash-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32966;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"hayden-walker-ihied-_4tny-unsplash-1400x911.jpg\";s:5:\"width\";i:1400;s:6:\"height\";i:911;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:319515;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"hayden-walker-ihied-_4tny-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11204;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"hayden-walker-ihied-_4tny-unsplash-800x520.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106315;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"hayden-walker-ihied-_4tny-unsplash-1536x999.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:999;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:391521;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:48:\"hayden-walker-ihied-_4tny-unsplash-2048x1332.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1332;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:749091;}s:10:\"menu-24x24\";a:5:{s:4:\"file\";s:44:\"hayden-walker-ihied-_4tny-unsplash-24x16.jpg\";s:5:\"width\";i:24;s:6:\"height\";i:16;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3471;}s:10:\"menu-36x36\";a:5:{s:4:\"file\";s:44:\"hayden-walker-ihied-_4tny-unsplash-36x23.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:23;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3648;}s:10:\"menu-48x48\";a:5:{s:4:\"file\";s:44:\"hayden-walker-ihied-_4tny-unsplash-48x31.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:31;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3855;}s:5:\"small\";a:5:{s:4:\"file\";s:45:\"hayden-walker-ihied-_4tny-unsplash-100x65.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5449;}s:6:\"square\";a:5:{s:4:\"file\";s:46:\"hayden-walker-ihied-_4tny-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11204;}s:16:\"recommended_size\";a:5:{s:4:\"file\";s:46:\"hayden-walker-ihied-_4tny-unsplash-470x200.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32094;}s:11:\"slider_size\";a:5:{s:4:\"file\";s:47:\"hayden-walker-ihied-_4tny-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134949;}s:8:\"row_size\";a:5:{s:4:\"file\";s:46:\"hayden-walker-ihied-_4tny-unsplash-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29767;}s:14:\"post_thumbnail\";a:5:{s:4:\"file\";s:46:\"hayden-walker-ihied-_4tny-unsplash-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89263;}}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:{}}s:14:\"original_image\";s:38:\"hayden-walker-ihied-_4tny-unsplash.jpg\";}');
|
||
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_posts`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_posts`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!40101 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_posts` (
|
||
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
|
||
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`post_content` longtext NOT NULL,
|
||
`post_title` text NOT NULL,
|
||
`post_excerpt` text NOT NULL,
|
||
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
|
||
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
|
||
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
|
||
`post_password` varchar(255) NOT NULL DEFAULT '',
|
||
`post_name` varchar(200) NOT NULL DEFAULT '',
|
||
`to_ping` text NOT NULL,
|
||
`pinged` text NOT NULL,
|
||
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`post_content_filtered` longtext NOT NULL,
|
||
`post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
|
||
`guid` varchar(255) NOT NULL DEFAULT '',
|
||
`menu_order` int(11) NOT NULL DEFAULT 0,
|
||
`post_type` varchar(20) NOT NULL DEFAULT 'post',
|
||
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
|
||
`comment_count` bigint(20) NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`ID`),
|
||
KEY `post_name` (`post_name`(191)),
|
||
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
|
||
KEY `post_parent` (`post_parent`),
|
||
KEY `post_author` (`post_author`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_posts`
|
||
--
|
||
|
||
LOCK TABLES `wp_posts` WRITE;
|
||
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
|
||
INSERT INTO `wp_posts` VALUES
|
||
(1,1,'2025-07-02 10:07:21','2025-07-02 08:07:21','<!-- wp:paragraph -->\n<p>Üdvözlet a WordPress-ben! Ez az első bejegyzés, amelyet lehet akár módosítani, akár törölni, aztán kezdődhet az írás, a tartalommal történő feltöltés.</p>\n<!-- /wp:paragraph -->','Helló Világ!','','publish','open','open','','hello-vilag','','','2025-08-05 09:30:52','2025-08-05 07:30:52','',0,'https://blog.hvgdev.website/?p=1',0,'post','',0),
|
||
(2,1,'2025-07-02 10:07:21','2025-07-02 08:07:21','<!-- wp:paragraph -->\n<p>Ez egy mintaoldal. Az oldal különbözik a bejegyzéstől annyiban, hogy az oldal egy állandó tartalmú bejegyzés, ami - a legtöbb sablonnál - a weboldal navigációs részében állandó helyen van.\nA legtöbb ember olyan Bemutatkozó oldallal kezd, amelyik bemutatja őt, vagy a tevékenységét a weboldal látogatóinak. A Bemutatkozás oldal valami ilyesmi lehet:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Üdvözlet az Olvasóknak! Nappal biciklis pizzafutár vagyok, éjszaka pedig egy törekvő színész-tanonc, ez pedig az én weboldalam.<br>Budapesten élek és van egy csodálatos német juhász kutyám, aki Velorex névre hallgat. Kedvenc koktélom a Piña Colada, de a Mojitot is nagyon kedvelem. (De, azért az igazi nedű: egy bársonyos vörösbor.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>…vagy valami egészen más:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Az XYZ Bigyó Vállalatot 1971-ben alapították, azóta gyártja a legjobb minőségű bigyókat. A cég központja Budapesten található, ahol több mint 2000 embert foglalkoztatnak, valamint számos közösségi és jótékonysági programban is aktívan résztvesznek.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Új WordPress felhasználóként a <a href=\"https://blog.hvgdev.website/wp/wp-admin/\">Vezérlőpult</a> részre ugorva lehet törölni ezt az oldalt, és létrehozni egy úja oldalt a saját tartalmunk részére. Jó szórakozást!</p>\n<!-- /wp:paragraph -->','Ez egy minta oldal','','publish','closed','open','','ez-egy-minta-oldal','','','2025-07-02 10:07:21','2025-07-02 08:07:21','',0,'https://blog.hvgdev.website/?page_id=2',0,'page','',0),
|
||
(3,1,'2025-07-02 10:07:21','2025-07-02 08:07:21','<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Kik vagyunk</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Javasolt szöveg: </strong>A weboldalunk címe: https://blog.hvgdev.website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Hozzászólások</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Javasolt szöveg: </strong>Hozzászólás beküldésekor a hozzászólási űrlapban megadottakon kívül begyűjtésre kerül a hozzászóló IP címe és a böngészőazonosító karakterlánc a kéretlen tartalmak kiszűrése céljából.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>Egy személytelenített, az e-mail címből előállított karakterlánc (hashnek szokás nevezni) kerül továbbításra a Gravatar szolgáltatás felé, ha ez az oldalon használatban van. A Gravatar szolgáltatás feltételei az alábbi címen tekinthetőek meg: https://automattic.com/privacy/. A hozzászólás elfogadása után, a hozzászólásunk tartalma és a profil képünk is megjelenik nyilvánosan.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Média</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Javasolt szöveg: </strong>Amennyiben regisztrált felhasználó által kerül kép feltöltésre a honlapra, kerülni kell az az olyan EXIF-eket, amelyekben GPS pozíció adatok is szerepelnek. A honlap látogatói ezeket letölthetik és kinyerhetik a helyadatokat a honlapon található képekből.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Sütik</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Javasolt szöveg: </strong>Ha hozzászólást írunk a honlapon, a megadott nevet, e-mail és honlap címet sütikben eltároljuk. A tárolás a kényelmi célokat szolgál azért, így a következő hozzászóláskor ezeket a mező adatokat nem kell kitölteni. A sütik lejárati ideje egy év.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>Ha ellátogatunk a bejelentkezési oldalra, akkor átmeneti sütiket állítunk be annak érdekében, hogy megállapítsuk, hogy a böngésző elfogadja-e a sütiket. Ezek a sütik nem tartalmaznak személyes információt, és törlődnek, ahogy bezárjuk a böngészőt.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>A honlapra történő bejelentkezéskor több sütit hozunk létre, amely elmenti a bejelentkezési információt és a szerkesztőfelület megjelenítési opcióit. A bejelentkezési sütik két napig érvényesek, a szerkesztőfelület képernyő opcióit tároló süti egy évig. Amennyiben az "Emlékezz rám" opciót bejelöljük, a bejelentkezés két hétig folytatódik. Kijelentkezéskor a bejelentkezési sütik eltávolításra kerülnek.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>Amennyiben bejegyzést vagy oldalt szerkesztünk, egy újabb sütit tárol el a böngészőnk. Ez a süti nem tartalmaz személyes adatot, egyszerűen csak a bejegyzés azonosító számát tárolja, amelyet szerkesztettünk. Egy nap múlva jár le az érvényessége.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Más honlapokról származó beágyazott tartalmak</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Javasolt szöveg: </strong>A honlapon elérhető bejegyzések külső forrásból származó beágyazott tartalmakat (pl. videók, képek, cikkek stb.) használhatnak. A külső forrásból származó beágyazott tartalmak pontosan úgy viselkednek, mintha meglátogattunk volna egy másik honlapot.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>Ezek a webhelyek lehetséges, hogy adatot gyűjtenek a látogatókról, sütiket vagy harmadik féltől származó követőkódot használnak, figyelik a beágyazott tartalommal kapcsolatos felhasználói viselkedést, ha rendelkezünk felhasználói fiókkal és be vagyunk jelentkezve az oldalra.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Kivel osztjuk meg a felhasználói adatokat</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Javasolt szöveg: </strong>Ha jelszó visszaállítást kér, akkor az IP-címet a visszaállító e-mail tartalmazni fogja.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Mennyi ideig őrizzük a személyes adatot</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Javasolt szöveg: </strong>Ha hozzászólunk, a hozzászólás és annak metaadatai nem meghatározható ideig a rendszerben maradnak. Ennek célja, hogy az összes ezt követő bármely hozzászólás általunk megismertté és jóváhagyottá váljon, azaz ne kerüljön fel a moderálandó hozzászólások listájára.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>A honlapon regisztrált felhasználók (ha vannak ilyenek) személyes adatai a saját felhasználói profiljukban is tárolásra kerülnek. Minden felhasználó megtekintheti, szerkesztheti vagy törölheti a személyes adatait bármikor (kivéve, hogy nem változtathatja meg a saját felhasználónevét). A honlap rendszergazdái ezen információkat szintén megtekinthetik és szerkeszthetik.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Milyen jogokkal rendelkezik a felhasználó a saját adatai kapcsán</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Javasolt szöveg: </strong>A weboldalon regisztrált fiók vagy hozzászólás írása esetén kérhető a személyes adatok export fájlban történő megküldése, amely bármilyen adatot tartalmaz, amit korábban a felhasználó rendelkezésünkre bocsátott. Kérhető továbbá, hogy bármilyen korábban megadott személyes adatot töröljük. Ez nem vonatkozik azokra az adatokra, amelyeket adminisztrációs, jogi vagy biztonsági okokból kötelező megőriznünk.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Hová kerülnek továbbküldésre az adatok</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Javasolt szöveg: </strong>A látogatók által beküldött hozzászólásokat automatikus spamszűrő szolgáltatás ellenőrizheti.</p>\n<!-- /wp:paragraph -->\n','Adatkezelési tájékoztató','','draft','closed','open','','adatkezelesi-tajekoztato','','','2025-07-02 10:07:21','2025-07-02 08:07:21','',0,'https://blog.hvgdev.website/?page_id=3',0,'page','',0),
|
||
(4,0,'2025-07-02 10:07:22','2025-07-02 08:07:22','<!-- wp:page-list /-->','Navigáció','','publish','closed','closed','','navigation','','','2025-07-02 10:07:22','2025-07-02 08:07:22','',0,'https://blog.hvgdev.website/2025/07/02/navigation/',0,'wp_navigation','',0),
|
||
(7,1,'2025-07-31 17:20:13','0000-00-00 00:00:00','','Automatikus vázlat','','auto-draft','closed','closed','','','','','2025-07-31 17:20:13','0000-00-00 00:00:00','',0,'https://blog.hvgdev.website/?p=7',0,'post','',0),
|
||
(8,1,'2025-08-05 09:19:51','2025-08-05 07:19:51','','6523348','','inherit','closed','closed','','6523348','','','2025-08-05 09:19:51','2025-08-05 07:19:51','',0,'https://blog.hvgdev.website/app/uploads/2025/08/6523348.png',0,'attachment','image/png',0),
|
||
(9,1,'2025-08-05 09:20:47','2025-08-05 07:20:47','https://blog.hvgdev.website/app/uploads/2025/08/cropped-6523348.png','6523348','','inherit','closed','closed','','6523348-2','','','2025-08-05 09:20:47','2025-08-05 07:20:47','',8,'https://blog.hvgdev.website/app/uploads/2025/08/cropped-6523348.png',0,'attachment','image/png',0),
|
||
(10,1,'2025-08-05 09:21:39','2025-08-05 07:21:39','https://blog.hvgdev.website/app/uploads/2025/08/cropped-6523348.png','6523348','','inherit','closed','closed','','6523348-3','','','2025-08-05 09:21:39','2025-08-05 07:21:39','',9,'https://blog.hvgdev.website/app/uploads/2025/08/cropped-cropped-6523348.png',0,'attachment','image/png',0),
|
||
(11,1,'2025-08-05 09:21:54','2025-08-05 07:21:54','https://blog.hvgdev.website/app/uploads/2025/08/cropped-6523348.png','6523348','','inherit','closed','closed','','6523348-4','','','2025-08-05 09:21:54','2025-08-05 07:21:54','',10,'https://blog.hvgdev.website/app/uploads/2025/08/cropped-cropped-cropped-6523348.png',0,'attachment','image/png',0),
|
||
(12,1,'2025-08-05 09:22:06','2025-08-05 07:22:06','{\n \"site_icon\": {\n \"value\": 11,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2025-08-05 07:22:06\"\n },\n \"hvg-blog-general::custom_logo\": {\n \"value\": 10,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2025-08-05 07:22:06\"\n }\n}','','','trash','closed','closed','','98513b85-2a18-4d95-a31d-c3f2784bf1d0','','','2025-08-05 09:22:06','2025-08-05 07:22:06','',0,'https://blog.hvgdev.website/2025/08/05/98513b85-2a18-4d95-a31d-c3f2784bf1d0/',0,'customize_changeset','',0),
|
||
(13,1,'2025-08-05 09:24:00','2025-08-05 07:24:00','','no-revisions-9WuHgaEQagY-unsplash','','inherit','closed','closed','','no-revisions-9wuhgaeqagy-unsplash','','','2025-08-05 09:24:00','2025-08-05 07:24:00','',0,'https://blog.hvgdev.website/app/uploads/2025/08/no-revisions-9wuhgaeqagy-unsplash.jpg',0,'attachment','image/jpeg',0),
|
||
(14,1,'2025-08-05 09:24:25','2025-08-05 07:24:25','{\n \"hvg-blog-general::hvg_blog_default_image\": {\n \"value\": \"https://blog.hvgdev.website/app/uploads/2025/08/no-revisions-9wuhgaeqagy-unsplash-scaled.jpg\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2025-08-05 07:24:25\"\n }\n}','','','trash','closed','closed','','c56a14dd-02b3-4fbe-b48a-0aa19dd8980a','','','2025-08-05 09:24:25','2025-08-05 07:24:25','',0,'https://blog.hvgdev.website/2025/08/05/c56a14dd-02b3-4fbe-b48a-0aa19dd8980a/',0,'customize_changeset','',0),
|
||
(15,1,'2025-08-05 09:26:16','2025-08-05 07:26:16','https://blog.hvgdev.website/app/uploads/2025/08/cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2.jpg','no-revisions-9WuHgaEQagY-unsplash','','inherit','closed','closed','','no-revisions-9wuhgaeqagy-unsplash-2','','','2025-08-05 09:26:16','2025-08-05 07:26:16','',0,'https://blog.hvgdev.website/app/uploads/2025/08/cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),
|
||
(16,1,'2025-08-05 09:26:39','2025-08-05 07:26:39','https://blog.hvgdev.website/app/uploads/2025/08/cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2.jpg','no-revisions-9WuHgaEQagY-unsplash','','inherit','closed','closed','','no-revisions-9wuhgaeqagy-unsplash-3','','','2025-08-05 09:26:39','2025-08-05 07:26:39','',0,'https://blog.hvgdev.website/app/uploads/2025/08/cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2.jpg',0,'attachment','image/jpeg',0),
|
||
(17,1,'2025-08-05 09:26:47','2025-08-05 07:26:47','{\n \"hvg-blog-general::header_image\": {\n \"value\": \"https://blog.hvgdev.website/app/uploads/2025/08/cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2.jpg\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2025-08-05 07:26:47\"\n },\n \"hvg-blog-general::header_image_data\": {\n \"value\": {\n \"url\": \"https://blog.hvgdev.website/app/uploads/2025/08/cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2.jpg\",\n \"thumbnail_url\": \"https://blog.hvgdev.website/app/uploads/2025/08/cropped-cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2.jpg\",\n \"timestamp\": 1754378800862,\n \"attachment_id\": 16,\n \"width\": 1500,\n \"height\": 291\n },\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2025-08-05 07:26:47\"\n }\n}','','','trash','closed','closed','','b65a78ae-b0a3-4e04-a706-07c01ef7f5cf','','','2025-08-05 09:26:47','2025-08-05 07:26:47','',0,'https://blog.hvgdev.website/2025/08/05/b65a78ae-b0a3-4e04-a706-07c01ef7f5cf/',0,'customize_changeset','',0),
|
||
(18,1,'2025-08-05 09:27:19','2025-08-05 07:27:19','{\n \"hvg-blog-general::header_image\": {\n \"value\": \"random-uploaded-image\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2025-08-05 07:27:19\"\n },\n \"hvg-blog-general::header_image_data\": {\n \"value\": \"random-uploaded-image\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2025-08-05 07:27:19\"\n }\n}','','','trash','closed','closed','','8aaaf2f0-f23f-4532-aa0f-65d26df1936d','','','2025-08-05 09:27:19','2025-08-05 07:27:19','',0,'https://blog.hvgdev.website/2025/08/05/8aaaf2f0-f23f-4532-aa0f-65d26df1936d/',0,'customize_changeset','',0),
|
||
(19,1,'2025-08-05 09:27:27','2025-08-05 07:27:27','{\n \"hvg-blog-general::header_image\": {\n \"value\": \"https://blog.hvgdev.website/app/uploads/2025/08/cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2.jpg\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2025-08-05 07:27:27\"\n },\n \"hvg-blog-general::header_image_data\": {\n \"value\": {\n \"url\": \"https://blog.hvgdev.website/app/uploads/2025/08/cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2.jpg\",\n \"thumbnail_url\": \"https://blog.hvgdev.website/app/uploads/2025/08/cropped-no-revisions-9wuhgaeqagy-unsplash-scaled-2.jpg\",\n \"timestamp\": 1754378778983,\n \"attachment_id\": 15,\n \"width\": 1500,\n \"height\": 1021\n },\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2025-08-05 07:27:27\"\n }\n}','','','trash','closed','closed','','8795a274-15fc-479f-b748-c62a1e77be41','','','2025-08-05 09:27:27','2025-08-05 07:27:27','',0,'https://blog.hvgdev.website/2025/08/05/8795a274-15fc-479f-b748-c62a1e77be41/',0,'customize_changeset','',0),
|
||
(20,1,'2025-08-05 09:27:44','2025-08-05 07:27:44','{\n \"hvg-blog-general::header_image\": {\n \"value\": \"random-uploaded-image\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2025-08-05 07:27:44\"\n },\n \"hvg-blog-general::header_image_data\": {\n \"value\": \"random-uploaded-image\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2025-08-05 07:27:44\"\n }\n}','','','trash','closed','closed','','ec7d2433-c042-4604-9f89-117ce9219cce','','','2025-08-05 09:27:44','2025-08-05 07:27:44','',0,'https://blog.hvgdev.website/2025/08/05/ec7d2433-c042-4604-9f89-117ce9219cce/',0,'customize_changeset','',0),
|
||
(21,1,'2025-08-05 09:28:49','2025-08-05 07:28:49','<!-- wp:paragraph -->\n<p>Üdvözlet a WordPress-ben! Ez az első bejegyzés, amelyet lehet akár módosítani, akár törölni, aztán kezdődhet az írás, a tartalommal történő feltöltés.</p>\n<!-- /wp:paragraph -->','Helló Világ!','','inherit','closed','closed','','1-revision-v1','','','2025-08-05 09:28:49','2025-08-05 07:28:49','',1,'https://blog.hvgdev.website/?p=21',0,'revision','',0),
|
||
(22,1,'2025-08-05 09:30:26','2025-08-05 07:30:26','','hayden-walker-ihiEd-_4TNY-unsplash','','inherit','closed','closed','','hayden-walker-ihied-_4tny-unsplash','','','2025-08-05 09:30:26','2025-08-05 07:30:26','',1,'https://blog.hvgdev.website/app/uploads/2025/07/hayden-walker-ihied-_4tny-unsplash.jpg',0,'attachment','image/jpeg',0);
|
||
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_snippets`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_snippets`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!40101 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_snippets` (
|
||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||
`name` tinytext NOT NULL,
|
||
`description` text NOT NULL,
|
||
`code` longtext NOT NULL,
|
||
`tags` longtext NOT NULL,
|
||
`scope` varchar(15) NOT NULL DEFAULT 'global',
|
||
`priority` smallint(6) NOT NULL DEFAULT 10,
|
||
`active` tinyint(1) NOT NULL DEFAULT 0,
|
||
`modified` datetime NOT NULL DEFAULT current_timestamp(),
|
||
`revision` bigint(20) NOT NULL DEFAULT 1,
|
||
`cloud_id` varchar(255) DEFAULT NULL,
|
||
PRIMARY KEY (`id`),
|
||
KEY `scope` (`scope`),
|
||
KEY `active` (`active`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_snippets`
|
||
--
|
||
|
||
LOCK TABLES `wp_snippets` WRITE;
|
||
/*!40000 ALTER TABLE `wp_snippets` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `wp_snippets` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_term_relationships`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_term_relationships`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!40101 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_term_relationships` (
|
||
`object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
||
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
||
`term_order` int(11) NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
|
||
KEY `term_taxonomy_id` (`term_taxonomy_id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_term_relationships`
|
||
--
|
||
|
||
LOCK TABLES `wp_term_relationships` WRITE;
|
||
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
|
||
INSERT INTO `wp_term_relationships` VALUES
|
||
(1,1,0);
|
||
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_term_taxonomy`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_term_taxonomy`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!40101 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_term_taxonomy` (
|
||
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
||
`taxonomy` varchar(32) NOT NULL DEFAULT '',
|
||
`description` longtext NOT NULL,
|
||
`parent` bigint(20) unsigned NOT NULL DEFAULT 0,
|
||
`count` bigint(20) NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`term_taxonomy_id`),
|
||
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
|
||
KEY `taxonomy` (`taxonomy`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_term_taxonomy`
|
||
--
|
||
|
||
LOCK TABLES `wp_term_taxonomy` WRITE;
|
||
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
|
||
INSERT INTO `wp_term_taxonomy` VALUES
|
||
(1,1,'category','',0,1);
|
||
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_termmeta`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_termmeta`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!40101 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_termmeta` (
|
||
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
||
`meta_key` varchar(255) DEFAULT NULL,
|
||
`meta_value` longtext DEFAULT NULL,
|
||
PRIMARY KEY (`meta_id`),
|
||
KEY `term_id` (`term_id`),
|
||
KEY `meta_key` (`meta_key`(191))
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_termmeta`
|
||
--
|
||
|
||
LOCK TABLES `wp_termmeta` WRITE;
|
||
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
|
||
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_terms`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_terms`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!40101 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_terms` (
|
||
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(200) NOT NULL DEFAULT '',
|
||
`slug` varchar(200) NOT NULL DEFAULT '',
|
||
`term_group` bigint(10) NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`term_id`),
|
||
KEY `slug` (`slug`(191)),
|
||
KEY `name` (`name`(191))
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_terms`
|
||
--
|
||
|
||
LOCK TABLES `wp_terms` WRITE;
|
||
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
|
||
INSERT INTO `wp_terms` VALUES
|
||
(1,'Egyéb','egyeb',0);
|
||
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_usermeta`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_usermeta`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!40101 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_usermeta` (
|
||
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
||
`meta_key` varchar(255) DEFAULT NULL,
|
||
`meta_value` longtext DEFAULT NULL,
|
||
PRIMARY KEY (`umeta_id`),
|
||
KEY `user_id` (`user_id`),
|
||
KEY `meta_key` (`meta_key`(191))
|
||
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_usermeta`
|
||
--
|
||
|
||
LOCK TABLES `wp_usermeta` WRITE;
|
||
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
|
||
INSERT INTO `wp_usermeta` VALUES
|
||
(1,1,'nickname','admin'),
|
||
(2,1,'first_name',''),
|
||
(3,1,'last_name',''),
|
||
(4,1,'description',''),
|
||
(5,1,'rich_editing','true'),
|
||
(6,1,'syntax_highlighting','true'),
|
||
(7,1,'comment_shortcuts','false'),
|
||
(8,1,'admin_color','fresh'),
|
||
(9,1,'use_ssl','0'),
|
||
(10,1,'show_admin_bar_front','true'),
|
||
(11,1,'locale',''),
|
||
(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
|
||
(13,1,'wp_user_level','10'),
|
||
(14,1,'dismissed_wp_pointers',''),
|
||
(15,1,'show_welcome_panel','1'),
|
||
(17,1,'wp_dashboard_quick_press_last_post_id','7'),
|
||
(18,1,'community-events-location','a:1:{s:2:\"ip\";s:10:\"172.22.0.0\";}'),
|
||
(21,1,'_two_factor_fido_u2f_register_request','O:29:\"u2flib_server\\RegisterRequest\":3:{s:7:\"version\";s:6:\"U2F_V2\";s:9:\"challenge\";s:43:\"U6S6MUuWeS3ugXrxdIkP5vdvC3DX9RKNwIg38u0d0kM\";s:5:\"appId\";s:27:\"https://blog.hvgdev.website\";}'),
|
||
(22,1,'_two_factor_email_token_timestamp','1754367842'),
|
||
(24,1,'_two_factor_enabled_providers','a:3:{i:1;s:15:\"Two_Factor_Totp\";i:2;s:23:\"Two_Factor_Backup_Codes\";i:3;s:16:\"Two_Factor_Email\";}'),
|
||
(25,1,'closedpostboxes_dashboard','a:0:{}'),
|
||
(26,1,'metaboxhidden_dashboard','a:0:{}'),
|
||
(32,1,'session_tokens','a:4:{s:64:\"dabfac9c01648f75fa705fca2f44dbd826c1da3d35932eb3663de8b46af8a00a\";a:6:{s:16:\"two-factor-login\";i:1754305722;s:19:\"two-factor-provider\";s:16:\"Two_Factor_Email\";s:10:\"expiration\";i:1754478522;s:2:\"ip\";s:10:\"172.22.0.2\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36\";s:5:\"login\";i:1754305722;}s:64:\"13fa41b7ef87bcabf3a0ca9bfc89751f8d8bf2dca05d8f0782c60f5cdb3feb10\";a:6:{s:16:\"two-factor-login\";i:1754316007;s:19:\"two-factor-provider\";s:16:\"Two_Factor_Email\";s:10:\"expiration\";i:1754487058;s:2:\"ip\";s:10:\"172.22.0.2\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36\";s:5:\"login\";i:1754314258;}s:64:\"4467f0095d013782f064a3b830783c01ca50d18a50b61a21e5dfae0f67e43425\";a:6:{s:16:\"two-factor-login\";i:1754367849;s:19:\"two-factor-provider\";s:16:\"Two_Factor_Email\";s:10:\"expiration\";i:1754540649;s:2:\"ip\";s:10:\"172.22.0.2\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36\";s:5:\"login\";i:1754367849;}s:64:\"a7722aefe83223d731c50f557c0d0f64b65dda05eddd5040eed18cdb2df1e382\";a:6:{s:16:\"two-factor-login\";i:1754378133;s:19:\"two-factor-provider\";s:15:\"Two_Factor_Totp\";s:10:\"expiration\";i:1754550933;s:2:\"ip\";s:10:\"172.22.0.2\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36\";s:5:\"login\";i:1754378133;}}'),
|
||
(33,1,'wp_user-settings','libraryContent=browse&editor=tinymce&mfold=o'),
|
||
(34,1,'wp_user-settings-time','1754305717'),
|
||
(37,1,'_two_factor_totp_key','KRSECXJZEBXXWTK5ONNDO3KWOFKVGLT3'),
|
||
(39,1,'_two_factor_backup_codes','a:10:{i:0;s:63:\"$wp$2y$10$D9Fdgt5HT9FpVwnNXplD0.YVDL.fOMDN0mi2PG9Hngz2uoPy2J92O\";i:1;s:63:\"$wp$2y$10$5bQiD3J/EZ3vNnQSn/oKU.SX/2Y/ii0qBT2In2tNuCSyXeysxDrEe\";i:2;s:63:\"$wp$2y$10$H/6/v7eBA5r9zJzEVjpK.uYqH.FhX34dUidPOdBqw41zCPODc2h/S\";i:3;s:63:\"$wp$2y$10$LseQARW6uZY8pjHGC9Q5LeR.8Wj5z13gR/eVg3055CKOjWYj7jNm.\";i:4;s:63:\"$wp$2y$10$XNF1FJS1wbl40LmzOMMXBeByDLXf30UYyAhtvOla0wW.DbjgDR6Zi\";i:5;s:63:\"$wp$2y$10$UXpbmiveMEsWzW6.d0lgS.25CR2INEvICmkoPybEGhPxjDPSd.lui\";i:6;s:63:\"$wp$2y$10$hf7haPDOtobVGXzTzk84AugfD/ljs23Ra92V3VdXPVZ0IIukhUzt2\";i:7;s:63:\"$wp$2y$10$KG1bXNmwqXI0BztHWptoT.o8XKrl4.vUC1RlCdLyY8tUtsp82Gfuu\";i:8;s:63:\"$wp$2y$10$MOH2EvuGsvpc4vZ2OH/goOTLvME9CyYNay4LuUfzzUlT4iAc3fNK6\";i:9;s:63:\"$wp$2y$10$DT3UQiSrJpgSD/LLihp08u7h4uo4Qh229lhiVKicD.uZKZpHN0Que\";}'),
|
||
(40,1,'_two_factor_provider','Two_Factor_Totp'),
|
||
(44,1,'_two_factor_totp_last_successful_login','1754378130'),
|
||
(45,1,'wp_persisted_preferences','a:3:{s:4:\"core\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:10:\"openPanels\";a:1:{i:0;s:11:\"post-status\";}}s:14:\"core/edit-post\";a:1:{s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2025-08-05T07:28:36.186Z\";}');
|
||
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
|
||
--
|
||
-- Table structure for table `wp_users`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `wp_users`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!40101 SET character_set_client = utf8mb4 */;
|
||
CREATE TABLE `wp_users` (
|
||
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`user_login` varchar(60) NOT NULL DEFAULT '',
|
||
`user_pass` varchar(255) NOT NULL DEFAULT '',
|
||
`user_nicename` varchar(50) NOT NULL DEFAULT '',
|
||
`user_email` varchar(100) NOT NULL DEFAULT '',
|
||
`user_url` varchar(100) NOT NULL DEFAULT '',
|
||
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`user_activation_key` varchar(255) NOT NULL DEFAULT '',
|
||
`user_status` int(11) NOT NULL DEFAULT 0,
|
||
`display_name` varchar(250) NOT NULL DEFAULT '',
|
||
PRIMARY KEY (`ID`),
|
||
KEY `user_login_key` (`user_login`),
|
||
KEY `user_nicename` (`user_nicename`),
|
||
KEY `user_email` (`user_email`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Dumping data for table `wp_users`
|
||
--
|
||
|
||
LOCK TABLES `wp_users` WRITE;
|
||
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
|
||
INSERT INTO `wp_users` VALUES
|
||
(1,'admin','$wp$2y$10$WxHhb0xAdRkfiDkgPsMpVuVFzqMhJZpdoMUNx1o/FE19vYUMIqKDy','admin','blogadmin@hvg.hu','','2025-07-02 08:07:21','',0,'admin');
|
||
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
|
||
UNLOCK TABLES;
|
||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||
|
||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||
/*M!100616 SET NOTE_VERBOSITY=@OLD_NOTE_VERBOSITY */;
|
||
|
||
-- Dump completed on 2025-08-05 9:13:11
|